diff --git a/lambda/jamtrack-importer/.aws-sam/build.toml b/lambda/jamtrack-importer/.aws-sam/build.toml new file mode 100644 index 000000000..678bce436 --- /dev/null +++ b/lambda/jamtrack-importer/.aws-sam/build.toml @@ -0,0 +1,5 @@ +# This file is auto generated by SAM CLI build command + +[function_build_definitions] + +[layer_build_definitions] diff --git a/lambda/jamtrack-importer/.aws-sam/build/template.yaml b/lambda/jamtrack-importer/.aws-sam/build/template.yaml new file mode 100644 index 000000000..62c64bdff --- /dev/null +++ b/lambda/jamtrack-importer/.aws-sam/build/template.yaml @@ -0,0 +1,179 @@ +AWSTemplateFormatVersion: '2010-09-09' +Transform: AWS::Serverless-2016-10-31 +Parameters: + Environment: + Type: String + AllowedValues: + - dev + - prod + Description: The environment (e.g., dev or prod) + TencyZipsBucket: + Type: String + Description: Where tency uploads their original zips + TencyJamTracksBucket: + Type: String + Description: Where we unzip their zipped files + EfsId: + Type: String + Description: The ID of the EFS to use for scratch + VpcId: + Type: String + Description: The ID of the VPC where the Lambda function and EFS are deployed. + SubnetIds: + Type: CommaDelimitedList + Description: The IDs of the subnets where the Lambda function will be deployed. + SgIds: + Type: CommaDelimitedList + Description: The Id Of the security group + MountPath: + Type: String + Description: The path to mount the EFS volume into the lamdda + JamTrackContainerPath: + Type: String + Description: The local or container registry path to the jamtrack container + DbHost: + Type: String + Description: potsgresql host + DbUser: + Type: String + Description: postgresql user + DbPass: + Type: String + Description: postgresql pass + DbName: + Type: String + Description: db name + AwsBucket: + Type: String + Description: aws bucket + AwsBucketPublic: + Type: String + Description: aws bucket public +Globals: + Function: + CodeUri: ./ + Architectures: + - x86_64 +Resources: + TencyUnzipFunction: + Type: AWS::Serverless::Function + Properties: + MemorySize: 500 + Timeout: 900 + PackageType: Image + ImageUri: + Ref: JamTrackContainerPath + FileSystemConfigs: + - Arn: + Fn::GetAtt: + - EFSMountTarget + - Arn + LocalMountPath: /mnt/efs + VpcConfig: + SubnetIds: + Ref: SubnetIds + SecurityGroupIds: + Ref: SgIds + Role: + Fn::GetAtt: + - ZipExtractorFunctionRole + - Arn + Environment: + Variables: + ENV: + Ref: Environment + DB_HOST: + Ref: DbHost + DB_USER: + Ref: DbUser + DB_PASS: + Ref: DbPass + DB_NAME: + Ref: DbName + TENCY_ZIPS_BUCKET: + Ref: TencyZipsBucket + TENCY_JAMTRACKS_BUCKET: + Ref: TencyJamTracksBucket + AWS_BUCKET: + Ref: AwsBucket + AWS_BUCKET_PUBLIC: + Ref: AwsBucketPublic + FFMPEG_PATH: /opt/bin/ffmpeg + FFMPEG_PATH_MP3: /opt/bin/ffmpeg + JMEP_DIR: /var/task/shared/jmep + END_ON_FAIL: 1 + MOUNT_PATH: + Ref: MountPath + ZipExtractorFunctionRole: + Type: AWS::IAM::Role + Properties: + AssumeRolePolicyDocument: + Version: '2012-10-17' + Statement: + - Effect: Allow + Principal: + Service: lambda.amazonaws.com + Action: sts:AssumeRole + ManagedPolicyArns: + - Ref: EFSFullAccessPolicy + - arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole + Policies: + - PolicyName: S3AccessPolicy + PolicyDocument: + Version: '2012-10-17' + Statement: + - Effect: Allow + Action: + - s3:ListBucket + - s3:GetObject + Resource: + - Fn::Sub: arn:aws:s3:::${TencyZipsBucket} + - Fn::Sub: arn:aws:s3:::${TencyZipsBucket}/* + - Effect: Allow + Action: + - s3:ListBucket + - s3:GetObject + - s3:PutObject + Resource: + - Fn::Sub: arn:aws:s3:::${TencyJamTracksBucket} + - Fn::Sub: arn:aws:s3:::${TencyJamTracksBucket}/* + - PolicyName: VPCNetworkingPolicy + PolicyDocument: + Version: '2012-10-17' + Statement: + - Effect: Allow + Action: + - ec2:CreateNetworkInterface + - ec2:DescribeNetworkInterfaces + - ec2:DeleteNetworkInterface + Resource: '*' + EFSFullAccessPolicy: + Type: AWS::IAM::ManagedPolicy + Properties: + Description: EFS full access for Lambda + PolicyDocument: + Version: '2012-10-17' + Statement: + - Effect: Allow + Action: + - elasticfilesystem:ClientMount + - elasticfilesystem:ClientWrite + Resource: + Fn::GetAtt: + - EFSMountTarget + - Arn + EFSMountTarget: + Type: AWS::EFS::AccessPoint + Properties: + FileSystemId: + Ref: EfsId + PosixUser: + Uid: '1000' + Gid: '1000' + RootDirectory: + CreationInfo: + OwnerUid: '1000' + OwnerGid: '1000' + Permissions: '0777' + Path: + Ref: MountPath diff --git a/lambda/jamtrack-importer/.bundle/config b/lambda/jamtrack-importer/.bundle/config new file mode 100644 index 000000000..6896ab3a2 --- /dev/null +++ b/lambda/jamtrack-importer/.bundle/config @@ -0,0 +1,4 @@ +--- +BUNDLE_PATH: "vendor/bundle" +BUNDLE_BUILD__PG: "--with-cppflags=-I/usr/include/openssl --with-ldflags=-L/usr/lib64" +BUNDLE_WITHOUT: "development:test" diff --git a/lambda/jamtrack-importer/.gitignore b/lambda/jamtrack-importer/.gitignore new file mode 100644 index 000000000..cdd4fd09e --- /dev/null +++ b/lambda/jamtrack-importer/.gitignore @@ -0,0 +1,5 @@ +vendor +tmp +mapped +assets +aws-credentials diff --git a/lambda/jamtrack-importer/Dockerfile b/lambda/jamtrack-importer/Dockerfile new file mode 100644 index 000000000..ca82d328c --- /dev/null +++ b/lambda/jamtrack-importer/Dockerfile @@ -0,0 +1,63 @@ +FROM index.docker.io/library/ruby:3.3 + +# Install the runtime interface client for Ruby +#RUN gem install aws_lambda_ric + +# Add the runtime interface client to the PATH +ENV PATH="/usr/local/bundle/bin:/opt/bin:${PATH}" + +RUN cat /etc/ssl/openssl.cnf + +# https://stackoverflow.com/questions/77812112/what-to-do-if-cipherstring-defaultseclevel-1-in-openssl-3-configuration-file +# to interop with our old Ubuntu 12 machines.. +RUN sed -i '/\[openssl_init\]/a ssl_conf = ssl_configuration' /etc/ssl/openssl.cnf +RUN echo "\n[ssl_configuration]" >> /etc/ssl/openssl.cnf \ + && echo "system_default = tls_system_default" >> /etc/ssl/openssl.cnf +RUN echo "\n[tls_system_default]" >> /etc/ssl/openssl.cnf \ + && echo "MinProtocol = TLSv1" >> /etc/ssl/openssl.cnf \ + && echo "CipherString = DEFAULT@SECLEVEL=0" >> /etc/ssl/openssl.cnf + +# Create a directory for the Lambda function +ENV LAMBDA_TASK_ROOT=/var/task +RUN mkdir -p ${LAMBDA_TASK_ROOT} +WORKDIR ${LAMBDA_TASK_ROOT} + + +ENV ARTIFACT_DIR=/opt +ENV FUNCTION_DIR=${LAMBDA_TASK_ROOT} + +# Install dependencies +RUN apt update -y && apt install -y postgresql-common unzip vorbis-tools pip sox python-is-python3 +# Copy custom libraries +COPY ./assets/bin/ffmpeg ${ARTIFACT_DIR}/bin/ +RUN chmod a+x /opt/bin/ffmpeg + +RUN git clone http://www.pogo.org.uk/~mark/bpm-tools.git && cd bpm-tools && make && cp bpm /opt/bin/ + +# Copy just enough of the shared gem to satisfy bundle install when it runs. +# This way we can make code changes easily in `shared/lib/*`, and not create +# full docker rebuilds for speed +RUN mkdir -p ${LAMBDA_TASK_ROOT}/shared +COPY shared/shared.gemspec ${LAMBDA_TASK_ROOT}/shared/ + +COPY lambdas ${LAMBDA_TASK_ROOT}/lambdas + +RUN ls -laR ${LAMBDA_TASK_ROOT} + +WORKDIR ${LAMBDA_TASK_ROOT}/lambdas/unzipper +# Copy Gemfile and Gemfile.lock +RUN ls -la +RUN gem install bundler && \ + bundle config set --local path "/vendor/bundle" && \ + bundle install + +# Copy application code +COPY shared ${LAMBDA_TASK_ROOT}/shared +#RUN bundle config set --local deployment 'true' && bundle install + +WORKDIR ${LAMBDA_TASK_ROOT}/lambdas/unzipper + +# Set runtime interface client as default command for the container runtime +#ENTRYPOINT [ "aws_lambda_ric" ] + +ENTRYPOINT [ "bundle", "exec", "ruby", "app.rb" ] diff --git a/lambda/jamtrack-importer/Dockerfile.sam b/lambda/jamtrack-importer/Dockerfile.sam new file mode 100644 index 000000000..5da7cb568 --- /dev/null +++ b/lambda/jamtrack-importer/Dockerfile.sam @@ -0,0 +1,52 @@ +FROM ruby:3.3 + +# Install the runtime interface client for Ruby +RUN gem install aws_lambda_ric + +# Add the runtime interface client to the PATH +ENV PATH="/usr/local/bundle/bin:/opt/bin:${PATH}" + +# Create a directory for the Lambda function +ENV LAMBDA_TASK_ROOT=/var/task +RUN mkdir -p ${LAMBDA_TASK_ROOT} +WORKDIR ${LAMBDA_TASK_ROOT} + +ENV ARTIFACT_DIR=/opt +ENV FUNCTION_DIR=${LAMBDA_TASK_ROOT} + +# Install dependencies +RUN apt update -y && apt install -y postgresql-common unzip vorbis-tools pip sox python-is-python3 +# Copy custom libraries +COPY ./assets/bin/ffmpeg ${ARTIFACT_DIR}/bin/ +RUN chmod a+x /opt/bin/ffmpeg + +RUN git clone http://www.pogo.org.uk/~mark/bpm-tools.git && cd bpm-tools && make && cp bpm /opt/bin/ + +# Copy just enough of the shared gem to satisfy bundle install when it runs. +# This way we can make code changes easily in `shared/lib/*`, and not create +# full docker rebuilds for speed +RUN mkdir -p ${LAMBDA_TASK_ROOT}/shared +COPY shared/shared.gemspec ${LAMBDA_TASK_ROOT}/shared/ + +COPY lambdas ${LAMBDA_TASK_ROOT}/lambdas + +RUN ls -laR ${LAMBDA_TASK_ROOT} + +WORKDIR ${LAMBDA_TASK_ROOT}/lambdas/unzipper +# Copy Gemfile and Gemfile.lock +RUN ls -la +RUN gem install bundler && \ + bundle config set --local path "/vendor/bundle" && \ + bundle install + +# Copy application code +COPY shared ${LAMBDA_TASK_ROOT}/shared +#RUN bundle config set --local deployment 'true' && bundle install + +WORKDIR ${LAMBDA_TASK_ROOT}/lambdas/unzipper + +# Set runtime interface client as default command for the container runtime +ENTRYPOINT [ "aws_lambda_ric" ] + +# Set the Lambda handler +CMD ["app.lambda_handler"] diff --git a/lambda/jamtrack-importer/Gemfile b/lambda/jamtrack-importer/Gemfile new file mode 100644 index 000000000..88a37b53a --- /dev/null +++ b/lambda/jamtrack-importer/Gemfile @@ -0,0 +1,9 @@ +source "https://rubygems.org" +#gem "protected_attributes" +gem "activerecord"# "= 4.2.8" # or your Rails version +gem "aws-sdk-lambda" +gem "json" #, "1.8.6" +gem "pg" +gem "ox" +gem "logging" +gem 'aws-sdk-s3', '~> 1' # , '~> 1' diff --git a/lambda/jamtrack-importer/Gemfile.lock b/lambda/jamtrack-importer/Gemfile.lock new file mode 100644 index 000000000..fdc3cc690 --- /dev/null +++ b/lambda/jamtrack-importer/Gemfile.lock @@ -0,0 +1,82 @@ +GEM + remote: https://rubygems.org/ + specs: + activemodel (8.0.1) + activesupport (= 8.0.1) + activerecord (8.0.1) + activemodel (= 8.0.1) + activesupport (= 8.0.1) + timeout (>= 0.4.0) + activesupport (8.0.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + aws-eventstream (1.3.0) + aws-partitions (1.1029.0) + aws-sdk-core (3.214.1) + aws-eventstream (~> 1, >= 1.3.0) + aws-partitions (~> 1, >= 1.992.0) + aws-sigv4 (~> 1.9) + jmespath (~> 1, >= 1.6.1) + aws-sdk-kms (1.96.0) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sigv4 (~> 1.5) + aws-sdk-lambda (1.144.0) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sigv4 (~> 1.5) + aws-sdk-s3 (1.176.1) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-kms (~> 1) + aws-sigv4 (~> 1.5) + aws-sigv4 (1.10.1) + aws-eventstream (~> 1, >= 1.0.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + drb (2.2.1) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + jmespath (1.6.2) + json (2.9.1) + little-plugger (1.1.4) + logger (1.6.4) + logging (2.4.0) + little-plugger (~> 1.1) + multi_json (~> 1.14) + minitest (5.25.4) + multi_json (1.15.0) + ox (2.14.19) + bigdecimal (>= 3.0) + pg (1.5.9) + securerandom (0.4.1) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + uri (1.0.2) + +PLATFORMS + ruby + x86_64-darwin-20 + +DEPENDENCIES + activerecord + aws-sdk-lambda + aws-sdk-s3 (~> 1) + json + logging + ox + pg + +BUNDLED WITH + 2.5.23 diff --git a/lambda/jamtrack-importer/README.md b/lambda/jamtrack-importer/README.md new file mode 100644 index 000000000..aacb9eadb --- /dev/null +++ b/lambda/jamtrack-importer/README.md @@ -0,0 +1,6 @@ +Using this to create a static build of ffmpeg with lib-fdkaac available +https://github.com/zimbatm/ffmpeg-static + +# manually pushed a zip by cd'ing into assets, and pushing bin/ffmpeg, bin/oggenc, and bin/sox into s3 to be used as sam layer +s3 cp assets.zip s3://jamkazam-repo/lambda-assets/jamtrack-importer-assets.zip + diff --git a/lambda/jamtrack-importer/batch/.gitignore b/lambda/jamtrack-importer/batch/.gitignore new file mode 100644 index 000000000..1a06816d8 --- /dev/null +++ b/lambda/jamtrack-importer/batch/.gitignore @@ -0,0 +1 @@ +results diff --git a/lambda/jamtrack-importer/batch/readme.md b/lambda/jamtrack-importer/batch/readme.md new file mode 100644 index 000000000..99abd2fe7 --- /dev/null +++ b/lambda/jamtrack-importer/batch/readme.md @@ -0,0 +1,3 @@ +You need parallels and AWS_SECRET and AWS_KEY defined in your environment for this to succeed locally. + +run_single_example.sh runs a single jamtrack locally. Assumes you've run scripts/build-container-image to create an image diff --git a/lambda/jamtrack-importer/batch/run b/lambda/jamtrack-importer/batch/run new file mode 100755 index 000000000..db2c77efe --- /dev/null +++ b/lambda/jamtrack-importer/batch/run @@ -0,0 +1,5 @@ +# Used to kick off the big job (i.e., provide a manifest of jamtracks to import) + +RESULT_DIR=$(date +%Y-%m-%d_%H-%M-%S) +RESULT_DIR=results/$RESULT_DIR/ +parallel -j 4 --joblog joblog.txt --results $RESULT_DIR {} < $1 diff --git a/lambda/jamtrack-importer/batch/run_batch_job.py b/lambda/jamtrack-importer/batch/run_batch_job.py new file mode 100644 index 000000000..2732ed056 --- /dev/null +++ b/lambda/jamtrack-importer/batch/run_batch_job.py @@ -0,0 +1,86 @@ +import os +import json +import subprocess +import sys + + +def load_env_vars(json_file): + """ + Load environment variables from a JSON file and set them in the current process. + """ + try: + with open(json_file, 'r') as f: + env_vars = json.load(f) + + if not isinstance(env_vars, dict): + raise ValueError("JSON file must contain key-value pairs.") + + # Set each key-value pair as an environment variable + for key, value in env_vars.items(): + os.environ[key] = str(value) + print(f"Set environment variable: {key}={value}") + + except FileNotFoundError: + print(f"Error: File not found - {json_file}") + sys.exit(1) + except json.JSONDecodeError: + print(f"Error: Failed to parse JSON file - {json_file}") + sys.exit(1) + except Exception as e: + print(f"Error: {e}") + sys.exit(1) + + +def run_docker(image, env_vars, docker_args, jam_track_id): + """ + Run a Docker container with the specified image, environment variables, and additional arguments. + """ + try: + # Build the Docker run command with environment variables + docker_cmd = ["docker", "run", "--rm"] + for key, value in env_vars.items(): + docker_cmd.extend(["-e", f"{key}={value}"]) + + docker_cmd.extend(["-e", f"JAM_TRACK_ID={jam_track_id}"]) + # Add the Docker image and additional arguments + docker_cmd.append(image) + docker_cmd.extend(docker_args) + + # Execute the Docker run command + print(f"Running Docker command: {' '.join(docker_cmd)}") + process = subprocess.Popen(docker_cmd, stdout = sys.stdout, stderr = sys.stderr, text=True) + #result = subprocess.run(docker_cmd, capture_output=False, text=True) + process.wait() + + # Print the output or handle errors + if process.returncode == 0: + print("Docker runner succeeded") + else: + print(f"Docker runner failed #{process.returncode}:") + + except Exception as e: + print(f"Error running Docker: {e}") + sys.exit(1) + + +if __name__ == "__main__": + if len(sys.argv) < 3: + print("Usage: python run_batch_job.py [additional_args...]") + sys.exit(1) + + docker_image = sys.argv[1] + json_file = sys.argv[2] + jam_track_id = sys.argv[3] + docker_args = sys.argv[4:] # All remaining arguments are passed to the Docker command + + # Load environment variables from JSON + load_env_vars(json_file) + + # Extract current environment variables (after setting from JSON) + current_env = {key: value for key, value in os.environ.items() if key in json.load(open(json_file))} + current_env["AWS_ACCESS_KEY_ID"] = os.environ["AWS_KEY"] + current_env["AWS_SECRET_ACCESS_KEY"] = os.environ["AWS_SECRET"] + + # Run the Docker container + run_docker(docker_image, current_env, docker_args, jam_track_id) + diff --git a/lambda/jamtrack-importer/batch/run_single_example.sh b/lambda/jamtrack-importer/batch/run_single_example.sh new file mode 100644 index 000000000..54e7c45a5 --- /dev/null +++ b/lambda/jamtrack-importer/batch/run_single_example.sh @@ -0,0 +1 @@ +python run_batch_job.py localhost/jamtrack-lambda:1.0.0 ../env/local.json create-jamtrack jamkazam-tency-202410-test "mapped/Ace of Base - The Sign - 10111/manifest.txt" diff --git a/lambda/jamtrack-importer/batch/run_single_example_staging.sh b/lambda/jamtrack-importer/batch/run_single_example_staging.sh new file mode 100755 index 000000000..99ded93c0 --- /dev/null +++ b/lambda/jamtrack-importer/batch/run_single_example_staging.sh @@ -0,0 +1 @@ +python batch/run_batch_job.py localhost/jamtrack-local:1.0.0 env/dev.json create-jamtrack jamkazam-tency-202410 "mapped/will.i.am - It's My Birthday - 47217/manifest.txt" diff --git a/lambda/jamtrack-importer/batch/single-test.txt b/lambda/jamtrack-importer/batch/single-test.txt new file mode 100644 index 000000000..f5f94d1bf --- /dev/null +++ b/lambda/jamtrack-importer/batch/single-test.txt @@ -0,0 +1 @@ +./run_batch_job.sh ../env/dev.json localhost/jamtrack-lambda:1.0.0 create-jamtrack jamkazam-tency-202410-test "mapped/Ace of Base - The Sign - 10111/manifest.txt" diff --git a/lambda/jamtrack-importer/env/dev-sam.json b/lambda/jamtrack-importer/env/dev-sam.json new file mode 100644 index 000000000..70f6ba5d0 --- /dev/null +++ b/lambda/jamtrack-importer/env/dev-sam.json @@ -0,0 +1,17 @@ +{ + "Environment": "dev", + "TencyZipsBucket": "jamkazam-tency-uploads", + "TencyJamTracksBucket": "jamkazam-tency-202410", + "AwsBucket": "jamkazam-staging", + "AwsBucketPublic": "jamkazam-staging-public", + "EfsId": "fs-0c6e24466df585bff", + "VpcId": "vpc-040f8fef0c9700b58", + "SubnetIds": "subnet-0a51ec0dd502ffa4a,subnet-0998ecced5ad2ed89", + "SgIds": "sg-02cc6ee5382e2c0ce", + "MountPath": "/mnt/efs", + "JamTrackContainerPath": "727401853962.dkr.ecr.us-east-1.amazonaws.com/jamkazam/jamtrack-lambda:1.0.0", + "DbName": "jam", + "DbHost": "int.jamkazam.com", + "DbPass": "ct2Es6DsZDjuTyh9WHRFrn4mQfhh62P8", + "DbUser": "lambda" +} diff --git a/lambda/jamtrack-importer/env/dev.json b/lambda/jamtrack-importer/env/dev.json new file mode 100644 index 000000000..52da56cca --- /dev/null +++ b/lambda/jamtrack-importer/env/dev.json @@ -0,0 +1,30 @@ +{ + "Environment": "dev", + "TencyZipsBucket": "jamkazam-tency-uploads", + "TENCY_ZIPS_BUCKET": "jamkazam-tency-uploads", + "TencyJamTracksBucket": "jamkazam-tency-202410", + "TENCY_JAMTRACKS_BUCKET": "jamkazam-tency-202410", + "AwsBucket": "jamkazam-staging", + "AWS_BUCKET": "jamkazam-staging", + "AwsBucketPublic": "jamkazam-staging-public", + "AWS_BUCKET_PUBLIC": "jamkazam-staging-public", + "EfsId": "fs-0c6e24466df585bff", + "VpcId": "vpc-0b77b2557b7128087", + "SubnetIds": "subnet-085e9ab833dc7e32a", + "SgIds": "sg-0b2279b3a0966593f", + "MountPath": "/lambda", + "JamTrackContainerPath": "727401853962.dkr.ecr.us-east-1.amazonaws.com/jamkazam/jamtrack-lambda:1.0.0", + "DbName": "jam", + "DB_NAME": "jam", + "DbHost": "int.jamkazam.com", + "DB_HOST": "int.jamkazam.com", + "DbPass": "ct2Es6DsZDjuTyh9WHRFrn4mQfhh62P8", + "DB_PASSWORD": "ct2Es6DsZDjuTyh9WHRFrn4mQfhh62P8", + "DbUser": "lambda", + "DB_USER": "lambda", + "FFMPEG_PATH": "/opt/bin/ffmpeg", + "FFMPEG_PATH_MP3": "/opt/bin/ffmpeg", + "JMEP_DIR": "/var/task/shared/jmep", + "END_ON_FAIL": "1", + "AWS_REGION": "us-east-1" +} diff --git a/lambda/jamtrack-importer/env/local.json b/lambda/jamtrack-importer/env/local.json new file mode 100644 index 000000000..7555f68cb --- /dev/null +++ b/lambda/jamtrack-importer/env/local.json @@ -0,0 +1,30 @@ +{ + "Environment": "dev", + "TencyZipsBucket": "jamkazam-tency-uploads-test", + "TENCY_ZIPS_BUCKET": "jamkazam-tency-uploads-test", + "TencyJamTracksBucket": "jamkazam-tency-202410-test", + "TENCY_JAMTRACKS_BUCKET": "jamkazam-tency-202410-test", + "AwsBucket": "jamkazam-dev", + "AWS_BUCKET": "jamkazam-dev", + "AwsBucketPublic": "jamkazam-dev-public", + "AWS_BUCKET_PUBLIC": "jamkazam-dev-public", + "EfsId": "fs-0c6e24466df585bff", + "VpcId": "vpc-040f8fef0c9700b58", + "SubnetIds": "subnet-0998ecced5ad2ed89", + "SgIds": "sg-02cc6ee5382e2c0ce,sg-0ff99640a2871ac4c", + "MountPath": "/tmp", + "JamTrackContainerPath": "jamtrack-lambda:1.0.0", + "DbName": "jam", + "DB_NAME": "jam", + "DbHost": "host.docker.internal", + "DB_HOST": "host.docker.internal", + "DbPass": "jam", + "DB_PASSWORD": "jam", + "DbUser": "seth", + "DB_USER": "seth", + "FFMPEG_PATH": "/opt/bin/ffmpeg", + "FFMPEG_PATH_MP3": "/opt/bin/ffmpeg", + "JMEP_DIR": "/var/task/shared/jmep", + "END_ON_FAIL": "1", + "AWS_REGION": "us-east-1" +} diff --git a/lambda/jamtrack-importer/env/prod.json b/lambda/jamtrack-importer/env/prod.json new file mode 100644 index 000000000..041ae1880 --- /dev/null +++ b/lambda/jamtrack-importer/env/prod.json @@ -0,0 +1,31 @@ +{ + "Environment": "prod", + "TencyZipsBucket": "jamkazam-tency-uploads", + "TENCY_ZIPS_BUCKET": "jamkazam-tency-uploads", + "TencyJamTracksBucket": "jamkazam-tency-202410", + "TENCY_JAMTRACKS_BUCKET": "jamkazam-tency-202410", + "AwsBucket": "jamkazam", + "AWS_BUCKET": "jamkazam", + "AwsBucketPublic": "jamkazam-public", + "AWS_BUCKET_PUBLIC": "jamkazam-public", + "EfsId": "fs-0c6e24466df585bff", + "VpcId": "vpc-040f8fef0c9700b58", + "SubnetIds": "subnet-0998ecced5ad2ed89", + "SgIds": "sg-02cc6ee5382e2c0ce,sg-0ff99640a2871ac4c", + "MountPath" : "/lambda", + "JamTrackContainerPath": "jamtrack-lambda:1.0.0", + "DbName": "jam", + "DB_NAME": "jam", + "DbHost": "db.jamkazam.com", + "DB_HOST": "db.jamkazam.com", + "DbPass": "E2uEYFvPjhKbP4N7qp6kgMp4VddWNF4S", + "DB_PASSWORD": "E2uEYFvPjhKbP4N7qp6kgMp4VddWNF4S", + "DbUser": "lambda", + "DB_USER": "lambda", + "FFMPEG_PATH": "/opt/bin/ffmpeg", + "FFMPEG_PATH_MP3": "/opt/bin/ffmpeg", + "JMEP_DIR": "/var/task/shared/jmep", + "END_ON_FAIL": "1", + "AWS_REGION": "us-east-1" + } + diff --git a/lambda/jamtrack-importer/jam_tracks.csv b/lambda/jamtrack-importer/jam_tracks.csv new file mode 100644 index 000000000..f989ecbc5 --- /dev/null +++ b/lambda/jamtrack-importer/jam_tracks.csv @@ -0,0 +1,3757 @@ +Artist,Name,URL,Licensor,Vendor ID +Camila,Alejate De Mi,https://www.jamkazam.com/landing/jamtracks/camila-alejate-de-mi,Tency Music,36064 +Antonio Carlos Jobim,The Girl From Ipanema,https://www.jamkazam.com/landing/jamtracks/antonio-carlos-jobim-the-girl-from-ipanema,Stockton Helbing, +Benny Golson,Killer Joe,https://www.jamkazam.com/landing/jamtracks/benny-golson-killer-joe,Stockton Helbing, +Freddie Hubbard,Little Sunflower,https://www.jamkazam.com/landing/jamtracks/freddie-hubbard-little-sunflower,Stockton Helbing, +Herbie Hancock,Watermelon Man,https://www.jamkazam.com/landing/jamtracks/herbie-hancock-watermelon-man,Stockton Helbing, +David Lee Roth,Just a Gigolo,https://www.jamkazam.com/landing/jamtracks/david-lee-roth-just-a-gigolo,Paris Music,S3349 +Jerome Kern,All The Things You Are,https://www.jamkazam.com/landing/jamtracks/jerome-kern-all-the-things-you-are,Stockton Helbing, +Johnny Green,Body and Soul,https://www.jamkazam.com/landing/jamtracks/johnny-green-body-and-soul,Stockton Helbing, +Joseph Kosma,Autumn Leaves,https://www.jamkazam.com/landing/jamtracks/joseph-kosma-autumn-leaves,Stockton Helbing, +Miles Davis,So What,https://www.jamkazam.com/landing/jamtracks/miles-davis-so-what,Stockton Helbing, +Mudvayne,Forget To Remember,https://www.jamkazam.com/landing/jamtracks/mudvayne-forget-to-remember,Tency Music,27414 +Sonny Rollins,Tenor Madness,https://www.jamkazam.com/landing/jamtracks/sonny-rollins-tenor-madness,Stockton Helbing, +Victor Young,Stella By Starlight,https://www.jamkazam.com/landing/jamtracks/victor-young-stella-by-starlight,Stockton Helbing, +Jay-Z,Young Forever,https://www.jamkazam.com/landing/jamtracks/jay-z-young-forever,Tency Music,27199 +Muse,Uprising,https://www.jamkazam.com/landing/jamtracks/muse-uprising,Tency Music,24472 +Bill Haley And His Comets,Shake Rattle And Roll,https://www.jamkazam.com/landing/jamtracks/bill-haley-and-his-comets-shake-rattle-and-roll,Tency Music,19884 +Grand Funk Railroad,Some Kind Of Wonderful,https://www.jamkazam.com/landing/jamtracks/grand-funk-railroad-some-kind-of-wonderful,Tency Music,18224 +Van Morrison,Bright Side of the Road,https://www.jamkazam.com/landing/jamtracks/van-morrison-bright-side-of-the-road,Paris Music,S0626 +The New Radicals,You Get What You Give,https://www.jamkazam.com/landing/jamtracks/the-new-radicals-you-get-what-you-give,Tency Music,9340 +Iggy Pop,Real Wild Child,https://www.jamkazam.com/landing/jamtracks/iggy-pop-real-wild-child,Paris Music,S0490 +George Benson,Give Me The Night,https://www.jamkazam.com/landing/jamtracks/george-benson-give-me-the-night,Tency Music,12572 +The Black Keys,Gotta Get Away,https://www.jamkazam.com/landing/jamtracks/the-black-keys-gotta-get-away,Tency Music,47593 +Flo Rida,G.D.F.R. (Goin Down For Real),https://www.jamkazam.com/landing/jamtracks/flo-rida-gdfr-goin-down-for-real,Tency Music,48100 +42nd Street Musical,Forty Second Street (A Cappella),https://www.jamkazam.com/landing/jamtracks/42nd-street-musical-forty-second-street-acapella,Tim Waurick, +Elvis Presley,Crying In the Chapel,https://www.jamkazam.com/landing/jamtracks/elvis-presley-crying-in-the-chapel,Paris Music,S4227 +Miranda Lambert,Roots And Wings,https://www.jamkazam.com/landing/jamtracks/miranda-lambert-roots-and-wings,Tency Music,49298 +The Four Tops,Loco In Acapulco,https://www.jamkazam.com/landing/jamtracks/the-four-tops-loco-in-acapulco,Paris Music,S3351 +The Moody Blues,Nights In White Satin,https://www.jamkazam.com/landing/jamtracks/the-moody-blues-nights-in-white-satin,Tency Music,8959 +Disney's Dumbo,When I See An Elephant Fly (A Cappella),https://www.jamkazam.com/landing/jamtracks/disneys-dumbo-when-i-see-an-elephant-fly-acapella,Tim Waurick, +Wings,Silly Love Songs,https://www.jamkazam.com/landing/jamtracks/wings-silly-love-songs,Tency Music,32561 +Barbershop Polecat,Down Our Way (A Cappella),https://www.jamkazam.com/landing/jamtracks/barbershop-polecat-down-our-way-acapella,Tim Waurick, +Taylor Swift,Sad Beautiful Tragic,https://www.jamkazam.com/landing/jamtracks/taylor-swift-sad-beautiful-tragic,Tency Music,42456 +Barbershop Polecat,Heart Of My Heart (A Cappella),https://www.jamkazam.com/landing/jamtracks/barbershop-polecat-heart-of-my-heart-acapella,Tim Waurick, +ZZ Top,TV Dinners,https://www.jamkazam.com/landing/jamtracks/zz-top-tv-dinners,Tency Music,30830 +Barbershop Polecat,"Sweet, Sweet Roses Of Morn (A Cappella)",https://www.jamkazam.com/landing/jamtracks/barbershop-polecat-sweet-sweet-roses-of-morn-acapella,Tim Waurick, +The Beatles,Come Together,https://www.jamkazam.com/landing/jamtracks/the-beatles-come-together,Tency Music,12784 +Barbra Streisand,Can't Help Lovin' That Man Of Mine (A Cappella),https://www.jamkazam.com/landing/jamtracks/barbra-streisand-cant-help-lovin-that-man-of-mine-acapella,Tim Waurick, +Jeff Beck,People Get Ready,https://www.jamkazam.com/landing/jamtracks/jeff-beck-people-get-ready,Tency Music,26629 +Barbra Streisand,The Way We Were (A Cappella),https://www.jamkazam.com/landing/jamtracks/barbra-streisand-the-way-we-were-acapella,Tim Waurick, +Beach Boys,Little Saint Nick (A Cappella),https://www.jamkazam.com/landing/jamtracks/beach-boys-little-saint-nick-acapella,Tim Waurick, +Ivy Queen,Quiero Bailar,https://www.jamkazam.com/landing/jamtracks/ivy-queen-quiero-bailar,Tency Music,27003 +The Cascades,Rhythm Of The Rain,https://www.jamkazam.com/landing/jamtracks/the-cascades-rhythm-of-the-rain,Tency Music,13856 +Ben E. King,Stand By Me (A Cappella),https://www.jamkazam.com/landing/jamtracks/ben-e-king-stand-by-me-acapella,Tim Waurick, +Bing Crosby,Let Me Call You Sweetheart (A Cappella),https://www.jamkazam.com/landing/jamtracks/bing-crosby-let-me-call-you-sweetheart-acapella,Tim Waurick, +Bobby Darin,As Long As I'm Singin' (A Cappella),https://www.jamkazam.com/landing/jamtracks/bobby-darin-as-long-as-im-singin-acapella,Tim Waurick, +Disney's Toy Story,When She Loved Me (A Cappella),https://www.jamkazam.com/landing/jamtracks/disneys-toy-story-when-she-loved-me-acapella,Tim Waurick, +Elvis Presley,Love Me Tender,https://www.jamkazam.com/landing/jamtracks/elvis-presley-love-me-tender,Tency Music,6997 +Carousel The Musical,Soliloquy (A Cappella),https://www.jamkazam.com/landing/jamtracks/carousel-the-musical-soliloquy-acapella,Tim Waurick, +Cassandra Wilson,Darkness On The Delta (A Cappella),https://www.jamkazam.com/landing/jamtracks/cassandra-wilson-darkness-on-the-delta-acapella,Tim Waurick, +Chauncey Olcott,My Wild Irish Rose (A Cappella),https://www.jamkazam.com/landing/jamtracks/chauncey-olcott-my-wild-irish-rose-acapella,Tim Waurick, +Chicago The Musical,Razzle Dazzle (A Cappella),https://www.jamkazam.com/landing/jamtracks/chicago-the-musical-razzle-dazzle-acapella,Tim Waurick, +Christmas Song,Jingle Bells (A Cappella),https://www.jamkazam.com/landing/jamtracks/christmas-song-jingle-bells-acapella,Tim Waurick, +Christopher Cross,Sailing (A Cappella),https://www.jamkazam.com/landing/jamtracks/christopher-cross-sailing-acapella,Tim Waurick, +Connie Francis,You Tell Me Your Dream (A Cappella),https://www.jamkazam.com/landing/jamtracks/connie-francis-you-tell-me-your-dream-acapella,Tim Waurick, +Daniel Powter,Bad Day (A Cappella),https://www.jamkazam.com/landing/jamtracks/daniel-powter-bad-day-acapella,Tim Waurick, +Stevie Wonder,Isn't She Lovely,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-isnt-she-lovely,Tency Music,21304 +Donald O'Connor,Make 'Em Laugh (A Cappella),https://www.jamkazam.com/landing/jamtracks/donald-oconnor-make-em-laugh-acapella,Tim Waurick, +Eagles,Desperado (A Cappella),https://www.jamkazam.com/landing/jamtracks/eagles-desperado-acapella,Tim Waurick, +Ella Fitzgerald,You Took Advantage Of Me (A Cappella),https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-you-took-advantage-of-me-acapella,Tim Waurick, +Elvis,"I Want You, I Need You, I Love You (A Cappella)",https://www.jamkazam.com/landing/jamtracks/elvis-i-want-you-i-need-you-i-love-you-acapella,Tim Waurick, +Elvis,Love Me (A Cappella),https://www.jamkazam.com/landing/jamtracks/elvis-love-me-acapella,Tim Waurick, +Eric Clapton,Tears In Heaven (A Cappella),https://www.jamkazam.com/landing/jamtracks/eric-clapton-tears-in-heaven-acapella,Tim Waurick, +Ernie Ford,Sixteen Tons (A Cappella),https://www.jamkazam.com/landing/jamtracks/ernie-ford-sixteen-tons-acapella,Tim Waurick, +Fleetwood Mac,Songbird (A Cappella),https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-songbird-acapella,Tim Waurick, +Francis Farmer & Elvis,Aura Lee (A Cappella),https://www.jamkazam.com/landing/jamtracks/francis-farmer--elvis-aura-lee-acapella,Tim Waurick, +Frank Sinatra,The Tender Trap (A Cappella),https://www.jamkazam.com/landing/jamtracks/frank-sinatra-the-tender-trap-acapella,Tim Waurick, +Pantera,Walk,https://www.jamkazam.com/landing/jamtracks/pantera-walk,Tency Music,21921 +The Gap Band,Outstanding,https://www.jamkazam.com/landing/jamtracks/the-gap-band-outstanding,Tency Music,38024 +Fred Astaire,Santa Claus Is Coming To Town (A Cappella),https://www.jamkazam.com/landing/jamtracks/fred-astaire-santa-claus-is-coming-to-town-acapella,Tim Waurick, +James Taylor,Something (A Cappella),https://www.jamkazam.com/landing/jamtracks/james-taylor-something-acapella,Tim Waurick, +Eric Clapton,Before You Accuse Me,https://www.jamkazam.com/landing/jamtracks/eric-clapton-before-you-accuse-me,Tency Music,37884 +Jeff Buckley,Hallelujah (A Cappella),https://www.jamkazam.com/landing/jamtracks/jeff-buckley-hallelujah-acapella,Tim Waurick, +Rascal Flatts,Life Is A Highway,https://www.jamkazam.com/landing/jamtracks/rascal-flatts-life-is-a-highway,Tency Music,19460 +Michael Buble,Everything (A Cappella),https://www.jamkazam.com/landing/jamtracks/michael-buble-everything-acapella,Tim Waurick, +Michael Buble,Try A Little Tenderness (A Cappella),https://www.jamkazam.com/landing/jamtracks/michael-buble-try-a-little-tenderness-acapella,Tim Waurick, +Madness,Wings of a Dove,https://www.jamkazam.com/landing/jamtracks/madness-wings-of-a-dove,Paris Music,S4778 +Nat King Cole,Handful Of Stars (A Cappella),https://www.jamkazam.com/landing/jamtracks/nat-king-cole-handful-of-stars-acapella,Tim Waurick, +The Naked And Famous,Young Blood,https://www.jamkazam.com/landing/jamtracks/the-naked-and-famous-young-blood,Tency Music,39365 +Nightmare Before Christmas,What's This (A Cappella),https://www.jamkazam.com/landing/jamtracks/nightmare-before-christmas-whats-this-acapella,Tim Waurick, +Oliver,Consider Yourself (A Cappella),https://www.jamkazam.com/landing/jamtracks/oliver-consider-yourself-acapella,Tim Waurick, +Susan Tedeschi,Rock Me Right,https://www.jamkazam.com/landing/jamtracks/susan-tedeschi-rock-me-right,Tency Music,47207 +Jess Glynne,Hold My Hand,https://www.jamkazam.com/landing/jamtracks/jess-glynne-hold-my-hand,Paris Music,S4804 +Pete's Dragon,It's Not Easy (A Cappella),https://www.jamkazam.com/landing/jamtracks/petes-dragon-its-not-easy-acapella,Tim Waurick, +Peter Pan,"Never, Never Land (A Cappella)",https://www.jamkazam.com/landing/jamtracks/peter-pan-never-never-land-acapella,Tim Waurick, +Plain White T's,The Rhythm Of Love (A Cappella),https://www.jamkazam.com/landing/jamtracks/plain-white-ts-the-rhythm-of-love-acapella,Tim Waurick, +Norah Jones,Sunrise,https://www.jamkazam.com/landing/jamtracks/norah-jones-sunrise,Tency Music,5260 +Queen,Fat Bottomed Girls (A Cappella),https://www.jamkazam.com/landing/jamtracks/queen-fat-bottomed-girls-acapella,Tim Waurick, +Queen,Killer Queen (A Cappella),https://www.jamkazam.com/landing/jamtracks/queen-killer-queen-acapella,Tim Waurick, +Queen,Seaside Rendezvous (A Cappella),https://www.jamkazam.com/landing/jamtracks/queen-seaside-rendezvous-acapella,Tim Waurick, +Queen,Under Pressure (A Cappella),https://www.jamkazam.com/landing/jamtracks/queen-under-pressure-acapella,Tim Waurick, +Queen,We Are The Champions (A Cappella),https://www.jamkazam.com/landing/jamtracks/queen-we-are-the-champions-acapella,Tim Waurick, +10cc,I'm Not In Love,https://www.jamkazam.com/landing/jamtracks/10cc-im-not-in-love,Tency Music,13798 +Simpsons,Coney Island Baby (A Cappella),https://www.jamkazam.com/landing/jamtracks/simpsons-coney-island-baby-acapella,Tim Waurick, +Procol Harum,A Whiter Shade Of Pale,https://www.jamkazam.com/landing/jamtracks/procol-harum-a-whiter-shade-of-pale,Tency Music,7009 +Black Sabbath,Paranoid,https://www.jamkazam.com/landing/jamtracks/black-sabbath-paranoid,Tency Music,13117 +Stephen Foster,If You've Only Got A Mustache (A Cappella),https://www.jamkazam.com/landing/jamtracks/stephen-foster-if-youve-only-got-a-mustache-acapella,Tim Waurick, +Texas,Say What You Want,https://www.jamkazam.com/landing/jamtracks/texas-say-what-you-want,Tency Music,12999 +Orchestral Manoeuvres In The Dark,Pandora's Box,https://www.jamkazam.com/landing/jamtracks/orchestral-manoeuvres-in-the-dark-pandoras-box,Paris Music,S3745 +The Outfield,All The Love,https://www.jamkazam.com/landing/jamtracks/the-outfield-all-the-love,Tency Music,38070 +The Beach Boys,Surfin USA,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-surfin-usa,Tency Music,12882 +The Band Wagon Film,That's Entertainment (A Cappella),https://www.jamkazam.com/landing/jamtracks/the-band-wagon-film-thats-entertainment-acapella,Tim Waurick, +The Drifters,Under The Boardwalk (A Cappella),https://www.jamkazam.com/landing/jamtracks/the-drifters-under-the-boardwalk-acapella,Tim Waurick, +Tony Bennett,Blue Velvet (A Cappella),https://www.jamkazam.com/landing/jamtracks/tony-bennett-blue-velvet-acapella,Tim Waurick, +Elvis Presley,American Trilogy,https://www.jamkazam.com/landing/jamtracks/elvis-presley-american-trilogy,Paris Music,S3311 +West Side Story,Something's Coming (A Cappella),https://www.jamkazam.com/landing/jamtracks/west-side-story-somethings-coming-acapella,Tim Waurick, +West Side Story,Somewhere (A Cappella),https://www.jamkazam.com/landing/jamtracks/west-side-story-somewhere-acapella,Tim Waurick, +Creedence Clearwater Revival,Proud Mary (A Cappella),https://www.jamkazam.com/landing/jamtracks/creedence-clearwater-revival-proud-mary-acapella,Tim Waurick, +Harold Melvin And The Blue Notes,If You Don't Know Me By Now,https://www.jamkazam.com/landing/jamtracks/harold-melvin-and-the-blue-notes-if-you-dont-know-me-by-now,Tency Music,18359 +The Gipsy Kings,Volare,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-volare,Tency Music,6576 +The Beatles,I Am The Walrus,https://www.jamkazam.com/landing/jamtracks/the-beatles-i-am-the-walrus,Tency Music,10475 +Andy Williams,Can't Take My Eyes off You,https://www.jamkazam.com/landing/jamtracks/andy-williams-cant-take-my-eyes-off-you,Paris Music,S3763 +Phil Collins,Against All Odds (Take A Look At Me Now),https://www.jamkazam.com/landing/jamtracks/phil-collins-against-all-odds-take-a-look-at-me-now,Tency Music,7226 +Natalie Cole,Route 66,https://www.jamkazam.com/landing/jamtracks/natalie-cole-route-66,Tency Music,17477 +Jessie J,Flashlight,https://www.jamkazam.com/landing/jamtracks/jessie-j-flashlight,Tency Music,49182 +George Michael & Mary J Blige,As,https://www.jamkazam.com/landing/jamtracks/george-michael--mary-j-blige-as,Paris Music,S4440 +Pussycat,Mississippi ,https://www.jamkazam.com/landing/jamtracks/pussycat-mississippi,Paris Music,S3062 +The White Stripes,Seven Nation Army,https://www.jamkazam.com/landing/jamtracks/the-white-stripes-seven-nation-army,Tency Music,12548 +Mel Torme,I'm Coming Home Baby,https://www.jamkazam.com/landing/jamtracks/mel-torme-im-coming-home-baby,Paris Music,S3343 +Gospel Singer,The Church In The Wildwood,https://www.jamkazam.com/landing/jamtracks/gospel-singer-the-church-in-the-wildwood,Tency Music,24706 +Sarah Vaughan,Lullaby Of Birdland,https://www.jamkazam.com/landing/jamtracks/sarah-vaughan-lullaby-of-birdland,Tency Music,18714 +Sam Cooke,Twistin The Night Away,https://www.jamkazam.com/landing/jamtracks/sam-cooke-twistin-the-night-away,Tency Music,33583 +Joe Cocker,You Are So Beautiful,https://www.jamkazam.com/landing/jamtracks/joe-cocker-you-are-so-beautiful,Tency Music,13156 +Coldplay,Magic,https://www.jamkazam.com/landing/jamtracks/coldplay-magic,Tency Music,46509 +Tim McGraw,Shotgun Rider,https://www.jamkazam.com/landing/jamtracks/tim-mcgraw-shotgun-rider,Tency Music,48631 +Frank Sinatra,I've Got The World On A String,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-ive-got-the-world-on-a-string,Tency Music,41149 +Radiohead,Creep,https://www.jamkazam.com/landing/jamtracks/radiohead-creep,Tency Music,12543 +Bob Marley,No Woman No Cry,https://www.jamkazam.com/landing/jamtracks/bob-marley-no-woman-no-cry,Tency Music,12024 +The Band,The Night They Drove Old Dixie Down,https://www.jamkazam.com/landing/jamtracks/the-band-the-night-they-drove-old-dixie-down,Tency Music,47998 +The Roots,Here I Come,https://www.jamkazam.com/landing/jamtracks/the-roots-here-i-come,Paris Music,S4419 +Puddle Of Mudd,Control,https://www.jamkazam.com/landing/jamtracks/puddle-of-mudd-control,Tency Music,24196 +New Found Glory,All Downhill From Here,https://www.jamkazam.com/landing/jamtracks/new-found-glory-all-downhill-from-here,Tency Music,27281 +Team America World Police,Freedom Isn't Free,https://www.jamkazam.com/landing/jamtracks/team-america-world-police-freedom-isnt-free,Tency Music,33757 +Aerosmith,Walk This Way,https://www.jamkazam.com/landing/jamtracks/aerosmith-walk-this-way,Tency Music,12424 +Lana Del Rey,Summertime Sadness,https://www.jamkazam.com/landing/jamtracks/lana-del-rey-summertime-sadness,Tency Music,39808 +The Pogues,Love You 'Til the End,https://www.jamkazam.com/landing/jamtracks/the-pogues-love-you-til-the-end,Paris Music,S3049 +Buddy Holly,"Wait Til The Sun Shines, Nellie (A Cappella)",https://www.jamkazam.com/landing/jamtracks/buddy-holly-wait-til-the-sun-shines-nellie-acapella,Tim Waurick, +David Guetta,Titanium (A Cappella),https://www.jamkazam.com/landing/jamtracks/david-guetta-titanium-acapella,Tim Waurick, +Paul Simon,Late In The Evening,https://www.jamkazam.com/landing/jamtracks/paul-simon-late-in-the-evening,Tency Music,41677 +Uncle Kracker,Follow Me,https://www.jamkazam.com/landing/jamtracks/uncle-kracker-follow-me,Tency Music,21767 +Alicia Keys,If I Ain't Got You,https://www.jamkazam.com/landing/jamtracks/alicia-keys-if-i-aint-got-you,Tency Music,5259 +Beck,Loser,https://www.jamkazam.com/landing/jamtracks/beck-loser,Tency Music,29531 +Nat King Cole,On the Street Where You Live,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-on-the-street-where-you-live,Paris Music,S2706 +Dr. Hook,Sylvia's Mother,https://www.jamkazam.com/landing/jamtracks/dr-hook-sylvias-mother,Paris Music,S4043 +The Allman Brothers Band,Jessica,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-jessica,Tency Music,47781 +Paul Simon,50 Ways To Leave Your Lover,https://www.jamkazam.com/landing/jamtracks/paul-simon-50-ways-to-leave-your-lover,Tency Music,9294 +Grand Funk Railroad,We're An American Band,https://www.jamkazam.com/landing/jamtracks/grand-funk-railroad-were-an-american-band,Tency Music,15951 +The Beach Boys,Girls On The Beach,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-girls-on-the-beach,Tency Music,28687 +Sara Evans,A Little Bit Stronger,https://www.jamkazam.com/landing/jamtracks/sara-evans-a-little-bit-stronger,Tency Music,34644 +Evanescence,Bring Me To Life,https://www.jamkazam.com/landing/jamtracks/evanescence-bring-me-to-life,Tency Music,6213 +Kelly Clarkson,Miss Independent,https://www.jamkazam.com/landing/jamtracks/kelly-clarkson-miss-independent,Paris Music,S0620 +Frank Sinatra,All Of Me (A Cappella),https://www.jamkazam.com/landing/jamtracks/frank-sinatra-all-of-me-acapella,Tim Waurick, +Glee Cast,Fat Bottomed Girls,https://www.jamkazam.com/landing/jamtracks/glee-cast-fat-bottomed-girls,Paris Music,S3875 +Fats Domino,Walkin To New Orleans,https://www.jamkazam.com/landing/jamtracks/fats-domino-walkin-to-new-orleans,Tency Music,7192 +Huey Lewis,It's Alright (A Cappella),https://www.jamkazam.com/landing/jamtracks/huey-lewis-its-alright-acapella,Tim Waurick, +Taylor Swift,Mine,https://www.jamkazam.com/landing/jamtracks/taylor-swift-mine,Tency Music,32600 +Gin Blossoms,Hey Jealousy,https://www.jamkazam.com/landing/jamtracks/gin-blossoms-hey-jealousy,Tency Music,15886 +Blake Shelton,Boys Round Here,https://www.jamkazam.com/landing/jamtracks/blake-shelton-boys-round-here,Tency Music,43610 +Jill Scott,A Long Walk,https://www.jamkazam.com/landing/jamtracks/jill-scott-a-long-walk,Tency Music,16297 +Queen,Bicycle Race,https://www.jamkazam.com/landing/jamtracks/queen-bicycle-race,Tency Music,21211 +The Who,Substitute,https://www.jamkazam.com/landing/jamtracks/the-who-substitute,Paris Music,S2942 +T Rex,Get It On,https://www.jamkazam.com/landing/jamtracks/t-rex-get-it-on,Paris Music,S3160 +Average White Band,Pick Up The Pieces,https://www.jamkazam.com/landing/jamtracks/average-white-band-pick-up-the-pieces,Tency Music,40400 +Van Halen,Jamie's Cryin,https://www.jamkazam.com/landing/jamtracks/van-halen-jamies-cryin,Tency Music,17810 +Lionel Richie,Hello,https://www.jamkazam.com/landing/jamtracks/lionel-richie-hello,Tency Music,12110 +Maroon 5,Moves Like Jagger,https://www.jamkazam.com/landing/jamtracks/maroon-5-moves-like-jagger,Tency Music,37540 +From Phantom Of The Opera,All I Ask of You,https://www.jamkazam.com/landing/jamtracks/from-phantom-of-the-opera-all-i-ask-of-you,Paris Music,S1407 +Roxette,It Must Have Been Love,https://www.jamkazam.com/landing/jamtracks/roxette-it-must-have-been-love,Tency Music,13956 +My Chemical Romance,The Ghost Of You,https://www.jamkazam.com/landing/jamtracks/my-chemical-romance-the-ghost-of-you,Tency Music,27343 +The Byrds,So You Want To Be A Rock And Roll Star,https://www.jamkazam.com/landing/jamtracks/the-byrds-so-you-want-to-be-a-rock-and-roll-star,Tency Music,32789 +Toots And The Maytals,Do The Reggay,https://www.jamkazam.com/landing/jamtracks/toots-and-the-maytals-do-the-reggay,Tency Music,27410 +Peter Pan,You Can Fly (A Cappella),https://www.jamkazam.com/landing/jamtracks/peter-pan-you-can-fly-acapella,Tim Waurick, +Stevie Wonder,Isn't She Lovely (A Cappella),https://www.jamkazam.com/landing/jamtracks/stevie-wonder-isnt-she-lovely-acapella,Tim Waurick, +Crosby Stills And Nash,Teach Your Children,https://www.jamkazam.com/landing/jamtracks/crosby-stills-and-nash-teach-your-children,Tency Music,15440 +Sweeney Todd,Not While I'm Around (A Cappella),https://www.jamkazam.com/landing/jamtracks/sweeney-todd-not-while-im-around-acapella,Tim Waurick, +Ella Fitzgerald,Take The A Train,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-take-the-a-train,Tency Music,34488 +Avenged Sevenfold,Afterlife,https://www.jamkazam.com/landing/jamtracks/avenged-sevenfold-afterlife,Tency Music,29745 +Bon Jovi,Bad Medicine,https://www.jamkazam.com/landing/jamtracks/bon-jovi-bad-medicine,Tency Music,20988 +Wizard Of Oz,Over The Rainbow (A Cappella),https://www.jamkazam.com/landing/jamtracks/wizard-of-oz-over-the-rainbow-acapella,Tim Waurick, +Patsy Cline,You Belong To Me,https://www.jamkazam.com/landing/jamtracks/patsy-cline-you-belong-to-me,Tency Music,48811 +Vera Lynn,A Nightengale Sang In Berkeley Square (A Cappella),https://www.jamkazam.com/landing/jamtracks/vera-lynn-a-nightengale-sang-in-berkeley-square-acapella,Tim Waurick, +Dr. Hook,When You're In Love With a Beautiful Woman,https://www.jamkazam.com/landing/jamtracks/dr-hook-when-youre-in-love-with-a-beautiful-woman,Paris Music,S3324 +Journey,Don't Stop Believing,https://www.jamkazam.com/landing/jamtracks/journey-dont-stop-believing,Tency Music,14609 +The Rolling Stones,19th Nervous Breakdown,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-19th-nervous-breakdown,Tency Music,11356 +Ruby Turner,Stay With Me Baby,https://www.jamkazam.com/landing/jamtracks/ruby-turner-stay-with-me-baby,Paris Music,S2927 +Celia Cruz,La Vida Es Un Carnaval,https://www.jamkazam.com/landing/jamtracks/celia-cruz-la-vida-es-un-carnaval,Tency Music,20624 +The Carpenters,For All We Know,https://www.jamkazam.com/landing/jamtracks/the-carpenters-for-all-we-know,Tency Music,10096 +Nena,99 Luftballons,https://www.jamkazam.com/landing/jamtracks/nena-99-luftballons,Tency Music,19192 +Cole Porter,I've Got You Under My Skin,https://www.jamkazam.com/landing/jamtracks/cole-porter-ive-got-you-under-my-skin,Tency Music,27632 +EMF,Unbelievable,https://www.jamkazam.com/landing/jamtracks/emf-unbelievable,Tency Music,15657 +One Direction,Everything About You,https://www.jamkazam.com/landing/jamtracks/one-direction-everything-about-you,Paris Music,S4111 +Steve Harley & Cockney Rebel,Make Me Smile (Come Up & See Me),https://www.jamkazam.com/landing/jamtracks/steve-harley--cockney-rebel-make-me-smile-come-up--see-me,Paris Music,S4058 +Huey Lewis And The News,Power Of Love,https://www.jamkazam.com/landing/jamtracks/huey-lewis-and-the-news-power-of-love,Tency Music,13537 +No Doubt,Just A Girl,https://www.jamkazam.com/landing/jamtracks/no-doubt-just-a-girl,Tency Music,10998 +Scissor Sisters,I Don't Feel Like Dancin,https://www.jamkazam.com/landing/jamtracks/scissor-sisters-i-dont-feel-like-dancin,Tency Music,9128 +Living Colour,Cult Of Personality,https://www.jamkazam.com/landing/jamtracks/living-colour-cult-of-personality,Tency Music,16577 +America,A Horse With No Name,https://www.jamkazam.com/landing/jamtracks/america-a-horse-with-no-name,Tency Music,11288 +Travis Tritt,It's A Great Day To Be Alive,https://www.jamkazam.com/landing/jamtracks/travis-tritt-its-a-great-day-to-be-alive,Tency Music,7759 +R.E.M,Shiny Happy People,https://www.jamkazam.com/landing/jamtracks/rem-shiny-happy-people,Paris Music,S4802 +The Andrews Sisters,In The Mood,https://www.jamkazam.com/landing/jamtracks/the-andrews-sisters-in-the-mood,Tency Music,32105 +Elvis Costello,Alison,https://www.jamkazam.com/landing/jamtracks/elvis-costello-alison,Tency Music,32752 +Gospel Singer,O For A Thousand Tongues To Sing,https://www.jamkazam.com/landing/jamtracks/gospel-singer-o-for-a-thousand-tongues-to-sing,Tency Music,24258 +Soul Asylum,Runaway Train,https://www.jamkazam.com/landing/jamtracks/soul-asylum-runaway-train,Tency Music,6525 +Hank Williams Jr,All My Rowdy Friends Have Settled Down,https://www.jamkazam.com/landing/jamtracks/hank-williams-jr-all-my-rowdy-friends-have-settled-down,Tency Music,24972 +Eve,Let Me Blow Ya Mind,https://www.jamkazam.com/landing/jamtracks/eve-let-me-blow-ya-mind,Tency Music,15695 +Alicia Keys,Fallin' - Live Arragnement,https://www.jamkazam.com/landing/jamtracks/alicia-keys-fallin---live-arragnement,Paris Music,S4448 +The Cult,She Sells Sanctuary,https://www.jamkazam.com/landing/jamtracks/the-cult-she-sells-sanctuary,Tency Music,38183 +The Notorious B.I.G.,Big Poppa,https://www.jamkazam.com/landing/jamtracks/the-notorious-big-big-poppa,Tency Music,27604 +Bette Midler,Wind Beneath My Wings,https://www.jamkazam.com/landing/jamtracks/bette-midler-wind-beneath-my-wings,Paris Music,S0311 +Panic At The Disco,Lying Is The Most Fun A Girl Can Have Without Taking Her Clothes Off,https://www.jamkazam.com/landing/jamtracks/panic-at-the-disco-lying-is-the-most-fun-a-girl-can-have-without-taking-her-clothes-off,Tency Music,11873 +Elton John,I Guess That's Why They Call It The Blues,https://www.jamkazam.com/landing/jamtracks/elton-john-i-guess-thats-why-they-call-it-the-blues,Tency Music,7705 +Carrie Underwood,Before He Cheats,https://www.jamkazam.com/landing/jamtracks/carrie-underwood-before-he-cheats,Tency Music,13469 +Breaking Benjamin,So Cold,https://www.jamkazam.com/landing/jamtracks/breaking-benjamin-so-cold,Tency Music,15219 +Of Monsters and Men,Little Talks,https://www.jamkazam.com/landing/jamtracks/of-monsters-and-men-little-talks,Tency Music,40663 +Eric Clapton,Cocaine,https://www.jamkazam.com/landing/jamtracks/eric-clapton-cocaine,Tency Music,11290 +Switchfoot,Meant To Live,https://www.jamkazam.com/landing/jamtracks/switchfoot-meant-to-live,Tency Music,26415 +Jazzy Gershwin,I Got Rhythm,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-i-got-rhythm,Tency Music,35523 +The Beach Boys,Kokomo,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-kokomo,Tency Music,19269 +Kansas,Dust In The Wind,https://www.jamkazam.com/landing/jamtracks/kansas-dust-in-the-wind,Tency Music,13676 +Karen Souza,Bette Davis Eyes,https://www.jamkazam.com/landing/jamtracks/karen-souza-bette-davis-eyes,Tency Music,42716 +Pet Shop Boys Feat. Dusty Springfield,What Have I Done To Deserve This ?,https://www.jamkazam.com/landing/jamtracks/pet-shop-boys-feat-dusty-springfield-what-have-i-done-to-deserve-this-,Paris Music,S2573 +Sade,By Your Side,https://www.jamkazam.com/landing/jamtracks/sade-by-your-side,Paris Music,S1889 +Ballroom Orchestra,Samba Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-samba-groove,Tency Music,27666 +The Beatles,Long And Winding Road,https://www.jamkazam.com/landing/jamtracks/the-beatles-long-and-winding-road,Music Master Exchange LLC, +The Bangles,Walk Like An Egyptian,https://www.jamkazam.com/landing/jamtracks/the-bangles-walk-like-an-egyptian,Tency Music,10908 +Owl City,Fireflies,https://www.jamkazam.com/landing/jamtracks/owl-city-fireflies,Tency Music,25363 +Ariana Grande,Bang Bang,https://www.jamkazam.com/landing/jamtracks/ariana-grande-bang-bang,Tency Music,47472 +Gospel Song,Vict'ry Road (A Cappella),https://www.jamkazam.com/landing/jamtracks/gospel-song-victry-road-acapella,Tim Waurick, +Celine Dion,My Heart Will Go On,https://www.jamkazam.com/landing/jamtracks/celine-dion-my-heart-will-go-on,Tency Music,5942 +Billy Joel,The Longest Time,https://www.jamkazam.com/landing/jamtracks/billy-joel-the-longest-time,Tency Music,15102 +Breaking Benjamin,Sooner Or Later,https://www.jamkazam.com/landing/jamtracks/breaking-benjamin-sooner-or-later,Tency Music,15220 +Oasis,Some Might Say,https://www.jamkazam.com/landing/jamtracks/oasis-some-might-say,Paris Music,S0143 +Karen Souza,Have You Ever Seen The Rain,https://www.jamkazam.com/landing/jamtracks/karen-souza-have-you-ever-seen-the-rain,Tency Music,42234 +Lionel Richie,All Night Long,https://www.jamkazam.com/landing/jamtracks/lionel-richie-all-night-long,Paris Music,S3381 +KT Tunstall,Black Horse And The Cherry Tree,https://www.jamkazam.com/landing/jamtracks/kt-tunstall-black-horse-and-the-cherry-tree,Tency Music,5342 +Pink Floyd,Shine On You Crazy Diamond (Parts I-V),https://www.jamkazam.com/landing/jamtracks/pink-floyd-shine-on-you-crazy-diamond-parts-i-v,Tency Music,20806 +Gospel Singer,A Mighty Fortress Is Our God,https://www.jamkazam.com/landing/jamtracks/gospel-singer-a-mighty-fortress-is-our-god,Tency Music,24205 +Steely Dan,Hey Nineteen,https://www.jamkazam.com/landing/jamtracks/steely-dan-hey-nineteen,Tency Music,18464 +Seether,Broken,https://www.jamkazam.com/landing/jamtracks/seether-broken,Tency Music,20069 +Shania Twain,Forever And For Always,https://www.jamkazam.com/landing/jamtracks/shania-twain-forever-and-for-always,Tency Music,6239 +Frank Sinatra,I'm Gonna Live Till I Die (A Cappella),https://www.jamkazam.com/landing/jamtracks/frank-sinatra-im-gonna-live-till-i-die-acapella,Tim Waurick, +Leon Jackson,When You Believe,https://www.jamkazam.com/landing/jamtracks/leon-jackson-when-you-believe,Paris Music,S2381 +P.O.D. Payable On Death,Alive,https://www.jamkazam.com/landing/jamtracks/pod-payable-on-death-alive,Tency Music,24159 +Stan Getz,So Danco Samba,https://www.jamkazam.com/landing/jamtracks/stan-getz-so-danco-samba,Tency Music,43488 +The Dave Brubeck Quartet,Take Five,https://www.jamkazam.com/landing/jamtracks/the-dave-brubeck-quartet-take-five,Tency Music,31745 +Tal Bachman,She's So High,https://www.jamkazam.com/landing/jamtracks/tal-bachman-shes-so-high,Tency Music,8515 +Manfred Mann,The Mighty Quinn (Quinn The Eskimo),https://www.jamkazam.com/landing/jamtracks/manfred-mann-the-mighty-quinn-quinn-the-eskimo,Tency Music,6324 +Frank Sinatra,The Very Thought Of You (A Cappella),https://www.jamkazam.com/landing/jamtracks/frank-sinatra-the-very-thought-of-you-acapella,Tim Waurick, +Tarrus Riley,Human Nature,https://www.jamkazam.com/landing/jamtracks/tarrus-riley-human-nature,Paris Music,S3325 +John Mellencamp,Hurts So Good,https://www.jamkazam.com/landing/jamtracks/john-mellencamp-hurts-so-good,Tency Music,11470 +Garth Brooks,Friends In Low Places,https://www.jamkazam.com/landing/jamtracks/garth-brooks-friends-in-low-places,Tency Music,7125 +Neil Young,Southern Man,https://www.jamkazam.com/landing/jamtracks/neil-young-southern-man,Tency Music,44934 +The Cars,My Best Friends Girl,https://www.jamkazam.com/landing/jamtracks/the-cars-my-best-friends-girl,Paris Music,S0838 +Ram Jam,Black Betty,https://www.jamkazam.com/landing/jamtracks/ram-jam-black-betty,Paris Music,S0949 +Lynyrd Skynyrd,Simple Man,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-simple-man,Tency Music,23988 +Adam Lambert,Whataya Want From Me,https://www.jamkazam.com/landing/jamtracks/adam-lambert-whataya-want-from-me,Tency Music,27563 +Sergio Mendes,Berimbau,https://www.jamkazam.com/landing/jamtracks/sergio-mendes-berimbau,Tency Music,29448 +Outkast,Hey Ya,https://www.jamkazam.com/landing/jamtracks/outkast-hey-ya,Tency Music,5743 +Of Monsters And Men,King And Lionheart,https://www.jamkazam.com/landing/jamtracks/of-monsters-and-men-king-and-lionheart,Tency Music,43162 +Prince,Kiss,https://www.jamkazam.com/landing/jamtracks/prince-kiss,Tency Music,11339 +Lynyrd Skynyrd,Free Bird,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-free-bird,Tency Music,16663 +The Cure,Boys Don't Cry,https://www.jamkazam.com/landing/jamtracks/the-cure-boys-dont-cry,Tency Music,30665 +Eva Cassidy,Ain't No Sunshine,https://www.jamkazam.com/landing/jamtracks/eva-cassidy-aint-no-sunshine,Tency Music,24058 +R. Kelly,Bump N Grind,https://www.jamkazam.com/landing/jamtracks/r-kelly-bump-n-grind,Tency Music,26027 +Ska-P,Cannabis,https://www.jamkazam.com/landing/jamtracks/ska-p-cannabis,Tency Music,41852 +The White Stripes,Blue Orchid,https://www.jamkazam.com/landing/jamtracks/the-white-stripes-blue-orchid,Tency Music,32073 +Johnny Cash,Ring Of Fire,https://www.jamkazam.com/landing/jamtracks/johnny-cash-ring-of-fire,Tency Music,5476 +Joe Nichols,Tequila Makes Her Clothes Fall Off,https://www.jamkazam.com/landing/jamtracks/joe-nichols-tequila-makes-her-clothes-fall-off,Tency Music,16339 +The Beatles,Don't Let Me Down,https://www.jamkazam.com/landing/jamtracks/the-beatles-dont-let-me-down,Tency Music,22725 +Marc Anthony,Valio La Pena (Salsa Version),https://www.jamkazam.com/landing/jamtracks/marc-anthony-valio-la-pena-salsa-version,Tency Music,48478 +Eric Clapton,Promises,https://www.jamkazam.com/landing/jamtracks/eric-clapton-promises,Tency Music,45626 +Cole Porter,It's De-Lovely,https://www.jamkazam.com/landing/jamtracks/cole-porter-its-de-lovely,Tency Music,28946 +Maroon 5,She Will Be Loved,https://www.jamkazam.com/landing/jamtracks/maroon-5-she-will-be-loved,Tency Music,5286 +The Pixies,Monkey Gone To Heaven,https://www.jamkazam.com/landing/jamtracks/the-pixies-monkey-gone-to-heaven,Paris Music,S4425 +The Beatles,Eleanor Rigby,https://www.jamkazam.com/landing/jamtracks/the-beatles-eleanor-rigby,Tency Music,10486 +Talking Heads,Burning Down The House,https://www.jamkazam.com/landing/jamtracks/talking-heads-burning-down-the-house,Tency Music,21093 +Billie Holiday,All Of Me,https://www.jamkazam.com/landing/jamtracks/billie-holiday-all-of-me,Tency Music,9321 +Steely Dan,Do It Again,https://www.jamkazam.com/landing/jamtracks/steely-dan-do-it-again,Tency Music,18467 +Beyonce,Drunk In Love,https://www.jamkazam.com/landing/jamtracks/beyonce-drunk-in-love,Tency Music,45887 +Dr. Hook,A Little Bit More,https://www.jamkazam.com/landing/jamtracks/dr-hook-a-little-bit-more,Paris Music,S3354 +James Brown,Papa's Got A Brand New Bag,https://www.jamkazam.com/landing/jamtracks/james-brown-papas-got-a-brand-new-bag,Tency Music,13562 +Ballroom Orchestra,Salsa Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-salsa-groove,Tency Music,28558 +Ingrid Michaelson,The Way I Am,https://www.jamkazam.com/landing/jamtracks/ingrid-michaelson-the-way-i-am,Tency Music,23911 +Gospel Singer,Onward Christian Soldiers,https://www.jamkazam.com/landing/jamtracks/gospel-singer-onward-christian-soldiers,Tency Music,29362 +George Michael,I Can't Make You Love Me,https://www.jamkazam.com/landing/jamtracks/george-michael-i-cant-make-you-love-me,Paris Music,S2700 +Madonna,Like A Prayer,https://www.jamkazam.com/landing/jamtracks/madonna-like-a-prayer,Tency Music,12946 +James Morrison,Broken Strings,https://www.jamkazam.com/landing/jamtracks/james-morrison-broken-strings,Tency Music,21585 +The Platters,Smoke Gets In Your Eyes,https://www.jamkazam.com/landing/jamtracks/the-platters-smoke-gets-in-your-eyes,Tency Music,11100 +Peter Frampton,Show Me The Way,https://www.jamkazam.com/landing/jamtracks/peter-frampton-show-me-the-way,Tency Music,13546 +One Direction,Steal My Girl,https://www.jamkazam.com/landing/jamtracks/one-direction-steal-my-girl,Tency Music,47818 +Robbie Williams,Me & My Monkey,https://www.jamkazam.com/landing/jamtracks/robbie-williams-me--my-monkey,Paris Music,S0855 +Rascal Flatts,Bless The Broken Road,https://www.jamkazam.com/landing/jamtracks/rascal-flatts-bless-the-broken-road,Tency Music,11535 +Chaka Khan,I'm Every Woman,https://www.jamkazam.com/landing/jamtracks/chaka-khan-im-every-woman,Tency Music,30015 +Maroon 5,Animals,https://www.jamkazam.com/landing/jamtracks/maroon-5-animals,Tency Music,47619 +Maroon 5,Sugar,https://www.jamkazam.com/landing/jamtracks/maroon-5-sugar,Tency Music,48055 +Olly Murs,Wrapped Up,https://www.jamkazam.com/landing/jamtracks/olly-murs-wrapped-up,Tency Music,47945 +Snoop Dogg,Gin And Juice,https://www.jamkazam.com/landing/jamtracks/snoop-dogg-gin-and-juice,Tency Music,33549 +The Doobie Brothers,Takin It To The Streets,https://www.jamkazam.com/landing/jamtracks/the-doobie-brothers-takin-it-to-the-streets,Tency Music,17589 +Elvis Presley,Your Cheating Heart,https://www.jamkazam.com/landing/jamtracks/elvis-presley-your-cheating-heart,Paris Music,S4806 +Pat Boone,Speedy Gonzalez,https://www.jamkazam.com/landing/jamtracks/pat-boone-speedy-gonzalez,Paris Music,S2559 +Gatlin Brothers,All The Gold In California,https://www.jamkazam.com/landing/jamtracks/gatlin-brothers-all-the-gold-in-california,Tency Music,41032 +Jazzy Gershwin,I'm Bidin My Time,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-im-bidin-my-time,Tency Music,35525 +The Searchers,Sweets for My Sweet,https://www.jamkazam.com/landing/jamtracks/the-searchers-sweets-for-my-sweet,Paris Music,S4050 +Justin Bieber,Boyfriend,https://www.jamkazam.com/landing/jamtracks/justin-bieber-boyfriend,Tency Music,40107 +Asleep At The Wheel,Miles And Miles Of Texas,https://www.jamkazam.com/landing/jamtracks/asleep-at-the-wheel-miles-and-miles-of-texas,Tency Music,48137 +The Police,Walking On The Moon,https://www.jamkazam.com/landing/jamtracks/the-police-walking-on-the-moon,Tency Music,13789 +Gospel Singer,Joyful Joyful We Adore Thee,https://www.jamkazam.com/landing/jamtracks/gospel-singer-joyful-joyful-we-adore-thee,Tency Music,24217 +Marcy Playground,Sex And Candy,https://www.jamkazam.com/landing/jamtracks/marcy-playground-sex-and-candy,Tency Music,9929 +Peter Sarstedt,Where Do You Go To My Lovely,https://www.jamkazam.com/landing/jamtracks/peter-sarstedt-where-do-you-go-to-my-lovely,Paris Music,S0160 +Alvin Stardust,Pretend,https://www.jamkazam.com/landing/jamtracks/alvin-stardust-pretend,Paris Music,S4115 +Bonnie Raitt,I Can't Make You Love Me,https://www.jamkazam.com/landing/jamtracks/bonnie-raitt-i-cant-make-you-love-me,Tency Music,6353 +The Beatles,Here Comes The Sun,https://www.jamkazam.com/landing/jamtracks/the-beatles-here-comes-the-sun,Tency Music,10898 +Ozark Mountain Daredevils,Jackie Blue,https://www.jamkazam.com/landing/jamtracks/ozark-mountain-daredevils-jackie-blue,Tency Music,38015 +Iggy Azalea,Black Widow,https://www.jamkazam.com/landing/jamtracks/iggy-azalea-black-widow,Tency Music,47499 +Radiohead,The Tourist,https://www.jamkazam.com/landing/jamtracks/radiohead-the-tourist,Tency Music,37866 +Taylor Swift,The Moment I Knew,https://www.jamkazam.com/landing/jamtracks/taylor-swift-the-moment-i-knew,Tency Music,42171 +U2,With Or Without You,https://www.jamkazam.com/landing/jamtracks/u2-with-or-without-you,Tency Music,11772 +Owl City,Vanilla Twilight,https://www.jamkazam.com/landing/jamtracks/owl-city-vanilla-twilight,Tency Music,27689 +Taylor Swift,Blank Space,https://www.jamkazam.com/landing/jamtracks/taylor-swift-blank-space,Tency Music,48008 +The Black Crowes,She Talks To Angels,https://www.jamkazam.com/landing/jamtracks/the-black-crowes-she-talks-to-angels,Tency Music,41454 +The Beach Boys,California Dreamin,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-california-dreamin,Tency Music,38783 +The Notorious B.I.G.,Hypnotize,https://www.jamkazam.com/landing/jamtracks/the-notorious-big-hypnotize,Tency Music,27626 +Steve Earle,Galway Girl,https://www.jamkazam.com/landing/jamtracks/steve-earle-galway-girl,Tency Music,24612 +Ozzy Osbourne,No More Tears,https://www.jamkazam.com/landing/jamtracks/ozzy-osbourne-no-more-tears,Tency Music,20989 +Katy Perry,California Gurls,https://www.jamkazam.com/landing/jamtracks/katy-perry-california-gurls,Tency Music,30443 +The Dubliners,Molly Malone,https://www.jamkazam.com/landing/jamtracks/the-dubliners-molly-malone,Tency Music,41524 +The Raconteurs,Steady As She Goes,https://www.jamkazam.com/landing/jamtracks/the-raconteurs-steady-as-she-goes,Tency Music,33983 +Gospel Singer,Sweet Hour Of Prayer,https://www.jamkazam.com/landing/jamtracks/gospel-singer-sweet-hour-of-prayer,Tency Music,25728 +The Dubliners,The Fields Of Athenry,https://www.jamkazam.com/landing/jamtracks/the-dubliners-the-fields-of-athenry,Tency Music,41944 +Taylor Swift,Hey Stephen,https://www.jamkazam.com/landing/jamtracks/taylor-swift-hey-stephen,Tency Music,23960 +Jason Aldean,Don't You Wanna Stay,https://www.jamkazam.com/landing/jamtracks/jason-aldean-dont-you-wanna-stay,Tency Music,35350 +Panic At The Disco,Nine In The Afternoon,https://www.jamkazam.com/landing/jamtracks/panic-at-the-disco-nine-in-the-afternoon,Tency Music,17501 +The Gipsy Kings,Pida Me La,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-pida-me-la,Tency Music,45734 +Paloma Faith,Beauty Remains,https://www.jamkazam.com/landing/jamtracks/paloma-faith-beauty-remains,Paris Music,S4794 +The Dubliners,The Wild Rover,https://www.jamkazam.com/landing/jamtracks/the-dubliners-the-wild-rover,Tency Music,39320 +The Beatles,Nowhere Man,https://www.jamkazam.com/landing/jamtracks/the-beatles-nowhere-man,Tency Music,21445 +Owl City,Good Time,https://www.jamkazam.com/landing/jamtracks/owl-city-good-time,Tency Music,41218 +The Righteous Brothers,Unchained Melody,https://www.jamkazam.com/landing/jamtracks/the-righteous-brothers-unchained-melody,Tency Music,8284 +Maroon 5,This Love,https://www.jamkazam.com/landing/jamtracks/maroon-5-this-love,Tency Music,5111 +Pantera,Cowboys From Hell,https://www.jamkazam.com/landing/jamtracks/pantera-cowboys-from-hell,Tency Music,21912 +Sublime,Smoke Two Joints,https://www.jamkazam.com/landing/jamtracks/sublime-smoke-two-joints,Tency Music,36737 +Billy Currington,Good Directions,https://www.jamkazam.com/landing/jamtracks/billy-currington-good-directions,Tency Music,24728 +ZZ Top,A Fool For Your Stockings,https://www.jamkazam.com/landing/jamtracks/zz-top-a-fool-for-your-stockings,Tency Music,38820 +Journey,Separate Ways (Worlds Apart),https://www.jamkazam.com/landing/jamtracks/journey-separate-ways-worlds-apart,Tency Music,18352 +The Eagles,Already Gone,https://www.jamkazam.com/landing/jamtracks/the-eagles-already-gone,Tency Music,26518 +Juan Luis Guerra,Bachata En Fukuoka,https://www.jamkazam.com/landing/jamtracks/juan-luis-guerra-bachata-en-fukuoka,Tency Music,31350 +Steve Winwood,Higher Love,https://www.jamkazam.com/landing/jamtracks/steve-winwood-higher-love,Tency Music,47017 +The Kinks,Tired Of Waiting For You,https://www.jamkazam.com/landing/jamtracks/the-kinks-tired-of-waiting-for-you,Tency Music,31583 +The Rolling Stones,Angie,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-angie,Tency Music,11834 +No Doubt,Hella Good,https://www.jamkazam.com/landing/jamtracks/no-doubt-hella-good,Tency Music,6823 +The Eagles,Heartache Tonight,https://www.jamkazam.com/landing/jamtracks/the-eagles-heartache-tonight,Tency Music,6102 +Engelbert Humperdinck,Les Bicyclettes De Belsize,https://www.jamkazam.com/landing/jamtracks/engelbert-humperdinck-les-bicyclettes-de-belsize,Paris Music,S2704 +The Beatles,Rock And Roll Music,https://www.jamkazam.com/landing/jamtracks/the-beatles-rock-and-roll-music,Tency Music,21577 +The Yardbirds,Heart Full Of Soul,https://www.jamkazam.com/landing/jamtracks/the-yardbirds-heart-full-of-soul,Tency Music,34917 +Bonnie Raitt,Nick Of Time,https://www.jamkazam.com/landing/jamtracks/bonnie-raitt-nick-of-time,Tency Music,6408 +Jazzy Gershwin,I've Got A Crush On You,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-ive-got-a-crush-on-you,Tency Music,35526 +Selena Gomez,Love You Like a Love Song,https://www.jamkazam.com/landing/jamtracks/selena-gomez-love-you-like-a-love-song,Paris Music,S3733 +Enrique Iglesias Feat. P Iitbull,I Like It,https://www.jamkazam.com/landing/jamtracks/enrique-iglesias-feat-p-iitbull-i-like-it,Paris Music,S3327 +The O'Jays,Love Train,https://www.jamkazam.com/landing/jamtracks/the-ojays-love-train,Tency Music,28810 +Elton John,Don't Go Breaking My Heart,https://www.jamkazam.com/landing/jamtracks/elton-john-dont-go-breaking-my-heart,Tency Music,13527 +The Beach Boys,Surfin Safari,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-surfin-safari,Tency Music,27380 +The Everly Brothers,Bye Bye Love,https://www.jamkazam.com/landing/jamtracks/the-everly-brothers-bye-bye-love,Tency Music,6178 +Bruce Springsteen,Thunder Road,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-thunder-road,Tency Music,13891 +Pink Floyd,Shine On You Crazy Diamond (Parts VI-IX),https://www.jamkazam.com/landing/jamtracks/pink-floyd-shine-on-you-crazy-diamond-parts-vi-ix,Tency Music,48684 +Madeleine Peyroux,J'Ai Deux Amours,https://www.jamkazam.com/landing/jamtracks/madeleine-peyroux-jai-deux-amours,Tency Music,35362 +Oasis,Supersonic,https://www.jamkazam.com/landing/jamtracks/oasis-supersonic,Tency Music,38179 +Steve Miller Band,Swingtown,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-swingtown,Tency Music,47649 +Fitz And The Tantrums,The Walker,https://www.jamkazam.com/landing/jamtracks/fitz-and-the-tantrums-the-walker,Tency Music,46803 +Smash Mouth,All Star,https://www.jamkazam.com/landing/jamtracks/smash-mouth-all-star,Tency Music,8579 +Free,My Brother Jake,https://www.jamkazam.com/landing/jamtracks/free-my-brother-jake,Paris Music,S2291 +Donna Summer,Hot Stuff,https://www.jamkazam.com/landing/jamtracks/donna-summer-hot-stuff,Tency Music,5408 +Five Finger Death Punch,Bad Company,https://www.jamkazam.com/landing/jamtracks/five-finger-death-punch-bad-company,Tency Music,36456 +The Five Man Electrical Band,Signs,https://www.jamkazam.com/landing/jamtracks/the-five-man-electrical-band-signs,Tency Music,15763 +Ray Lamontagne,Trouble,https://www.jamkazam.com/landing/jamtracks/ray-lamontagne-trouble,Tency Music,25444 +Sarah McLachlan,Ice Cream,https://www.jamkazam.com/landing/jamtracks/sarah-mclachlan-ice-cream,Tency Music,8799 +Steely Dan,Reelin In The Years,https://www.jamkazam.com/landing/jamtracks/steely-dan-reelin-in-the-years,Tency Music,18475 +Elvis Presley,(You're the) Devil In Disguise,https://www.jamkazam.com/landing/jamtracks/elvis-presley-youre-the-devil-in-disguise,Paris Music,S3333 +Poison,Nothin But A Good Time,https://www.jamkazam.com/landing/jamtracks/poison-nothin-but-a-good-time,Tency Music,35487 +Tears For Fears,Advice For The Young At Heart,https://www.jamkazam.com/landing/jamtracks/tears-for-fears-advice-for-the-young-at-heart,Tency Music,41478 +Grace Potter,Stars (Piano Acoustic),https://www.jamkazam.com/landing/jamtracks/grace-potter-stars-piano-acoustic,Tency Music,48366 +The Rolling Stones,Jumpin Jack Flash,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-jumpin-jack-flash,Tency Music,11359 +Coolio,Fantastic Voyage,https://www.jamkazam.com/landing/jamtracks/coolio-fantastic-voyage,Tency Music,35942 +Buck Owens,Act Naturally,https://www.jamkazam.com/landing/jamtracks/buck-owens-act-naturally,Tency Music,6579 +Buddy Holly,It's So Easy,https://www.jamkazam.com/landing/jamtracks/buddy-holly-its-so-easy,Tency Music,17257 +Ariana Grande,Break Free,https://www.jamkazam.com/landing/jamtracks/ariana-grande-break-free,Tency Music,47259 +Rush,Limelight,https://www.jamkazam.com/landing/jamtracks/rush-limelight,Tency Music,40913 +Poison,Every Rose Has Its Thorn,https://www.jamkazam.com/landing/jamtracks/poison-every-rose-has-its-thorn,Tency Music,13544 +The Eagles,Tequila Sunrise,https://www.jamkazam.com/landing/jamtracks/the-eagles-tequila-sunrise,Tency Music,20937 +Blood Sweat And Tears,You've Made Me So Very Happy,https://www.jamkazam.com/landing/jamtracks/blood-sweat-and-tears-youve-made-me-so-very-happy,Tency Music,33224 +The Script,Hall Of Fame,https://www.jamkazam.com/landing/jamtracks/the-script-hall-of-fame,Tency Music,41483 +Lindisfarne,Meet Me On the Corner,https://www.jamkazam.com/landing/jamtracks/lindisfarne-meet-me-on-the-corner,Paris Music,S1413 +The Shadows,Apache,https://www.jamkazam.com/landing/jamtracks/the-shadows-apache,Tency Music,28375 +Van Morrison,Into The Mystic,https://www.jamkazam.com/landing/jamtracks/van-morrison-into-the-mystic,Tency Music,29453 +The Bee Gees,How Can You Mend A Broken Heart,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-how-can-you-mend-a-broken-heart,Tency Music,22340 +Crowded House,Weather With You,https://www.jamkazam.com/landing/jamtracks/crowded-house-weather-with-you,Paris Music,S0084 +Stevie Ray Vaughan,Crossfire,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-crossfire,Tency Music,18452 +Nickelback,How You Remind Me,https://www.jamkazam.com/landing/jamtracks/nickelback-how-you-remind-me,Tency Music,7960 +The Georgia Satellites,Keep Your Hands To Yourself,https://www.jamkazam.com/landing/jamtracks/the-georgia-satellites-keep-your-hands-to-yourself,Tency Music,15880 +One Direction,Little Things,https://www.jamkazam.com/landing/jamtracks/one-direction-little-things,Tency Music,42108 +One Direction,Best Song Ever,https://www.jamkazam.com/landing/jamtracks/one-direction-best-song-ever,Tency Music,44728 +Velvet Revolver,Slither,https://www.jamkazam.com/landing/jamtracks/velvet-revolver-slither,Tency Music,25210 +Neil Sedaka,Breaking Up Is Hard To Do,https://www.jamkazam.com/landing/jamtracks/neil-sedaka-breaking-up-is-hard-to-do,Paris Music,S4219 +Fleetwood Mac,Don't Stop,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-dont-stop,Tency Music,18727 +The Shirelles,Will You Love Me Tomorrow,https://www.jamkazam.com/landing/jamtracks/the-shirelles-will-you-love-me-tomorrow,Tency Music,18022 +The Doors,Light My Fire,https://www.jamkazam.com/landing/jamtracks/the-doors-light-my-fire,Tency Music,6514 +U2,Red Hill Mining Town,https://www.jamkazam.com/landing/jamtracks/u2-red-hill-mining-town,Tency Music,42476 +Steppenwolf,Magic Carpet Ride,https://www.jamkazam.com/landing/jamtracks/steppenwolf-magic-carpet-ride,Tency Music,35884 +OneRepublic,All The Right Moves,https://www.jamkazam.com/landing/jamtracks/onerepublic-all-the-right-moves,Tency Music,27111 +Weezer,Island In The Sun,https://www.jamkazam.com/landing/jamtracks/weezer-island-in-the-sun,Tency Music,14549 +Whitney Houston,Saving All My Love For You,https://www.jamkazam.com/landing/jamtracks/whitney-houston-saving-all-my-love-for-you,Tency Music,13794 +Shinedown,Call Me,https://www.jamkazam.com/landing/jamtracks/shinedown-call-me,Tency Music,38191 +The Doors,Hello I Love You,https://www.jamkazam.com/landing/jamtracks/the-doors-hello-i-love-you,Tency Music,6496 +Steely Dan,Rikki Don't Lose That Number,https://www.jamkazam.com/landing/jamtracks/steely-dan-rikki-dont-lose-that-number,Tency Music,18471 +Joe Jackson,Is She Really Going Out With Him ?,https://www.jamkazam.com/landing/jamtracks/joe-jackson-is-she-really-going-out-with-him-,Paris Music,S0489 +The Traveling Wilburys,End Of The Line,https://www.jamkazam.com/landing/jamtracks/the-traveling-wilburys-end-of-the-line,Tency Music,24162 +Europe,Final Countdown,https://www.jamkazam.com/landing/jamtracks/europe-final-countdown,Paris Music,S4495 +The Traveling Wilburys,Handle With Care,https://www.jamkazam.com/landing/jamtracks/the-traveling-wilburys-handle-with-care,Tency Music,30408 +The Crystals,Da Do Ron Ron,https://www.jamkazam.com/landing/jamtracks/the-crystals-da-do-ron-ron,Paris Music,S0229 +Bon Jovi,Wanted Dead Or Alive,https://www.jamkazam.com/landing/jamtracks/bon-jovi-wanted-dead-or-alive,Tency Music,13163 +Willie Nelson,On The Road Again,https://www.jamkazam.com/landing/jamtracks/willie-nelson-on-the-road-again,Tency Music,17000 +Wiz Khalifa,See You Again,https://www.jamkazam.com/landing/jamtracks/wiz-khalifa-see-you-again,Tency Music,49012 +Within Temptation,Angels,https://www.jamkazam.com/landing/jamtracks/within-temptation-angels,Tency Music,29661 +Uncle Kracker,Good To Be Me,https://www.jamkazam.com/landing/jamtracks/uncle-kracker-good-to-be-me,Tency Music,46801 +The Wanted,Glad You Came,https://www.jamkazam.com/landing/jamtracks/the-wanted-glad-you-came,Tency Music,37675 +Wiz Khalifa,Young Wild And Free,https://www.jamkazam.com/landing/jamtracks/wiz-khalifa-young-wild-and-free,Tency Music,39324 +The Waterboys,Fisherman's Blues,https://www.jamkazam.com/landing/jamtracks/the-waterboys-fishermans-blues,Tency Music,30451 +Ariana Grande,One Last Time,https://www.jamkazam.com/landing/jamtracks/ariana-grande-one-last-time,Tency Music,48667 +Steve Earle,Copperhead Road,https://www.jamkazam.com/landing/jamtracks/steve-earle-copperhead-road,Tency Music,10524 +You+Me,You And Me,https://www.jamkazam.com/landing/jamtracks/youme-you-and-me,Tency Music,47819 +Yeah Yeah Yeahs,Maps,https://www.jamkazam.com/landing/jamtracks/yeah-yeah-yeahs-maps,Tency Music,26221 +Jazzy Gershwin,Of Thee I Sing,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-of-thee-i-sing,Tency Music,35534 +The Cars,Just What I Needed,https://www.jamkazam.com/landing/jamtracks/the-cars-just-what-i-needed,Tency Music,39315 +Ballroom Orchestra,Paso Doble,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-paso-doble,Tency Music,29179 +The Beatles,Magical Mystery Tour,https://www.jamkazam.com/landing/jamtracks/the-beatles-magical-mystery-tour,Tency Music,10487 +Ellie Goulding,How Long Will i Love You?,https://www.jamkazam.com/landing/jamtracks/ellie-goulding-how-long-will-i-love-you,Paris Music,S4429 +Elvis Presley,Jailhouse Rock,https://www.jamkazam.com/landing/jamtracks/elvis-presley-jailhouse-rock,Tency Music,11260 +Iron Maiden,The Trooper,https://www.jamkazam.com/landing/jamtracks/iron-maiden-the-trooper,Tency Music,21887 +Gospel Singer,This Is My Father's World,https://www.jamkazam.com/landing/jamtracks/gospel-singer-this-is-my-fathers-world,Tency Music,24959 +Robbie Williams & Lily Allen,Dream a Little Dream of Me,https://www.jamkazam.com/landing/jamtracks/robbie-williams--lily-allen-dream-a-little-dream-of-me,Paris Music,S4449 +Chico And The Gypsies,La Bohemia,https://www.jamkazam.com/landing/jamtracks/chico-and-the-gypsies-la-bohemia,Tency Music,42352 +OneRepublic,Counting Stars,https://www.jamkazam.com/landing/jamtracks/onerepublic-counting-stars,Tency Music,44237 +Rod Stewart,I Was Only Joking,https://www.jamkazam.com/landing/jamtracks/rod-stewart-i-was-only-joking,Paris Music,S1891 +Josh Turner,Time Is Love,https://www.jamkazam.com/landing/jamtracks/josh-turner-time-is-love,Tency Music,43248 +Third Eye Blind,Jumper,https://www.jamkazam.com/landing/jamtracks/third-eye-blind-jumper,Tency Music,9154 +B.B. King,Come Rain Or Come Shine,https://www.jamkazam.com/landing/jamtracks/bb-king-come-rain-or-come-shine,Tency Music,44685 +Gospel Singer,Blessed Be The Tie That Binds,https://www.jamkazam.com/landing/jamtracks/gospel-singer-blessed-be-the-tie-that-binds,Tency Music,24181 +Jack Johnson,At Or With Me,https://www.jamkazam.com/landing/jamtracks/jack-johnson-at-or-with-me,Tency Music,31352 +Taylor Swift,Fearless,https://www.jamkazam.com/landing/jamtracks/taylor-swift-fearless,Tency Music,21399 +Taylor Swift,Forever And Always (Piano Version),https://www.jamkazam.com/landing/jamtracks/taylor-swift-forever-and-always-piano-version,Tency Music,26618 +The Beatles,If I Fell,https://www.jamkazam.com/landing/jamtracks/the-beatles-if-i-fell,Tency Music,21316 +The Gipsy Kings,Marina Marina,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-marina-marina,Tency Music,24831 +Michael Jackson,The Way You Make Me Feel,https://www.jamkazam.com/landing/jamtracks/michael-jackson-the-way-you-make-me-feel,Tency Music,14408 +Birdy,People Help The People,https://www.jamkazam.com/landing/jamtracks/birdy-people-help-the-people,Tency Music,38399 +Kelly Clarkson,Breakaway,https://www.jamkazam.com/landing/jamtracks/kelly-clarkson-breakaway,Tency Music,5581 +Robert Palmer,Bad Case Of Loving You (Doctor Doctor),https://www.jamkazam.com/landing/jamtracks/robert-palmer-bad-case-of-loving-you-doctor-doctor,Tency Music,17479 +The Pretenders,Back On The Chain Gang,https://www.jamkazam.com/landing/jamtracks/the-pretenders-back-on-the-chain-gang,Tency Music,31591 +Billy Dean,Thank God I'm A Country Boy,https://www.jamkazam.com/landing/jamtracks/billy-dean-thank-god-im-a-country-boy,Tency Music,15096 +Megadeth,Symphony Of Destruction,https://www.jamkazam.com/landing/jamtracks/megadeth-symphony-of-destruction,Tency Music,37146 +Gospel Singer,Tell Me The Stories Of Jesus,https://www.jamkazam.com/landing/jamtracks/gospel-singer-tell-me-the-stories-of-jesus,Tency Music,24954 +Ozzy Osbourne,Dreamer,https://www.jamkazam.com/landing/jamtracks/ozzy-osbourne-dreamer,Tency Music,19097 +Simply Red,For Your Babies,https://www.jamkazam.com/landing/jamtracks/simply-red-for-your-babies,Paris Music,S2709 +Cliff Richard,Such a Night,https://www.jamkazam.com/landing/jamtracks/cliff-richard-such-a-night,Paris Music,S4512 +ZZ Top,Waitin For The Bus,https://www.jamkazam.com/landing/jamtracks/zz-top-waitin-for-the-bus,Tency Music,49160 +Sublime,Caress Me Down,https://www.jamkazam.com/landing/jamtracks/sublime-caress-me-down,Tency Music,40267 +Ed Sheeran,Don't,https://www.jamkazam.com/landing/jamtracks/ed-sheeran-dont,Tency Music,47195 +Switchfoot,Dare You To Move,https://www.jamkazam.com/landing/jamtracks/switchfoot-dare-you-to-move,Tency Music,20865 +The Dubliners,The Rare Old Mountain Dew,https://www.jamkazam.com/landing/jamtracks/the-dubliners-the-rare-old-mountain-dew,Tency Music,42636 +Earth Wind And Fire,September,https://www.jamkazam.com/landing/jamtracks/earth-wind-and-fire-september,Tency Music,12684 +James Taylor,Sweet Baby James,https://www.jamkazam.com/landing/jamtracks/james-taylor-sweet-baby-james,Tency Music,18071 +The Rolling Stones,Gimme Shelter,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-gimme-shelter,Tency Music,30009 +Gary Allan,Watching Airplanes,https://www.jamkazam.com/landing/jamtracks/gary-allan-watching-airplanes,Tency Music,25902 +Mcfly,All About You,https://www.jamkazam.com/landing/jamtracks/mcfly-all-about-you,Paris Music,S1160 +Gospel Singer,Jesus Shall Reign,https://www.jamkazam.com/landing/jamtracks/gospel-singer-jesus-shall-reign,Tency Music,24216 +Flo Rida,Wild Ones,https://www.jamkazam.com/landing/jamtracks/flo-rida-wild-ones,Tency Music,39580 +Patsy Cline,Sweet Dreams,https://www.jamkazam.com/landing/jamtracks/patsy-cline-sweet-dreams,Tency Music,6717 +Taylor Swift,Beautiful Eyes,https://www.jamkazam.com/landing/jamtracks/taylor-swift-beautiful-eyes,Tency Music,24399 +Big Mountain,Baby I Love Your Way,https://www.jamkazam.com/landing/jamtracks/big-mountain-baby-i-love-your-way,Tency Music,11407 +Taylor Swift,Picture To Burn,https://www.jamkazam.com/landing/jamtracks/taylor-swift-picture-to-burn,Tency Music,19926 +Stevie Wonder,For Once In My Life,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-for-once-in-my-life,Tency Music,13706 +The Script,Breakeven (Acoustic),https://www.jamkazam.com/landing/jamtracks/the-script-breakeven-acoustic,Tency Music,44220 +Pitch Perfect,Trebles Finals,https://www.jamkazam.com/landing/jamtracks/pitch-perfect-trebles-finals,Tency Music,42890 +George Strait,Seashores of Old Mexico,https://www.jamkazam.com/landing/jamtracks/george-strait-seashores-of-old-mexico,Paris Music,S4594 +The Drifters,Under The Boardwalk,https://www.jamkazam.com/landing/jamtracks/the-drifters-under-the-boardwalk,Tency Music,11102 +Jackie Wilson,Reet Petite,https://www.jamkazam.com/landing/jamtracks/jackie-wilson-reet-petite,Paris Music,S0238 +Uncle Kracker,Drift Away,https://www.jamkazam.com/landing/jamtracks/uncle-kracker-drift-away,Tency Music,6078 +The Rascals,Good Lovin,https://www.jamkazam.com/landing/jamtracks/the-rascals-good-lovin,Tency Music,10960 +The Beach Boys,California Girls,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-california-girls,Tency Music,12879 +Cee Lo Green,Forget You,https://www.jamkazam.com/landing/jamtracks/cee-lo-green-forget-you,Tency Music,34574 +Tom Petty,Runnin Down A Dream,https://www.jamkazam.com/landing/jamtracks/tom-petty-runnin-down-a-dream,Tency Music,36251 +Sugar Minott,Good Thing Going,https://www.jamkazam.com/landing/jamtracks/sugar-minott-good-thing-going,Paris Music,S0482 +Dixieland Boys,James Street Funeral March,https://www.jamkazam.com/landing/jamtracks/dixieland-boys-james-street-funeral-march,Tency Music,27637 +Jazzy Gershwin,Fascinatin Rhythm,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-fascinatin-rhythm,Tency Music,35519 +Black Eyed Peas,Boom Boom Pow,https://www.jamkazam.com/landing/jamtracks/black-eyed-peas-boom-boom-pow,Tency Music,22545 +Queen,Bohemian Rhapsody,https://www.jamkazam.com/landing/jamtracks/queen-bohemian-rhapsody,Tency Music,12617 +Lucinda Williams,Drunken Angel,https://www.jamkazam.com/landing/jamtracks/lucinda-williams-drunken-angel,Tency Music,42318 +Ub40,Get Along Without You Now,https://www.jamkazam.com/landing/jamtracks/ub40-get-along-without-you-now,Paris Music,S3473 +Racey,Some Girls Will,https://www.jamkazam.com/landing/jamtracks/racey-some-girls-will,Paris Music,S0239 +Enrique Iglesias,Cuando Me Enamoro,https://www.jamkazam.com/landing/jamtracks/enrique-iglesias-cuando-me-enamoro,Tency Music,31094 +Sick Puppies,You're Going Down,https://www.jamkazam.com/landing/jamtracks/sick-puppies-youre-going-down,Tency Music,38809 +Kenny Chesney,American Kids,https://www.jamkazam.com/landing/jamtracks/kenny-chesney-american-kids,Tency Music,47584 +One Direction,What Makes You Beautiful,https://www.jamkazam.com/landing/jamtracks/one-direction-what-makes-you-beautiful,Paris Music,S3743 +Blink-182,I Miss You,https://www.jamkazam.com/landing/jamtracks/blink-182-i-miss-you,Tency Music,15135 +Chumbawamba,Tubthumping,https://www.jamkazam.com/landing/jamtracks/chumbawamba-tubthumping,Tency Music,9654 +Stevie Wonder,I Just Called To Say I Love You,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-i-just-called-to-say-i-love-you,Tency Music,10092 +Rihanna,We Found Love,https://www.jamkazam.com/landing/jamtracks/rihanna-we-found-love,Tency Music,38332 +Flyleaf,All Around Me,https://www.jamkazam.com/landing/jamtracks/flyleaf-all-around-me,Tency Music,24713 +Miranda Lambert,Somethin Bad,https://www.jamkazam.com/landing/jamtracks/miranda-lambert-somethin-bad,Tency Music,47056 +Stereophonics,Maybe Tomorrow,https://www.jamkazam.com/landing/jamtracks/stereophonics-maybe-tomorrow,Tency Music,5185 +Lenny Kravitz,It Ain't Over Till It's Over,https://www.jamkazam.com/landing/jamtracks/lenny-kravitz-it-aint-over-till-its-over,Tency Music,7143 +Edit Piaf,Non Je Ne Regrette Rien,https://www.jamkazam.com/landing/jamtracks/edit-piaf-non-je-ne-regrette-rien,Tency Music,5911 +David Bowie,Starman,https://www.jamkazam.com/landing/jamtracks/david-bowie-starman,Tency Music,12740 +Dorothy Moore,Misty Blue,https://www.jamkazam.com/landing/jamtracks/dorothy-moore-misty-blue,Paris Music,S0655 +Blondie,Heart Of Glass,https://www.jamkazam.com/landing/jamtracks/blondie-heart-of-glass,Tency Music,12447 +Blake Shelton,Sure Be Cool If You Did,https://www.jamkazam.com/landing/jamtracks/blake-shelton-sure-be-cool-if-you-did,Tency Music,42609 +Gloria Estefan,Turn The Beat Around,https://www.jamkazam.com/landing/jamtracks/gloria-estefan-turn-the-beat-around,Tency Music,10052 +Stevie Wonder,Uptight Everything's Alright,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-uptight-everythings-alright,Tency Music,20834 +Rod Stewart,Maggie May,https://www.jamkazam.com/landing/jamtracks/rod-stewart-maggie-may,Tency Music,13968 +Blondie,Tide Is High,https://www.jamkazam.com/landing/jamtracks/blondie-tide-is-high,Paris Music,S4053 +Frank Sinatra,Luck Be A Lady,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-luck-be-a-lady,Tency Music,17895 +Rihanna,Diamonds,https://www.jamkazam.com/landing/jamtracks/rihanna-diamonds,Tency Music,41791 +Texas Tornados,Hey Baby Que Paso,https://www.jamkazam.com/landing/jamtracks/texas-tornados-hey-baby-que-paso,Tency Music,36428 +Paramore,Crush Crush Crush,https://www.jamkazam.com/landing/jamtracks/paramore-crush-crush-crush,Tency Music,18495 +Justin Timberlake,Mirrors,https://www.jamkazam.com/landing/jamtracks/justin-timberlake-mirrors,Tency Music,43067 +The Bee Gees,More Than A Woman,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-more-than-a-woman,Tency Music,13864 +Foreigner,Hot Blooded,https://www.jamkazam.com/landing/jamtracks/foreigner-hot-blooded,Tency Music,39225 +April Wine,Sign Of The Gypsy Queen,https://www.jamkazam.com/landing/jamtracks/april-wine-sign-of-the-gypsy-queen,Tency Music,47167 +From Les Miserables,Bring Him Home,https://www.jamkazam.com/landing/jamtracks/from-les-miserables-bring-him-home,Paris Music,S1899 +Jimmy Cliff,One More (Live Version),https://www.jamkazam.com/landing/jamtracks/jimmy-cliff-one-more-live-version,Paris Music,S3736 +Nickelback,When We Stand Together,https://www.jamkazam.com/landing/jamtracks/nickelback-when-we-stand-together,Tency Music,38448 +Simon And Garfunkel,Scarborough Fair (Canticle),https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-scarborough-fair-canticle,Tency Music,21671 +Big Country,In A Big Country,https://www.jamkazam.com/landing/jamtracks/big-country-in-a-big-country,Tency Music,25183 +Nickelback,If Today Was Your Last Day,https://www.jamkazam.com/landing/jamtracks/nickelback-if-today-was-your-last-day,Tency Music,21558 +The Kinks,Lola,https://www.jamkazam.com/landing/jamtracks/the-kinks-lola,Tency Music,11465 +The Beatles,Norwegian Wood,https://www.jamkazam.com/landing/jamtracks/the-beatles-norwegian-wood,Paris Music,S2403 +A Flock Of Seagulls,I Ran So Far Away,https://www.jamkazam.com/landing/jamtracks/a-flock-of-seagulls-i-ran-so-far-away,Tency Music,21414 +The Carpenters,We've Only Just Begun,https://www.jamkazam.com/landing/jamtracks/the-carpenters-weve-only-just-begun,Tency Music,9764 +Billy Thorpe,Children Of The Sun,https://www.jamkazam.com/landing/jamtracks/billy-thorpe-children-of-the-sun,Tency Music,39943 +Jefferson Airplane,White Rabbit,https://www.jamkazam.com/landing/jamtracks/jefferson-airplane-white-rabbit,Tency Music,11287 +Blood Sweat And Tears,Spinning Wheel,https://www.jamkazam.com/landing/jamtracks/blood-sweat-and-tears-spinning-wheel,Tency Music,32171 +Madness,Prince,https://www.jamkazam.com/landing/jamtracks/madness-prince,Paris Music,S1703 +The Animals,We Gotta Get Out Of This Place,https://www.jamkazam.com/landing/jamtracks/the-animals-we-gotta-get-out-of-this-place,Tency Music,8962 +Dionne Warwick,Heartbreaker,https://www.jamkazam.com/landing/jamtracks/dionne-warwick-heartbreaker,Paris Music,S3326 +The Gipsy Kings,Bamaoleo,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-bamaoleo,Tency Music,17953 +4 Non Blondes,What's Up,https://www.jamkazam.com/landing/jamtracks/4-non-blondes-whats-up,Tency Music,6475 +The Beatles,Dear Prudence,https://www.jamkazam.com/landing/jamtracks/the-beatles-dear-prudence,Tency Music,10473 +The Rolling Stones,Miss You,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-miss-you,Tency Music,16868 +John Denver,"Take Me Home, Country Roads",https://www.jamkazam.com/landing/jamtracks/john-denver-take-me-home-country-roads,Paris Music,S3766 +The Contours,Do You Love Me,https://www.jamkazam.com/landing/jamtracks/the-contours-do-you-love-me,Paris Music,S0243 +Edwin Starr,Stop Her On Sight - S.O.S,https://www.jamkazam.com/landing/jamtracks/edwin-starr-stop-her-on-sight---sos,Paris Music,S4595 +Saliva,Click Click Boom,https://www.jamkazam.com/landing/jamtracks/saliva-click-click-boom,Tency Music,38019 +The Commodores,Three Times A Lady,https://www.jamkazam.com/landing/jamtracks/the-commodores-three-times-a-lady,Tency Music,13632 +Black Sabbath,War Pigs,https://www.jamkazam.com/landing/jamtracks/black-sabbath-war-pigs,Tency Music,17570 +The Knack,My Sharona,https://www.jamkazam.com/landing/jamtracks/the-knack-my-sharona,Tency Music,14192 +Elvis Presley,Elvis Megamix,https://www.jamkazam.com/landing/jamtracks/elvis-presley-elvis-megamix,Paris Music,S1164 +The Chiffons,Sweet Talking' Guy,https://www.jamkazam.com/landing/jamtracks/the-chiffons-sweet-talking-guy,Paris Music,S1417 +Mudvayne,Fall Into Sleep,https://www.jamkazam.com/landing/jamtracks/mudvayne-fall-into-sleep,Tency Music,26312 +Blur,Song 2,https://www.jamkazam.com/landing/jamtracks/blur-song-2,Tency Music,12435 +The Darkness,I Believe In A Thing Called Love,https://www.jamkazam.com/landing/jamtracks/the-darkness-i-believe-in-a-thing-called-love,Tency Music,5214 +The Rolling Stones,Honky Tonk Women,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-honky-tonk-women,Tency Music,11370 +Gospel Singer,Praise Him,https://www.jamkazam.com/landing/jamtracks/gospel-singer-praise-him,Tency Music,29380 +Steve Miller Band,Fly Like An Eagle,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-fly-like-an-eagle,Tency Music,28889 +The Stray Cats,Stray Cat Strut,https://www.jamkazam.com/landing/jamtracks/the-stray-cats-stray-cat-strut,Tency Music,27520 +The Rolling Stones,Time Is On My Side,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-time-is-on-my-side,Tency Music,11354 +Simon And Garfunkel,El Condor Pasa (If I Could),https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-el-condor-pasa-if-i-could,Tency Music,14162 +will.i.am,Scream And Shout,https://www.jamkazam.com/landing/jamtracks/william-scream-and-shout,Tency Music,42336 +Joss Stone,Right To Be Wrong,https://www.jamkazam.com/landing/jamtracks/joss-stone-right-to-be-wrong,Tency Music,5317 +Sha Na Na,Blue Moon,https://www.jamkazam.com/landing/jamtracks/sha-na-na-blue-moon,Paris Music,S0659 +Simon & Garfunkel,America,https://www.jamkazam.com/landing/jamtracks/simon--garfunkel-america,Paris Music,S3883 +Peter Gabriel,Mercy Street,https://www.jamkazam.com/landing/jamtracks/peter-gabriel-mercy-street,Tency Music,45336 +Bo Diddley,I'm A Man,https://www.jamkazam.com/landing/jamtracks/bo-diddley-im-a-man,Tency Music,23874 +Neil Young,Long May You Run,https://www.jamkazam.com/landing/jamtracks/neil-young-long-may-you-run,Tency Music,38442 +Scissor Sisters,Take Your Mama,https://www.jamkazam.com/landing/jamtracks/scissor-sisters-take-your-mama,Tency Music,13669 +Oasis,Champagne Supernova,https://www.jamkazam.com/landing/jamtracks/oasis-champagne-supernova,Tency Music,11037 +Stone Temple Pilots,Interstate Love Song,https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-interstate-love-song,Tency Music,39303 +Sublime,With Rome Panic,https://www.jamkazam.com/landing/jamtracks/sublime-with-rome-panic,Tency Music,38795 +Jazzy Gershwin,S Wonderful,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-s-wonderful,Tency Music,35543 +Pink Floyd,Comfortably Numb,https://www.jamkazam.com/landing/jamtracks/pink-floyd-comfortably-numb,Music Master Exchange LLC, +The Black Keys,Howlin For You,https://www.jamkazam.com/landing/jamtracks/the-black-keys-howlin-for-you,Tency Music,36702 +Elton John,Sad Songs Say So Much,https://www.jamkazam.com/landing/jamtracks/elton-john-sad-songs-say-so-much,Tency Music,13122 +Village People,Y.M.C.A.,https://www.jamkazam.com/landing/jamtracks/village-people-ymca,Tency Music,6926 +Ballroom Orchestra,Foxtrot Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-foxtrot-groove,Tency Music,27615 +Smokey Robinson,I Second That Emotion,https://www.jamkazam.com/landing/jamtracks/smokey-robinson-i-second-that-emotion,Tency Music,9065 +Ballroom Orchestra,Country Waltz,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-country-waltz,Tency Music,18748 +George Strait,Amarillo By Morning,https://www.jamkazam.com/landing/jamtracks/george-strait-amarillo-by-morning,Tency Music,31461 +Pink Floyd,One Of My Turns,https://www.jamkazam.com/landing/jamtracks/pink-floyd-one-of-my-turns,Tency Music,48778 +The Blue Brothers,Expressway To Your Heart,https://www.jamkazam.com/landing/jamtracks/the-blue-brothers-expressway-to-your-heart,Tency Music,11471 +Jamie Cullum,Everlasting Love,https://www.jamkazam.com/landing/jamtracks/jamie-cullum-everlasting-love,Tency Music,21042 +Willie Nelson,Always On My Mind,https://www.jamkazam.com/landing/jamtracks/willie-nelson-always-on-my-mind,Tency Music,17007 +Cutting Crew,(I Just) Died In Your Arms,https://www.jamkazam.com/landing/jamtracks/cutting-crew-i-just-died-in-your-arms,Paris Music,S3355 +Madonna,Live To Tell,https://www.jamkazam.com/landing/jamtracks/madonna-live-to-tell,Tency Music,11333 +Ub40,If It Happens Again,https://www.jamkazam.com/landing/jamtracks/ub40-if-it-happens-again,Paris Music,S4791 +Willie Nelson,City Of New Orleans,https://www.jamkazam.com/landing/jamtracks/willie-nelson-city-of-new-orleans,Tency Music,21381 +Bad Company,Shooting Star,https://www.jamkazam.com/landing/jamtracks/bad-company-shooting-star,Tency Music,41489 +Redbone,Come And Get Your Love,https://www.jamkazam.com/landing/jamtracks/redbone-come-and-get-your-love,Tency Music,48536 +George Michael,Careless Whisper,https://www.jamkazam.com/landing/jamtracks/george-michael-careless-whisper,Paris Music,S3471 +Ian Dury & The Blockheads,Hit Me With Your Rhythm Stick,https://www.jamkazam.com/landing/jamtracks/ian-dury--the-blockheads-hit-me-with-your-rhythm-stick,Paris Music,S4052 +Andrews Sisters,Boogie Woogie Bugle Boy (A Cappella),https://www.jamkazam.com/landing/jamtracks/andrews-sisters-boogie-woogie-bugle-boy-acapella,Tim Waurick, +The Cars,Let's Go,https://www.jamkazam.com/landing/jamtracks/the-cars-lets-go,Tency Music,40564 +Macklemore And Ryan Lewis,Thrift Shop,https://www.jamkazam.com/landing/jamtracks/macklemore-and-ryan-lewis-thrift-shop,Tency Music,42514 +Charlie Daniles Band,Devil Went Down To Georgia,https://www.jamkazam.com/landing/jamtracks/charlie-daniles-band-devil-went-down-to-georgia,Paris Music,S3334 +Robbie Williams,Swing Supreme,https://www.jamkazam.com/landing/jamtracks/robbie-williams-swing-supreme,Paris Music,S4450 +Beyonce,Single Ladies (Put A Ring On It),https://www.jamkazam.com/landing/jamtracks/beyonce-single-ladies-put-a-ring-on-it,Tency Music,21562 +Stevie Wonder,Signed Sealed And Delivered I'm Yours,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-signed-sealed-and-delivered-im-yours,Tency Music,18450 +David Bowie,Fame,https://www.jamkazam.com/landing/jamtracks/david-bowie-fame,Tency Music,15495 +Edith Piaf,La Vie En Rose - (English Version),https://www.jamkazam.com/landing/jamtracks/edith-piaf-la-vie-en-rose---english-version,Tency Music,13169 +Astrud Gilberto & Stan Getz,The Girl From Ipanema (A Cappella),https://www.jamkazam.com/landing/jamtracks/astrud-gilberto--stan-getz-the-girl-from-ipanema-acapella,Tim Waurick, +Barbershop Polecat,Honey-Little 'Lize Medley (A Cappella),https://www.jamkazam.com/landing/jamtracks/barbershop-polecat-honey-little-lize-medley-acapella,Tim Waurick, +The Doobie Brothers,China Grove,https://www.jamkazam.com/landing/jamtracks/the-doobie-brothers-china-grove,Tency Music,25131 +Robbie Williams,Mr. Bojangles,https://www.jamkazam.com/landing/jamtracks/robbie-williams-mr-bojangles,Paris Music,S0266 +Ricky Nelson,Garden Party,https://www.jamkazam.com/landing/jamtracks/ricky-nelson-garden-party,Tency Music,18822 +Sam Bailey,Skyscraper,https://www.jamkazam.com/landing/jamtracks/sam-bailey-skyscraper,Paris Music,S4454 +Taylor Swift,Safe And Sound,https://www.jamkazam.com/landing/jamtracks/taylor-swift-safe-and-sound,Tency Music,39322 +Barbershop Polecat,Sweet And Lovely (A Cappella),https://www.jamkazam.com/landing/jamtracks/barbershop-polecat-sweet-and-lovely-acapella,Tim Waurick, +Steppenwolf,Born To Be Wild,https://www.jamkazam.com/landing/jamtracks/steppenwolf-born-to-be-wild,Paris Music,S1420 +Queen,We Will Rock You,https://www.jamkazam.com/landing/jamtracks/queen-we-will-rock-you,Tency Music,12726 +Stevie Wonder,Superstition,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-superstition,Tency Music,6846 +The Righteous Brothers,You've Lost That Loving Feeling,https://www.jamkazam.com/landing/jamtracks/the-righteous-brothers-youve-lost-that-loving-feeling,Tency Music,9777 +Laurel Aitken,Brown Eyed Girl,https://www.jamkazam.com/landing/jamtracks/laurel-aitken-brown-eyed-girl,Paris Music,S3472 +Avril Lavigne,What The Hell,https://www.jamkazam.com/landing/jamtracks/avril-lavigne-what-the-hell,Tency Music,35829 +Rod Stewart,Do Ya Think I'm Sexy,https://www.jamkazam.com/landing/jamtracks/rod-stewart-do-ya-think-im-sexy,Tency Music,13969 +Ben Folds,You Don't Know Me,https://www.jamkazam.com/landing/jamtracks/ben-folds-you-dont-know-me,Tency Music,42507 +The Beatles,The Ballad Of John And Yoko,https://www.jamkazam.com/landing/jamtracks/the-beatles-the-ballad-of-john-and-yoko,Tency Music,24167 +Sheryl Crow,If It Makes You Happy,https://www.jamkazam.com/landing/jamtracks/sheryl-crow-if-it-makes-you-happy,Paris Music,S0858 +Queen,We Are The Champions,https://www.jamkazam.com/landing/jamtracks/queen-we-are-the-champions,Tency Music,11091 +Olly Murs,Dear Darlin,https://www.jamkazam.com/landing/jamtracks/olly-murs-dear-darlin,Tency Music,43778 +The Beatles,Back in the U.S.S.R.,https://www.jamkazam.com/landing/jamtracks/the-beatles-back-in-the-ussr,Tency Music,12782 +Luther Vandross,Dance With My Father,https://www.jamkazam.com/landing/jamtracks/luther-vandross-dance-with-my-father,Paris Music,S3065 +Zac Brown Band,Knee Deep,https://www.jamkazam.com/landing/jamtracks/zac-brown-band-knee-deep,Tency Music,34969 +Eddy Grant,Electric Avenue,https://www.jamkazam.com/landing/jamtracks/eddy-grant-electric-avenue,Paris Music,S4235 +The Alan Parsons Project,Don't Answer Me,https://www.jamkazam.com/landing/jamtracks/the-alan-parsons-project-dont-answer-me,Tency Music,20582 +Cliff Richard,Sealed With a Kiss,https://www.jamkazam.com/landing/jamtracks/cliff-richard-sealed-with-a-kiss,Paris Music,S4521 +Robert Palmer,She Makes My Day,https://www.jamkazam.com/landing/jamtracks/robert-palmer-she-makes-my-day,Paris Music,S0856 +Gin Blossoms,Follow You Down,https://www.jamkazam.com/landing/jamtracks/gin-blossoms-follow-you-down,Tency Music,10796 +Simon And Garfunkel,The Boxer,https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-the-boxer,Tency Music,9747 +Christina Aguilera,Ain't No Other Man,https://www.jamkazam.com/landing/jamtracks/christina-aguilera-aint-no-other-man,Paris Music,S1714 +The Eagles,Witchy Woman,https://www.jamkazam.com/landing/jamtracks/the-eagles-witchy-woman,Tency Music,6157 +Ivete Sangalo,Perere,https://www.jamkazam.com/landing/jamtracks/ivete-sangalo-perere,Tency Music,21506 +Robert Cray,Smoking Gun,https://www.jamkazam.com/landing/jamtracks/robert-cray-smoking-gun,Tency Music,25060 +The Common Linnets,Calm After The Storm,https://www.jamkazam.com/landing/jamtracks/the-common-linnets-calm-after-the-storm,Tency Music,46537 +Paul Simon,You Can Call Me Al,https://www.jamkazam.com/landing/jamtracks/paul-simon-you-can-call-me-al,Tency Music,13724 +Flyleaf,I'm So Sick,https://www.jamkazam.com/landing/jamtracks/flyleaf-im-so-sick,Tency Music,15771 +Toto,Africa,https://www.jamkazam.com/landing/jamtracks/toto-africa,Tency Music,10783 +Cream,Born Under A Bad Sign,https://www.jamkazam.com/landing/jamtracks/cream-born-under-a-bad-sign,Tency Music,35769 +Beach Boys,Good Vibrations (A Cappella),https://www.jamkazam.com/landing/jamtracks/beach-boys-good-vibrations-acapella,Tim Waurick, +Evanescence,My Immortal,https://www.jamkazam.com/landing/jamtracks/evanescence-my-immortal,Tency Music,5236 +Imagine Dragons,Demons,https://www.jamkazam.com/landing/jamtracks/imagine-dragons-demons,Tency Music,45302 +Cliff Richard,I Love You,https://www.jamkazam.com/landing/jamtracks/cliff-richard-i-love-you,Paris Music,S1332 +Robert Palmer,Simply Irresistable,https://www.jamkazam.com/landing/jamtracks/robert-palmer-simply-irresistable,Tency Music,36268 +Otis Day And The Knights,Shama Lama Ding Dong,https://www.jamkazam.com/landing/jamtracks/otis-day-and-the-knights-shama-lama-ding-dong,Tency Music,36590 +Peggy Lee,How Long Has This Been Going On,https://www.jamkazam.com/landing/jamtracks/peggy-lee-how-long-has-this-been-going-on,Tency Music,29044 +Simon And Garfunkel,The Sound Of Silence,https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-the-sound-of-silence,Tency Music,14163 +The Four Seasons,Walk Like A Man,https://www.jamkazam.com/landing/jamtracks/the-four-seasons-walk-like-a-man,Tency Music,30614 +The Carpenters,Top Of The World,https://www.jamkazam.com/landing/jamtracks/the-carpenters-top-of-the-world,Tency Music,13859 +Beatles,Because (A Cappella),https://www.jamkazam.com/landing/jamtracks/beatles-because-acapella,Tim Waurick, +Stevie Ray Vaughan,The House Is Rockin,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-the-house-is-rockin,Tency Music,18453 +Third Eye Blind,Semi-Charmed Life,https://www.jamkazam.com/landing/jamtracks/third-eye-blind-semi-charmed-life,Tency Music,10384 +Crazy,One Foot Cock,https://www.jamkazam.com/landing/jamtracks/crazy-one-foot-cock,Paris Music,S4073 +Terence Trent D'Arby,Dance Little Sister,https://www.jamkazam.com/landing/jamtracks/terence-trent-darby-dance-little-sister,Tency Music,31484 +The Gipsy Kings,El Mariachi,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-el-mariachi,Tency Music,43403 +Justin Timberlake,Senorita,https://www.jamkazam.com/landing/jamtracks/justin-timberlake-senorita,Paris Music,S0645 +Glen Hansard,Falling Slowly,https://www.jamkazam.com/landing/jamtracks/glen-hansard-falling-slowly,Tency Music,15903 +ZZ Top,Tube Snake Boogie,https://www.jamkazam.com/landing/jamtracks/zz-top-tube-snake-boogie,Tency Music,43977 +The Marshall Tucker Band,Heard It In A Love Song,https://www.jamkazam.com/landing/jamtracks/the-marshall-tucker-band-heard-it-in-a-love-song,Tency Music,27419 +Gerry Rafferty,Baker Street,https://www.jamkazam.com/landing/jamtracks/gerry-rafferty-baker-street,Tency Music,11632 +The Police,So Lonely,https://www.jamkazam.com/landing/jamtracks/the-police-so-lonely,Tency Music,13656 +A Great Big World,Say Something,https://www.jamkazam.com/landing/jamtracks/a-great-big-world-say-something,Tency Music,45511 +Slipknot,Snuff,https://www.jamkazam.com/landing/jamtracks/slipknot-snuff,Tency Music,39463 +Badfinger,No Matter What,https://www.jamkazam.com/landing/jamtracks/badfinger-no-matter-what,Tency Music,28743 +The Allman Brothers Band,Stormy Monday,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-stormy-monday,Tency Music,16834 +Celia Cruz,Yo Vivire,https://www.jamkazam.com/landing/jamtracks/celia-cruz-yo-vivire,Tency Music,26681 +Danzig,Dirty Black Summer,https://www.jamkazam.com/landing/jamtracks/danzig-dirty-black-summer,Tency Music,39951 +Bob Dylan,Lay Lady Lay,https://www.jamkazam.com/landing/jamtracks/bob-dylan-lay-lady-lay,Tency Music,6512 +Hot Chocolate,You Sexy Thing,https://www.jamkazam.com/landing/jamtracks/hot-chocolate-you-sexy-thing,Paris Music,S4064 +Billy Squier,Rock Me Tonite,https://www.jamkazam.com/landing/jamtracks/billy-squier-rock-me-tonite,Tency Music,42479 +Blind Faith,Can't Find My Way Home,https://www.jamkazam.com/landing/jamtracks/blind-faith-cant-find-my-way-home,Tency Music,47643 +The Who,I Can't Explain,https://www.jamkazam.com/landing/jamtracks/the-who-i-cant-explain,Tency Music,33267 +The Mamas And The Papas,California Dreamin,https://www.jamkazam.com/landing/jamtracks/the-mamas-and-the-papas-california-dreamin,Tency Music,5121 +Santana,Smooth,https://www.jamkazam.com/landing/jamtracks/santana-smooth,Tency Music,8700 +Barry White,You're The First The Last My Everything,https://www.jamkazam.com/landing/jamtracks/barry-white-youre-the-first-the-last-my-everything,Tency Music,8643 +Roy Orbison,I Drove All Night,https://www.jamkazam.com/landing/jamtracks/roy-orbison-i-drove-all-night,Paris Music,S3357 +Harry Nilsson,Everybody's Talkin,https://www.jamkazam.com/landing/jamtracks/harry-nilsson-everybodys-talkin,Tency Music,9999 +Glen Campbell,Rhinestone Cowboys,https://www.jamkazam.com/landing/jamtracks/glen-campbell-rhinestone-cowboys,Tency Music,13612 +The Rolling Stones,Beast Of Burden,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-beast-of-burden,Tency Music,27282 +The Eagles,Best Of My Love,https://www.jamkazam.com/landing/jamtracks/the-eagles-best-of-my-love,Tency Music,7120 +Bruce Springsteen,Badlands,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-badlands,Tency Music,11286 +Stevie Wonder,Higher Ground,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-higher-ground,Tency Music,26329 +Extreme,More Than Words,https://www.jamkazam.com/landing/jamtracks/extreme-more-than-words,Tency Music,14009 +Team America World Police,America F*#k Yeah!,https://www.jamkazam.com/landing/jamtracks/team-america-world-police-america-fk-yeah,Tency Music,11912 +Cole Porter,Begin The Beguine,https://www.jamkazam.com/landing/jamtracks/cole-porter-begin-the-beguine,Tency Music,27601 +Kenny Chesney,You And Tequila,https://www.jamkazam.com/landing/jamtracks/kenny-chesney-you-and-tequila,Tency Music,37496 +The Charlie Daniels Band,Devil Went Down To Georgia,https://www.jamkazam.com/landing/jamtracks/the-charlie-daniels-band-devil-went-down-to-georgia,Tency Music,7053 +Kool And The Gang,Jungle Boogie,https://www.jamkazam.com/landing/jamtracks/kool-and-the-gang-jungle-boogie,Tency Music,8960 +Blind Melon,No Rain,https://www.jamkazam.com/landing/jamtracks/blind-melon-no-rain,Tency Music,6518 +Bob Dylan,Mr. Tambourine Man,https://www.jamkazam.com/landing/jamtracks/bob-dylan-mr-tambourine-man,Tency Music,34682 +Jack Johnson,Upside Down,https://www.jamkazam.com/landing/jamtracks/jack-johnson-upside-down,Tency Music,5923 +Radiohead,Fake Plastic Trees,https://www.jamkazam.com/landing/jamtracks/radiohead-fake-plastic-trees,Tency Music,36286 +New Found Glory,My Friends Over You,https://www.jamkazam.com/landing/jamtracks/new-found-glory-my-friends-over-you,Tency Music,19159 +The Blues Brothers,Sweet Home Chicago,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-sweet-home-chicago,Tency Music,17158 +Avicii,Wake Me Up,https://www.jamkazam.com/landing/jamtracks/avicii-wake-me-up,Tency Music,44385 +Matt Cardle,When We Collide,https://www.jamkazam.com/landing/jamtracks/matt-cardle-when-we-collide,Paris Music,S3474 +Cat Stevens,Morning Has Broken,https://www.jamkazam.com/landing/jamtracks/cat-stevens-morning-has-broken,Tency Music,12916 +Gospel Singer,Hosanna Loud Hosanna,https://www.jamkazam.com/landing/jamtracks/gospel-singer-hosanna-loud-hosanna,Tency Music,24203 +The Black Keys,Gold On The Ceiling,https://www.jamkazam.com/landing/jamtracks/the-black-keys-gold-on-the-ceiling,Tency Music,41017 +Nina Simone,I Love You Porgy,https://www.jamkazam.com/landing/jamtracks/nina-simone-i-love-you-porgy,Tency Music,44181 +Good Charlotte,Lifestyles Of The Rich And Famous,https://www.jamkazam.com/landing/jamtracks/good-charlotte-lifestyles-of-the-rich-and-famous,Tency Music,7207 +Big And Rich,Save A Horse (Ride A Cowboy),https://www.jamkazam.com/landing/jamtracks/big-and-rich-save-a-horse-ride-a-cowboy,Tency Music,8398 +The Commitments,I Can't Stand The Rain,https://www.jamkazam.com/landing/jamtracks/the-commitments-i-cant-stand-the-rain,Tency Music,10631 +Lana Del Rey,Born To Die,https://www.jamkazam.com/landing/jamtracks/lana-del-rey-born-to-die,Tency Music,39211 +Gordon Lightfoot,If You Could Read My Mind,https://www.jamkazam.com/landing/jamtracks/gordon-lightfoot-if-you-could-read-my-mind,Tency Music,25542 +Bob Marley,Get Up Stand Up,https://www.jamkazam.com/landing/jamtracks/bob-marley-get-up-stand-up,Tency Music,17269 +My Chemical Romance,I'm Not Okay (I Promise),https://www.jamkazam.com/landing/jamtracks/my-chemical-romance-im-not-okay-i-promise,Tency Music,29052 +Peggy Lee,Fever,https://www.jamkazam.com/landing/jamtracks/peggy-lee-fever,Tency Music,14182 +Count Basie,Cute,https://www.jamkazam.com/landing/jamtracks/count-basie-cute,Tency Music,29610 +Pink Floyd,Breathe In The Air,https://www.jamkazam.com/landing/jamtracks/pink-floyd-breathe-in-the-air,Tency Music,38930 +The Beatles,And I Love Her,https://www.jamkazam.com/landing/jamtracks/the-beatles-and-i-love-her,Tency Music,21439 +The Commodores,Brick House,https://www.jamkazam.com/landing/jamtracks/the-commodores-brick-house,Tency Music,15400 +The Jackson 5,Shake Your Body Down To The Ground,https://www.jamkazam.com/landing/jamtracks/the-jackson-5-shake-your-body-down-to-the-ground,Tency Music,21041 +Lana Del Rey,Summertime Sadness (Cedric Gervais Remix),https://www.jamkazam.com/landing/jamtracks/lana-del-rey-summertime-sadness-cedric-gervais-remix,Tency Music,44957 +K.C. And The Sunshine Band,Get Down Tonight,https://www.jamkazam.com/landing/jamtracks/kc-and-the-sunshine-band-get-down-tonight,Tency Music,15581 +Santana,No One To Depend On,https://www.jamkazam.com/landing/jamtracks/santana-no-one-to-depend-on,Tency Music,7629 +Lynyrd Skynyrd,Sweet Home Alabama,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-sweet-home-alabama,Tency Music,6987 +Bob Marley,I Shot The Sheriff,https://www.jamkazam.com/landing/jamtracks/bob-marley-i-shot-the-sheriff,Tency Music,12542 +Hank Williams Jr,Whiskey Bent And Hell Bound,https://www.jamkazam.com/landing/jamtracks/hank-williams-jr-whiskey-bent-and-hell-bound,Tency Music,15984 +Ella Fitzgerald,The Lady Is A Tramp,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-the-lady-is-a-tramp,Tency Music,36417 +Bob Dylan,The Times They Are A Changin,https://www.jamkazam.com/landing/jamtracks/bob-dylan-the-times-they-are-a-changin,Tency Music,11350 +Sad Cafe,Every Day Hurts,https://www.jamkazam.com/landing/jamtracks/sad-cafe-every-day-hurts,Paris Music,S0275 +Lilly Allen,Somewhere Only We Know,https://www.jamkazam.com/landing/jamtracks/lilly-allen-somewhere-only-we-know,Tency Music,45636 +Jack Johnson,I Got You,https://www.jamkazam.com/landing/jamtracks/jack-johnson-i-got-you,Tency Music,45413 +J-Sqruipt,Don't Worry,https://www.jamkazam.com/landing/jamtracks/j-sqruipt-dont-worry,Drumma Boy, +Queensryche,Silent Lucidity,https://www.jamkazam.com/landing/jamtracks/queensryche-silent-lucidity,Tency Music,30796 +Pink,Try,https://www.jamkazam.com/landing/jamtracks/pink-try,Tency Music,41682 +Of Monsters And Men,Mountain Sound,https://www.jamkazam.com/landing/jamtracks/of-monsters-and-men-mountain-sound,Tency Music,43523 +R. Kelly,I Believe I Can Fly,https://www.jamkazam.com/landing/jamtracks/r-kelly-i-believe-i-can-fly,Tency Music,11188 +Bastille,Pompeii,https://www.jamkazam.com/landing/jamtracks/bastille-pompeii,Tency Music,43275 +Meghan Trainor,Dear Future Husband,https://www.jamkazam.com/landing/jamtracks/meghan-trainor-dear-future-husband,Paris Music,S4817 +Jeff Beck,I Put A Spell On You,https://www.jamkazam.com/landing/jamtracks/jeff-beck-i-put-a-spell-on-you,Tency Music,45915 +Adam & The Ants,Stand & Deliver,https://www.jamkazam.com/landing/jamtracks/adam--the-ants-stand--deliver,Paris Music,S3359 +Peter Gabriel,Red Rain,https://www.jamkazam.com/landing/jamtracks/peter-gabriel-red-rain,Tency Music,44948 +Adele,Someone Like You,https://www.jamkazam.com/landing/jamtracks/adele-someone-like-you,Tency Music,36011 +Buddy Holly,That'll Be The Day,https://www.jamkazam.com/landing/jamtracks/buddy-holly-thatll-be-the-day,Tency Music,27511 +Taylor Swift,Never Grow Up,https://www.jamkazam.com/landing/jamtracks/taylor-swift-never-grow-up,Tency Music,34840 +Muse,Supermassive Black Hole,https://www.jamkazam.com/landing/jamtracks/muse-supermassive-black-hole,Tency Music,12553 +Disney,A Little Patch Of Heaven (A Cappella),https://www.jamkazam.com/landing/jamtracks/disney-a-little-patch-of-heaven-acapella,Tim Waurick, +Cake,The Distance,https://www.jamkazam.com/landing/jamtracks/cake-the-distance,Tency Music,39692 +James Taylor,You've Got A Friend,https://www.jamkazam.com/landing/jamtracks/james-taylor-youve-got-a-friend,Tency Music,13696 +Alison Krauss,Baby Now That I've Found You,https://www.jamkazam.com/landing/jamtracks/alison-krauss-baby-now-that-ive-found-you,Tency Music,11089 +Fuel,Shimmer,https://www.jamkazam.com/landing/jamtracks/fuel-shimmer,Tency Music,9400 +Pink Floyd,Brain Damage,https://www.jamkazam.com/landing/jamtracks/pink-floyd-brain-damage,Tency Music,40449 +B.B. King,Let The Good Times Roll,https://www.jamkazam.com/landing/jamtracks/bb-king-let-the-good-times-roll,Tency Music,39416 +Tom Petty,Mary Jane's Last Dance,https://www.jamkazam.com/landing/jamtracks/tom-petty-mary-janes-last-dance,Tency Music,29638 +Calvin Harris,Blame,https://www.jamkazam.com/landing/jamtracks/calvin-harris-blame,Tency Music,47602 +The Corrs,When The Stars Go Blue,https://www.jamkazam.com/landing/jamtracks/the-corrs-when-the-stars-go-blue,Tency Music,6825 +Ballroom Orchestra,Swing Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-swing-groove,Tency Music,41110 +Jack Johnson,You And Your Heart,https://www.jamkazam.com/landing/jamtracks/jack-johnson-you-and-your-heart,Tency Music,29753 +Iggy Azalea,Fancy,https://www.jamkazam.com/landing/jamtracks/iggy-azalea-fancy,Tency Music,47499 +Gospel Singer,Faith Of Our Fathers,https://www.jamkazam.com/landing/jamtracks/gospel-singer-faith-of-our-fathers,Tency Music,24213 +Calvin Harris,Outside,https://www.jamkazam.com/landing/jamtracks/calvin-harris-outside,Tency Music,48039 +Elvis,A Fool Such As I (A Cappella),https://www.jamkazam.com/landing/jamtracks/elvis-a-fool-such-as-i-acapella,Tim Waurick, +The Eagles,Life In The Fast Lane,https://www.jamkazam.com/landing/jamtracks/the-eagles-life-in-the-fast-lane,Tency Music,20933 +Gospel Singer,All Hail The Power Of Jesus Name,https://www.jamkazam.com/landing/jamtracks/gospel-singer-all-hail-the-power-of-jesus-name,Tency Music,29474 +Hall And Oates,I Can't Go For That (No Can Do),https://www.jamkazam.com/landing/jamtracks/hall-and-oates-i-cant-go-for-that-no-can-do,Tency Music,15971 +Blink-182,All The Small Things,https://www.jamkazam.com/landing/jamtracks/blink-182-all-the-small-things,Tency Music,8858 +Sixpence None The Richer,Kiss Me,https://www.jamkazam.com/landing/jamtracks/sixpence-none-the-richer-kiss-me,Tency Music,9345 +The Smashing Pumpkins,Tonight Tonight,https://www.jamkazam.com/landing/jamtracks/the-smashing-pumpkins-tonight-tonight,Paris Music,S4456 +Gladys Knight And The Pips,Midnight Train To Georgia,https://www.jamkazam.com/landing/jamtracks/gladys-knight-and-the-pips-midnight-train-to-georgia,Tency Music,11284 +The Rolling Stones,Wild Horses,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-wild-horses,Tency Music,11361 +Tommy James And The Shondells,Crimson And Clover,https://www.jamkazam.com/landing/jamtracks/tommy-james-and-the-shondells-crimson-and-clover,Tency Music,41126 +Santana,Corazon Espinado,https://www.jamkazam.com/landing/jamtracks/santana-corazon-espinado,Tency Music,11698 +John Denver,Sunshine On My Shoulders,https://www.jamkazam.com/landing/jamtracks/john-denver-sunshine-on-my-shoulders,Tency Music,9780 +Fun,Some Nights,https://www.jamkazam.com/landing/jamtracks/fun-some-nights,Tency Music,40747 +Leona Lewis,Better In Time,https://www.jamkazam.com/landing/jamtracks/leona-lewis-better-in-time,Tency Music,17660 +Robbie Williams,Candy,https://www.jamkazam.com/landing/jamtracks/robbie-williams-candy,Paris Music,S4065 +Michael McDonald,What A Fool Believes,https://www.jamkazam.com/landing/jamtracks/michael-mcdonald-what-a-fool-believes,Tency Music,37172 +Carrie Underwood,Blown Away,https://www.jamkazam.com/landing/jamtracks/carrie-underwood-blown-away,Tency Music,40405 +Judas Priest,Breaking The Law,https://www.jamkazam.com/landing/jamtracks/judas-priest-breaking-the-law,Tency Music,21542 +Lee Ann Womack,I Hope You Dance,https://www.jamkazam.com/landing/jamtracks/lee-ann-womack-i-hope-you-dance,Tency Music,7323 +Take That,Greatest Day,https://www.jamkazam.com/landing/jamtracks/take-that-greatest-day,Paris Music,S2728 +Skid Row,18 And Life,https://www.jamkazam.com/landing/jamtracks/skid-row-18-and-life,Tency Music,22291 +B.J. Thomas,Another Somebody Done Somebody Wrong Song,https://www.jamkazam.com/landing/jamtracks/bj-thomas-another-somebody-done-somebody-wrong-song,Tency Music,6176 +Glen Campbell,It's Only Make Believe,https://www.jamkazam.com/landing/jamtracks/glen-campbell-its-only-make-believe,Paris Music,S4844 +Tammy Wynette,Stand By Your Man,https://www.jamkazam.com/landing/jamtracks/tammy-wynette-stand-by-your-man,Tency Music,6185 +Ne-Yo,Mad,https://www.jamkazam.com/landing/jamtracks/ne-yo-mad,Tency Music,21719 +Camila,Mientes,https://www.jamkazam.com/landing/jamtracks/camila-mientes,Tency Music,36062 +Golden Earring,Radar Love,https://www.jamkazam.com/landing/jamtracks/golden-earring-radar-love,Tency Music,22391 +Sting,Shape Of My Heart,https://www.jamkazam.com/landing/jamtracks/sting-shape-of-my-heart,Tency Music,24011 +Jennifer Lopez,Dance Again,https://www.jamkazam.com/landing/jamtracks/jennifer-lopez-dance-again,Tency Music,40311 +Deacon Blue,Fergus Sings the Blues,https://www.jamkazam.com/landing/jamtracks/deacon-blue-fergus-sings-the-blues,Paris Music,S4460 +Timbaland,If We Ever Meet Again,https://www.jamkazam.com/landing/jamtracks/timbaland-if-we-ever-meet-again,Tency Music,27879 +Girls Aloud,"Sexy! No, No, No",https://www.jamkazam.com/landing/jamtracks/girls-aloud-sexy-no-no-no,Paris Music,S2306 +Ray Charles,You Don't Know Me (Duet),https://www.jamkazam.com/landing/jamtracks/ray-charles-you-dont-know-me-duet,Tency Music,44747 +Grease,You're The One That I Want,https://www.jamkazam.com/landing/jamtracks/grease-youre-the-one-that-i-want,Tency Music,12374 +Marc Anthony,Vivir Mi Vida,https://www.jamkazam.com/landing/jamtracks/marc-anthony-vivir-mi-vida,Tency Music,44918 +The B-52's,Love Shack,https://www.jamkazam.com/landing/jamtracks/the-b-52s-love-shack,Tency Music,13049 +Steve Earle,The Devil's Right Hand,https://www.jamkazam.com/landing/jamtracks/steve-earle-the-devils-right-hand,Tency Music,39976 +Beastie Boys,(You Gotta) Fight For Your Right (To Party),https://www.jamkazam.com/landing/jamtracks/beastie-boys-you-gotta-fight-for-your-right-to-party,Tency Music,12430 +Everly Brothers,"Bye Bye, Love (A Cappella)",https://www.jamkazam.com/landing/jamtracks/everly-brothers-bye-bye-love-acapella,Tim Waurick, +Pink Floyd,Us And Them,https://www.jamkazam.com/landing/jamtracks/pink-floyd-us-and-them,Tency Music,37906 +Soft Cell,Tainted Love,https://www.jamkazam.com/landing/jamtracks/soft-cell-tainted-love,Tency Music,12279 +The Elgins,Heaven Must Have Sent You,https://www.jamkazam.com/landing/jamtracks/the-elgins-heaven-must-have-sent-you,Paris Music,S4075 +Electric Light Orchestra,Long Black Road,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-long-black-road,Tency Music,47734 +The Doors,Roadhouse Blues,https://www.jamkazam.com/landing/jamtracks/the-doors-roadhouse-blues,Tency Music,9838 +Billy Ray Cyrus,Achy Breaky Heart,https://www.jamkazam.com/landing/jamtracks/billy-ray-cyrus-achy-breaky-heart,Tency Music,6728 +The Gipsy Kings,Baila Me,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-baila-me,Tency Music,21028 +Old Crow Medicine Show,Wagon Wheel,https://www.jamkazam.com/landing/jamtracks/old-crow-medicine-show-wagon-wheel,Tency Music,36688 +Split Enz,I Got You,https://www.jamkazam.com/landing/jamtracks/split-enz-i-got-you,Tency Music,41836 +The Pretty Reckless,Make Me Wanna Die,https://www.jamkazam.com/landing/jamtracks/the-pretty-reckless-make-me-wanna-die,Tency Music,30556 +Steve Miller Band,Take The Money And Run,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-take-the-money-and-run,Tency Music,45568 +Lyle Lovett,That's Right You're Not From Texas,https://www.jamkazam.com/landing/jamtracks/lyle-lovett-thats-right-youre-not-from-texas,Tency Music,24349 +Tina Turner & Rod Stewart,It Takes Two,https://www.jamkazam.com/landing/jamtracks/tina-turner--rod-stewart-it-takes-two,Paris Music,S3358 +The Doors,Break On Through To The Other Side,https://www.jamkazam.com/landing/jamtracks/the-doors-break-on-through-to-the-other-side,Tency Music,9993 +Kiss,Lick It Up,https://www.jamkazam.com/landing/jamtracks/kiss-lick-it-up,Tency Music,21675 +The Band Perry,If I Die Young,https://www.jamkazam.com/landing/jamtracks/the-band-perry-if-i-die-young,Tency Music,32485 +Los Lobos,La Bamba,https://www.jamkazam.com/landing/jamtracks/los-lobos-la-bamba,Paris Music,S2405 +Van Morrison,Domino,https://www.jamkazam.com/landing/jamtracks/van-morrison-domino,Tency Music,43541 +Supertramp,Give A Little Bit,https://www.jamkazam.com/landing/jamtracks/supertramp-give-a-little-bit,Tency Music,21311 +Roy Orbison,Oh Pretty Woman,https://www.jamkazam.com/landing/jamtracks/roy-orbison-oh-pretty-woman,Tency Music,5482 +Jaci Velasquez,Lost Without You,https://www.jamkazam.com/landing/jamtracks/jaci-velasquez-lost-without-you,Tency Music,30553 +U2,Vertigo,https://www.jamkazam.com/landing/jamtracks/u2-vertigo,Tency Music,11523 +Jimmy Eat World,The Middle,https://www.jamkazam.com/landing/jamtracks/jimmy-eat-world-the-middle,Tency Music,8275 +George Harrison,My Sweet Lord,https://www.jamkazam.com/landing/jamtracks/george-harrison-my-sweet-lord,Tency Music,5508 +Cliff Richard,Stood Up,https://www.jamkazam.com/landing/jamtracks/cliff-richard-stood-up,Paris Music,S4459 +The Monkees,A Little Bit Of Me A Little Bit Of You,https://www.jamkazam.com/landing/jamtracks/the-monkees-a-little-bit-of-me-a-little-bit-of-you,Tency Music,32860 +The Proclaimers,I'm On My Way,https://www.jamkazam.com/landing/jamtracks/the-proclaimers-im-on-my-way,Paris Music,S1424 +Edith Piaf,La Vie En Rose,https://www.jamkazam.com/landing/jamtracks/edith-piaf-la-vie-en-rose,Tency Music,5910 +Stone Temple Pilots,Plush (Acoustic),https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-plush-acoustic,Tency Music,32472 +Pink Floyd,Welcome To The Machine,https://www.jamkazam.com/landing/jamtracks/pink-floyd-welcome-to-the-machine,Tency Music,47480 +ABBA,Dancing Queen,https://www.jamkazam.com/landing/jamtracks/abba-dancing-queen,Tency Music,7300 +Peter Paul And Mary,Don't Think Twice It's All Right,https://www.jamkazam.com/landing/jamtracks/peter-paul-and-mary-dont-think-twice-its-all-right,Tency Music,8600 +Atlanta Rhythm Section,So Into You,https://www.jamkazam.com/landing/jamtracks/atlanta-rhythm-section-so-into-you,Tency Music,10910 +Frank Sinatra,Fly Me To The Moon,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-fly-me-to-the-moon,Tency Music,13717 +Paolo Nutini,Last Request,https://www.jamkazam.com/landing/jamtracks/paolo-nutini-last-request,Tency Music,11679 +Aretha Franklin,Rock Steady,https://www.jamkazam.com/landing/jamtracks/aretha-franklin-rock-steady,Tency Music,30003 +The Temptations,My Girl,https://www.jamkazam.com/landing/jamtracks/the-temptations-my-girl,Tency Music,9066 +The Irish Rovers,Drunken Sailor,https://www.jamkazam.com/landing/jamtracks/the-irish-rovers-drunken-sailor,Tency Music,36487 +Tom Petty,The Waiting,https://www.jamkazam.com/landing/jamtracks/tom-petty-the-waiting,Tency Music,46433 +Linda Ronstadt,It's So Easy,https://www.jamkazam.com/landing/jamtracks/linda-ronstadt-its-so-easy,Tency Music,6167 +The Beatles,I Feel Fine,https://www.jamkazam.com/landing/jamtracks/the-beatles-i-feel-fine,Tency Music,17088 +Simon And Garfunkel,Mrs. Robinson,https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-mrs-robinson,Tency Music,9743 +Frank Sinatra,Witchcraft (A Cappella),https://www.jamkazam.com/landing/jamtracks/frank-sinatra-witchcraft-acapella,Tim Waurick, +Five Finger Death Punch,House Of The Rising Sun,https://www.jamkazam.com/landing/jamtracks/five-finger-death-punch-house-of-the-rising-sun,Tency Music,48400 +The Doobie Brothers,Listen To The Music,https://www.jamkazam.com/landing/jamtracks/the-doobie-brothers-listen-to-the-music,Tency Music,11655 +Ballroom Orchestra,Waltz Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-waltz-groove,Tency Music,27382 +Terence Trent D'Arby,Wishing Well,https://www.jamkazam.com/landing/jamtracks/terence-trent-darby-wishing-well,Tency Music,21738 +The Jeff Healey Band,While My Guitar Gently Weeps,https://www.jamkazam.com/landing/jamtracks/the-jeff-healey-band-while-my-guitar-gently-weeps,Tency Music,44884 +The Foundations,Baby Now That I've Found You,https://www.jamkazam.com/landing/jamtracks/the-foundations-baby-now-that-ive-found-you,Tency Music,44775 +Ozzy Osbourne,Shot In The Dark,https://www.jamkazam.com/landing/jamtracks/ozzy-osbourne-shot-in-the-dark,Tency Music,19105 +Glen Campbell,Wichita Lineman,https://www.jamkazam.com/landing/jamtracks/glen-campbell-wichita-lineman,Tency Music,14209 +Pat Benatar,Shadows Of The Night,https://www.jamkazam.com/landing/jamtracks/pat-benatar-shadows-of-the-night,Tency Music,19072 +Coldplay,Clocks,https://www.jamkazam.com/landing/jamtracks/coldplay-clocks,Tency Music,6087 +The Jeff Healey Band,Confidence Man,https://www.jamkazam.com/landing/jamtracks/the-jeff-healey-band-confidence-man,Tency Music,47805 +Timbaland,Apologize,https://www.jamkazam.com/landing/jamtracks/timbaland-apologize,Tency Music,13471 +Paloma Faith,New York,https://www.jamkazam.com/landing/jamtracks/paloma-faith-new-york,Tency Music,23979 +Elvis Presley,Heartbreak Hotel,https://www.jamkazam.com/landing/jamtracks/elvis-presley-heartbreak-hotel,Paris Music,S4820 +Little River Band,Lady,https://www.jamkazam.com/landing/jamtracks/little-river-band-lady,Tency Music,48705 +Sara Bareilles,Love Song,https://www.jamkazam.com/landing/jamtracks/sara-bareilles-love-song,Tency Music,14502 +The BoDeans,Closer To Free,https://www.jamkazam.com/landing/jamtracks/the-bodeans-closer-to-free,Tency Music,18276 +Bread,Guitar Man,https://www.jamkazam.com/landing/jamtracks/bread-guitar-man,Paris Music,S2597 +R.E.M.,It's The End Of The World As We Know It (And I Feel Fine),https://www.jamkazam.com/landing/jamtracks/rem-its-the-end-of-the-world-as-we-know-it-and-i-feel-fine,Tency Music,36233 +John Mellencamp,Small Town,https://www.jamkazam.com/landing/jamtracks/john-mellencamp-small-town,Tency Music,18238 +Journey,Any Way You Want It,https://www.jamkazam.com/landing/jamtracks/journey-any-way-you-want-it,Tency Music,19316 +OneRepublic,Stop And Stare,https://www.jamkazam.com/landing/jamtracks/onerepublic-stop-and-stare,Tency Music,16050 +Jake Owen,Barefoot Blue Jean Night,https://www.jamkazam.com/landing/jamtracks/jake-owen-barefoot-blue-jean-night,Tency Music,37741 +Randy Travis,Forever And Ever Amen,https://www.jamkazam.com/landing/jamtracks/randy-travis-forever-and-ever-amen,Tency Music,6898 +Bryan Adams,Cuts Like A Knife,https://www.jamkazam.com/landing/jamtracks/bryan-adams-cuts-like-a-knife,Tency Music,25658 +Snow Patrol,You're All I Have,https://www.jamkazam.com/landing/jamtracks/snow-patrol-youre-all-i-have,Paris Music,S4527 +Duran Duran,Girls On Film,https://www.jamkazam.com/landing/jamtracks/duran-duran-girls-on-film,Tency Music,11477 +Wham,Wake Me Up Before You Go Go,https://www.jamkazam.com/landing/jamtracks/wham-wake-me-up-before-you-go-go,Paris Music,S0861 +Jimmy Cliff,Higher And Higher,https://www.jamkazam.com/landing/jamtracks/jimmy-cliff-higher-and-higher,Tency Music,35138 +Meghan Trainor,Lips Are Movin,https://www.jamkazam.com/landing/jamtracks/meghan-trainor-lips-are-movin,Tency Music,47950 +Jack White,Love Is Blindness,https://www.jamkazam.com/landing/jamtracks/jack-white-love-is-blindness,Tency Music,41163 +Emeli Sande,Next To Me,https://www.jamkazam.com/landing/jamtracks/emeli-sande-next-to-me,Paris Music,S3887 +REO Speedwagon,Keep On Loving You,https://www.jamkazam.com/landing/jamtracks/reo-speedwagon-keep-on-loving-you,Tency Music,14512 +Natalie Cole,Almost Like Being In Love,https://www.jamkazam.com/landing/jamtracks/natalie-cole-almost-like-being-in-love,Tency Music,38131 +Tina Turner,Try A Little Tenderness (Live Wembley),https://www.jamkazam.com/landing/jamtracks/tina-turner-try-a-little-tenderness-live-wembley,Tency Music,27103 +Natalie Cole,Lush Life,https://www.jamkazam.com/landing/jamtracks/natalie-cole-lush-life,Tency Music,37627 +The Beach Boys,Catch A Wave,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-catch-a-wave,Tency Music,35852 +Martina McBride,This One's For The Girls,https://www.jamkazam.com/landing/jamtracks/martina-mcbride-this-ones-for-the-girls,Tency Music,5669 +Taylor Swift,Teardrops On My Guitar,https://www.jamkazam.com/landing/jamtracks/taylor-swift-teardrops-on-my-guitar,Tency Music,14569 +Johnny Cash,Boy Named Sue,https://www.jamkazam.com/landing/jamtracks/johnny-cash-boy-named-sue,Tency Music,9822 +Dixieland Boys,Twelfth Street Rag,https://www.jamkazam.com/landing/jamtracks/dixieland-boys-twelfth-street-rag,Tency Music,27589 +Linda Ronstadt,Blue Bayou,https://www.jamkazam.com/landing/jamtracks/linda-ronstadt-blue-bayou,Tency Music,6160 +Rush,Tom Sawyer,https://www.jamkazam.com/landing/jamtracks/rush-tom-sawyer,Tency Music,26277 +Ballroom Orchestra,Rhumba Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-rhumba-groove,Tency Music,27571 +Story Of The Year,Until The Day I Die,https://www.jamkazam.com/landing/jamtracks/story-of-the-year-until-the-day-i-die,Tency Music,26432 +Merle Haggard,Okie From Muskogee,https://www.jamkazam.com/landing/jamtracks/merle-haggard-okie-from-muskogee,Tency Music,6435 +Lucinda Williams,Righteously,https://www.jamkazam.com/landing/jamtracks/lucinda-williams-righteously,Tency Music,6266 +Styx,Suite Madame Blue,https://www.jamkazam.com/landing/jamtracks/styx-suite-madame-blue,Tency Music,48759 +Terence Trent D'Arby,Sign Your Name,https://www.jamkazam.com/landing/jamtracks/terence-trent-darby-sign-your-name,Tency Music,13866 +Sister Sledge,We Are Family,https://www.jamkazam.com/landing/jamtracks/sister-sledge-we-are-family,Tency Music,13443 +Ray Charles,I Got A Woman,https://www.jamkazam.com/landing/jamtracks/ray-charles-i-got-a-woman,Tency Music,21217 +The Rolling Stones,Let's Spend The Night Together,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-lets-spend-the-night-together,Tency Music,34241 +Jet,Look What You've Done,https://www.jamkazam.com/landing/jamtracks/jet-look-what-youve-done,Tency Music,15712 +Iron Maiden,Run To The Hills,https://www.jamkazam.com/landing/jamtracks/iron-maiden-run-to-the-hills,Tency Music,21885 +Radiohead,Exit Music For A Film,https://www.jamkazam.com/landing/jamtracks/radiohead-exit-music-for-a-film,Tency Music,37660 +The Champs,Tequila,https://www.jamkazam.com/landing/jamtracks/the-champs-tequila,Tency Music,39669 +Imagine Dragons,It's Time,https://www.jamkazam.com/landing/jamtracks/imagine-dragons-its-time,Tency Music,41699 +The Killers,Just Another Girl,https://www.jamkazam.com/landing/jamtracks/the-killers-just-another-girl,Tency Music,45794 +Grease,Summer Nights,https://www.jamkazam.com/landing/jamtracks/grease-summer-nights,Tency Music,11426 +Linkin Park,Numb,https://www.jamkazam.com/landing/jamtracks/linkin-park-numb,Tency Music,12944 +Jersey Boys,Jersey Boys Medley (A Cappella),https://www.jamkazam.com/landing/jamtracks/jersey-boys-jersey-boys-medley-acapella,Tim Waurick, +Lionel Richie,Endless Love (With Shania Twain),https://www.jamkazam.com/landing/jamtracks/lionel-richie-endless-love-with-shania-twain,Tency Music,42345 +Dierks Bentley,5150,https://www.jamkazam.com/landing/jamtracks/dierks-bentley-5150,Tency Music,41178 +The Beat,Tears of a Clown,https://www.jamkazam.com/landing/jamtracks/the-beat-tears-of-a-clown,Paris Music,S1443 +The Moody Blues,Tuesday Afternoon,https://www.jamkazam.com/landing/jamtracks/the-moody-blues-tuesday-afternoon,Tency Music,33995 +Kate Bush,Running Up That Hill,https://www.jamkazam.com/landing/jamtracks/kate-bush-running-up-that-hill,Tency Music,21114 +Gavin DeGraw,Soldier,https://www.jamkazam.com/landing/jamtracks/gavin-degraw-soldier,Tency Music,43450 +Waitresses,I Know What Boys Like,https://www.jamkazam.com/landing/jamtracks/waitresses-i-know-what-boys-like,Tency Music,34048 +Tim McGraw,Just To See You Smile,https://www.jamkazam.com/landing/jamtracks/tim-mcgraw-just-to-see-you-smile,Tency Music,10404 +Nat King Cole,Unforgettable,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-unforgettable,Tency Music,6725 +Peter Gabriel,Steam,https://www.jamkazam.com/landing/jamtracks/peter-gabriel-steam,Tency Music,31037 +Stealers Wheel,Stuck In The Middle With You,https://www.jamkazam.com/landing/jamtracks/stealers-wheel-stuck-in-the-middle-with-you,Tency Music,13903 +Mc Fadden & Whitehead,Ain't No Stoppin' Us Now,https://www.jamkazam.com/landing/jamtracks/mc-fadden--whitehead-aint-no-stoppin-us-now,Paris Music,S4598 +Ozzy Osbourne,Mama I'm Coming Home,https://www.jamkazam.com/landing/jamtracks/ozzy-osbourne-mama-im-coming-home,Tency Music,19107 +Miranda Lambert,Mama's Broken Heart,https://www.jamkazam.com/landing/jamtracks/miranda-lambert-mamas-broken-heart,Tency Music,38912 +Nina Simone,I Put A Spell On You,https://www.jamkazam.com/landing/jamtracks/nina-simone-i-put-a-spell-on-you,Tency Music,22118 +Hozier,Take Me To Church,https://www.jamkazam.com/landing/jamtracks/hozier-take-me-to-church,Tency Music,47637 +Madonna,Holiday,https://www.jamkazam.com/landing/jamtracks/madonna-holiday,Tency Music,6379 +Karen Souza,Can't Help Falling In Love,https://www.jamkazam.com/landing/jamtracks/karen-souza-cant-help-falling-in-love,Tency Music,49101 +The Blues Brothers,Shot Gun Blues,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-shot-gun-blues,Tency Music,47396 +Reba McEntire,Going Out Like That,https://www.jamkazam.com/landing/jamtracks/reba-mcentire-going-out-like-that,Tency Music,48606 +Kesha,Die Young,https://www.jamkazam.com/landing/jamtracks/kesha-die-young,Paris Music,S4092 +Natalie Cole,L-O-V-E,https://www.jamkazam.com/landing/jamtracks/natalie-cole-l-o-v-e,Tency Music,26112 +Avicii,Hey Brother,https://www.jamkazam.com/landing/jamtracks/avicii-hey-brother,Tency Music,45273 +Janis Joplin,Me And Bobby McGee,https://www.jamkazam.com/landing/jamtracks/janis-joplin-me-and-bobby-mcgee,Tency Music,14063 +Reba McEntire,If I Were A Boy,https://www.jamkazam.com/landing/jamtracks/reba-mcentire-if-i-were-a-boy,Tency Music,36015 +The Rolling Stones,Sympathy For The Devil,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-sympathy-for-the-devil,Tency Music,13827 +The Blues Brothers,She Caught The Katy,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-she-caught-the-katy,Tency Music,24937 +Radiohead,Climbing Up The Walls,https://www.jamkazam.com/landing/jamtracks/radiohead-climbing-up-the-walls,Tency Music,38413 +Justin Bieber,As Long As You Love Me,https://www.jamkazam.com/landing/jamtracks/justin-bieber-as-long-as-you-love-me,Tency Music,41385 +Nanci Griffith,The Speed Of The Sound Of Loneliness,https://www.jamkazam.com/landing/jamtracks/nanci-griffith-the-speed-of-the-sound-of-loneliness,Tency Music,25000 +Skunk Anansie,Weak,https://www.jamkazam.com/landing/jamtracks/skunk-anansie-weak,Tency Music,30683 +Nat King Cole,Down By The Old Mill Stream (A Cappella),https://www.jamkazam.com/landing/jamtracks/nat-king-cole-down-by-the-old-mill-stream-acapella,Tim Waurick, +ALX,Runnin',https://www.jamkazam.com/landing/jamtracks/alx-runnin,Drumma Boy, +The Neighbourhood,Sweater Weather,https://www.jamkazam.com/landing/jamtracks/the-neighbourhood-sweater-weather,Tency Music,46137 +Cher,"Gypsies, Tramps & Thieves",https://www.jamkazam.com/landing/jamtracks/cher-gypsies-tramps--thieves,Paris Music,S4101 +Soundgarden,Black Hole Sun,https://www.jamkazam.com/landing/jamtracks/soundgarden-black-hole-sun,Tency Music,25888 +Elvis Presley,Rock a Hula Baby,https://www.jamkazam.com/landing/jamtracks/elvis-presley-rock-a-hula-baby,Paris Music,S3374 +Bruce Springsteen,The River,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-the-river,Tency Music,24043 +The Killers,Somebody Told Me,https://www.jamkazam.com/landing/jamtracks/the-killers-somebody-told-me,Tency Music,12419 +Cole Porter,I Get A Kick Out Of You,https://www.jamkazam.com/landing/jamtracks/cole-porter-i-get-a-kick-out-of-you,Tency Music,27628 +Little River Band,Lonesome Loser,https://www.jamkazam.com/landing/jamtracks/little-river-band-lonesome-loser,Tency Music,43985 +Nina Simone,My Baby Just Cares For Me,https://www.jamkazam.com/landing/jamtracks/nina-simone-my-baby-just-cares-for-me,Tency Music,14157 +Rita Ora,Shine Ya Light,https://www.jamkazam.com/landing/jamtracks/rita-ora-shine-ya-light,Paris Music,S4093 +The Beatles,Twist And Shout,https://www.jamkazam.com/landing/jamtracks/the-beatles-twist-and-shout,Tency Music,12657 +Huey Lewis And The News,I Want A New Drug,https://www.jamkazam.com/landing/jamtracks/huey-lewis-and-the-news-i-want-a-new-drug,Tency Music,16131 +Zac Brown Band,Chicken Fried,https://www.jamkazam.com/landing/jamtracks/zac-brown-band-chicken-fried,Tency Music,18963 +Patsy Cline,You Made Me Love You (I Didn't Want To Do It),https://www.jamkazam.com/landing/jamtracks/patsy-cline-you-made-me-love-you-i-didnt-want-to-do-it,Tency Music,41415 +Spandau Ballet,Gold,https://www.jamkazam.com/landing/jamtracks/spandau-ballet-gold,Tency Music,13779 +Norah Jones,Don't Know Why,https://www.jamkazam.com/landing/jamtracks/norah-jones-dont-know-why,Tency Music,6831 +Sarah Vaughan,Whatever Lola Wants Lola Gets,https://www.jamkazam.com/landing/jamtracks/sarah-vaughan-whatever-lola-wants-lola-gets,Tency Music,19221 +Jerry Lee Lewis,Whole Lotta Shakin Goin On,https://www.jamkazam.com/landing/jamtracks/jerry-lee-lewis-whole-lotta-shakin-goin-on,Tency Music,6924 +The Eagles,Peaceful Easy Feeling,https://www.jamkazam.com/landing/jamtracks/the-eagles-peaceful-easy-feeling,Tency Music,14576 +Pink Floyd,Goodbye Cruel World,https://www.jamkazam.com/landing/jamtracks/pink-floyd-goodbye-cruel-world,Tency Music,48965 +Gretchen Wilson,Redneck Woman,https://www.jamkazam.com/landing/jamtracks/gretchen-wilson-redneck-woman,Tency Music,5832 +The Jackson 5,ABC,https://www.jamkazam.com/landing/jamtracks/the-jackson-5-abc,Tency Music,13837 +Jennifer Lopez,Let's Get Loud,https://www.jamkazam.com/landing/jamtracks/jennifer-lopez-lets-get-loud,Paris Music,S3376 +INXS,What You Need,https://www.jamkazam.com/landing/jamtracks/inxs-what-you-need,Tency Music,18014 +Bruce Hornsby,The Way It Is,https://www.jamkazam.com/landing/jamtracks/bruce-hornsby-the-way-it-is,Tency Music,27858 +Robert Palmer,Every Kinda People,https://www.jamkazam.com/landing/jamtracks/robert-palmer-every-kinda-people,Paris Music,S4467 +The Temptations,Ain't Too Proud To Beg,https://www.jamkazam.com/landing/jamtracks/the-temptations-aint-too-proud-to-beg,Paris Music,S4469 +Glen Campbell,Gentle On My Mind,https://www.jamkazam.com/landing/jamtracks/glen-campbell-gentle-on-my-mind,Tency Music,32830 +Live,Lightning Crashes,https://www.jamkazam.com/landing/jamtracks/live-lightning-crashes,Tency Music,27676 +David Bowie,Changes,https://www.jamkazam.com/landing/jamtracks/david-bowie-changes,Paris Music,S1722 +Slim Dusty,Where Country Is,https://www.jamkazam.com/landing/jamtracks/slim-dusty-where-country-is,Paris Music,S4836 +Red Hot Chili Peppers,By The Way,https://www.jamkazam.com/landing/jamtracks/red-hot-chili-peppers-by-the-way,Tency Music,6954 +Fleetwood Mac,Dreams,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-dreams,Paris Music,S2964 +Diana Ross,Theme from Mahogany - Do You Know Where You're Going to ?,https://www.jamkazam.com/landing/jamtracks/diana-ross-theme-from-mahogany---do-you-know-where-youre-going-to-,Paris Music,S4113 +Styx,Too Much Time On My Hands,https://www.jamkazam.com/landing/jamtracks/styx-too-much-time-on-my-hands,Tency Music,41425 +Reba McEntire,Consider Me Gone,https://www.jamkazam.com/landing/jamtracks/reba-mcentire-consider-me-gone,Tency Music,25737 +Pink Floyd,Echoes,https://www.jamkazam.com/landing/jamtracks/pink-floyd-echoes,Tency Music,48680 +Shakira,Can't Remember To Forget You feat. Rihanna,https://www.jamkazam.com/landing/jamtracks/shakira-cant-remember-to-forget-you-feat-rihanna,Paris Music,S4470 +Johnny Paycheck,Take This Job And Shove It,https://www.jamkazam.com/landing/jamtracks/johnny-paycheck-take-this-job-and-shove-it,Tency Music,7746 +The Alan Parsons Project,Games People Play,https://www.jamkazam.com/landing/jamtracks/the-alan-parsons-project-games-people-play,Tency Music,39396 +Scorpions,Rock You Like A Hurricane,https://www.jamkazam.com/landing/jamtracks/scorpions-rock-you-like-a-hurricane,Tency Music,30006 +Wham,Freedom,https://www.jamkazam.com/landing/jamtracks/wham-freedom,Paris Music,S0863 +The Jimi Hendrix Experience,Manic Depression,https://www.jamkazam.com/landing/jamtracks/the-jimi-hendrix-experience-manic-depression,Tency Music,49275 +Roger Miller,King Of The Road,https://www.jamkazam.com/landing/jamtracks/roger-miller-king-of-the-road,Tency Music,6607 +The Rolling Stones,Start Me Up,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-start-me-up,Tency Music,11367 +Scorpions,Still Loving You,https://www.jamkazam.com/landing/jamtracks/scorpions-still-loving-you,Tency Music,16180 +Zac Brown Band,Toes,https://www.jamkazam.com/landing/jamtracks/zac-brown-band-toes,Tency Music,23963 +Dolly Parton,Jolene,https://www.jamkazam.com/landing/jamtracks/dolly-parton-jolene,Paris Music,S0135 +Keith Urban,Days Go By,https://www.jamkazam.com/landing/jamtracks/keith-urban-days-go-by,Tency Music,8470 +The Blues Brothers,Do You Love Me,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-do-you-love-me,Tency Music,31751 +Ray Charles,What'd I Say,https://www.jamkazam.com/landing/jamtracks/ray-charles-whatd-i-say,Tency Music,13979 +The Beach Boys,Surfer Girl,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-surfer-girl,Tency Music,17085 +Frank Sinatra,New York New York,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-new-york-new-york,Tency Music,10454 +Nirvana,Smells Like Teen Spirit,https://www.jamkazam.com/landing/jamtracks/nirvana-smells-like-teen-spirit,Tency Music,11775 +U2,Sunday Bloody Sunday,https://www.jamkazam.com/landing/jamtracks/u2-sunday-bloody-sunday,Tency Music,11879 +Trace Adkins,You're Gonna Miss This,https://www.jamkazam.com/landing/jamtracks/trace-adkins-youre-gonna-miss-this,Tency Music,21323 +The Rolling Stones,I Can't Get No Satisfaction,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-i-cant-get-no-satisfaction,Tency Music,5129 +Staind,So Far Away,https://www.jamkazam.com/landing/jamtracks/staind-so-far-away,Tency Music,5739 +Green Day,When I Come Around,https://www.jamkazam.com/landing/jamtracks/green-day-when-i-come-around,Tency Music,15955 +Sting,Englishman In New York,https://www.jamkazam.com/landing/jamtracks/sting-englishman-in-new-york,Tency Music,12800 +The Beatles,While My Guitar Gently Weeps,https://www.jamkazam.com/landing/jamtracks/the-beatles-while-my-guitar-gently-weeps,Tency Music,10470 +The Blues Brothers,Gimme Some Lovin',https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-gimme-some-lovin,Paris Music,S0763 +Supertramp,Bloody Well Right,https://www.jamkazam.com/landing/jamtracks/supertramp-bloody-well-right,Tency Music,31393 +Queen,Don't Stop Me Now (A Cappella),https://www.jamkazam.com/landing/jamtracks/queen-dont-stop-me-now-acapella,Tim Waurick, +Three Dog Night,Joy To The World,https://www.jamkazam.com/landing/jamtracks/three-dog-night-joy-to-the-world,Tency Music,10000 +Flogging Molly,Black Friday Rule,https://www.jamkazam.com/landing/jamtracks/flogging-molly-black-friday-rule,Tency Music,34029 +Regina Spektor,Hotel Song,https://www.jamkazam.com/landing/jamtracks/regina-spektor-hotel-song,Tency Music,12179 +Ray Lamontagne,You Are The Best Thing,https://www.jamkazam.com/landing/jamtracks/ray-lamontagne-you-are-the-best-thing,Tency Music,41211 +The Violent Femmes,Blister In The Sun,https://www.jamkazam.com/landing/jamtracks/the-violent-femmes-blister-in-the-sun,Tency Music,28714 +Sugar Ray,Someday,https://www.jamkazam.com/landing/jamtracks/sugar-ray-someday,Tency Music,8620 +Cliff Richard,Do You Wanna Dance,https://www.jamkazam.com/landing/jamtracks/cliff-richard-do-you-wanna-dance,Paris Music,S1340 +Randy Travis,Swing Down Chariot (A Cappella),https://www.jamkazam.com/landing/jamtracks/randy-travis-swing-down-chariot-acapella,Tim Waurick, +The Allman Brothers Band,Melissa,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-melissa,Tency Music,6294 +Kylie Minogue,I Believe In You,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-i-believe-in-you,Paris Music,S1028 +Nirvana,The Man Who Sold The World,https://www.jamkazam.com/landing/jamtracks/nirvana-the-man-who-sold-the-world,Tency Music,26239 +Secret Affair,My World,https://www.jamkazam.com/landing/jamtracks/secret-affair-my-world,Paris Music,S4240 +The Rolling Stones,Waiting On A Friend,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-waiting-on-a-friend,Tency Music,38784 +Sergio Mendes,Mas Que Nada,https://www.jamkazam.com/landing/jamtracks/sergio-mendes-mas-que-nada,Tency Music,15116 +The Gipsy Kings,Soy,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-soy,Tency Music,32780 +Wham,Club Tropicana,https://www.jamkazam.com/landing/jamtracks/wham-club-tropicana,Paris Music,S0862 +The Cranberries,Linger,https://www.jamkazam.com/landing/jamtracks/the-cranberries-linger,Tency Music,6140 +Blue Swede,Hooked On A Feeling,https://www.jamkazam.com/landing/jamtracks/blue-swede-hooked-on-a-feeling,Tency Music,32722 +Karen Souza,Every Breath You Take,https://www.jamkazam.com/landing/jamtracks/karen-souza-every-breath-you-take,Tency Music,41011 +Rod Stewart,Tonight's The Night (Gonna Be Alright),https://www.jamkazam.com/landing/jamtracks/rod-stewart-tonights-the-night-gonna-be-alright,Tency Music,13966 +The Jimi Hendrix Experience,Purple Haze,https://www.jamkazam.com/landing/jamtracks/the-jimi-hendrix-experience-purple-haze,Tency Music,17518 +Joe Cocker,With A Little Help From My Friends,https://www.jamkazam.com/landing/jamtracks/joe-cocker-with-a-little-help-from-my-friends,Tency Music,8052 +Rush,Working Man,https://www.jamkazam.com/landing/jamtracks/rush-working-man,Tency Music,40154 +The Cooltrane Quartet,Holding Back The Years,https://www.jamkazam.com/landing/jamtracks/the-cooltrane-quartet-holding-back-the-years,Tency Music,48827 +James Brown,Get Up (I Feel Like Being A) Sex Machine,https://www.jamkazam.com/landing/jamtracks/james-brown-get-up-i-feel-like-being-a-sex-machine,Tency Music,12575 +Huey Lewis And The News,Heart Of Rock And Roll,https://www.jamkazam.com/landing/jamtracks/huey-lewis-and-the-news-heart-of-rock-and-roll,Tency Music,16136 +Van Morrison,Moondance,https://www.jamkazam.com/landing/jamtracks/van-morrison-moondance,Tency Music,14626 +Aretha Franklin,Natural Woman,https://www.jamkazam.com/landing/jamtracks/aretha-franklin-natural-woman,Paris Music,S0280 +Sandy Posey,Single Girl,https://www.jamkazam.com/landing/jamtracks/sandy-posey-single-girl,Paris Music,S1430 +The Platters,Only You And You Alone,https://www.jamkazam.com/landing/jamtracks/the-platters-only-you-and-you-alone,Tency Music,8247 +Richard Marx,Right Here Waiting,https://www.jamkazam.com/landing/jamtracks/richard-marx-right-here-waiting,Tency Music,14022 +Peter Gabriel,Solsbury Hill,https://www.jamkazam.com/landing/jamtracks/peter-gabriel-solsbury-hill,Tency Music,24137 +Arctic Monkeys,Do I Wanna Know,https://www.jamkazam.com/landing/jamtracks/arctic-monkeys-do-i-wanna-know,Tency Music,44323 +Gospel Singer,Because He Lives,https://www.jamkazam.com/landing/jamtracks/gospel-singer-because-he-lives,Tency Music,29482 +ZZ Top,Gimme All Your Lovin,https://www.jamkazam.com/landing/jamtracks/zz-top-gimme-all-your-lovin,Tency Music,21382 +Robert Palmer,Every Kinda People (Remix),https://www.jamkazam.com/landing/jamtracks/robert-palmer-every-kinda-people-remix,Paris Music,S4593 +The Everly Brothers,All I Have To Do Is Dream,https://www.jamkazam.com/landing/jamtracks/the-everly-brothers-all-i-have-to-do-is-dream,Tency Music,10951 +The Jimi Hendrix Experience,Crosstown Traffic,https://www.jamkazam.com/landing/jamtracks/the-jimi-hendrix-experience-crosstown-traffic,Tency Music,45049 +Waylon Jennings,Luckenbach Texas,https://www.jamkazam.com/landing/jamtracks/waylon-jennings-luckenbach-texas,Tency Music,16777 +John Denver,Thank God I'm A Country Boy,https://www.jamkazam.com/landing/jamtracks/john-denver-thank-god-im-a-country-boy,Tency Music,18247 +Cyndi Lauper,True Colours,https://www.jamkazam.com/landing/jamtracks/cyndi-lauper-true-colours,Paris Music,S3318 +Cole Porter,Every Time We Say Goodbye,https://www.jamkazam.com/landing/jamtracks/cole-porter-every-time-we-say-goodbye,Tency Music,27611 +The Gipsy Kings,Djobi Djoba,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-djobi-djoba,Tency Music,26238 +INXS,Need You Tonight,https://www.jamkazam.com/landing/jamtracks/inxs-need-you-tonight,Tency Music,12896 +John Legend,Ordinary People,https://www.jamkazam.com/landing/jamtracks/john-legend-ordinary-people,Tency Music,12958 +Roy Orbison,Crying (A Cappella),https://www.jamkazam.com/landing/jamtracks/roy-orbison-crying-acapella,Tim Waurick, +Loretta Lynn,Coal Miner's Daughter,https://www.jamkazam.com/landing/jamtracks/loretta-lynn-coal-miners-daughter,Tency Music,16621 +Gene Vincent,Be-Bop-A-Lula,https://www.jamkazam.com/landing/jamtracks/gene-vincent-be-bop-a-lula,Paris Music,S1321 +Bachman Turner Overdrive (BTO),You Ain't Seen Nothing Yet,https://www.jamkazam.com/landing/jamtracks/bachman-turner-overdrive-bto-you-aint-seen-nothing-yet,Tency Music,15035 +Steely Dan,Kid Charlemagne,https://www.jamkazam.com/landing/jamtracks/steely-dan-kid-charlemagne,Tency Music,18472 +Ingrid Michaelson,You And I,https://www.jamkazam.com/landing/jamtracks/ingrid-michaelson-you-and-i,Tency Music,38519 +U2,Beautiful Day,https://www.jamkazam.com/landing/jamtracks/u2-beautiful-day,Tency Music,7585 +Blues Traveler,Run Around,https://www.jamkazam.com/landing/jamtracks/blues-traveler-run-around,Tency Music,10828 +Madonna,La Isla Bonita,https://www.jamkazam.com/landing/jamtracks/madonna-la-isla-bonita,Tency Music,7146 +Stevie Ray Vaughan,Superstition,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-superstition,Tency Music,44345 +Buddy Holly,Oh Boy,https://www.jamkazam.com/landing/jamtracks/buddy-holly-oh-boy,Tency Music,6519 +Chuck Berry,Rock And Roll Music,https://www.jamkazam.com/landing/jamtracks/chuck-berry-rock-and-roll-music,Tency Music,13102 +Christopher Cross,Sailing,https://www.jamkazam.com/landing/jamtracks/christopher-cross-sailing,Tency Music,12450 +Sugar Ray,Fly,https://www.jamkazam.com/landing/jamtracks/sugar-ray-fly,Tency Music,9566 +Linda Ronstadt,You're No Good,https://www.jamkazam.com/landing/jamtracks/linda-ronstadt-youre-no-good,Tency Music,22179 +The Jimi Hendrix Experience,The Wind Cries Mary,https://www.jamkazam.com/landing/jamtracks/the-jimi-hendrix-experience-the-wind-cries-mary,Tency Music,44935 +Stevie Nicks,Rhiannon,https://www.jamkazam.com/landing/jamtracks/stevie-nicks-rhiannon,Tency Music,29101 +One Direction,Story Of My Life,https://www.jamkazam.com/landing/jamtracks/one-direction-story-of-my-life,Tency Music,45578 +Bob Marley,One Love (People Get Ready),https://www.jamkazam.com/landing/jamtracks/bob-marley-one-love-people-get-ready,Tency Music,12109 +Frankie Valli,My Eyes Adore You,https://www.jamkazam.com/landing/jamtracks/frankie-valli-my-eyes-adore-you,Paris Music,S2310 +Bon Jovi,It's My Life,https://www.jamkazam.com/landing/jamtracks/bon-jovi-its-my-life,Tency Music,7557 +Black Eyed Peas,I Gotta Feeling,https://www.jamkazam.com/landing/jamtracks/black-eyed-peas-i-gotta-feeling,Tency Music,23430 +Gospel Singer,How Great Thou Art,https://www.jamkazam.com/landing/jamtracks/gospel-singer-how-great-thou-art,Tency Music,29527 +B.B. King,Please Send Me Someone To Love,https://www.jamkazam.com/landing/jamtracks/bb-king-please-send-me-someone-to-love,Tency Music,44367 +Katrina And The Waves,That's The Way,https://www.jamkazam.com/landing/jamtracks/katrina-and-the-waves-thats-the-way,Tency Music,29966 +Frank Sinatra,Let Me Try Again,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-let-me-try-again,Paris Music,S2642 +Dwight Yoakam,"Guitars, Cadillacs",https://www.jamkazam.com/landing/jamtracks/dwight-yoakam-guitars-cadillacs,Tency Music,6749 +Earth Wind And Fire,Shining Star,https://www.jamkazam.com/landing/jamtracks/earth-wind-and-fire-shining-star,Tency Music,15627 +Stevie Ray Vaughan,Tightrope,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-tightrope,Tency Music,8541 +Adele,Chasing Pavements,https://www.jamkazam.com/landing/jamtracks/adele-chasing-pavements,Tency Music,14696 +ZZ Top,Heard It On The X,https://www.jamkazam.com/landing/jamtracks/zz-top-heard-it-on-the-x,Tency Music,48497 +Neil Diamond,Midnight Train To Georgia,https://www.jamkazam.com/landing/jamtracks/neil-diamond-midnight-train-to-georgia,Tency Music,44297 +Roberta Flack,The First Time Ever I Saw Your Face,https://www.jamkazam.com/landing/jamtracks/roberta-flack-the-first-time-ever-i-saw-your-face,Tency Music,18802 +Dixieland Boys,Down By The Riverside,https://www.jamkazam.com/landing/jamtracks/dixieland-boys-down-by-the-riverside,Tency Music,27487 +Clyde Mcphatter,Lover's Question,https://www.jamkazam.com/landing/jamtracks/clyde-mcphatter-lovers-question,Paris Music,S1287 +Sugarland,Stay,https://www.jamkazam.com/landing/jamtracks/sugarland-stay,Tency Music,13598 +Kook And The Gang,Ladies Night,https://www.jamkazam.com/landing/jamtracks/kook-and-the-gang-ladies-night,Tency Music,7446 +Frankie Laine,I Believe,https://www.jamkazam.com/landing/jamtracks/frankie-laine-i-believe,Paris Music,S2641 +The Who,Magic Bus,https://www.jamkazam.com/landing/jamtracks/the-who-magic-bus,Tency Music,33272 +Lynyrd Skynyrd,What's Your Name,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-whats-your-name,Tency Music,24815 +Steely Dan,Josie,https://www.jamkazam.com/landing/jamtracks/steely-dan-josie,Tency Music,18468 +Elton John,I'm Still Standing,https://www.jamkazam.com/landing/jamtracks/elton-john-im-still-standing,Tency Music,13120 +Taylor Swift,Shake It Off,https://www.jamkazam.com/landing/jamtracks/taylor-swift-shake-it-off,Tency Music,47481 +Safri Duo,La Bamba (Remix 2008),https://www.jamkazam.com/landing/jamtracks/safri-duo-la-bamba-remix-2008,Paris Music,S3778 +Aretha Franklin,Think,https://www.jamkazam.com/landing/jamtracks/aretha-franklin-think,Paris Music,S0761 +Prince,Purple Rain,https://www.jamkazam.com/landing/jamtracks/prince-purple-rain,Tency Music,11411 +Taylor Dane,Tell It To My Heart,https://www.jamkazam.com/landing/jamtracks/taylor-dane-tell-it-to-my-heart,Tency Music,13506 +Bad Company,Rock Steady,https://www.jamkazam.com/landing/jamtracks/bad-company-rock-steady,Tency Music,47018 +Green Day,Time Of Your Life (Good Riddance),https://www.jamkazam.com/landing/jamtracks/green-day-time-of-your-life-good-riddance,Tency Music,9932 +Bruno Mars,When I Was Your Man,https://www.jamkazam.com/landing/jamtracks/bruno-mars-when-i-was-your-man,Tency Music,42450 +Tom Jones,Delilah,https://www.jamkazam.com/landing/jamtracks/tom-jones-delilah,Paris Music,S1997 +K.C. And The Sunshine Band,That's The Way I Like It,https://www.jamkazam.com/landing/jamtracks/kc-and-the-sunshine-band-thats-the-way-i-like-it,Tency Music,17517 +Nelly,Just A Dream,https://www.jamkazam.com/landing/jamtracks/nelly-just-a-dream,Tency Music,32921 +Beyonce,Crazy In Love,https://www.jamkazam.com/landing/jamtracks/beyonce-crazy-in-love,Tency Music,5187 +Patsy Cline,Walkin After Midnight,https://www.jamkazam.com/landing/jamtracks/patsy-cline-walkin-after-midnight,Tency Music,7191 +Pat Benatar,Hit Me With Your Best Shot,https://www.jamkazam.com/landing/jamtracks/pat-benatar-hit-me-with-your-best-shot,Tency Music,19069 +Stevie Ray Vaughan,Little Wing,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-little-wing,Tency Music,47692 +The Blues Brothers,Soul Man,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-soul-man,Tency Music,19499 +Jay-Z,Holy Grail,https://www.jamkazam.com/landing/jamtracks/jay-z-holy-grail,Tency Music,44597 +Katy Perry,Roar,https://www.jamkazam.com/landing/jamtracks/katy-perry-roar,Tency Music,44758 +The Eagles,New Kid In Town,https://www.jamkazam.com/landing/jamtracks/the-eagles-new-kid-in-town,Tency Music,9938 +Toby Keith,I Love This Bar,https://www.jamkazam.com/landing/jamtracks/toby-keith-i-love-this-bar,Tency Music,5736 +Depeche Mode,Behind the Wheel,https://www.jamkazam.com/landing/jamtracks/depeche-mode-behind-the-wheel,Paris Music,S1029 +Black Sabbath,Iron Man,https://www.jamkazam.com/landing/jamtracks/black-sabbath-iron-man,Tency Music,18021 +The Eagles,Victim Of Love,https://www.jamkazam.com/landing/jamtracks/the-eagles-victim-of-love,Tency Music,32374 +Depeche Mode,Never Let Me Down,https://www.jamkazam.com/landing/jamtracks/depeche-mode-never-let-me-down,Paris Music,S1009 +The Andrews Sisters,Chattanooga Choo Choo,https://www.jamkazam.com/landing/jamtracks/the-andrews-sisters-chattanooga-choo-choo,Tency Music,39971 +The Rolling Stones,Paint It Black,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-paint-it-black,Tency Music,11357 +Whitney Houston,All The Man That I Need,https://www.jamkazam.com/landing/jamtracks/whitney-houston-all-the-man-that-i-need,Paris Music,S1635 +Beyonce,Halo,https://www.jamkazam.com/landing/jamtracks/beyonce-halo,Tency Music,21630 +The Dubliners,Dirty Old Town,https://www.jamkazam.com/landing/jamtracks/the-dubliners-dirty-old-town,Tency Music,42633 +Three Dog Night,One,https://www.jamkazam.com/landing/jamtracks/three-dog-night-one,Tency Music,33910 +James Taylor,Shower The People,https://www.jamkazam.com/landing/jamtracks/james-taylor-shower-the-people,Tency Music,16198 +Die Toten Hosen,Auld Lang Syne,https://www.jamkazam.com/landing/jamtracks/die-toten-hosen-auld-lang-syne,Paris Music,S0508 +The Fray,How To Save A Life,https://www.jamkazam.com/landing/jamtracks/the-fray-how-to-save-a-life,Tency Music,12187 +B.B. King,Choo Choo Ch'Boogie,https://www.jamkazam.com/landing/jamtracks/bb-king-choo-choo-chboogie,Tency Music,49212 +Good Charlotte,The Anthem,https://www.jamkazam.com/landing/jamtracks/good-charlotte-the-anthem,Tency Music,15943 +Blondie,One Way Or Another,https://www.jamkazam.com/landing/jamtracks/blondie-one-way-or-another,Tency Music,14206 +Keane,Somewhere Only We Know,https://www.jamkazam.com/landing/jamtracks/keane-somewhere-only-we-know,Tency Music,5616 +The Beatles,Love Me Do,https://www.jamkazam.com/landing/jamtracks/the-beatles-love-me-do,Tency Music,12788 +Van Morrison,Moondance (A Cappella),https://www.jamkazam.com/landing/jamtracks/van-morrison-moondance-acapella,Tim Waurick, +The Beatles,She Loves You,https://www.jamkazam.com/landing/jamtracks/the-beatles-she-loves-you,Tency Music,12791 +Toby Keith,Courtesy Of The Red White And Blue (The Angry American),https://www.jamkazam.com/landing/jamtracks/toby-keith-courtesy-of-the-red-white-and-blue-the-angry-american,Tency Music,6817 +Jack Johnson,Flake,https://www.jamkazam.com/landing/jamtracks/jack-johnson-flake,Tency Music,6769 +Otis Day And The Knights,Shout,https://www.jamkazam.com/landing/jamtracks/otis-day-and-the-knights-shout,Tency Music,22397 +The Beatles,A Day In The Life,https://www.jamkazam.com/landing/jamtracks/the-beatles-a-day-in-the-life,Tency Music,14476 +Elvis Presley,Hound Dog,https://www.jamkazam.com/landing/jamtracks/elvis-presley-hound-dog,Tency Music,10611 +Green Day,Boulevard Of Broken Dreams,https://www.jamkazam.com/landing/jamtracks/green-day-boulevard-of-broken-dreams,Tency Music,5502 +Kelly Clarson,Heartbeat Song,https://www.jamkazam.com/landing/jamtracks/kelly-clarson-heartbeat-song,Tency Music,48557 +Meghan Trainor,All About That Bass,https://www.jamkazam.com/landing/jamtracks/meghan-trainor-all-about-that-bass,Tency Music,47292 +The Beatles,Lucy In The Sky With Diamonds,https://www.jamkazam.com/landing/jamtracks/the-beatles-lucy-in-the-sky-with-diamonds,Tency Music,14474 +Bill Withers,Lean On Me,https://www.jamkazam.com/landing/jamtracks/bill-withers-lean-on-me,Tency Music,8045 +Girls Aloud,Sound of the Underground,https://www.jamkazam.com/landing/jamtracks/girls-aloud-sound-of-the-underground,Paris Music,S0282 +Lionel Richie,Penny Lover,https://www.jamkazam.com/landing/jamtracks/lionel-richie-penny-lover,Paris Music,S3885 +The Notorious B.I.G.,Mo Money Mo Problems,https://www.jamkazam.com/landing/jamtracks/the-notorious-big-mo-money-mo-problems,Tency Music,27643 +Bob Dylan,Subterranean Homesick Blues,https://www.jamkazam.com/landing/jamtracks/bob-dylan-subterranean-homesick-blues,Tency Music,9973 +The Hives,Hate To Say I Told You So,https://www.jamkazam.com/landing/jamtracks/the-hives-hate-to-say-i-told-you-so,Tency Music,18214 +ZZ Top,La Grange,https://www.jamkazam.com/landing/jamtracks/zz-top-la-grange,Tency Music,27931 +P.O.D. Payable On Death,Boom,https://www.jamkazam.com/landing/jamtracks/pod-payable-on-death-boom,Tency Music,25371 +The Blues Brothers,Peter Gunn Theme,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-peter-gunn-theme,Tency Music,42059 +K.C. And The Sunshine Band,"(Shake, Shake, Shake) Shake Your Booty",https://www.jamkazam.com/landing/jamtracks/kc-and-the-sunshine-band-shake-shake-shake-shake-your-booty,Tency Music,13985 +Aretha Franklin,I Never Loved A Man (The Way I Loved You),https://www.jamkazam.com/landing/jamtracks/aretha-franklin-i-never-loved-a-man-the-way-i-loved-you,Tency Music,10207 +Aerosmith,Janie's Got A Gun,https://www.jamkazam.com/landing/jamtracks/aerosmith-janies-got-a-gun,Tency Music,14871 +Led Zeppelin,Stairway To Heaven,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-stairway-to-heaven,Music Master Exchange LLC, +Kacey Musgraves,Merry Go Round,https://www.jamkazam.com/landing/jamtracks/kacey-musgraves-merry-go-round,Tency Music,42106 +Alejandro Sanz,Corazon Partio,https://www.jamkazam.com/landing/jamtracks/alejandro-sanz-corazon-partio,Tency Music,38713 +Elvin Bishop,Fooled Around And Fell In Love,https://www.jamkazam.com/landing/jamtracks/elvin-bishop-fooled-around-and-fell-in-love,Tency Music,15653 +Taylor Swift,I Knew You Were Trouble,https://www.jamkazam.com/landing/jamtracks/taylor-swift-i-knew-you-were-trouble,Tency Music,42042 +Gym Class Heroes,Stereo Hearts,https://www.jamkazam.com/landing/jamtracks/gym-class-heroes-stereo-hearts,Tency Music,37934 +Tom Petty,Free Fallin,https://www.jamkazam.com/landing/jamtracks/tom-petty-free-fallin,Tency Music,9981 +James Blunt,You're Beautiful,https://www.jamkazam.com/landing/jamtracks/james-blunt-youre-beautiful,Tency Music,5348 +The Gipsy Kings,Tu Quieres Volver,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-tu-quieres-volver,Tency Music,44430 +Billy Currington,Hey Girl,https://www.jamkazam.com/landing/jamtracks/billy-currington-hey-girl,Tency Music,44298 +Usher,Yeah,https://www.jamkazam.com/landing/jamtracks/usher-yeah,Tency Music,14625 +Orchestral Manoeuvres In The Dark,Enola Gay,https://www.jamkazam.com/landing/jamtracks/orchestral-manoeuvres-in-the-dark-enola-gay,Tency Music,11938 +Blue Oyster Cult,Don't Fear The Reaper,https://www.jamkazam.com/landing/jamtracks/blue-oyster-cult-dont-fear-the-reaper,Tency Music,15142 +The Cooltrane Quartet,Should I Stay Or Should I Go,https://www.jamkazam.com/landing/jamtracks/the-cooltrane-quartet-should-i-stay-or-should-i-go,Tency Music,43418 +Smash Mouth,Walkin On The Sun,https://www.jamkazam.com/landing/jamtracks/smash-mouth-walkin-on-the-sun,Tency Music,9564 +Foo Fighters,Everlong,https://www.jamkazam.com/landing/jamtracks/foo-fighters-everlong,Tency Music,26761 +Adam & The Ants,Prince Charming,https://www.jamkazam.com/landing/jamtracks/adam--the-ants-prince-charming,Paris Music,S1425 +The Divinyls,I Touch Myself,https://www.jamkazam.com/landing/jamtracks/the-divinyls-i-touch-myself,Tency Music,13521 +James Blunt,Bonfire Heart,https://www.jamkazam.com/landing/jamtracks/james-blunt-bonfire-heart,Tency Music,45132 +Justin Bieber,Beauty And A Beat,https://www.jamkazam.com/landing/jamtracks/justin-bieber-beauty-and-a-beat,Tency Music,41659 +Sam Smith,I'm Not The Only One,https://www.jamkazam.com/landing/jamtracks/sam-smith-im-not-the-only-one,Tency Music,47142 +The Eagles,Hotel California,https://www.jamkazam.com/landing/jamtracks/the-eagles-hotel-california,Tency Music,9810 +Simon And Garfunkel,Cecilia,https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-cecilia,Tency Music,14161 +The Gipsy Kings,A Mi Manera Comme D'Habitude,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-a-mi-manera-comme-dhabitude,Tency Music,25029 +The Beatles,Octopus's Garden,https://www.jamkazam.com/landing/jamtracks/the-beatles-octopuss-garden,Tency Music,10488 +Talk Talk,It's My Life,https://www.jamkazam.com/landing/jamtracks/talk-talk-its-my-life,Tency Music,21362 +The Blues Brothers,Ghost Riders In The Sky,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-ghost-riders-in-the-sky,Tency Music,24870 +Starship,We Built This City,https://www.jamkazam.com/landing/jamtracks/starship-we-built-this-city,Tency Music,6332 +Dixie Chicks,Landslide (Duet),https://www.jamkazam.com/landing/jamtracks/dixie-chicks-landslide-duet,Tency Music,26865 +Gospel Singer,I Have Decided To Follow Jesus,https://www.jamkazam.com/landing/jamtracks/gospel-singer-i-have-decided-to-follow-jesus,Tency Music,29529 +The Rolling Stones,The Last Time,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-the-last-time,Tency Music,24388 +Jane's Addiction,Just Because,https://www.jamkazam.com/landing/jamtracks/janes-addiction-just-because,Tency Music,16234 +Gospel Singer,Peace In The Valley,https://www.jamkazam.com/landing/jamtracks/gospel-singer-peace-in-the-valley,Tency Music,25611 +Ludacris,My Chick Bad,https://www.jamkazam.com/landing/jamtracks/ludacris-my-chick-bad,Tency Music,30209 +Don McLean,American Pie,https://www.jamkazam.com/landing/jamtracks/don-mclean-american-pie,Tency Music,11291 +Sly And The Family Stone,Family Affair,https://www.jamkazam.com/landing/jamtracks/sly-and-the-family-stone-family-affair,Tency Music,27341 +Paolo Nutinin,New Shoes,https://www.jamkazam.com/landing/jamtracks/paolo-nutinin-new-shoes,Tency Music,13269 +Neil Diamond,Forever In Blue Jeans,https://www.jamkazam.com/landing/jamtracks/neil-diamond-forever-in-blue-jeans,Tency Music,6928 +Pink Floyd,On The Turning Away,https://www.jamkazam.com/landing/jamtracks/pink-floyd-on-the-turning-away,Tency Music,31071 +Eric Clapton,After Midnight,https://www.jamkazam.com/landing/jamtracks/eric-clapton-after-midnight,Tency Music,24377 +B.o.B.,So Good,https://www.jamkazam.com/landing/jamtracks/bob-so-good,Tency Music,39880 +Kool And The Gang,Get Down On It,https://www.jamkazam.com/landing/jamtracks/kool-and-the-gang-get-down-on-it,Tency Music,14524 +Patti Smith,Because The Night,https://www.jamkazam.com/landing/jamtracks/patti-smith-because-the-night,Tency Music,12888 +The Allman Brothers Band,Blue Sky,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-blue-sky,Tency Music,24177 +Styx,Renegade,https://www.jamkazam.com/landing/jamtracks/styx-renegade,Tency Music,48766 +Bonnie Raitt,Angel From Montgomery,https://www.jamkazam.com/landing/jamtracks/bonnie-raitt-angel-from-montgomery,Tency Music,17179 +The Who,Behind Blue Eyes,https://www.jamkazam.com/landing/jamtracks/the-who-behind-blue-eyes,Tency Music,28680 +Lady Antebellum,Just A Kiss,https://www.jamkazam.com/landing/jamtracks/lady-antebellum-just-a-kiss,Tency Music,37110 +Pink Floyd,Sheep,https://www.jamkazam.com/landing/jamtracks/pink-floyd-sheep,Tency Music,48434 +David Bowie,Space Oddity,https://www.jamkazam.com/landing/jamtracks/david-bowie-space-oddity,Tency Music,12731 +Jazzy Gershwin,Embraceable You,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-embraceable-you,Tency Music,35518 +Dierks Bentley,What Was I Thinkin,https://www.jamkazam.com/landing/jamtracks/dierks-bentley-what-was-i-thinkin,Tency Music,6238 +Destiny's Child,Say My Name,https://www.jamkazam.com/landing/jamtracks/destinys-child-say-my-name,Tency Music,8908 +Gospel Singer,Softly And Tenderly,https://www.jamkazam.com/landing/jamtracks/gospel-singer-softly-and-tenderly,Tency Music,29387 +ZZ Ward,365 Days,https://www.jamkazam.com/landing/jamtracks/zz-ward-365-days,Tency Music,45819 +Florence And The Machine,Dog Days Are Over,https://www.jamkazam.com/landing/jamtracks/florence-and-the-machine-dog-days-are-over,Tency Music,27256 +Eric Burdon,Spill The Wine,https://www.jamkazam.com/landing/jamtracks/eric-burdon-spill-the-wine,Tency Music,10911 +OneRepublic,Love Runs Out,https://www.jamkazam.com/landing/jamtracks/onerepublic-love-runs-out,Tency Music,46967 +Bananarama,Venus,https://www.jamkazam.com/landing/jamtracks/bananarama-venus,Tency Music,5093 +Ray Parker Junior,Ghostbusters,https://www.jamkazam.com/landing/jamtracks/ray-parker-junior-ghostbusters,Paris Music,S1880 +The Carpenters,They Long To Be Close To You,https://www.jamkazam.com/landing/jamtracks/the-carpenters-they-long-to-be-close-to-you,Tency Music,9010 +Halestorm,Love Bites So Do I,https://www.jamkazam.com/landing/jamtracks/halestorm-love-bites-so-do-i,Tency Music,42485 +The Isley Brothers,This Old Heart of Mine,https://www.jamkazam.com/landing/jamtracks/the-isley-brothers-this-old-heart-of-mine,Paris Music,S0661 +John Legend,All Of Me,https://www.jamkazam.com/landing/jamtracks/john-legend-all-of-me,Tency Music,45000 +The Jimi Hendrix Experience,Hey Joe,https://www.jamkazam.com/landing/jamtracks/the-jimi-hendrix-experience-hey-joe,Tency Music,25332 +Incubus,Drive,https://www.jamkazam.com/landing/jamtracks/incubus-drive,Tency Music,7873 +The Civil Wars,The One That Got Away,https://www.jamkazam.com/landing/jamtracks/the-civil-wars-the-one-that-got-away,Tency Music,44909 +Steve Earle,Guitar Town,https://www.jamkazam.com/landing/jamtracks/steve-earle-guitar-town,Tency Music,39245 +Gordon Lightfoot,Sundown,https://www.jamkazam.com/landing/jamtracks/gordon-lightfoot-sundown,Tency Music,15949 +Ray Lamontagne,Jolene,https://www.jamkazam.com/landing/jamtracks/ray-lamontagne-jolene,Tency Music,47554 +The Rolling Stones,Brown Sugar,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-brown-sugar,Tency Music,11360 +Chuck Berry,You Never Can Tell,https://www.jamkazam.com/landing/jamtracks/chuck-berry-you-never-can-tell,Paris Music,S0510 +Daft Punk,Get Lucky,https://www.jamkazam.com/landing/jamtracks/daft-punk-get-lucky,Tency Music,43521 +Sarah McLachlan,Blackbird,https://www.jamkazam.com/landing/jamtracks/sarah-mclachlan-blackbird,Tency Music,27317 +The Eagles,I Can't Tell You Why,https://www.jamkazam.com/landing/jamtracks/the-eagles-i-cant-tell-you-why,Tency Music,21637 +Green Day,Wake Me Up When September Ends,https://www.jamkazam.com/landing/jamtracks/green-day-wake-me-up-when-september-ends,Tency Music,5650 +Lionel Richie,My Love,https://www.jamkazam.com/landing/jamtracks/lionel-richie-my-love,Tency Music,8198 +Stone Temple Pilots,Sex Type Thing,https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-sex-type-thing,Tency Music,41226 +Tom Petty,Learning To Fly,https://www.jamkazam.com/landing/jamtracks/tom-petty-learning-to-fly,Tency Music,13306 +Kid Rock,Picture,https://www.jamkazam.com/landing/jamtracks/kid-rock-picture,Tency Music,7064 +The Beatles,When I'm Sixty-Four,https://www.jamkazam.com/landing/jamtracks/the-beatles-when-im-sixty-four,Tency Music,10482 +Blake Shelton,God Gave Me You,https://www.jamkazam.com/landing/jamtracks/blake-shelton-god-gave-me-you,Tency Music,37790 +Puddle Of Mudd,Blurry,https://www.jamkazam.com/landing/jamtracks/puddle-of-mudd-blurry,Tency Music,8152 +Kitty Wells,Heaven's Just a Sin Away,https://www.jamkazam.com/landing/jamtracks/kitty-wells-heavens-just-a-sin-away,Paris Music,S3094 +The Rolling Stones,Get Off Of My Cloud,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-get-off-of-my-cloud,Tency Music,11355 +Tina Turner,Proud Mary,https://www.jamkazam.com/landing/jamtracks/tina-turner-proud-mary,Tency Music,13500 +Muse,Psycho,https://www.jamkazam.com/landing/jamtracks/muse-psycho,Tency Music,48857 +Otis Redding,Sittin On The Dock Of The Bay,https://www.jamkazam.com/landing/jamtracks/otis-redding-sittin-on-the-dock-of-the-bay,Tency Music,5477 +Harold Faltermeyer,Axel F,https://www.jamkazam.com/landing/jamtracks/harold-faltermeyer-axel-f,Tency Music,23847 +The Bee Gees,You Should Be Dancing,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-you-should-be-dancing,Tency Music,7536 +Jim Croce,Time In A Bottle,https://www.jamkazam.com/landing/jamtracks/jim-croce-time-in-a-bottle,Tency Music,28752 +The Killers,Human,https://www.jamkazam.com/landing/jamtracks/the-killers-human,Paris Music,S2729 +Beastie Boys,No Sleep Til Brooklyn,https://www.jamkazam.com/landing/jamtracks/beastie-boys-no-sleep-til-brooklyn,Tency Music,27648 +Pato Banton,Baby Come Back,https://www.jamkazam.com/landing/jamtracks/pato-banton-baby-come-back,Paris Music,S2103 +Madonna,Sorry,https://www.jamkazam.com/landing/jamtracks/madonna-sorry,Paris Music,S1447 +T'pau,China In Your Hand,https://www.jamkazam.com/landing/jamtracks/tpau-china-in-your-hand,Paris Music,S3478 +Candi Staton,Young Hearts Run Free,https://www.jamkazam.com/landing/jamtracks/candi-staton-young-hearts-run-free,Paris Music,S0865 +Ivete Sangalo,Chupa Toda,https://www.jamkazam.com/landing/jamtracks/ivete-sangalo-chupa-toda,Tency Music,34297 +Lenny Kravitz,Fly Away,https://www.jamkazam.com/landing/jamtracks/lenny-kravitz-fly-away,Tency Music,9347 +Passenger,Let Her Go,https://www.jamkazam.com/landing/jamtracks/passenger-let-her-go,Tency Music,42288 +Birdy,Wings,https://www.jamkazam.com/landing/jamtracks/birdy-wings,Tency Music,45048 +Elton John,Candle In the Wind,https://www.jamkazam.com/landing/jamtracks/elton-john-candle-in-the-wind,Paris Music,S0284 +Elvis Presley,Polk Salad Annie,https://www.jamkazam.com/landing/jamtracks/elvis-presley-polk-salad-annie,Paris Music,S0502 +Nightwish,Amaranth,https://www.jamkazam.com/landing/jamtracks/nightwish-amaranth,Tency Music,30904 +Dixie Chicks,Travelin Soldier,https://www.jamkazam.com/landing/jamtracks/dixie-chicks-travelin-soldier,Tency Music,8258 +The Rolling Stones,Mother's Little Helper,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-mothers-little-helper,Tency Music,11369 +Aerosmith,Sweet Emotion,https://www.jamkazam.com/landing/jamtracks/aerosmith-sweet-emotion,Tency Music,16809 +Pink Floyd,Waiting For The Worms,https://www.jamkazam.com/landing/jamtracks/pink-floyd-waiting-for-the-worms,Tency Music,48746 +Tim McGraw,Live Like You Were Dying,https://www.jamkazam.com/landing/jamtracks/tim-mcgraw-live-like-you-were-dying,Tency Music,8469 +The Crew Cuts,Sh'Boom,https://www.jamkazam.com/landing/jamtracks/the-crew-cuts-shboom,Paris Music,S3342 +Ska-P,El Vals Del Obrero,https://www.jamkazam.com/landing/jamtracks/ska-p-el-vals-del-obrero,Tency Music,42091 +Squeeze,Labelled With Love,https://www.jamkazam.com/landing/jamtracks/squeeze-labelled-with-love,Paris Music,S1429 +Gospel Singer,The Strife Is O'er The Battle Done,https://www.jamkazam.com/landing/jamtracks/gospel-singer-the-strife-is-oer-the-battle-done,Tency Music,24950 +Sugarloaf,Green-Eyed Lady,https://www.jamkazam.com/landing/jamtracks/sugarloaf-green-eyed-lady,Tency Music,24248 +Chuck Berry,Roll Over Beethoven,https://www.jamkazam.com/landing/jamtracks/chuck-berry-roll-over-beethoven,Tency Music,6919 +Awolnation,Sail,https://www.jamkazam.com/landing/jamtracks/awolnation-sail,Tency Music,43124 +Edison Lighthouse,Love Grows Where My Rosemary Goes,https://www.jamkazam.com/landing/jamtracks/edison-lighthouse-love-grows-where-my-rosemary-goes,Paris Music,S0749 +Sugar Ray,Answer The Phone,https://www.jamkazam.com/landing/jamtracks/sugar-ray-answer-the-phone,Tency Music,24394 +John Legend,You And I (Nobody In The World),https://www.jamkazam.com/landing/jamtracks/john-legend-you-and-i-nobody-in-the-world,Tency Music,45254 +Gospel Singer,There Is A Balm In Gilead,https://www.jamkazam.com/landing/jamtracks/gospel-singer-there-is-a-balm-in-gilead,Tency Music,24256 +Yazz & The Plastic Population,The Only Way Is Up,https://www.jamkazam.com/landing/jamtracks/yazz--the-plastic-population-the-only-way-is-up,Paris Music,S4487 +J Geils Band,Love Stinks,https://www.jamkazam.com/landing/jamtracks/j-geils-band-love-stinks,Tency Music,28809 +Billy Joel,Movin Out (Anthony's Song),https://www.jamkazam.com/landing/jamtracks/billy-joel-movin-out-anthonys-song,Tency Music,17133 +Celia Cruz,Guantanamera,https://www.jamkazam.com/landing/jamtracks/celia-cruz-guantanamera,Tency Music,43394 +Velvet Revolver,Fall To Pieces,https://www.jamkazam.com/landing/jamtracks/velvet-revolver-fall-to-pieces,Tency Music,26850 +Eric Johnson,Cliffs Of Dover,https://www.jamkazam.com/landing/jamtracks/eric-johnson-cliffs-of-dover,Tency Music,48783 +Gary Numan & Tubeway Army,Are Friends Electric ?,https://www.jamkazam.com/landing/jamtracks/gary-numan--tubeway-army-are-friends-electric-,Paris Music,S1729 +The Gipsy Kings,Escucha Me,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-escucha-me,Tency Music,45458 +INXS,Mystify,https://www.jamkazam.com/landing/jamtracks/inxs-mystify,Tency Music,10811 +Kelly Rowland,Motivation,https://www.jamkazam.com/landing/jamtracks/kelly-rowland-motivation,Tency Music,37828 +The Beatles,Rocky Raccoon,https://www.jamkazam.com/landing/jamtracks/the-beatles-rocky-raccoon,Tency Music,10001 +Santana,While My Guitar Gently Weeps,https://www.jamkazam.com/landing/jamtracks/santana-while-my-guitar-gently-weeps,Tency Music,34852 +OneRepublic,I Lived,https://www.jamkazam.com/landing/jamtracks/onerepublic-i-lived,Tency Music,47014 +Marvin Gaye & Kim Weston,It Takes Two,https://www.jamkazam.com/landing/jamtracks/marvin-gaye--kim-weston-it-takes-two,Paris Music,S0662 +Judy Garland,Get Happy,https://www.jamkazam.com/landing/jamtracks/judy-garland-get-happy,Paris Music,S0868 +The Gipsy Kings,Hotel California (Spanish Mix),https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-hotel-california-spanish-mix,Tency Music,32779 +Elis Regina,Mas Que Nada,https://www.jamkazam.com/landing/jamtracks/elis-regina-mas-que-nada,Tency Music,39460 +Take That,Relight My Fire,https://www.jamkazam.com/landing/jamtracks/take-that-relight-my-fire,Paris Music,S1184 +Engelbert Humperdinck,Last Waltz,https://www.jamkazam.com/landing/jamtracks/engelbert-humperdinck-last-waltz,Paris Music,S3906 +Diana Ross,Upside Down,https://www.jamkazam.com/landing/jamtracks/diana-ross-upside-down,Tency Music,5467 +Hall And Oates,Private Eyes,https://www.jamkazam.com/landing/jamtracks/hall-and-oates-private-eyes,Tency Music,30888 +B.B. King,Don't Answer The Door,https://www.jamkazam.com/landing/jamtracks/bb-king-dont-answer-the-door,Tency Music,49230 +Stooshe,Slip,https://www.jamkazam.com/landing/jamtracks/stooshe-slip,Paris Music,S4265 +Gareth Gates & The Kumars,Spirit In the Sky,https://www.jamkazam.com/landing/jamtracks/gareth-gates--the-kumars-spirit-in-the-sky,Paris Music,S0400 +Cheap Trick,I Want You To Want Me (Live Version),https://www.jamkazam.com/landing/jamtracks/cheap-trick-i-want-you-to-want-me-live-version,Tency Music,36471 +The Scissor Sisters,Don't Feel Like Dancin',https://www.jamkazam.com/landing/jamtracks/the-scissor-sisters-dont-feel-like-dancin,Paris Music,S1738 +Eminem,Lose Yourself,https://www.jamkazam.com/landing/jamtracks/eminem-lose-yourself,Tency Music,14437 +Ozzy Osbourne,Crazy Train,https://www.jamkazam.com/landing/jamtracks/ozzy-osbourne-crazy-train,Tency Music,19091 +Danny Wilson,Mary's Prayer,https://www.jamkazam.com/landing/jamtracks/danny-wilson-marys-prayer,Paris Music,S0573 +Roy Wood & Wizzard,See My Baby Jive,https://www.jamkazam.com/landing/jamtracks/roy-wood--wizzard-see-my-baby-jive,Paris Music,S0582 +The Bee Gees,Night Fever,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-night-fever,Paris Music,S0215 +Mark Cohn,Walking In Memphis,https://www.jamkazam.com/landing/jamtracks/mark-cohn-walking-in-memphis,Paris Music,S0377 +Mud,Tiger Feet,https://www.jamkazam.com/landing/jamtracks/mud-tiger-feet,Paris Music,S0599 +Frankie Valli,Grease,https://www.jamkazam.com/landing/jamtracks/frankie-valli-grease,Paris Music,S0611 +Black Eyed Peas,Meet Me Halfway,https://www.jamkazam.com/landing/jamtracks/black-eyed-peas-meet-me-halfway,Paris Music,S3073 +Meatloaf,Bat Out of Hell (shortened version),https://www.jamkazam.com/landing/jamtracks/meatloaf-bat-out-of-hell-shortened-version,Paris Music,S0518 +Duran Duran,View To a Kill,https://www.jamkazam.com/landing/jamtracks/duran-duran-view-to-a-kill,Paris Music,S0600 +Michael Jackson,One Day In Your Life,https://www.jamkazam.com/landing/jamtracks/michael-jackson-one-day-in-your-life,Paris Music,S0401 +Taking Back Sunday,Cute Without The E Cut From The Team,https://www.jamkazam.com/landing/jamtracks/taking-back-sunday-cute-without-the-e-cut-from-the-team,Tency Music,39276 +Billy Idol,Rebel Yell,https://www.jamkazam.com/landing/jamtracks/billy-idol-rebel-yell,Paris Music,S0491 +Justin Timberlake,Rock Your Body,https://www.jamkazam.com/landing/jamtracks/justin-timberlake-rock-your-body,Paris Music,S1189 +Inxs,New Sensation,https://www.jamkazam.com/landing/jamtracks/inxs-new-sensation,Paris Music,S0494 +Justin Timberlake,Cry Me a River,https://www.jamkazam.com/landing/jamtracks/justin-timberlake-cry-me-a-river,Paris Music,S0392 +Roachford,Cuddly Toy,https://www.jamkazam.com/landing/jamtracks/roachford-cuddly-toy,Paris Music,S4853 +Queen,Show Must Go On,https://www.jamkazam.com/landing/jamtracks/queen-show-must-go-on,Paris Music,S2105 +Shola Ama,You Might Need Somebody,https://www.jamkazam.com/landing/jamtracks/shola-ama-you-might-need-somebody,Paris Music,S0286 +Bay City Rollers,Shang-A-Lang,https://www.jamkazam.com/landing/jamtracks/bay-city-rollers-shang-a-lang,Paris Music,S0598 +The Specials,"Rudy, a Message To You",https://www.jamkazam.com/landing/jamtracks/the-specials-rudy-a-message-to-you,Paris Music,S0522 +Fleetwood Mac,You Make Loving Fun,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-you-make-loving-fun,Paris Music,S4607 +Elvis Presley,Blue Suede Shoes,https://www.jamkazam.com/landing/jamtracks/elvis-presley-blue-suede-shoes,Tency Music,7013 +Marvin Gaye,How Sweet It Is,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-how-sweet-it-is,Paris Music,S0604 +Sheryl Crow,Strong Enough,https://www.jamkazam.com/landing/jamtracks/sheryl-crow-strong-enough,Tency Music,18598 +K'NAAN,Wavin Flag,https://www.jamkazam.com/landing/jamtracks/knaan-wavin-flag,Tency Music,25807 +Beyoncé,Listen,https://www.jamkazam.com/landing/jamtracks/beyonc-listen,Paris Music,S2048 +Martha Reeves,Heatwave,https://www.jamkazam.com/landing/jamtracks/martha-reeves-heatwave,Paris Music,S0612 +Marvin Gaye & Tammi Terrell,Ain't No Mountain High Enough,https://www.jamkazam.com/landing/jamtracks/marvin-gaye--tammi-terrell-aint-no-mountain-high-enough,Paris Music,S0663 +Kathy Mattea,Eighteen Wheels & a Dozen Roses,https://www.jamkazam.com/landing/jamtracks/kathy-mattea-eighteen-wheels--a-dozen-roses,Paris Music,S4674 +Paul McCartney,Say Say Say,https://www.jamkazam.com/landing/jamtracks/paul-mccartney-say-say-say,Tency Music,13608 +Tevin Campbell,Can We Talk,https://www.jamkazam.com/landing/jamtracks/tevin-campbell-can-we-talk,Tency Music,11404 +Elvis Presley,Are You Lonesome Tonight?,https://www.jamkazam.com/landing/jamtracks/elvis-presley-are-you-lonesome-tonight,Paris Music,S3295 +Whitney Houston,I Have Nothing,https://www.jamkazam.com/landing/jamtracks/whitney-houston-i-have-nothing,Paris Music,S2611 +Stephanie Mills,Never Knew Love Like This Before,https://www.jamkazam.com/landing/jamtracks/stephanie-mills-never-knew-love-like-this-before,Paris Music,S1737 +Bruce Channel,Hey Baby,https://www.jamkazam.com/landing/jamtracks/bruce-channel-hey-baby,Paris Music,S0519 +Atlanta Rhythm Section,Spooky,https://www.jamkazam.com/landing/jamtracks/atlanta-rhythm-section-spooky,Tency Music,47294 +Thompson Twins,Hold Me Now,https://www.jamkazam.com/landing/jamtracks/thompson-twins-hold-me-now,Paris Music,S0590 +Roberta Flack,You've Got A Friend,https://www.jamkazam.com/landing/jamtracks/roberta-flack-youve-got-a-friend,Tency Music,40454 +Patrick Swayze,She's Like the Wind,https://www.jamkazam.com/landing/jamtracks/patrick-swayze-shes-like-the-wind,Paris Music,S0521 +Mary Wells,My Guy,https://www.jamkazam.com/landing/jamtracks/mary-wells-my-guy,Paris Music,S0605 +Rainbow,Since You've Been Gone,https://www.jamkazam.com/landing/jamtracks/rainbow-since-youve-been-gone,Paris Music,S0498 +Depeche Mode,Just Can't Get Enough,https://www.jamkazam.com/landing/jamtracks/depeche-mode-just-cant-get-enough,Paris Music,S0506 +The Black Keys,Tighten Up,https://www.jamkazam.com/landing/jamtracks/the-black-keys-tighten-up,Tency Music,34551 +Albert Hammond,It Never Rains In Southern California,https://www.jamkazam.com/landing/jamtracks/albert-hammond-it-never-rains-in-southern-california,Paris Music,S1435 +Style Council,You're the Best Thing,https://www.jamkazam.com/landing/jamtracks/style-council-youre-the-best-thing,Paris Music,S0585 +The Darts,Daddy Cool,https://www.jamkazam.com/landing/jamtracks/the-darts-daddy-cool,Paris Music,S4228 +The Turtles,Happy Together,https://www.jamkazam.com/landing/jamtracks/the-turtles-happy-together,Tency Music,9762 +Bryan Ferry,Slave To Love,https://www.jamkazam.com/landing/jamtracks/bryan-ferry-slave-to-love,Paris Music,S0587 +The Proclaimers,I'm Gonna Be (500 Miles),https://www.jamkazam.com/landing/jamtracks/the-proclaimers-im-gonna-be-500-miles,Tency Music,6456 +The Monkees,Last Train To Clarksville,https://www.jamkazam.com/landing/jamtracks/the-monkees-last-train-to-clarksville,Tency Music,27970 +Madonna,Hung Up,https://www.jamkazam.com/landing/jamtracks/madonna-hung-up,Paris Music,S1520 +Elvis Presley,She's Not You,https://www.jamkazam.com/landing/jamtracks/elvis-presley-shes-not-you,Paris Music,S0798 +The Police,Every Breath You Take,https://www.jamkazam.com/landing/jamtracks/the-police-every-breath-you-take,Paris Music,S0298 +Robbie Williams,Bodies,https://www.jamkazam.com/landing/jamtracks/robbie-williams-bodies,Paris Music,S3011 +The Gipsy Kings,Un Amor,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-un-amor,Tency Music,32606 +The Bee Gees,Stayin' Alive,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-stayin-alive,Paris Music,S1138 +Colbie Caillat,Try,https://www.jamkazam.com/landing/jamtracks/colbie-caillat-try,Tency Music,47300 +Thin Lizzy,Dancing In the Moonlight,https://www.jamkazam.com/landing/jamtracks/thin-lizzy-dancing-in-the-moonlight,Paris Music,S3258 +Erasure,Gimme Gimme Gimme,https://www.jamkazam.com/landing/jamtracks/erasure-gimme-gimme-gimme,Paris Music,S2794 +The Faces,Stay With Me,https://www.jamkazam.com/landing/jamtracks/the-faces-stay-with-me,Paris Music,S0957 +The Temptations,Papa Was A Rolling Stone,https://www.jamkazam.com/landing/jamtracks/the-temptations-papa-was-a-rolling-stone,Tency Music,9270 +Willie Nelson,My Heroes Have Always Been Cowboys,https://www.jamkazam.com/landing/jamtracks/willie-nelson-my-heroes-have-always-been-cowboys,Tency Music,28742 +J Geils Band,Centerfold,https://www.jamkazam.com/landing/jamtracks/j-geils-band-centerfold,Tency Music,10895 +Waterboys,Whole of the Moon,https://www.jamkazam.com/landing/jamtracks/waterboys-whole-of-the-moon,Paris Music,S0719 +Willie Nelson,Whiskey River (Live),https://www.jamkazam.com/landing/jamtracks/willie-nelson-whiskey-river-live,Tency Music,11238 +The Eagles,Seven Bridges Road,https://www.jamkazam.com/landing/jamtracks/the-eagles-seven-bridges-road,Tency Music,30039 +Roy Orbison,You Got It,https://www.jamkazam.com/landing/jamtracks/roy-orbison-you-got-it,Tency Music,13719 +The Rolling Stones,Tumbling Dice,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-tumbling-dice,Paris Music,S4540 +Mariah Carey,All I Want for Christmas,https://www.jamkazam.com/landing/jamtracks/mariah-carey-all-i-want-for-christmas,Paris Music,S0094 +Whitney Houston,One Moment In Time,https://www.jamkazam.com/landing/jamtracks/whitney-houston-one-moment-in-time,Paris Music,S0430 +The Blues Brothers,Shake a Tailfeather,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-shake-a-tailfeather,Paris Music,S0759 +Cher,Just Like Jesse James,https://www.jamkazam.com/landing/jamtracks/cher-just-like-jesse-james,Paris Music,S1611 +Gerry Rafferty,Right Down The Line,https://www.jamkazam.com/landing/jamtracks/gerry-rafferty-right-down-the-line,Tency Music,40559 +Tom Jones,Celebration - Live 80's US TV Special,https://www.jamkazam.com/landing/jamtracks/tom-jones-celebration---live-80s-us-tv-special,Paris Music,S3186 +The Eagles,How Long,https://www.jamkazam.com/landing/jamtracks/the-eagles-how-long,Paris Music,S2416 +Jim Reeves,Welcome To My World,https://www.jamkazam.com/landing/jamtracks/jim-reeves-welcome-to-my-world,Paris Music,S1433 +Irene Cara,Flashdance (What a Feeling),https://www.jamkazam.com/landing/jamtracks/irene-cara-flashdance-what-a-feeling,Paris Music,S1857 +Stephen 'Tin Tin' Duffy,Kiss Me,https://www.jamkazam.com/landing/jamtracks/stephen-tin-tin-duffy-kiss-me,Paris Music,S1638 +Morrissey,Everyday Is Like Sunday,https://www.jamkazam.com/landing/jamtracks/morrissey-everyday-is-like-sunday,Paris Music,S1643 +Alesha Dixon,Boy Does Nothing,https://www.jamkazam.com/landing/jamtracks/alesha-dixon-boy-does-nothing,Paris Music,S2737 +The Wallflowers,One Headlight,https://www.jamkazam.com/landing/jamtracks/the-wallflowers-one-headlight,Tency Music,11218 +ZZ Top,Jesus Just Left Chicago,https://www.jamkazam.com/landing/jamtracks/zz-top-jesus-just-left-chicago,Tency Music,45090 +Kacey Musgraves,Follow Your Arrow,https://www.jamkazam.com/landing/jamtracks/kacey-musgraves-follow-your-arrow,Tency Music,43699 +From The Jersey Boys,Can't Take My Eyes off Of You,https://www.jamkazam.com/landing/jamtracks/from-the-jersey-boys-cant-take-my-eyes-off-of-you,Paris Music,S3391 +Brian Hyland,Itsy Bitsy Teenie Weenie Yellow Polka Dot Bikini,https://www.jamkazam.com/landing/jamtracks/brian-hyland-itsy-bitsy-teenie-weenie-yellow-polka-dot-bikini,Paris Music,S2626 +Bryan Ferry,Price of Love,https://www.jamkazam.com/landing/jamtracks/bryan-ferry-price-of-love,Paris Music,S2086 +The Verve,Bitter Sweet Symphony,https://www.jamkazam.com/landing/jamtracks/the-verve-bitter-sweet-symphony,Tency Music,9935 +Beyoncé,Ave Maria,https://www.jamkazam.com/landing/jamtracks/beyonc-ave-maria,Paris Music,S2774 +Pistol Annies,Dear Sobriety,https://www.jamkazam.com/landing/jamtracks/pistol-annies-dear-sobriety,Tency Music,44929 +Fontella Bass,Rescue Me,https://www.jamkazam.com/landing/jamtracks/fontella-bass-rescue-me,Paris Music,S0664 +Larry Williams,Bony Moronie,https://www.jamkazam.com/landing/jamtracks/larry-williams-bony-moronie,Paris Music,S1193 +Harry Belafonte,Jump In the Line,https://www.jamkazam.com/landing/jamtracks/harry-belafonte-jump-in-the-line,Paris Music,S3378 +The Doobie Brothers,Black Water,https://www.jamkazam.com/landing/jamtracks/the-doobie-brothers-black-water,Tency Music,15598 +Michael Buble,Put Your Head On My Shoulder,https://www.jamkazam.com/landing/jamtracks/michael-buble-put-your-head-on-my-shoulder,Paris Music,S1652 +The Carpenters,Jambalaya,https://www.jamkazam.com/landing/jamtracks/the-carpenters-jambalaya,Paris Music,S0875 +Toto,Rosanna,https://www.jamkazam.com/landing/jamtracks/toto-rosanna,Tency Music,14019 +Cliff Richard,Stuck On You,https://www.jamkazam.com/landing/jamtracks/cliff-richard-stuck-on-you,Paris Music,S4485 +George Jones,He Stopped Loving Her Today,https://www.jamkazam.com/landing/jamtracks/george-jones-he-stopped-loving-her-today,Tency Music,17875 +Jeff Beck,Hi Ho Silver Lining,https://www.jamkazam.com/landing/jamtracks/jeff-beck-hi-ho-silver-lining,Paris Music,S0212 +Pink Floyd,Have A Cigar,https://www.jamkazam.com/landing/jamtracks/pink-floyd-have-a-cigar,Tency Music,44799 +Jocelyn Brown,Somebody Else's Guy,https://www.jamkazam.com/landing/jamtracks/jocelyn-brown-somebody-elses-guy,Paris Music,S4608 +The Supremes,You Can't Hurry Love,https://www.jamkazam.com/landing/jamtracks/the-supremes-you-cant-hurry-love,Paris Music,S0300 +Stevie Nicks,Leather And Lace,https://www.jamkazam.com/landing/jamtracks/stevie-nicks-leather-and-lace,Tency Music,11429 +Kay Starr,Rock & Roll Waltz,https://www.jamkazam.com/landing/jamtracks/kay-starr-rock--roll-waltz,Paris Music,S3500 +Dokken,It's Not Love,https://www.jamkazam.com/landing/jamtracks/dokken-its-not-love,Tency Music,33962 +The Four Tops,Same Old Song,https://www.jamkazam.com/landing/jamtracks/the-four-tops-same-old-song,Paris Music,S0592 +The Kooks,She Moves In Her Own Way,https://www.jamkazam.com/landing/jamtracks/the-kooks-she-moves-in-her-own-way,Paris Music,S1861 +Roxy Music,Jealous Guy (Live),https://www.jamkazam.com/landing/jamtracks/roxy-music-jealous-guy-live,Paris Music,S1198 +Oasis,Lyla,https://www.jamkazam.com/landing/jamtracks/oasis-lyla,Paris Music,S1205 +Bonnie Tyler,Holding Out for a Hero,https://www.jamkazam.com/landing/jamtracks/bonnie-tyler-holding-out-for-a-hero,Paris Music,S0299 +Creedence Clearwater Revival,Down On The Corner,https://www.jamkazam.com/landing/jamtracks/creedence-clearwater-revival-down-on-the-corner,Tency Music,10894 +Erasure,Stop,https://www.jamkazam.com/landing/jamtracks/erasure-stop,Paris Music,S0983 +Michael Buble,Home,https://www.jamkazam.com/landing/jamtracks/michael-buble-home,Paris Music,S1367 +Cameo,Word Up,https://www.jamkazam.com/landing/jamtracks/cameo-word-up,Paris Music,S1740 +Magic,Rude,https://www.jamkazam.com/landing/jamtracks/magic-rude,Paris Music,S4626 +Cliff Richard,Minute You're Gone,https://www.jamkazam.com/landing/jamtracks/cliff-richard-minute-youre-gone,Paris Music,S1357 +The Walker Brothers,Sun Ain't Gonna Shine Anymore,https://www.jamkazam.com/landing/jamtracks/the-walker-brothers-sun-aint-gonna-shine-anymore,Paris Music,S1107 +Gabrielle,Give Me a Little More Time,https://www.jamkazam.com/landing/jamtracks/gabrielle-give-me-a-little-more-time,Paris Music,S1187 +Billie Holiday,Love For Sale,https://www.jamkazam.com/landing/jamtracks/billie-holiday-love-for-sale,Tency Music,42831 +Dire Straits,Brothers In Arms,https://www.jamkazam.com/landing/jamtracks/dire-straits-brothers-in-arms,Paris Music,S2417 +John Travolta,Greased Lightning,https://www.jamkazam.com/landing/jamtracks/john-travolta-greased-lightning,Paris Music,S0660 +Danny & The Juniors,At the Hop,https://www.jamkazam.com/landing/jamtracks/danny--the-juniors-at-the-hop,Paris Music,S1191 +David Bowie,Let's Dance,https://www.jamkazam.com/landing/jamtracks/david-bowie-lets-dance,Paris Music,S2104 +Soggy Bottom Boys,I Am A Man Of Constant Sorrow,https://www.jamkazam.com/landing/jamtracks/soggy-bottom-boys-i-am-a-man-of-constant-sorrow,Tency Music,7774 +A-Ha,Take On Me,https://www.jamkazam.com/landing/jamtracks/a-ha-take-on-me,Tency Music,9977 +Elvis Presley,Love Me,https://www.jamkazam.com/landing/jamtracks/elvis-presley-love-me,Paris Music,S3513 +The Calling,Wherever You Will Go,https://www.jamkazam.com/landing/jamtracks/the-calling-wherever-you-will-go,Paris Music,S0220 +Abba,Super Trouper,https://www.jamkazam.com/landing/jamtracks/abba-super-trouper,Paris Music,S0816 +Elvis,Teddy Bear (A Cappella),https://www.jamkazam.com/landing/jamtracks/elvis-teddy-bear-acapella,Tim Waurick, +Rihanna,What's My Name,https://www.jamkazam.com/landing/jamtracks/rihanna-whats-my-name,Paris Music,S3522 +Cliff Richard,Young Ones,https://www.jamkazam.com/landing/jamtracks/cliff-richard-young-ones,Paris Music,S1335 +Chuck Berry,Almost Grown,https://www.jamkazam.com/landing/jamtracks/chuck-berry-almost-grown,Paris Music,S1750 +Rod Stewart & Ron Isley,This Old Heart of Mine,https://www.jamkazam.com/landing/jamtracks/rod-stewart--ron-isley-this-old-heart-of-mine,Paris Music,S4241 +Petula Clark,Downtown ,https://www.jamkazam.com/landing/jamtracks/petula-clark-downtown,Paris Music,S3998 +Van Halen,Why Can't This Be Love,https://www.jamkazam.com/landing/jamtracks/van-halen-why-cant-this-be-love,Tency Music,17701 +Labi Sifre,Something Inside so Strong,https://www.jamkazam.com/landing/jamtracks/labi-sifre-something-inside-so-strong,Paris Music,S0158 +The Beach Boys,I Get Around,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-i-get-around,Tency Music,12881 +Robbie Williams,Let Love Be Your Energy,https://www.jamkazam.com/landing/jamtracks/robbie-williams-let-love-be-your-energy,Paris Music,S0885 +The Five Stairsteps,O-O-H Child,https://www.jamkazam.com/landing/jamtracks/the-five-stairsteps-o-o-h-child,Tency Music,6840 +Neil Diamond,Something Blue,https://www.jamkazam.com/landing/jamtracks/neil-diamond-something-blue,Tency Music,47774 +Randy Van Warmer,Just When I Needed You Most,https://www.jamkazam.com/landing/jamtracks/randy-van-warmer-just-when-i-needed-you-most,Paris Music,S0897 +Stone Temple Pilots,Dancing Days,https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-dancing-days,Tency Music,40189 +Erasure,Victim of Love,https://www.jamkazam.com/landing/jamtracks/erasure-victim-of-love,Paris Music,S1057 +Noel Gallagher's High Flying Birds,Death of You & Me,https://www.jamkazam.com/landing/jamtracks/noel-gallaghers-high-flying-birds-death-of-you--me,Paris Music,S3735 +Cliff Richard,In The Country,https://www.jamkazam.com/landing/jamtracks/cliff-richard-in-the-country,Paris Music,S4796 +Hazel O'connor,Will You,https://www.jamkazam.com/landing/jamtracks/hazel-oconnor-will-you,Paris Music,S3352 +The Searchers,Needles & Pins '88,https://www.jamkazam.com/landing/jamtracks/the-searchers-needles--pins-88,Paris Music,S4797 +Cliff Richard,Rip It Up,https://www.jamkazam.com/landing/jamtracks/cliff-richard-rip-it-up,Paris Music,S4428 +Killswitch Engage,End of Heartache,https://www.jamkazam.com/landing/jamtracks/killswitch-engage-end-of-heartache,Paris Music,S4433 +The Dixie Cups,Chapel of Love,https://www.jamkazam.com/landing/jamtracks/the-dixie-cups-chapel-of-love,Paris Music,S2041 +The Everly Brothers,Claudette,https://www.jamkazam.com/landing/jamtracks/the-everly-brothers-claudette,Paris Music,S1194 +The Stranglers,Golden Brown,https://www.jamkazam.com/landing/jamtracks/the-stranglers-golden-brown,Paris Music,S2059 +Elton John,Saturday Night's Alright For Fighting,https://www.jamkazam.com/landing/jamtracks/elton-john-saturday-nights-alright-for-fighting,Music Master Exchange LLC, +Haydn Quartet,Sweet Adeline (A Cappella),https://www.jamkazam.com/landing/jamtracks/haydn-quartet-sweet-adeline-acapella,Tim Waurick, +Ivete Sangalo,Berimbau Metalizado,https://www.jamkazam.com/landing/jamtracks/ivete-sangalo-berimbau-metalizado,Tency Music,21505 +Cliff Richard,Move It,https://www.jamkazam.com/landing/jamtracks/cliff-richard-move-it,Paris Music,S1203 +Rita Coolidge,We're All Alone,https://www.jamkazam.com/landing/jamtracks/rita-coolidge-were-all-alone,Paris Music,S1241 +Billy Currington,People Are Crazy,https://www.jamkazam.com/landing/jamtracks/billy-currington-people-are-crazy,Tency Music,25503 +Coldplay,Sky Full of Stars,https://www.jamkazam.com/landing/jamtracks/coldplay-sky-full-of-stars,Paris Music,S4558 +Showaddywaddy,Under the Moon of Love,https://www.jamkazam.com/landing/jamtracks/showaddywaddy-under-the-moon-of-love,Paris Music,S0361 +From The Jersey Boys,December 1963 (Oh What a Night),https://www.jamkazam.com/landing/jamtracks/from-the-jersey-boys-december-1963-oh-what-a-night,Paris Music,S2778 +Eddie Cochran,C'Mon Everybody,https://www.jamkazam.com/landing/jamtracks/eddie-cochran-cmon-everybody,Paris Music,S1195 +Bonnie Tyler,Total Eclipse Of The Heart,https://www.jamkazam.com/landing/jamtracks/bonnie-tyler-total-eclipse-of-the-heart,Tency Music,6117 +Duran Duran,Save A Prayer,https://www.jamkazam.com/landing/jamtracks/duran-duran-save-a-prayer,Tency Music,9988 +Paul Weller,Thinking of You,https://www.jamkazam.com/landing/jamtracks/paul-weller-thinking-of-you,Paris Music,S2010 +Michael Jackson,Don't Stop 'Til You Get Enough,https://www.jamkazam.com/landing/jamtracks/michael-jackson-dont-stop-til-you-get-enough,Paris Music,S4247 +Style Council,My Ever Changing Mood,https://www.jamkazam.com/landing/jamtracks/style-council-my-ever-changing-mood,Paris Music,S2005 +Fleetwood Mac,Gold Dust Woman,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-gold-dust-woman,Tency Music,46013 +Roxy Music,Love Is The Drug,https://www.jamkazam.com/landing/jamtracks/roxy-music-love-is-the-drug,Tency Music,24765 +Free,All Right Now,https://www.jamkazam.com/landing/jamtracks/free-all-right-now,Paris Music,S0966 +Blondie,(I'm Always Touched By Your) Presence Dear,https://www.jamkazam.com/landing/jamtracks/blondie-im-always-touched-by-your-presence-dear,Paris Music,S1633 +Edward Sharpe And The Magnetic Zeros,Home,https://www.jamkazam.com/landing/jamtracks/edward-sharpe-and-the-magnetic-zeros-home,Tency Music,35842 +Elvis Presley,Good Luck Charm,https://www.jamkazam.com/landing/jamtracks/elvis-presley-good-luck-charm,Paris Music,S0795 +The Jam,Town Called Malice,https://www.jamkazam.com/landing/jamtracks/the-jam-town-called-malice,Paris Music,S3294 +Bryan Ferry,Let's Stick Together,https://www.jamkazam.com/landing/jamtracks/bryan-ferry-lets-stick-together,Paris Music,S0571 +Katrina & The Waves,Walking On Sunshine,https://www.jamkazam.com/landing/jamtracks/katrina--the-waves-walking-on-sunshine,Paris Music,S0195 +Metallica,Nothing Else Matters,https://www.jamkazam.com/landing/jamtracks/metallica-nothing-else-matters,Damage Inc., +Eurythmics & Aretha Franklin,Sisters Are Doing It for Themselves,https://www.jamkazam.com/landing/jamtracks/eurythmics--aretha-franklin-sisters-are-doing-it-for-themselves,Paris Music,S2667 +Bobby Darin,If I Were a Carpenter,https://www.jamkazam.com/landing/jamtracks/bobby-darin-if-i-were-a-carpenter,Paris Music,S3591 +Nat King Cole,(I Love You) For Sentimental Reasons,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-i-love-you-for-sentimental-reasons,Tency Music,21256 +The Drifters,Come On Over to My Place,https://www.jamkazam.com/landing/jamtracks/the-drifters-come-on-over-to-my-place,Paris Music,S4177 +Chuck Berry,No Particular Place To Go,https://www.jamkazam.com/landing/jamtracks/chuck-berry-no-particular-place-to-go,Paris Music,S1621 +Elkie Brooks,Pearl's a Singer,https://www.jamkazam.com/landing/jamtracks/elkie-brooks-pearls-a-singer,Paris Music,S0203 +Chubbey Checker,Let's Twist Again,https://www.jamkazam.com/landing/jamtracks/chubbey-checker-lets-twist-again,Paris Music,S0191 +Elvis Presley,Mess of Blues,https://www.jamkazam.com/landing/jamtracks/elvis-presley-mess-of-blues,Paris Music,S0797 +Simon And Garfunkel,The 59th Street Bridge Song (Feelin Groovy),https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-the-59th-street-bridge-song-feelin-groovy,Tency Music,22292 +Barbra Streisand,Woman In Love,https://www.jamkazam.com/landing/jamtracks/barbra-streisand-woman-in-love,Paris Music,S3486 +Spandau Ballet,Through the Barricades,https://www.jamkazam.com/landing/jamtracks/spandau-ballet-through-the-barricades,Paris Music,S0011 +Madonna,Material Girl,https://www.jamkazam.com/landing/jamtracks/madonna-material-girl,Paris Music,S2664 +Jimmy Ruffin,What Becomes of the Broken Hearted,https://www.jamkazam.com/landing/jamtracks/jimmy-ruffin-what-becomes-of-the-broken-hearted,Paris Music,S0668 +James Brown,I Got You (I Feel Good),https://www.jamkazam.com/landing/jamtracks/james-brown-i-got-you-i-feel-good,Tency Music,6905 +Lionel Richie,Easy,https://www.jamkazam.com/landing/jamtracks/lionel-richie-easy,Paris Music,S0704 +Barbra Streisand,Don't Rain On My Parade,https://www.jamkazam.com/landing/jamtracks/barbra-streisand-dont-rain-on-my-parade,Paris Music,S4188 +Elvis Costello,Olivers Army,https://www.jamkazam.com/landing/jamtracks/elvis-costello-olivers-army,Paris Music,S4556 +Ziggy Marley And The Melody Makers,One Bright Day,https://www.jamkazam.com/landing/jamtracks/ziggy-marley-and-the-melody-makers-one-bright-day,Tency Music,28544 +The Tremeloes,Silence Is Golden,https://www.jamkazam.com/landing/jamtracks/the-tremeloes-silence-is-golden,Paris Music,S4308 +Go West,King of Wishful Thinking,https://www.jamkazam.com/landing/jamtracks/go-west-king-of-wishful-thinking,Paris Music,S0577 +Dire Straits,Tunnel Of Love,https://www.jamkazam.com/landing/jamtracks/dire-straits-tunnel-of-love,Tency Music,28953 +Regina Spektor,Samson,https://www.jamkazam.com/landing/jamtracks/regina-spektor-samson,Tency Music,24429 +Janis Ian,At Seventeen,https://www.jamkazam.com/landing/jamtracks/janis-ian-at-seventeen,Paris Music,S0002 +Shinedown,45,https://www.jamkazam.com/landing/jamtracks/shinedown-45,Tency Music,25646 +David Bowie,Jean Genie,https://www.jamkazam.com/landing/jamtracks/david-bowie-jean-genie,Paris Music,S4413 +ZZ Top,Beer Drinkers And Hell Raisers,https://www.jamkazam.com/landing/jamtracks/zz-top-beer-drinkers-and-hell-raisers,Tency Music,47320 +Britney Spears,Toxic,https://www.jamkazam.com/landing/jamtracks/britney-spears-toxic,Paris Music,S0768 +Anastacia,I'm Outta Love,https://www.jamkazam.com/landing/jamtracks/anastacia-im-outta-love,Paris Music,S0016 +Band Aid,Do They Know It's Christmas ?,https://www.jamkazam.com/landing/jamtracks/band-aid-do-they-know-its-christmas-,Paris Music,S0020 +Erasure,Oh L'Amour,https://www.jamkazam.com/landing/jamtracks/erasure-oh-lamour,Paris Music,S1034 +The Mamas And The Papas,Monday Monday,https://www.jamkazam.com/landing/jamtracks/the-mamas-and-the-papas-monday-monday,Tency Music,9744 +Stevie Ray Vaughan,Pride And Joy,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-pride-and-joy,Steven Buckner, +Bobby 'Boris' Pickett,Monster Mash,https://www.jamkazam.com/landing/jamtracks/bobby-boris-pickett-monster-mash,Paris Music,S3497 +Beautiful South,I Need a Little Time,https://www.jamkazam.com/landing/jamtracks/beautiful-south-i-need-a-little-time,Paris Music,S0166 +Shakin' Stevens,Green Door,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-green-door,Paris Music,S2501 +Katy Perry,One That Got Away,https://www.jamkazam.com/landing/jamtracks/katy-perry-one-that-got-away,Paris Music,S3817 +Snow Patrol,Spitting Games,https://www.jamkazam.com/landing/jamtracks/snow-patrol-spitting-games,Paris Music,S0937 +The Sweet,Blockbuster,https://www.jamkazam.com/landing/jamtracks/the-sweet-blockbuster,Paris Music,S1035 +Cliff Richard,School Days,https://www.jamkazam.com/landing/jamtracks/cliff-richard-school-days,Paris Music,S4477 +The Bellamy Brothers,Let Your Love Flow,https://www.jamkazam.com/landing/jamtracks/the-bellamy-brothers-let-your-love-flow,Paris Music,S0920 +The Proclaimers,Sunshine On Leith,https://www.jamkazam.com/landing/jamtracks/the-proclaimers-sunshine-on-leith,Paris Music,S4190 +Elvis Presley,Marie's the Name of His Latest Flame,https://www.jamkazam.com/landing/jamtracks/elvis-presley-maries-the-name-of-his-latest-flame,Paris Music,S0796 +Richie Stephens,Rain From The Sky,https://www.jamkazam.com/landing/jamtracks/richie-stephens-rain-from-the-sky-steely-and-clevie,Steely & Clevie, +Chico And The Gypsies,Besame Mucho,https://www.jamkazam.com/landing/jamtracks/chico-and-the-gypsies-besame-mucho,Tency Music,44263 +Wilson Pickett,Land of 1000 Dances,https://www.jamkazam.com/landing/jamtracks/wilson-pickett-land-of-1000-dances,Paris Music,S0682 +Bon Jovi,Livin' On a Prayer,https://www.jamkazam.com/landing/jamtracks/bon-jovi-livin-on-a-prayer,Paris Music,S2677 +Amii Stewart,Knock On Wood,https://www.jamkazam.com/landing/jamtracks/amii-stewart-knock-on-wood,Paris Music,S2320 +Jimmy Eat World,Bleed American,https://www.jamkazam.com/landing/jamtracks/jimmy-eat-world-bleed-american,Tency Music,24705 +Jimmy Eat World,Pain,https://www.jamkazam.com/landing/jamtracks/jimmy-eat-world-pain,Tency Music,11527 +New Order,Regret,https://www.jamkazam.com/landing/jamtracks/new-order-regret,Paris Music,S1751 +Frank Sinatra,My Kind of Town,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-my-kind-of-town,Paris Music,S0815 +Michael Jackson & Siedah Garrett,I Just Can't Stop Loving You,https://www.jamkazam.com/landing/jamtracks/michael-jackson--siedah-garrett-i-just-cant-stop-loving-you,Paris Music,S2326 +David Bowie,Oh You Pretty Things,https://www.jamkazam.com/landing/jamtracks/david-bowie-oh-you-pretty-things,Paris Music,S2428 +Dean Martin,That's Amore,https://www.jamkazam.com/landing/jamtracks/dean-martin-thats-amore,Paris Music,S0886 +Diana Ross,Chain Reaction,https://www.jamkazam.com/landing/jamtracks/diana-ross-chain-reaction,Paris Music,S3488 +Bing Crosby & Grace Kelly,True Love,https://www.jamkazam.com/landing/jamtracks/bing-crosby--grace-kelly-true-love,Paris Music,S4121 +The Real Thing,You To Me Are Everything,https://www.jamkazam.com/landing/jamtracks/the-real-thing-you-to-me-are-everything,Paris Music,S0439 +September,Cry for You,https://www.jamkazam.com/landing/jamtracks/september-cry-for-you,Paris Music,S3013 +Guns N' Roses,Welcome To The Jungle,https://www.jamkazam.com/landing/jamtracks/guns-n-roses-welcome-to-the-jungle,Chad Atkins, +The Drifters,Saturday Night At the Movies,https://www.jamkazam.com/landing/jamtracks/the-drifters-saturday-night-at-the-movies,Paris Music,S0194 +Mika,Grace Kelly,https://www.jamkazam.com/landing/jamtracks/mika-grace-kelly,Paris Music,S2341 +Glee Cast,It's Not Unusual,https://www.jamkazam.com/landing/jamtracks/glee-cast-its-not-unusual,Paris Music,S3842 +The Hollies,Bus Stop,https://www.jamkazam.com/landing/jamtracks/the-hollies-bus-stop,Paris Music,S3392 +Elvis Presley,I Can't Help Falling In Love With You,https://www.jamkazam.com/landing/jamtracks/elvis-presley-i-cant-help-falling-in-love-with-you,Paris Music,S0803 +The Monkees,Pleasant Valley Sunday,https://www.jamkazam.com/landing/jamtracks/the-monkees-pleasant-valley-sunday,Paris Music,S2588 +Average White Band,Let's Go Round Again,https://www.jamkazam.com/landing/jamtracks/average-white-band-lets-go-round-again,Paris Music,S4616 +Blue With Elton John,Sorry Seems To Be the Hardest Word,https://www.jamkazam.com/landing/jamtracks/blue-with-elton-john-sorry-seems-to-be-the-hardest-word,Paris Music,S0318 +Hard Fi,Suburban Knights,https://www.jamkazam.com/landing/jamtracks/hard-fi-suburban-knights,Paris Music,S2321 +Goo Goo Dolls,Iris,https://www.jamkazam.com/landing/jamtracks/goo-goo-dolls-iris,Tency Music,9025 +George Michael,Jesus To a Child,https://www.jamkazam.com/landing/jamtracks/george-michael-jesus-to-a-child,Paris Music,S2645 +Glee Cast,Leaving On a Jet Plane,https://www.jamkazam.com/landing/jamtracks/glee-cast-leaving-on-a-jet-plane,Paris Music,S3423 +The Kinks,Sunny Afternoon,https://www.jamkazam.com/landing/jamtracks/the-kinks-sunny-afternoon,Paris Music,S2050 +Roy Orbison,Only The Lonely,https://www.jamkazam.com/landing/jamtracks/roy-orbison-only-the-lonely,Tency Music,5475 +Debbie Harry,French Kissing In the USA,https://www.jamkazam.com/landing/jamtracks/debbie-harry-french-kissing-in-the-usa,Paris Music,S2324 +Eric Clapton,Layla - Unplugged,https://www.jamkazam.com/landing/jamtracks/eric-clapton-layla---unplugged,Paris Music,S2006 +Connie Francis,Lipstick On Your Collar,https://www.jamkazam.com/landing/jamtracks/connie-francis-lipstick-on-your-collar,Paris Music,S0213 +Five Satins,In the Still of The Night,https://www.jamkazam.com/landing/jamtracks/five-satins-in-the-still-of-the-night,Paris Music,S1086 +Fine Young Cannibals,Suspicious Minds,https://www.jamkazam.com/landing/jamtracks/fine-young-cannibals-suspicious-minds,Paris Music,S4496 +Abba,"Money, Money, Money",https://www.jamkazam.com/landing/jamtracks/abba-money-money-money,Paris Music,S0779 +Gerry & The Pacemakers,How Do You Do It?,https://www.jamkazam.com/landing/jamtracks/gerry--the-pacemakers-how-do-you-do-it,Paris Music,S3963 +U2,Sometimes You Can't Make It On Your Own,https://www.jamkazam.com/landing/jamtracks/u2-sometimes-you-cant-make-it-on-your-own,Paris Music,S1082 +Buddy Holly,Maybe Baby,https://www.jamkazam.com/landing/jamtracks/buddy-holly-maybe-baby,Tency Music,30590 +Information Society,What's On Your Mind (Pure Energy),https://www.jamkazam.com/landing/jamtracks/information-society-whats-on-your-mind-pure-energy,Paris Music,S3837 +Marvin Gaye,I Heard It Through the Grapevine,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-i-heard-it-through-the-grapevine,Paris Music,S0670 +Depeche Mode,World In My Eyes,https://www.jamkazam.com/landing/jamtracks/depeche-mode-world-in-my-eyes,Paris Music,S1039 +The Jam,Butterfly Collector,https://www.jamkazam.com/landing/jamtracks/the-jam-butterfly-collector,Paris Music,S1783 +Olly Murs,Dance With Me Tonight,https://www.jamkazam.com/landing/jamtracks/olly-murs-dance-with-me-tonight,Paris Music,S3799 +Kylie Minogue,Spinning Around,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-spinning-around,Paris Music,S0077 +Ella Fitzgerald,Everytime We Say Goodbye,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-everytime-we-say-goodbye,Paris Music,S0071 +Daniel Bedingfield,If You're Not the One,https://www.jamkazam.com/landing/jamtracks/daniel-bedingfield-if-youre-not-the-one,Paris Music,S0315 +Take That,Eight Letters,https://www.jamkazam.com/landing/jamtracks/take-that-eight-letters,Paris Music,S3787 +Ricky Nelson,Hello Mary Lou,https://www.jamkazam.com/landing/jamtracks/ricky-nelson-hello-mary-lou,Paris Music,S1260 +Johnny Preston,Running Bear,https://www.jamkazam.com/landing/jamtracks/johnny-preston-running-bear,Paris Music,S1285 +The Animals,Bring It On Home to Me,https://www.jamkazam.com/landing/jamtracks/the-animals-bring-it-on-home-to-me,Paris Music,S4209 +Gordon Lightfoot,Rainy Day People,https://www.jamkazam.com/landing/jamtracks/gordon-lightfoot-rainy-day-people,Paris Music,S4569 +Alannah Myles,Black Velvet,https://www.jamkazam.com/landing/jamtracks/alannah-myles-black-velvet,Paris Music,S0723 +Stevie Ray Vaughan,Look At Little Sister,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-look-at-little-sister,Tency Music,46179 +Depeche Mode,Enjoy the Silence,https://www.jamkazam.com/landing/jamtracks/depeche-mode-enjoy-the-silence,Paris Music,S1037 +Style Council,Shout To the Top,https://www.jamkazam.com/landing/jamtracks/style-council-shout-to-the-top,Paris Music,S0574 +Bobby Gentry,I'll Never Fall In Love Again,https://www.jamkazam.com/landing/jamtracks/bobby-gentry-ill-never-fall-in-love-again,Paris Music,S0082 +Buddy Holly,True Love Ways,https://www.jamkazam.com/landing/jamtracks/buddy-holly-true-love-ways,Paris Music,S0083 +The Sex Pistols,Pretty Vacant,https://www.jamkazam.com/landing/jamtracks/the-sex-pistols-pretty-vacant,Paris Music,S1045 +Gary Moore,Over the Hills & Far Away,https://www.jamkazam.com/landing/jamtracks/gary-moore-over-the-hills--far-away,Paris Music,S1360 +Paint Your Wagon,They Call The Wind Mariah (A Cappella),https://www.jamkazam.com/landing/jamtracks/paint-your-wagon-they-call-the-wind-mariah-acapella,Tim Waurick, +Ini Kamoze,Here Comes the Hotstepper,https://www.jamkazam.com/landing/jamtracks/ini-kamoze-here-comes-the-hotstepper,Paris Music,S2047 +A Tribe Called Quest,Can I Kick It ?,https://www.jamkazam.com/landing/jamtracks/a-tribe-called-quest-can-i-kick-it-,Paris Music,S1669 +Jamie Cullum,Don't Stop The Music,https://www.jamkazam.com/landing/jamtracks/jamie-cullum-dont-stop-the-music,Tency Music,27101 +Engelbert Humperdinck,Release Me,https://www.jamkazam.com/landing/jamtracks/engelbert-humperdinck-release-me,Paris Music,S3109 +Robbie Williams,Angels,https://www.jamkazam.com/landing/jamtracks/robbie-williams-angels,Tency Music,8747 +Perry Como,My Cup Runneth Over With Love (A Cappella),https://www.jamkazam.com/landing/jamtracks/perry-como-my-cup-runneth-over-with-love-acapella,Tim Waurick, +Showaddywaddy,Hey Rock & Roll,https://www.jamkazam.com/landing/jamtracks/showaddywaddy-hey-rock--roll,Paris Music,S0596 +Diana Ross & The Supremes,Where Did Our Love Go ?,https://www.jamkazam.com/landing/jamtracks/diana-ross--the-supremes-where-did-our-love-go-,Paris Music,S0602 +Gospel Singer,The Lord's Prayer,https://www.jamkazam.com/landing/jamtracks/gospel-singer-the-lords-prayer,Tency Music,29540 +Dr. Feelgood,Milk & Alcohol,https://www.jamkazam.com/landing/jamtracks/dr-feelgood-milk--alcohol,Paris Music,S0581 +Jona Lewie,Stop the Cavalry,https://www.jamkazam.com/landing/jamtracks/jona-lewie-stop-the-cavalry,Paris Music,S1384 +Christina Aguilera / Lil Kim / Mya / Pink,Lady Marmalade,https://www.jamkazam.com/landing/jamtracks/christina-aguilera--lil-kim--mya--pink-lady-marmalade,Paris Music,S2687 +Dionne Warwick,Do You Know the Way To San Jose?,https://www.jamkazam.com/landing/jamtracks/dionne-warwick-do-you-know-the-way-to-san-jose,Paris Music,S2123 +Neil Diamond,Cherry Cherry,https://www.jamkazam.com/landing/jamtracks/neil-diamond-cherry-cherry,Tency Music,19141 +Amy Winehouse,Our Day Will Come,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-our-day-will-come,Paris Music,S3806 +New Kids On The Block,You Got It (The Right Stuff),https://www.jamkazam.com/landing/jamtracks/new-kids-on-the-block-you-got-it-the-right-stuff,Paris Music,S3539 +Reba McEntire,Fancy,https://www.jamkazam.com/landing/jamtracks/reba-mcentire-fancy,Tency Music,6588 +Meatloaf,Two Out of Three Ain't Bad,https://www.jamkazam.com/landing/jamtracks/meatloaf-two-out-of-three-aint-bad,Paris Music,S1453 +Gregg Lake,I Believe In Father Christmas,https://www.jamkazam.com/landing/jamtracks/gregg-lake-i-believe-in-father-christmas,Paris Music,S1394 +Billy Joel,An Innocent Man,https://www.jamkazam.com/landing/jamtracks/billy-joel-an-innocent-man,Paris Music,S2575 +Shakin' Stevens,Merry Christmas Everyone,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-merry-christmas-everyone,Paris Music,S2189 +Take That,Back for Good (Live - Progress Tour 2011),https://www.jamkazam.com/landing/jamtracks/take-that-back-for-good-live---progress-tour-2011,Paris Music,S3854 +The Beatles,Taxman,https://www.jamkazam.com/landing/jamtracks/the-beatles-taxman,Tency Music,22738 +Robert Cray,Don't Be Afraid Of The Dark,https://www.jamkazam.com/landing/jamtracks/robert-cray-dont-be-afraid-of-the-dark,Tency Music,24997 +Eddie Rabbitt,I Love A Rainy Night,https://www.jamkazam.com/landing/jamtracks/eddie-rabbitt-i-love-a-rainy-night,Tency Music,15638 +Archie Bell & The Drells,Here I Go Again,https://www.jamkazam.com/landing/jamtracks/archie-bell--the-drells-here-i-go-again,Paris Music,S3047 +The Beach Boys,Warmth Of The Sun,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-warmth-of-the-sun,Tency Music,33770 +Oasis,Importance of Being Idol,https://www.jamkazam.com/landing/jamtracks/oasis-importance-of-being-idol,Paris Music,S1276 +Harold Melvin & The Bluenotes,Love I Lost,https://www.jamkazam.com/landing/jamtracks/harold-melvin--the-bluenotes-love-i-lost,Paris Music,S4547 +Rod Stewart,Have I Told You Lately,https://www.jamkazam.com/landing/jamtracks/rod-stewart-have-i-told-you-lately,Paris Music,S0261 +The Police,Every Little Thing She Does,https://www.jamkazam.com/landing/jamtracks/the-police-every-little-thing-she-does,Paris Music,S2425 +The Feeling,Never Be Lonely,https://www.jamkazam.com/landing/jamtracks/the-feeling-never-be-lonely,Paris Music,S1753 +Boston,Peace Of Mind,https://www.jamkazam.com/landing/jamtracks/boston-peace-of-mind,Tency Music,29181 +The Church,Under The Milky Way,https://www.jamkazam.com/landing/jamtracks/the-church-under-the-milky-way,Tency Music,41275 +Van Morrison,Have I Told You Lately,https://www.jamkazam.com/landing/jamtracks/van-morrison-have-i-told-you-lately,Tency Music,17894 +The Hollies,Long Cool Woman In A Black Dress,https://www.jamkazam.com/landing/jamtracks/the-hollies-long-cool-woman-in-a-black-dress,Tency Music,16113 +Ella Henderson,Ghost,https://www.jamkazam.com/landing/jamtracks/ella-henderson-ghost,Paris Music,S4577 +Julie London,Cry Me a River,https://www.jamkazam.com/landing/jamtracks/julie-london-cry-me-a-river,Paris Music,S0126 +The Drifters,There Goes My First Love,https://www.jamkazam.com/landing/jamtracks/the-drifters-there-goes-my-first-love,Paris Music,S2018 +Radiohead,Lucky,https://www.jamkazam.com/landing/jamtracks/radiohead-lucky,Tency Music,38414 +New Edition,Cool It Now,https://www.jamkazam.com/landing/jamtracks/new-edition-cool-it-now,Tency Music,29031 +Chris De Burgh,Patricia the Stripper,https://www.jamkazam.com/landing/jamtracks/chris-de-burgh-patricia-the-stripper,Paris Music,S0466 +Frank Sinatra,I Get A Kick Out of You,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-i-get-a-kick-out-of-you,Paris Music,S3043 +From Chicago,Razzle Dazzle,https://www.jamkazam.com/landing/jamtracks/from-chicago-razzle-dazzle,Paris Music,S2003 +TLC,Red Light Special,https://www.jamkazam.com/landing/jamtracks/tlc-red-light-special,Tency Music,7163 +Bob Marley,Waiting In Vain,https://www.jamkazam.com/landing/jamtracks/bob-marley-waiting-in-vain,Tency Music,26061 +D:Ream,Things Can Only Get Better,https://www.jamkazam.com/landing/jamtracks/dream-things-can-only-get-better,Paris Music,S1186 +Jazzy Gershwin,Nice Work If You Can Get It,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-nice-work-if-you-can-get-it,Tency Music,35533 +Kings Of Leon,Radioactive,https://www.jamkazam.com/landing/jamtracks/kings-of-leon-radioactive,Paris Music,S3451 +M,Pop Musik,https://www.jamkazam.com/landing/jamtracks/m-pop-musik,Paris Music,S4585 +Go West,We Close Our Eyes,https://www.jamkazam.com/landing/jamtracks/go-west-we-close-our-eyes,Paris Music,S2011 +Neil Diamond,September Morn,https://www.jamkazam.com/landing/jamtracks/neil-diamond-september-morn,Paris Music,S2569 +Steely Dan,FM (No Static At All),https://www.jamkazam.com/landing/jamtracks/steely-dan-fm-no-static-at-all,Tency Music,18461 +John Mayer,Crossroads,https://www.jamkazam.com/landing/jamtracks/john-mayer-crossroads,Tency Music,44675 +Neil Diamond,Song Sung Blue,https://www.jamkazam.com/landing/jamtracks/neil-diamond-song-sung-blue,Paris Music,S0964 +Simon & Garfunkel,I Am a Rock,https://www.jamkazam.com/landing/jamtracks/simon--garfunkel-i-am-a-rock,Paris Music,S0163 +Grateful Dead,Terrapin Station,https://www.jamkazam.com/landing/jamtracks/grateful-dead-terrapin-station,DSO LLC, +Sheryl Crow,My Favorite Mistake,https://www.jamkazam.com/landing/jamtracks/sheryl-crow-my-favorite-mistake,Tency Music,9198 +The xx,Crystalised,https://www.jamkazam.com/landing/jamtracks/the-xx-crystalised,Tency Music,38066 +Cheryl Cole,Fight for This Love,https://www.jamkazam.com/landing/jamtracks/cheryl-cole-fight-for-this-love,Paris Music,S3022 +Starship,Nothing's Gonna Stop Us Now,https://www.jamkazam.com/landing/jamtracks/starship-nothings-gonna-stop-us-now,Paris Music,S3480 +Snow Patrol,Run,https://www.jamkazam.com/landing/jamtracks/snow-patrol-run,Tency Music,18040 +Stevie Nicks,Edge Of Seventeen,https://www.jamkazam.com/landing/jamtracks/stevie-nicks-edge-of-seventeen,Tency Music,21343 +She And Him,Fools Rush In,https://www.jamkazam.com/landing/jamtracks/she-and-him-fools-rush-in,Tency Music,39567 +Rod Stewart,You Wear It Well,https://www.jamkazam.com/landing/jamtracks/rod-stewart-you-wear-it-well,Paris Music,S1746 +Dixieland Boys,Alexander's Ragtime Band,https://www.jamkazam.com/landing/jamtracks/dixieland-boys-alexanders-ragtime-band,Tency Music,27496 +Elbow,One Day Like This,https://www.jamkazam.com/landing/jamtracks/elbow-one-day-like-this,Paris Music,S2880 +Frank Sinatra,You Make Me Feel so Young,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-you-make-me-feel-so-young,Paris Music,S0819 +Uncle Kracker,Smile,https://www.jamkazam.com/landing/jamtracks/uncle-kracker-smile,Tency Music,28715 +Patty Griffin,Up To The Mountain,https://www.jamkazam.com/landing/jamtracks/patty-griffin-up-to-the-mountain,Tency Music,28606 +Ariana Grande,Problem,https://www.jamkazam.com/landing/jamtracks/ariana-grande-problem,Tency Music,46862 +T Rex,Hot Love,https://www.jamkazam.com/landing/jamtracks/t-rex-hot-love,Paris Music,S4270 +Gotye Feat. Kimbra,Somebody That I Used To Know,https://www.jamkazam.com/landing/jamtracks/gotye-feat-kimbra-somebody-that-i-used-to-know,Paris Music,S3891 +Odyssey,Going Back to My Roots,https://www.jamkazam.com/landing/jamtracks/odyssey-going-back-to-my-roots,Paris Music,S2660 +Katy Perry,Part Of Me,https://www.jamkazam.com/landing/jamtracks/katy-perry-part-of-me,Tency Music,39725 +The Beatles,Should've Known Better,https://www.jamkazam.com/landing/jamtracks/the-beatles-shouldve-known-better,Paris Music,S3104 +Dawn Penn,"You Don't Love Me (No, No, No)",https://www.jamkazam.com/landing/jamtracks/dawn-penn-no-no-no-steely-and-clevie,Steely & Clevie, +Earth Wind And Fire,After The Love Has Gone,https://www.jamkazam.com/landing/jamtracks/earth-wind-and-fire-after-the-love-has-gone,Tency Music,12680 +Tammi Terrell,Your Precious Love,https://www.jamkazam.com/landing/jamtracks/tammi-terrell-your-precious-love,Tency Music,10204 +AC/DC,Rock And Roll Ain't Noise Pollution,https://www.jamkazam.com/landing/jamtracks/acdc-rock-and-roll-aint-noise-pollution,Back in Black LLC, +Dan Hartman,Instant Replay,https://www.jamkazam.com/landing/jamtracks/dan-hartman-instant-replay,Paris Music,S2581 +Michael Jackson & Justin Timberlake,Love Never Felt so Good,https://www.jamkazam.com/landing/jamtracks/michael-jackson--justin-timberlake-love-never-felt-so-good,Paris Music,S4609 +Paul Weller,Broken Stones,https://www.jamkazam.com/landing/jamtracks/paul-weller-broken-stones,Paris Music,S0459 +Fleetwood Mac,Go Your Own Way,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-go-your-own-way,Music Master Exchange LLC, +James Taylor,How Sweet It Is (To Be Loved By You),https://www.jamkazam.com/landing/jamtracks/james-taylor-how-sweet-it-is-to-be-loved-by-you,Tency Music,14110 +Irish Traditional,Whiskey In the Jar,https://www.jamkazam.com/landing/jamtracks/irish-traditional-whiskey-in-the-jar,Paris Music,S0741 +The Chimes,I Still Haven't Found What I'm Looking for,https://www.jamkazam.com/landing/jamtracks/the-chimes-i-still-havent-found-what-im-looking-for,Paris Music,S1759 +Hank Williams Jr,A Country Boy Can Survive,https://www.jamkazam.com/landing/jamtracks/hank-williams-jr-a-country-boy-can-survive,Tency Music,15991 +Bon Jovi,Bed of Roses,https://www.jamkazam.com/landing/jamtracks/bon-jovi-bed-of-roses,Paris Music,S0024 +Backstreet Boys,Everybody (Backstreet's Back),https://www.jamkazam.com/landing/jamtracks/backstreet-boys-everybody-backstreets-back,Paris Music,S2693 +Kenny Loggins,This Is It (Duet),https://www.jamkazam.com/landing/jamtracks/kenny-loggins-this-is-it-duet,Tency Music,24810 +James Brown,Living In America,https://www.jamkazam.com/landing/jamtracks/james-brown-living-in-america,Tency Music,14030 +The Big Bopper,Chantilly Lace,https://www.jamkazam.com/landing/jamtracks/the-big-bopper-chantilly-lace,Paris Music,S4221 +Battle Of The Choirs,Robbie Williams Medley,https://www.jamkazam.com/landing/jamtracks/battle-of-the-choirs-robbie-williams-medley,Paris Music,S3920 +System Of A Down,Toxicity,https://www.jamkazam.com/landing/jamtracks/system-of-a-down-toxicity,Tency Music,29524 +Bad Company,Feel Like Makin Love,https://www.jamkazam.com/landing/jamtracks/bad-company-feel-like-makin-love,Tency Music,27859 +The Jam,Start,https://www.jamkazam.com/landing/jamtracks/the-jam-start,Paris Music,S1641 +Grateful Dead,Jack Straw,https://www.jamkazam.com/landing/jamtracks/grateful-dead-jack-straw,DSO LLC, +The Four Tops,I Can't Help Myself - Sugar Pie Honey Bunch,https://www.jamkazam.com/landing/jamtracks/the-four-tops-i-cant-help-myself---sugar-pie-honey-bunch,Paris Music,S4636 +Ronan Keating,She Believes In Me,https://www.jamkazam.com/landing/jamtracks/ronan-keating-she-believes-in-me,Paris Music,S0792 +Deacon Blue,Dignity,https://www.jamkazam.com/landing/jamtracks/deacon-blue-dignity,Paris Music,S0363 +Eddie Floyd,Knock On Wood,https://www.jamkazam.com/landing/jamtracks/eddie-floyd-knock-on-wood,Paris Music,S1244 +Sia,Chandelier (Piano Version),https://www.jamkazam.com/landing/jamtracks/sia-chandelier-piano-version,Tency Music,47632 +Branford Marsalis,Here's That Rainy Day,https://www.jamkazam.com/landing/jamtracks/branford-marsalis-heres-that-rainy-day,Tency Music,33551 +Simply Red,Something Got Me Started,https://www.jamkazam.com/landing/jamtracks/simply-red-something-got-me-started,Paris Music,S1781 +Barry White,Never Never Gonna Give You Up,https://www.jamkazam.com/landing/jamtracks/barry-white-never-never-gonna-give-you-up,Paris Music,S4274 +Taylor Swift,Everything Has Changed feat. Ed Sheeran,https://www.jamkazam.com/landing/jamtracks/taylor-swift-everything-has-changed-feat-ed-sheeran,Paris Music,S4294 +The Gipsy Kings,Trista Pena,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-trista-pena,Tency Music,45268 +Electric Light Orchestra,Roll Over Beethoven,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-roll-over-beethoven,Paris Music,S1702 +Christina Aguilera,Beautiful,https://www.jamkazam.com/landing/jamtracks/christina-aguilera-beautiful,Tency Music,7197 +Stereophonics,Dakota,https://www.jamkazam.com/landing/jamtracks/stereophonics-dakota,Paris Music,S1158 +Koko Taylor & Buddy Guy,Born Under a Bad Sign,https://www.jamkazam.com/landing/jamtracks/koko-taylor--buddy-guy-born-under-a-bad-sign,Paris Music,S4380 +AC/DC,You Shook Me All Night Long,https://www.jamkazam.com/landing/jamtracks/acdc-you-shook-me-all-night-long,Back in Black LLC, +Evelyn 'Champagne' King,Love Come Down,https://www.jamkazam.com/landing/jamtracks/evelyn-champagne-king-love-come-down,Paris Music,S1688 +Train,Drops of Jupiter (Tell Me),https://www.jamkazam.com/landing/jamtracks/train-drops-of-jupiter-tell-me,Tency Music,14491 +Crowded House,Don't Dream It's Over,https://www.jamkazam.com/landing/jamtracks/crowded-house-dont-dream-its-over,Tency Music,13526 +Kelly Rowland,Work (Freemasons Radio Mix),https://www.jamkazam.com/landing/jamtracks/kelly-rowland-work-freemasons-radio-mix,Paris Music,S2427 +Journey,Wheel In The Sky,https://www.jamkazam.com/landing/jamtracks/journey-wheel-in-the-sky,Tency Music,18332 +TLC,Creep,https://www.jamkazam.com/landing/jamtracks/tlc-creep,Tency Music,10075 +Tom Petty,Refugee,https://www.jamkazam.com/landing/jamtracks/tom-petty-refugee,Tency Music,9982 +Keith Urban,We Were Us,https://www.jamkazam.com/landing/jamtracks/keith-urban-we-were-us,Tency Music,45356 +Michael Jackson,I Can't Help It,https://www.jamkazam.com/landing/jamtracks/michael-jackson-i-cant-help-it,Paris Music,S2978 +U2,City of Blinding Lights,https://www.jamkazam.com/landing/jamtracks/u2-city-of-blinding-lights,Paris Music,S1212 +From The Jersey Boys,Who Loves You ?,https://www.jamkazam.com/landing/jamtracks/from-the-jersey-boys-who-loves-you-,Paris Music,S3407 +The Bee Gees,I've Gotta Get a Message To You,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-ive-gotta-get-a-message-to-you,Paris Music,S3868 +Cilla Black,You're My World,https://www.jamkazam.com/landing/jamtracks/cilla-black-youre-my-world,Paris Music,S3833 +Boston,More Than A Feeling,https://www.jamkazam.com/landing/jamtracks/boston-more-than-a-feeling,Tency Music,13872 +The American Breed,Bend Me Shape Me,https://www.jamkazam.com/landing/jamtracks/the-american-breed-bend-me-shape-me,Tency Music,14933 +The Foundations,Build Me Up Buttercup,https://www.jamkazam.com/landing/jamtracks/the-foundations-build-me-up-buttercup,Tency Music,8964 +Tennessee Ernie Ford,Sixteen Tons,https://www.jamkazam.com/landing/jamtracks/tennessee-ernie-ford-sixteen-tons,Tency Music,6758 +Michael Buble,Haven't Met You yet,https://www.jamkazam.com/landing/jamtracks/michael-buble-havent-met-you-yet,Paris Music,S3059 +Electric Light Orchestra,Wild West Hero,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-wild-west-hero,Paris Music,S1696 +Eric Clapton,Running On Faith,https://www.jamkazam.com/landing/jamtracks/eric-clapton-running-on-faith,Paris Music,S3070 +Sara Bareilles,I Choose You,https://www.jamkazam.com/landing/jamtracks/sara-bareilles-i-choose-you,Tency Music,45148 +Grover Washington Jr,Just The Two Of Us,https://www.jamkazam.com/landing/jamtracks/grover-washington-jr-just-the-two-of-us,Tency Music,15963 +Terry Jacks,Seasons In the Sun,https://www.jamkazam.com/landing/jamtracks/terry-jacks-seasons-in-the-sun,Paris Music,S0404 +Dexy's Midnight Runners,Geno,https://www.jamkazam.com/landing/jamtracks/dexys-midnight-runners-geno,Paris Music,S2095 +Human League,Don't You Want Me,https://www.jamkazam.com/landing/jamtracks/human-league-dont-you-want-me,Paris Music,S0441 +Joe Cocker,Up Where We Belong,https://www.jamkazam.com/landing/jamtracks/joe-cocker-up-where-we-belong,Tency Music,6119 +Tom Baxter,Better,https://www.jamkazam.com/landing/jamtracks/tom-baxter-better,Paris Music,S2973 +Maroon 5,Sunday Morning,https://www.jamkazam.com/landing/jamtracks/maroon-5-sunday-morning,Paris Music,S1020 +B.o.B.,Nothin On You,https://www.jamkazam.com/landing/jamtracks/bob-nothin-on-you,Tency Music,29166 +Brian Hyland,Ginny Come Lately,https://www.jamkazam.com/landing/jamtracks/brian-hyland-ginny-come-lately,Paris Music,S1290 +Etta James,Come Rain Or Come Shine,https://www.jamkazam.com/landing/jamtracks/etta-james-come-rain-or-come-shine,Tency Music,46713 +Rihanna,Don't Stop the Music,https://www.jamkazam.com/landing/jamtracks/rihanna-dont-stop-the-music,Paris Music,S2413 +The Specials,Do Nothing,https://www.jamkazam.com/landing/jamtracks/the-specials-do-nothing,Paris Music,S1636 +African-American Spiritual,Joshua Fit The Battle of Jericho (A Cappella),https://www.jamkazam.com/landing/jamtracks/african-american-spiritual-joshua-fit-the-battle-of-jericho-acapella,Tim Waurick, +Ballroom Orchestra,On The Beach Samba,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-on-the-beach-samba,Tency Music,29948 +Chris Farlowe,Out of Time,https://www.jamkazam.com/landing/jamtracks/chris-farlowe-out-of-time,Paris Music,S0565 +Billy Ocean,Suddenly,https://www.jamkazam.com/landing/jamtracks/billy-ocean-suddenly,Paris Music,S4120 +Tim McGraw,Highway Don't Care,https://www.jamkazam.com/landing/jamtracks/tim-mcgraw-highway-dont-care,Tency Music,43613 +Tom Jones,Green Green Grass of Home,https://www.jamkazam.com/landing/jamtracks/tom-jones-green-green-grass-of-home,Paris Music,S3492 +The Who,Won't Get Fooled Again,https://www.jamkazam.com/landing/jamtracks/the-who-wont-get-fooled-again,Music Master Exchange LLC, +Journey,Lights,https://www.jamkazam.com/landing/jamtracks/journey-lights,Tency Music,6561 +Squeeze,Pulling Mussels from a Shell,https://www.jamkazam.com/landing/jamtracks/squeeze-pulling-mussels-from-a-shell,Paris Music,S0185 +Johnny Ray,Just Walkin' In the Rain,https://www.jamkazam.com/landing/jamtracks/johnny-ray-just-walkin-in-the-rain,Paris Music,S1344 +Earth Wind And Fire,That's The Way Of The World,https://www.jamkazam.com/landing/jamtracks/earth-wind-and-fire-thats-the-way-of-the-world,Tency Music,21449 +Whitesnake,Is This Love,https://www.jamkazam.com/landing/jamtracks/whitesnake-is-this-love,Tency Music,21070 +Brad Paisley,Mud On The Tires,https://www.jamkazam.com/landing/jamtracks/brad-paisley-mud-on-the-tires,Tency Music,11515 +Dire Straits,Skateaway,https://www.jamkazam.com/landing/jamtracks/dire-straits-skateaway,Tency Music,42068 +Aerosmith,What It Takes,https://www.jamkazam.com/landing/jamtracks/aerosmith-what-it-takes,Tency Music,16799 +James Blunt,1973,https://www.jamkazam.com/landing/jamtracks/james-blunt-1973,Paris Music,S2259 +The Carpenters,Superstar,https://www.jamkazam.com/landing/jamtracks/the-carpenters-superstar,Paris Music,S0004 +Steve Miller Band,Rock'n Me,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-rockn-me,Tency Music,29918 +Abba,Voulez Vous,https://www.jamkazam.com/landing/jamtracks/abba-voulez-vous,Paris Music,S0800 +Steve Miller Band,Jet Airliner,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-jet-airliner,Tency Music,38660 +Ricky Martin,Livin' La Vida Loca,https://www.jamkazam.com/landing/jamtracks/ricky-martin-livin-la-vida-loca,Paris Music,S0190 +Guy Mitchell,Singing the Blues,https://www.jamkazam.com/landing/jamtracks/guy-mitchell-singing-the-blues,Paris Music,S1348 +Grateful Dead,Cassidy,https://www.jamkazam.com/landing/jamtracks/grateful-dead-cassidy,DSO LLC, +Dr. Hook,Wild Colonial Boy,https://www.jamkazam.com/landing/jamtracks/dr-hook-wild-colonial-boy,Paris Music,S4180 +Rihanna,Umbrella,https://www.jamkazam.com/landing/jamtracks/rihanna-umbrella,Tency Music,12208 +Shinedown,Simple Man,https://www.jamkazam.com/landing/jamtracks/shinedown-simple-man,Tency Music,24946 +The Black Crowes,Remedy,https://www.jamkazam.com/landing/jamtracks/the-black-crowes-remedy,Tency Music,46790 +Cab Calloway,Minnie the Moocher,https://www.jamkazam.com/landing/jamtracks/cab-calloway-minnie-the-moocher,Paris Music,S0773 +Gerry & The Pacemakers,You'll Never Walk Alone,https://www.jamkazam.com/landing/jamtracks/gerry--the-pacemakers-youll-never-walk-alone,Paris Music,S0437 +Barry White,Can't Get Enough Of Your Love Babe,https://www.jamkazam.com/landing/jamtracks/barry-white-cant-get-enough-of-your-love-babe,Tency Music,12743 +Percy Sledge,Warm & Tender Love,https://www.jamkazam.com/landing/jamtracks/percy-sledge-warm--tender-love,Paris Music,S2345 +Patsy Cline,I Fall To Pieces,https://www.jamkazam.com/landing/jamtracks/patsy-cline-i-fall-to-pieces,Tency Music,6136 +The Kaiser Cheifs,Ruby,https://www.jamkazam.com/landing/jamtracks/the-kaiser-cheifs-ruby,Paris Music,S1990 +Gordon Haskell,How Wonderful You Are,https://www.jamkazam.com/landing/jamtracks/gordon-haskell-how-wonderful-you-are,Paris Music,S1645 +Elvis Presley,Little Sister,https://www.jamkazam.com/landing/jamtracks/elvis-presley-little-sister,Paris Music,S0806 +Jazzy Gershwin,Let's Call The Whole Thing Off,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-lets-call-the-whole-thing-off,Tency Music,35528 +Marillion,Kayleigh,https://www.jamkazam.com/landing/jamtracks/marillion-kayleigh,Paris Music,S2248 +Eric Clapton,Lay Down Sally,https://www.jamkazam.com/landing/jamtracks/eric-clapton-lay-down-sally,Tency Music,11919 +T Rex,Jeepster,https://www.jamkazam.com/landing/jamtracks/t-rex-jeepster,Paris Music,S0278 +Nickelback,Burn It To The Ground,https://www.jamkazam.com/landing/jamtracks/nickelback-burn-it-to-the-ground,Tency Music,31152 +Cliff Richard,I Could Easily Fall,https://www.jamkazam.com/landing/jamtracks/cliff-richard-i-could-easily-fall,Paris Music,S1366 +Louis Armstrong,We Have All the Time In the World,https://www.jamkazam.com/landing/jamtracks/louis-armstrong-we-have-all-the-time-in-the-world,Paris Music,S0321 +The Andrews Sisters,Boogie Woogie Bugle Boy,https://www.jamkazam.com/landing/jamtracks/the-andrews-sisters-boogie-woogie-bugle-boy,Tency Music,31942 +Family Of The Year,Hero,https://www.jamkazam.com/landing/jamtracks/family-of-the-year-hero,Tency Music,45475 +George Strait,Give It All We Got Tonight,https://www.jamkazam.com/landing/jamtracks/george-strait-give-it-all-we-got-tonight,Tency Music,43687 +Beats International,Dub Be Good To Me,https://www.jamkazam.com/landing/jamtracks/beats-international-dub-be-good-to-me,Paris Music,S1649 +The Four Tops,Reach Out,https://www.jamkazam.com/landing/jamtracks/the-four-tops-reach-out,Paris Music,S0674 +Ella Fitzgerald,Georgia On My Mind,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-georgia-on-my-mind,Tency Music,46269 +Bryan Adams,Everything I Do (I Do It for You),https://www.jamkazam.com/landing/jamtracks/bryan-adams-everything-i-do-i-do-it-for-you,Paris Music,S0442 +Abba,Fernando,https://www.jamkazam.com/landing/jamtracks/abba-fernando,Paris Music,S0810 +Manfred Mann,Do Wah Diddy,https://www.jamkazam.com/landing/jamtracks/manfred-mann-do-wah-diddy,Paris Music,S0207 +Huey Lewis And The News,Heart And Soul,https://www.jamkazam.com/landing/jamtracks/huey-lewis-and-the-news-heart-and-soul,Tency Music,31957 +Radiohead,Subterranean Homesick Alien,https://www.jamkazam.com/landing/jamtracks/radiohead-subterranean-homesick-alien,Tency Music,38409 +Usher,Caught Up,https://www.jamkazam.com/landing/jamtracks/usher-caught-up,Paris Music,S1079 +Bruno Mars,Just the Way You Are,https://www.jamkazam.com/landing/jamtracks/bruno-mars-just-the-way-you-are,Paris Music,S3441 +Creedence Clearwater Revival,Have You Ever Seen The Rain,https://www.jamkazam.com/landing/jamtracks/creedence-clearwater-revival-have-you-ever-seen-the-rain,Tency Music,15439 +Martha Reeves & The Vandellas,Nowhere To Run,https://www.jamkazam.com/landing/jamtracks/martha-reeves--the-vandellas-nowhere-to-run,Paris Music,S3853 +Rihanna,Only Girl In The World,https://www.jamkazam.com/landing/jamtracks/rihanna-only-girl-in-the-world,Tency Music,33698 +Tonic,If You Could Only See,https://www.jamkazam.com/landing/jamtracks/tonic-if-you-could-only-see,Tency Music,10428 +The Undertones,Here Comes the Summer,https://www.jamkazam.com/landing/jamtracks/the-undertones-here-comes-the-summer,Paris Music,S1757 +Zac Effron,Ladies Choice,https://www.jamkazam.com/landing/jamtracks/zac-effron-ladies-choice,Paris Music,S2269 +Sam Cooke,Wonderful World,https://www.jamkazam.com/landing/jamtracks/sam-cooke-wonderful-world,Tency Music,7672 +Psy,Gangnam Style,https://www.jamkazam.com/landing/jamtracks/psy-gangnam-style,Tency Music,41717 +Enrique Iglesias,Hero,https://www.jamkazam.com/landing/jamtracks/enrique-iglesias-hero,Paris Music,S0062 +Christina Aguilera,Hurt,https://www.jamkazam.com/landing/jamtracks/christina-aguilera-hurt,Paris Music,S1868 +Glenn Miller,In The Mood,https://www.jamkazam.com/landing/jamtracks/glenn-miller-in-the-mood,Tency Music,29802 +Queen Latifah,"Big, Blonde & Beautiful",https://www.jamkazam.com/landing/jamtracks/queen-latifah-big-blonde--beautiful,Paris Music,S2680 +Christmas Carol,The Christmas Song (Chestnuts Roasting),https://www.jamkazam.com/landing/jamtracks/christmas-carol-the-christmas-song-chestnuts-roasting,Tency Music,41039 +Cliff Richard,Johnny B Goode,https://www.jamkazam.com/landing/jamtracks/cliff-richard-johnny-b-goode,Paris Music,S4498 +Cat Stevens,Moonshadow,https://www.jamkazam.com/landing/jamtracks/cat-stevens-moonshadow,Tency Music,30221 +Bob Dylan,Like A Rolling Stone,https://www.jamkazam.com/landing/jamtracks/bob-dylan-like-a-rolling-stone,Tency Music,6515 +Fleetwood Mac,Second Hand News,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-second-hand-news,Tency Music,44195 +Arrested Development,Mr. Wendal,https://www.jamkazam.com/landing/jamtracks/arrested-development-mr-wendal,Paris Music,S1659 +Ub40,Bring It On Home to Me,https://www.jamkazam.com/landing/jamtracks/ub40-bring-it-on-home-to-me,Paris Music,S3682 +Kelly Clarkson,Since U Been Gone,https://www.jamkazam.com/landing/jamtracks/kelly-clarkson-since-u-been-gone,Tency Music,5582 +Slipknot,Psychosocial,https://www.jamkazam.com/landing/jamtracks/slipknot-psychosocial,Tency Music,29419 +Los Del Rio,Macarena (Bayside Boys Remix),https://www.jamkazam.com/landing/jamtracks/los-del-rio-macarena-bayside-boys-remix,Paris Music,S4565 +Kool & The Gang,Cherish,https://www.jamkazam.com/landing/jamtracks/kool--the-gang-cherish,Paris Music,S0127 +Steve Miller Band,The Joker,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-the-joker,Tency Music,13881 +Sara Bareilles,Brave,https://www.jamkazam.com/landing/jamtracks/sara-bareilles-brave,Tency Music,43574 +Josh Turner,Would You Go With Me,https://www.jamkazam.com/landing/jamtracks/josh-turner-would-you-go-with-me,Tency Music,16400 +Cliff Richard,Mistletoe & Wine,https://www.jamkazam.com/landing/jamtracks/cliff-richard-mistletoe--wine,Paris Music,S1380 +Kylie Minogue,Can't Get You Outta My Head,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-cant-get-you-outta-my-head,Paris Music,S0075 +Ub40,Kingston Town,https://www.jamkazam.com/landing/jamtracks/ub40-kingston-town,Paris Music,S1580 +Dropkick Murphys,I'm Shipping Up To Boston,https://www.jamkazam.com/landing/jamtracks/dropkick-murphys-im-shipping-up-to-boston,Tency Music,39758 +Pink Floyd,Run Like Hell,https://www.jamkazam.com/landing/jamtracks/pink-floyd-run-like-hell,Music Master Exchange LLC, +The Cranberries,Zombie,https://www.jamkazam.com/landing/jamtracks/the-cranberries-zombie,Tency Music,14236 +Paul Anka,Diana,https://www.jamkazam.com/landing/jamtracks/paul-anka-diana,Paris Music,S1322 +Barry White,Just the Way You Are,https://www.jamkazam.com/landing/jamtracks/barry-white-just-the-way-you-are,Paris Music,S1849 +Alison Moyet,That Ole Devil Called Love,https://www.jamkazam.com/landing/jamtracks/alison-moyet-that-ole-devil-called-love,Paris Music,S0105 +Gospel Singer,Stand Up For Jesus,https://www.jamkazam.com/landing/jamtracks/gospel-singer-stand-up-for-jesus,Tency Music,29390 +Razorlight,Before I Fall To Pieces,https://www.jamkazam.com/landing/jamtracks/razorlight-before-i-fall-to-pieces,Paris Music,S1898 +Oleta Adams,Get Here,https://www.jamkazam.com/landing/jamtracks/oleta-adams-get-here,Paris Music,S0446 +Brad Paisley,Whiskey Lullaby,https://www.jamkazam.com/landing/jamtracks/brad-paisley-whiskey-lullaby,Tency Music,5844 +Crowded House,Four Seasons In One Day,https://www.jamkazam.com/landing/jamtracks/crowded-house-four-seasons-in-one-day,Paris Music,S2825 +From Hairspray,Good Morning Baltimore,https://www.jamkazam.com/landing/jamtracks/from-hairspray-good-morning-baltimore,Paris Music,S3031 +Lenny Kravitz,American Woman,https://www.jamkazam.com/landing/jamtracks/lenny-kravitz-american-woman,Tency Music,8588 +AC/DC,Highway To Hell,https://www.jamkazam.com/landing/jamtracks/acdc-highway-to-hell,Back in Black LLC, +Desmond Dekker & The Aces,Israelites,https://www.jamkazam.com/landing/jamtracks/desmond-dekker--the-aces-israelites,Paris Music,S1388 +Marvin Gaye,Mercy Mercy Me (The Ecology),https://www.jamkazam.com/landing/jamtracks/marvin-gaye-mercy-mercy-me-the-ecology,Tency Music,22385 +Dusty Springfield,What Are You Doing the Rest of Your Life?,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-what-are-you-doing-the-rest-of-your-life,Paris Music,S2349 +Abba,Gimme Gimme Gimme,https://www.jamkazam.com/landing/jamtracks/abba-gimme-gimme-gimme,Paris Music,S0209 +Zac Brown Band,Colder Weather,https://www.jamkazam.com/landing/jamtracks/zac-brown-band-colder-weather,Tency Music,35931 +Abba,I Have a Dream,https://www.jamkazam.com/landing/jamtracks/abba-i-have-a-dream,Paris Music,S0808 +Bobby Darin,Don't Rain On My Parade,https://www.jamkazam.com/landing/jamtracks/bobby-darin-dont-rain-on-my-parade,Paris Music,S0947 +Alison Krauss,I'll Fly Away,https://www.jamkazam.com/landing/jamtracks/alison-krauss-ill-fly-away,Tency Music,28040 +Jaci Velasquez,He,https://www.jamkazam.com/landing/jamtracks/jaci-velasquez-he,Tency Music,27617 +Connie Francis,Jealous Heart,https://www.jamkazam.com/landing/jamtracks/connie-francis-jealous-heart,Paris Music,S2716 +Joe Jackson,Steppin' Out,https://www.jamkazam.com/landing/jamtracks/joe-jackson-steppin-out,Paris Music,S1647 +The Animals,House Of The Rising Sun,https://www.jamkazam.com/landing/jamtracks/the-animals-house-of-the-rising-sun,Tency Music,11289 +Beyonce,7:11,https://www.jamkazam.com/landing/jamtracks/beyonce-711,Tency Music,48511 +Gabrielle Aplin,Please Don't Say You Love Me,https://www.jamkazam.com/landing/jamtracks/gabrielle-aplin-please-dont-say-you-love-me,Paris Music,S4200 +Thompson Twins,Doctor! Doctor !,https://www.jamkazam.com/landing/jamtracks/thompson-twins-doctor-doctor-,Paris Music,S4570 +Mama's & Papa's,Dream a Little Dream of Me,https://www.jamkazam.com/landing/jamtracks/mamas--papas-dream-a-little-dream-of-me,Paris Music,S0080 +Jessie J,Domino,https://www.jamkazam.com/landing/jamtracks/jessie-j-domino,Tency Music,38056 +The Beach Boys,Good Vibrations,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-good-vibrations,Tency Music,12880 +The Pretenders,Don't Get Me Wrong,https://www.jamkazam.com/landing/jamtracks/the-pretenders-dont-get-me-wrong,Paris Music,S2121 +Bad English,When I See You Smile,https://www.jamkazam.com/landing/jamtracks/bad-english-when-i-see-you-smile,Tency Music,10013 +Marilyn Monroe,Diamonds Are Girls Best Friend,https://www.jamkazam.com/landing/jamtracks/marilyn-monroe-diamonds-are-girls-best-friend,Paris Music,S0748 +The Specials,Ghost Town,https://www.jamkazam.com/landing/jamtracks/the-specials-ghost-town,Paris Music,S1778 +Skeeter Davis,End of the World,https://www.jamkazam.com/landing/jamtracks/skeeter-davis-end-of-the-world,Paris Music,S1098 +Christina Aguilera,Candy Man,https://www.jamkazam.com/landing/jamtracks/christina-aguilera-candy-man,Paris Music,S2055 +Carl Douglas,Kung Fu Fighting,https://www.jamkazam.com/landing/jamtracks/carl-douglas-kung-fu-fighting,Tency Music,12671 +Joni Mitchell,Blue,https://www.jamkazam.com/landing/jamtracks/joni-mitchell-blue,Tency Music,40288 +Newton Faulkner,Dream Catch Me,https://www.jamkazam.com/landing/jamtracks/newton-faulkner-dream-catch-me,Paris Music,S2267 +Luke Bryan,Play It Again,https://www.jamkazam.com/landing/jamtracks/luke-bryan-play-it-again,Tency Music,46694 +Barry Manilow,I Made It Through the Rain,https://www.jamkazam.com/landing/jamtracks/barry-manilow-i-made-it-through-the-rain,Paris Music,S2051 +Ballroom Orchestra,Hustle Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-hustle-groove,Tency Music,28305 +Ben E. King,Stand By Me,https://www.jamkazam.com/landing/jamtracks/ben-e-king-stand-by-me,Tency Music,12913 +Echo & The Bunnymen,Killing Moon,https://www.jamkazam.com/landing/jamtracks/echo--the-bunnymen-killing-moon,Paris Music,S1666 +Duran Duran,Rio,https://www.jamkazam.com/landing/jamtracks/duran-duran-rio,Tency Music,11481 +Bobby Darin,Beyond the Sea,https://www.jamkazam.com/landing/jamtracks/bobby-darin-beyond-the-sea,Paris Music,S0814 +Taylor Swift,Tell Me Why,https://www.jamkazam.com/landing/jamtracks/taylor-swift-tell-me-why,Tency Music,24633 +The Script,Six Degrees of Seperation,https://www.jamkazam.com/landing/jamtracks/the-script-six-degrees-of-seperation,Paris Music,S4198 +Elvis Presley,If Everyday Was Like Christmas ,https://www.jamkazam.com/landing/jamtracks/elvis-presley-if-everyday-was-like-christmas,Paris Music,S2351 +The Irish Rovers,Whiskey On A Sunday (The Puppet Song),https://www.jamkazam.com/landing/jamtracks/the-irish-rovers-whiskey-on-a-sunday-the-puppet-song,Tency Music,45190 +The Motels,Only The Lonely,https://www.jamkazam.com/landing/jamtracks/the-motels-only-the-lonely,Tency Music,36129 +Rod Stewart,First Cut Is the Deepest,https://www.jamkazam.com/landing/jamtracks/rod-stewart-first-cut-is-the-deepest,Paris Music,S0255 +B.B. King,Rock Me Baby,https://www.jamkazam.com/landing/jamtracks/bb-king-rock-me-baby,Tency Music,5567 +Lady Gaga,Just Dance,https://www.jamkazam.com/landing/jamtracks/lady-gaga-just-dance,Paris Music,S2795 +Dr. Hook,If Not You,https://www.jamkazam.com/landing/jamtracks/dr-hook-if-not-you,Paris Music,S2434 +Elvis Presley,That's Alright,https://www.jamkazam.com/landing/jamtracks/elvis-presley-thats-alright,Paris Music,S4545 +Bill Medley & Jennifer Warnes,Time of My Life,https://www.jamkazam.com/landing/jamtracks/bill-medley--jennifer-warnes-time-of-my-life,Paris Music,S0516 +Birdy,Skinny Love,https://www.jamkazam.com/landing/jamtracks/birdy-skinny-love,Tency Music,36794 +Frozen,For The First Time In Forever,https://www.jamkazam.com/landing/jamtracks/frozen-for-the-first-time-in-forever,Tency Music,46041 +Martha Reeves & The Vandellas,Dancing In the Street,https://www.jamkazam.com/landing/jamtracks/martha-reeves--the-vandellas-dancing-in-the-street,Paris Music,S0461 +Luther Vandross,Always & Forever,https://www.jamkazam.com/landing/jamtracks/luther-vandross-always--forever,Paris Music,S1459 +Andy Williams,It's the Most Wonderful Time of the Year,https://www.jamkazam.com/landing/jamtracks/andy-williams-its-the-most-wonderful-time-of-the-year,Paris Music,S2367 +Gerry & The Pacemakers,Ferry 'Cross the Mersey,https://www.jamkazam.com/landing/jamtracks/gerry--the-pacemakers-ferry-cross-the-mersey,Paris Music,S0085 +Toby Keith,Red Solo Cup,https://www.jamkazam.com/landing/jamtracks/toby-keith-red-solo-cup,Tency Music,38750 +Chris Montez,Let's Dance,https://www.jamkazam.com/landing/jamtracks/chris-montez-lets-dance,Paris Music,S0219 +Blake Shelton,Honey Bee,https://www.jamkazam.com/landing/jamtracks/blake-shelton-honey-bee,Tency Music,36796 +Jackson Browne,Doctor My Eyes,https://www.jamkazam.com/landing/jamtracks/jackson-browne-doctor-my-eyes,Tency Music,7244 +Ballroom Orchestra,Merengue Groove,https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-merengue-groove,Tency Music,28740 +DJ Otzi,Hey Baby,https://www.jamkazam.com/landing/jamtracks/dj-otzi-hey-baby,Paris Music,S2689 +Squeeze,Up the Junction,https://www.jamkazam.com/landing/jamtracks/squeeze-up-the-junction,Paris Music,S4582 +Skillet,Hero,https://www.jamkazam.com/landing/jamtracks/skillet-hero,Tency Music,38756 +New Order,True Faith,https://www.jamkazam.com/landing/jamtracks/new-order-true-faith,Paris Music,S2961 +Lorde,Royals,https://www.jamkazam.com/landing/jamtracks/lorde-royals,Tency Music,44319 +James Brown,Cold Sweat,https://www.jamkazam.com/landing/jamtracks/james-brown-cold-sweat,Paris Music,S4418 +Santana,Oye Como Va,https://www.jamkazam.com/landing/jamtracks/santana-oye-como-va,Tency Music,7627 +Pink,Get The Party Started,https://www.jamkazam.com/landing/jamtracks/pink-get-the-party-started,Tency Music,8080 +Eva Cassidy,What a Wonderful World,https://www.jamkazam.com/landing/jamtracks/eva-cassidy-what-a-wonderful-world,Paris Music,S3112 +T Rex,I Love To Boogie,https://www.jamkazam.com/landing/jamtracks/t-rex-i-love-to-boogie,Paris Music,S1023 +K.C. And The Sunshine Band,Boogie Shoes,https://www.jamkazam.com/landing/jamtracks/kc-and-the-sunshine-band-boogie-shoes,Tency Music,39611 +Mika,Big Girl (You Are Beautiful),https://www.jamkazam.com/landing/jamtracks/mika-big-girl-you-are-beautiful,Paris Music,S2266 +George Michael,Faith,https://www.jamkazam.com/landing/jamtracks/george-michael-faith,Tency Music,11897 +The Allman Brothers Band,Statesboro Blues,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-statesboro-blues,Tency Music,48736 +Petula Clark,Colour My World,https://www.jamkazam.com/landing/jamtracks/petula-clark-colour-my-world,Paris Music,S2603 +Supertramp,The Logical Song,https://www.jamkazam.com/landing/jamtracks/supertramp-the-logical-song,Tency Music,5452 +The Cranberries,Dreams,https://www.jamkazam.com/landing/jamtracks/the-cranberries-dreams,Tency Music,11438 +Gloria Estefan,I Don't Wanna Lose You,https://www.jamkazam.com/landing/jamtracks/gloria-estefan-i-dont-wanna-lose-you,Paris Music,S0090 +Spandau Ballet,True,https://www.jamkazam.com/landing/jamtracks/spandau-ballet-true,Tency Music,10491 +Rita Ora,I Will Never Let You Down,https://www.jamkazam.com/landing/jamtracks/rita-ora-i-will-never-let-you-down,Paris Music,S4550 +Nazareth,Love Hurts,https://www.jamkazam.com/landing/jamtracks/nazareth-love-hurts,Tency Music,9748 +Queen,Don't Stop Me Now,https://www.jamkazam.com/landing/jamtracks/queen-dont-stop-me-now,Paris Music,S2066 +Adele,Set Fire To The Rain,https://www.jamkazam.com/landing/jamtracks/adele-set-fire-to-the-rain,Tency Music,36019 +Creedence Clearwater Revival,Travelin' Band,https://www.jamkazam.com/landing/jamtracks/creedence-clearwater-revival-travelin-band,Paris Music,S4856 +B.B. King,The Thrill Is Gone,https://www.jamkazam.com/landing/jamtracks/bb-king-the-thrill-is-gone,Tency Music,5566 +The Smiths,This Charming Man,https://www.jamkazam.com/landing/jamtracks/the-smiths-this-charming-man,Paris Music,S2338 +Foo Fighters,Wheels,https://www.jamkazam.com/landing/jamtracks/foo-fighters-wheels,Tency Music,25864 +Naughty By Nature,O.P.P.,https://www.jamkazam.com/landing/jamtracks/naughty-by-nature-opp,Tency Music,27656 +The Carpenters,Please Mr. Postman,https://www.jamkazam.com/landing/jamtracks/the-carpenters-please-mr-postman,Paris Music,S0447 +The S.O.S. Band,Take Your Time Do It Right,https://www.jamkazam.com/landing/jamtracks/the-sos-band-take-your-time-do-it-right,Tency Music,8638 +Frank Sinatra,Let's Face the Music & Dance,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-lets-face-the-music--dance,Paris Music,S0323 +Soul Asylum,Misery,https://www.jamkazam.com/landing/jamtracks/soul-asylum-misery,Tency Music,35798 +Irish Traditional,Wild Rover,https://www.jamkazam.com/landing/jamtracks/irish-traditional-wild-rover,Paris Music,S0747 +Sam & Dave,Soul Man,https://www.jamkazam.com/landing/jamtracks/sam--dave-soul-man,Paris Music,S0679 +Snow Patrol,Chasing Cars,https://www.jamkazam.com/landing/jamtracks/snow-patrol-chasing-cars,Tency Music,7295 +Imagine Dragons,Radioactive,https://www.jamkazam.com/landing/jamtracks/imagine-dragons-radioactive,Tency Music,42785 +Bobby Darin,Things,https://www.jamkazam.com/landing/jamtracks/bobby-darin-things,Paris Music,S3574 +Diana Ross & The Supremes,Stop! In the Name of Love,https://www.jamkazam.com/landing/jamtracks/diana-ross--the-supremes-stop-in-the-name-of-love,Paris Music,S3999 +The Chordettes,Lollipop,https://www.jamkazam.com/landing/jamtracks/the-chordettes-lollipop,Tency Music,27551 +Lionel Richie,Three Times A Lady,https://www.jamkazam.com/landing/jamtracks/lionel-richie-three-times-a-lady,Tency Music,20429 +New York City,I'm Doin' Fine Now,https://www.jamkazam.com/landing/jamtracks/new-york-city-im-doin-fine-now,Paris Music,S1395 +Elvis Presley,Love Letters,https://www.jamkazam.com/landing/jamtracks/elvis-presley-love-letters,Paris Music,S3862 +Olivia Newton John,Banks of the Ohio,https://www.jamkazam.com/landing/jamtracks/olivia-newton-john-banks-of-the-ohio,Paris Music,S4211 +Nirvana,Come As You Are,https://www.jamkazam.com/landing/jamtracks/nirvana-come-as-you-are,Tency Music,11776 +Cat Stevens,Wild World,https://www.jamkazam.com/landing/jamtracks/cat-stevens-wild-world,Tency Music,15300 +Billy Joel,The Stranger,https://www.jamkazam.com/landing/jamtracks/billy-joel-the-stranger,Tency Music,6413 +Dean Martin,Sway,https://www.jamkazam.com/landing/jamtracks/dean-martin-sway,Paris Music,S0891 +Dave Clark Five,Glad All Over,https://www.jamkazam.com/landing/jamtracks/dave-clark-five-glad-all-over,Paris Music,S0222 +The Killers,Smile Like You Mean It,https://www.jamkazam.com/landing/jamtracks/the-killers-smile-like-you-mean-it,Paris Music,S1216 +The Beatles,Help,https://www.jamkazam.com/landing/jamtracks/the-beatles-help,Music Master Exchange LLC, +Seether,Country Song,https://www.jamkazam.com/landing/jamtracks/seether-country-song,Tency Music,38166 +Etta James,I Just Want To Make Love To You,https://www.jamkazam.com/landing/jamtracks/etta-james-i-just-want-to-make-love-to-you,Paris Music,S3292 +Tom Petty,Free Fallin (A Cappella),https://www.jamkazam.com/landing/jamtracks/tom-petty-free-fallin-acapella,Tim Waurick, +Taylor Swift,Jump Then Fall,https://www.jamkazam.com/landing/jamtracks/taylor-swift-jump-then-fall,Tency Music,25928 +Avril Lavigne,Complicated,https://www.jamkazam.com/landing/jamtracks/avril-lavigne-complicated,Paris Music,S0228 +Heart,Crazy On You,https://www.jamkazam.com/landing/jamtracks/heart-crazy-on-you,Music Master Exchange LLC, +Queen,Under Pressure,https://www.jamkazam.com/landing/jamtracks/queen-under-pressure,Tency Music,12724 +Robbie Williams,Advertising Space,https://www.jamkazam.com/landing/jamtracks/robbie-williams-advertising-space,Paris Music,S1397 +The Undertones,Teenage Kicks,https://www.jamkazam.com/landing/jamtracks/the-undertones-teenage-kicks,Paris Music,S0360 +Simply Red,Holding Back The Years,https://www.jamkazam.com/landing/jamtracks/simply-red-holding-back-the-years,Tency Music,7134 +Jazzy Gershwin,The Man I Love,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-the-man-i-love,Tency Music,35530 +Prefab Sprout,King of Rock & Roll,https://www.jamkazam.com/landing/jamtracks/prefab-sprout-king-of-rock--roll,Paris Music,S1672 +Radiohead,High And Dry,https://www.jamkazam.com/landing/jamtracks/radiohead-high-and-dry,Tency Music,12545 +Eric Clapton,Bad Love,https://www.jamkazam.com/landing/jamtracks/eric-clapton-bad-love,Paris Music,S2373 +The Poni Tails,Born Too Late,https://www.jamkazam.com/landing/jamtracks/the-poni-tails-born-too-late,Paris Music,S0821 +R. Kelly,Ignition,https://www.jamkazam.com/landing/jamtracks/r-kelly-ignition,Tency Music,28042 +Bob Dylan,Just Like A Woman,https://www.jamkazam.com/landing/jamtracks/bob-dylan-just-like-a-woman,Tency Music,6508 +Alan Jackson,It's Five O'Clock Somewhere,https://www.jamkazam.com/landing/jamtracks/alan-jackson-its-five-oclock-somewhere,Tency Music,5670 +John Lennon,Happy Christmas (War Is Over),https://www.jamkazam.com/landing/jamtracks/john-lennon-happy-christmas-war-is-over,Paris Music,S0124 +Fats Domino,I'm Walkin,https://www.jamkazam.com/landing/jamtracks/fats-domino-im-walkin,Tency Music,22971 +The Rolling Stones,Under My Thumb,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-under-my-thumb,Tency Music,30460 +Crosby Stills And Nash,Our House,https://www.jamkazam.com/landing/jamtracks/crosby-stills-and-nash-our-house,Tency Music,28551 +Mario,Let Me Love You,https://www.jamkazam.com/landing/jamtracks/mario-let-me-love-you,Paris Music,S1120 +The Allman Brothers Band,Midnight Rider,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-midnight-rider,Tency Music,48325 +Johnny Cash,I've Been Everywhere,https://www.jamkazam.com/landing/jamtracks/johnny-cash-ive-been-everywhere,Paris Music,S3055 +Arctic Monkeys,Fluorescent Adolescents,https://www.jamkazam.com/landing/jamtracks/arctic-monkeys-fluorescent-adolescents,Paris Music,S2127 +Taylor Swift,You Belong With Me,https://www.jamkazam.com/landing/jamtracks/taylor-swift-you-belong-with-me,Tency Music,21501 +The Beatles,The Fool On The Hill,https://www.jamkazam.com/landing/jamtracks/the-beatles-the-fool-on-the-hill,Tency Music,21366 +Nancy Sinatra,You Only Live Twice,https://www.jamkazam.com/landing/jamtracks/nancy-sinatra-you-only-live-twice,Paris Music,S3867 +Jimmy Buffett,Cheeseburger In Paradise,https://www.jamkazam.com/landing/jamtracks/jimmy-buffett-cheeseburger-in-paradise,Music Master Exchange LLC, +Queen,Too Much Love Will Kill You,https://www.jamkazam.com/landing/jamtracks/queen-too-much-love-will-kill-you,Paris Music,S2065 +Rhema Marvanne,Prayer,https://www.jamkazam.com/landing/jamtracks/rhema-marvanne-prayer,Paris Music,S4215 +The Police,Message In A Bottle,https://www.jamkazam.com/landing/jamtracks/the-police-message-in-a-bottle,Music Master Exchange LLC, +Elvis Presley,G.I. Blues,https://www.jamkazam.com/landing/jamtracks/elvis-presley-gi-blues,Paris Music,S0472 +Gospel Singer,Praise To The Lord The Almighty,https://www.jamkazam.com/landing/jamtracks/gospel-singer-praise-to-the-lord-the-almighty,Tency Music,24220 +The Beatles,All My Loving,https://www.jamkazam.com/landing/jamtracks/the-beatles-all-my-loving,Tency Music,14477 +Marmalade,Reflections of My Life,https://www.jamkazam.com/landing/jamtracks/marmalade-reflections-of-my-life,Paris Music,S2064 +The Source Feat. Candi Staton,You've Got the Love,https://www.jamkazam.com/landing/jamtracks/the-source-feat-candi-staton-youve-got-the-love,Paris Music,S1591 +REO Speedwagon,I Can't Fight This Feeling Anymore,https://www.jamkazam.com/landing/jamtracks/reo-speedwagon-i-cant-fight-this-feeling-anymore,Tency Music,6352 +The Eagles,Take It To the Limit,https://www.jamkazam.com/landing/jamtracks/the-eagles-take-it-to-the-limit,Paris Music,S0533 +Soggy Bottom Boys,In The Jailhouse Now,https://www.jamkazam.com/landing/jamtracks/soggy-bottom-boys-in-the-jailhouse-now,Tency Music,29801 +Natalie Cole,Don't Get Around Much Anymore,https://www.jamkazam.com/landing/jamtracks/natalie-cole-dont-get-around-much-anymore,Tency Music,31632 +Queen,Crazy Little Thing Called Love,https://www.jamkazam.com/landing/jamtracks/queen-crazy-little-thing-called-love,Tency Music,10332 +Dead Or Alive,You Spin Me Round (Like A Record),https://www.jamkazam.com/landing/jamtracks/dead-or-alive-you-spin-me-round-like-a-record,Paris Music,S2108 +Skunk Anansie,Hedonism (Just Because You Feel Good),https://www.jamkazam.com/landing/jamtracks/skunk-anansie-hedonism-just-because-you-feel-good,Tency Music,13783 +Frank Sinatra,That's Life,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-thats-life,Paris Music,S0896 +Billy Joel,She's Always A Woman,https://www.jamkazam.com/landing/jamtracks/billy-joel-shes-always-a-woman,Tency Music,13112 +The Byrds,Mr. Tambourine Man,https://www.jamkazam.com/landing/jamtracks/the-byrds-mr-tambourine-man,Tency Music,6914 +Amy Winehouse,Love Is a Losing Game,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-love-is-a-losing-game,Paris Music,S2067 +Dusty Springfield,Wishin' & Hopin',https://www.jamkazam.com/landing/jamtracks/dusty-springfield-wishin--hopin,Paris Music,S1117 +Christina Aguilera,But I Am a Good Girl,https://www.jamkazam.com/landing/jamtracks/christina-aguilera-but-i-am-a-good-girl,Paris Music,S3506 +Barbra Streisand & Neil Diamond,You Don't Bring Me Flowers,https://www.jamkazam.com/landing/jamtracks/barbra-streisand--neil-diamond-you-dont-bring-me-flowers,Paris Music,S1399 +Bill Haley And His Comets,Rock Around The Clock,https://www.jamkazam.com/landing/jamtracks/bill-haley-and-his-comets-rock-around-the-clock,Tency Music,14581 +Coldplay,In My Place,https://www.jamkazam.com/landing/jamtracks/coldplay-in-my-place,Paris Music,S0224 +Gene Pitney,24 Hours from Tulsa,https://www.jamkazam.com/landing/jamtracks/gene-pitney-24-hours-from-tulsa,Paris Music,S0137 +Gospel Singer,Holy Holy Holy,https://www.jamkazam.com/landing/jamtracks/gospel-singer-holy-holy-holy,Tency Music,24202 +The Hunger Games,The Hanging Tree,https://www.jamkazam.com/landing/jamtracks/the-hunger-games-the-hanging-tree,Tency Music,48187 +Carly Simon,Nobody Does It Better,https://www.jamkazam.com/landing/jamtracks/carly-simon-nobody-does-it-better,Paris Music,S0324 +Abba,Thank You for the Music,https://www.jamkazam.com/landing/jamtracks/abba-thank-you-for-the-music,Paris Music,S0817 +Shirley Bassey,Diamonds Are Forever,https://www.jamkazam.com/landing/jamtracks/shirley-bassey-diamonds-are-forever,Paris Music,S0683 +Axe,Rock N Roll Party In The Streets,https://www.jamkazam.com/landing/jamtracks/axe-rock-n-roll-party-in-the-streets,Tency Music,41973 +R.E.M.,Everybody Hurts,https://www.jamkazam.com/landing/jamtracks/rem-everybody-hurts,Tency Music,14183 +Pat Travers,Snortin Whiskey,https://www.jamkazam.com/landing/jamtracks/pat-travers-snortin-whiskey,Tency Music,38316 +The Damned,Eloise,https://www.jamkazam.com/landing/jamtracks/the-damned-eloise,Paris Music,S4571 +Dizzee Rascal Feat. Calvin Harris,Dance Wiv Me,https://www.jamkazam.com/landing/jamtracks/dizzee-rascal-feat-calvin-harris-dance-wiv-me,Paris Music,S2692 +Kurt Nilsen,Gambler,https://www.jamkazam.com/landing/jamtracks/kurt-nilsen-gambler,Paris Music,S4526 +Steve Earle,Goodbye,https://www.jamkazam.com/landing/jamtracks/steve-earle-goodbye,Tency Music,27493 +Joe Bonamassa,You Upset Me Baby,https://www.jamkazam.com/landing/jamtracks/joe-bonamassa-you-upset-me-baby,Tency Music,48513 +Pitch Perfect,Since U Been Gone,https://www.jamkazam.com/landing/jamtracks/pitch-perfect-since-u-been-gone,Tency Music,43727 +Jim Capaldi,Love Hurts,https://www.jamkazam.com/landing/jamtracks/jim-capaldi-love-hurts,Paris Music,S1401 +Taylor Swift,Style,https://www.jamkazam.com/landing/jamtracks/taylor-swift-style,Tency Music,48085 +Jane Mc Donald,Burt Bacharach Medley - Live At the London Paladium,https://www.jamkazam.com/landing/jamtracks/jane-mc-donald-burt-bacharach-medley---live-at-the-london-paladium,Paris Music,S4252 +Detroit Spinners,Working My Way Back To You,https://www.jamkazam.com/landing/jamtracks/detroit-spinners-working-my-way-back-to-you,Paris Music,S0681 +Johnny Kidd & The Pirates,Shakin' All Over,https://www.jamkazam.com/landing/jamtracks/johnny-kidd--the-pirates-shakin-all-over,Paris Music,S3993 +The Beatles,Hey Jude,https://www.jamkazam.com/landing/jamtracks/the-beatles-hey-jude,Music Master Exchange LLC, +Little Richard,Girl Can't Help It,https://www.jamkazam.com/landing/jamtracks/little-richard-girl-cant-help-it,Paris Music,S1678 +Paul Simon,Me And Julio Down By The Schoolyard,https://www.jamkazam.com/landing/jamtracks/paul-simon-me-and-julio-down-by-the-schoolyard,Tency Music,35277 +Todd Rundgren,Bang The Drum All Day,https://www.jamkazam.com/landing/jamtracks/todd-rundgren-bang-the-drum-all-day,Tency Music,35133 +Elvis Presley,Girl of My Best Friend,https://www.jamkazam.com/landing/jamtracks/elvis-presley-girl-of-my-best-friend,Paris Music,S0473 +Miley Cyrus,Wrecking Ball,https://www.jamkazam.com/landing/jamtracks/miley-cyrus-wrecking-ball,Tency Music,44924 +Dusty Springfield,I Close My Eyes & Count to Ten,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-i-close-my-eyes--count-to-ten,Paris Music,S2129 +Bread,Baby I'm a Want You,https://www.jamkazam.com/landing/jamtracks/bread-baby-im-a-want-you,Paris Music,S2592 +Calvin Harris Feat. Ellie Goulding,I Need Your Love,https://www.jamkazam.com/landing/jamtracks/calvin-harris-feat-ellie-goulding-i-need-your-love,Paris Music,S4266 +Simply Red,If You Don't Know Me By Now,https://www.jamkazam.com/landing/jamtracks/simply-red-if-you-dont-know-me-by-now,Tency Music,12020 +The Animals,Don't Let Me Be Misunderstood,https://www.jamkazam.com/landing/jamtracks/the-animals-dont-let-me-be-misunderstood,Tency Music,12571 +The Commitments,Chain of Fools,https://www.jamkazam.com/landing/jamtracks/the-commitments-chain-of-fools,Paris Music,S0822 +Yvonne Elliman,If I Can't Have You,https://www.jamkazam.com/landing/jamtracks/yvonne-elliman-if-i-cant-have-you,Paris Music,S1132 +The Dubliners,The Black Velvet Band,https://www.jamkazam.com/landing/jamtracks/the-dubliners-the-black-velvet-band,Tency Music,38116 +Liberty X,Night To Remember,https://www.jamkazam.com/landing/jamtracks/liberty-x-night-to-remember,Paris Music,S1576 +Nelly Furtado,I'm Like A Bird,https://www.jamkazam.com/landing/jamtracks/nelly-furtado-im-like-a-bird,Tency Music,7785 +The Jeff Healey Band,Roadhouse Blues,https://www.jamkazam.com/landing/jamtracks/the-jeff-healey-band-roadhouse-blues,Tency Music,48435 +Oasis,Little By Little,https://www.jamkazam.com/landing/jamtracks/oasis-little-by-little,Paris Music,S0142 +Van Morrison,Brown Eyed Girl,https://www.jamkazam.com/landing/jamtracks/van-morrison-brown-eyed-girl,Paris Music,S0618 +R.E.M.,Losing My Religion,https://www.jamkazam.com/landing/jamtracks/rem-losing-my-religion,Tency Music,10592 +Gospel Singer,Just As I Am,https://www.jamkazam.com/landing/jamtracks/gospel-singer-just-as-i-am,Tency Music,29345 +Jason Mraz,I'm Yours,https://www.jamkazam.com/landing/jamtracks/jason-mraz-im-yours,Tency Music,20158 +Bad Manners,My Girl Lollipop,https://www.jamkazam.com/landing/jamtracks/bad-manners-my-girl-lollipop,Paris Music,S2697 +The Killers,For Reasons Unknown,https://www.jamkazam.com/landing/jamtracks/the-killers-for-reasons-unknown,Tency Music,12177 +Lady Gaga,Edge of Glory,https://www.jamkazam.com/landing/jamtracks/lady-gaga-edge-of-glory,Paris Music,S3628 +Lady Gaga,Paparazzi,https://www.jamkazam.com/landing/jamtracks/lady-gaga-paparazzi,Tency Music,22748 +Sting,Fragile,https://www.jamkazam.com/landing/jamtracks/sting-fragile,Tency Music,13277 +Tavares,More Than a Woman,https://www.jamkazam.com/landing/jamtracks/tavares-more-than-a-woman,Paris Music,S1133 +Joe Bonamassa,Django,https://www.jamkazam.com/landing/jamtracks/joe-bonamassa-django,Tency Music,39571 +Jennifer Lopez,On The Floor,https://www.jamkazam.com/landing/jamtracks/jennifer-lopez-on-the-floor,Tency Music,36297 +The Beat,Can't Get Used To Losing You,https://www.jamkazam.com/landing/jamtracks/the-beat-cant-get-used-to-losing-you,Paris Music,S1592 +Creedence Clearwater Revival,Bad Moon Rising,https://www.jamkazam.com/landing/jamtracks/creedence-clearwater-revival-bad-moon-rising,Tency Music,8596 +R.E.M.,What's The Frequency Kenneth,https://www.jamkazam.com/landing/jamtracks/rem-whats-the-frequency-kenneth,Tency Music,30149 +Sarah Vaughan,Moonlight In Vermont,https://www.jamkazam.com/landing/jamtracks/sarah-vaughan-moonlight-in-vermont,Tency Music,19218 +Kim Carnes,Bette Davis Eyes,https://www.jamkazam.com/landing/jamtracks/kim-carnes-bette-davis-eyes,Paris Music,S4217 +Del Shannon,Answer to Everything,https://www.jamkazam.com/landing/jamtracks/del-shannon-answer-to-everything,Paris Music,S3507 +Dido,White Flag,https://www.jamkazam.com/landing/jamtracks/dido-white-flag,Paris Music,S0614 +Ritchie Valens,La Bamba,https://www.jamkazam.com/landing/jamtracks/ritchie-valens-la-bamba,Tency Music,6168 +Moe Bandy,Someday Soon,https://www.jamkazam.com/landing/jamtracks/moe-bandy-someday-soon,Paris Music,S4592 +Gloria Gaynor,I Will Survive,https://www.jamkazam.com/landing/jamtracks/gloria-gaynor-i-will-survive,Tency Music,5921 +Freemasons,Uninvited,https://www.jamkazam.com/landing/jamtracks/freemasons-uninvited,Paris Music,S2379 +Aretha Franklin,I Say A Little Prayer,https://www.jamkazam.com/landing/jamtracks/aretha-franklin-i-say-a-little-prayer,Tency Music,13515 +Kansas,Carry On Wayward Son,https://www.jamkazam.com/landing/jamtracks/kansas-carry-on-wayward-son,Tency Music,7239 +Abba,Our Last Summer,https://www.jamkazam.com/landing/jamtracks/abba-our-last-summer,Paris Music,S2621 +Dave Edmunds,I Hear You Knocking,https://www.jamkazam.com/landing/jamtracks/dave-edmunds-i-hear-you-knocking,Paris Music,S0616 +Alicia Keys,Girl On Fire,https://www.jamkazam.com/landing/jamtracks/alicia-keys-girl-on-fire,Tency Music,41704 +Olivia Newton John,"Take Me Home, Country Roads",https://www.jamkazam.com/landing/jamtracks/olivia-newton-john-take-me-home-country-roads,Paris Music,S0835 +Gary Allan,Every Storm Runs Out Of Rain,https://www.jamkazam.com/landing/jamtracks/gary-allan-every-storm-runs-out-of-rain,Tency Music,43119 +Style Council,Walls Come Tumbling Down,https://www.jamkazam.com/landing/jamtracks/style-council-walls-come-tumbling-down,Paris Music,S1692 +Elton John,Bennie And The Jets,https://www.jamkazam.com/landing/jamtracks/elton-john-bennie-and-the-jets,Music Master Exchange LLC, +George Ezra,Budapest,https://www.jamkazam.com/landing/jamtracks/george-ezra-budapest,Paris Music,S4590 +Katy Perry,Teenage Dream,https://www.jamkazam.com/landing/jamtracks/katy-perry-teenage-dream,Paris Music,S3458 +Robbie Williams,Hot Fudge,https://www.jamkazam.com/landing/jamtracks/robbie-williams-hot-fudge,Paris Music,S0520 +Kate Bush,Wuthering Heights,https://www.jamkazam.com/landing/jamtracks/kate-bush-wuthering-heights,Tency Music,13738 +Madness,Embarrassment,https://www.jamkazam.com/landing/jamtracks/madness-embarrassment,Paris Music,S1679 +Kirsty Ma Ccoll,A New England ,https://www.jamkazam.com/landing/jamtracks/kirsty-ma-ccoll-a-new-england,Paris Music,S1408 +Irish Traditional,Dirty Old Town,https://www.jamkazam.com/landing/jamtracks/irish-traditional-dirty-old-town,Paris Music,S0735 +Lana Del Rey,Young And Beautiful,https://www.jamkazam.com/landing/jamtracks/lana-del-rey-young-and-beautiful,Tency Music,43667 +Hozier,From Eden,https://www.jamkazam.com/landing/jamtracks/hozier-from-eden,Tency Music,48640 +Feist,1234,https://www.jamkazam.com/landing/jamtracks/feist-1234,Tency Music,13137 +R.E.M.,The Finest Worksong,https://www.jamkazam.com/landing/jamtracks/rem-the-finest-worksong,Tency Music,35378 +Bruce Springsteen,Glory Days,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-glory-days,Paris Music,S2075 +Rascal Flatts,What Hurts The Most,https://www.jamkazam.com/landing/jamtracks/rascal-flatts-what-hurts-the-most,Tency Music,17527 +Eric Clapton,Nobody Knows You When You're Down & Out,https://www.jamkazam.com/landing/jamtracks/eric-clapton-nobody-knows-you-when-youre-down--out,Paris Music,S2389 +Greg Kihn Band,Jeopardy,https://www.jamkazam.com/landing/jamtracks/greg-kihn-band-jeopardy,Tency Music,35966 +The Teddy Bears,To Know Him Is To Love Him,https://www.jamkazam.com/landing/jamtracks/the-teddy-bears-to-know-him-is-to-love-him,Paris Music,S0849 +Aerosmith,Amazing,https://www.jamkazam.com/landing/jamtracks/aerosmith-amazing,Tency Music,38772 +Derek And The Dominos,Layla,https://www.jamkazam.com/landing/jamtracks/derek-and-the-dominos-layla,Tency Music,35016 +Ottawan,D.I.S.C.O,https://www.jamkazam.com/landing/jamtracks/ottawan-disco,Paris Music,S2132 +Kylie Minogue,Get Outta My Way,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-get-outta-my-way,Paris Music,S3453 +American Authors,Best Day of My Life,https://www.jamkazam.com/landing/jamtracks/american-authors-best-day-of-my-life,Paris Music,S4500 +The Bangles,Manic Monday,https://www.jamkazam.com/landing/jamtracks/the-bangles-manic-monday,Tency Music,14267 +Sister Hazel,All For You,https://www.jamkazam.com/landing/jamtracks/sister-hazel-all-for-you,Tency Music,10385 +Tears For Fears,Sowing The Seeds Of Love,https://www.jamkazam.com/landing/jamtracks/tears-for-fears-sowing-the-seeds-of-love,Tency Music,18070 +Dusty Springfield,Son of a Preacher Man,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-son-of-a-preacher-man,Paris Music,S0488 +David Guetta Vs The Egg,Love Don't Let Me Go (Walking Away),https://www.jamkazam.com/landing/jamtracks/david-guetta-vs-the-egg-love-dont-let-me-go-walking-away,Paris Music,S1761 +Brian Setzer Orchestra,Rock This Town,https://www.jamkazam.com/landing/jamtracks/brian-setzer-orchestra-rock-this-town,Paris Music,S2790 +The Beatles,Helter Skelter,https://www.jamkazam.com/landing/jamtracks/the-beatles-helter-skelter,Paris Music,S4401 +Squeeze,Another Nail Through My Heart,https://www.jamkazam.com/landing/jamtracks/squeeze-another-nail-through-my-heart,Paris Music,S1764 +Bruce Hornsby,Every Little Kiss,https://www.jamkazam.com/landing/jamtracks/bruce-hornsby-every-little-kiss,Tency Music,35941 +Joe Jackson,You Can't Get What You Want (Till You Know What You Want),https://www.jamkazam.com/landing/jamtracks/joe-jackson-you-cant-get-what-you-want-till-you-know-what-you-want,Tency Music,39933 +Michael Buble,Haven't Met You Yet (A Cappella),https://www.jamkazam.com/landing/jamtracks/michael-buble-havent-met-you-yet-acapella,Tim Waurick, +Billy Joel,You May Be Right,https://www.jamkazam.com/landing/jamtracks/billy-joel-you-may-be-right,Tency Music,17130 +Bill Withers,Just The Two Of Us,https://www.jamkazam.com/landing/jamtracks/bill-withers-just-the-two-of-us,Tency Music,5242 +R.E.M.,Man On The Moon,https://www.jamkazam.com/landing/jamtracks/rem-man-on-the-moon,Tency Music,5463 +Pitch Perfect,Cups (You're Gonna Miss Me When I'm Gone),https://www.jamkazam.com/landing/jamtracks/pitch-perfect-cups-youre-gonna-miss-me-when-im-gone,Tency Music,43622 +Gloria Gaynor,Never Can Say Goodbye,https://www.jamkazam.com/landing/jamtracks/gloria-gaynor-never-can-say-goodbye,Paris Music,S1468 +Pink Floyd,Money,https://www.jamkazam.com/landing/jamtracks/pink-floyd-money,Music Master Exchange LLC, +Nat King Cole,Route 66,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-route-66,Tency Music,48714 +From The Jersey Boys,Walk Like a Man,https://www.jamkazam.com/landing/jamtracks/from-the-jersey-boys-walk-like-a-man,Paris Music,S2798 +Pink Floyd,Dogs,https://www.jamkazam.com/landing/jamtracks/pink-floyd-dogs,Tency Music,38552 +Fall Out Boy,Centuries,https://www.jamkazam.com/landing/jamtracks/fall-out-boy-centuries,Tency Music,47606 +Marvin Gaye,What's Going On,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-whats-going-on,Tency Music,10202 +Bobby Valentino,Slow Down,https://www.jamkazam.com/landing/jamtracks/bobby-valentino-slow-down,Paris Music,S1229 +Patsy Cline,Leavin On Your Mind,https://www.jamkazam.com/landing/jamtracks/patsy-cline-leavin-on-your-mind,Tency Music,7038 +The Killers,All These Things,https://www.jamkazam.com/landing/jamtracks/the-killers-all-these-things,Paris Music,S2970 +Curiosity Killed The Cat,Down To Earth,https://www.jamkazam.com/landing/jamtracks/curiosity-killed-the-cat-down-to-earth,Paris Music,S1676 +Foo Fighters,The Pretender,https://www.jamkazam.com/landing/jamtracks/foo-fighters-the-pretender,Tency Music,12669 +Dusty Springfield,Take Another Little Piece of My Heart,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-take-another-little-piece-of-my-heart,Paris Music,S1465 +The Bee Gees,To Love Somebody,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-to-love-somebody,Paris Music,S0340 +Robbie Williams,Rock DJ,https://www.jamkazam.com/landing/jamtracks/robbie-williams-rock-dj,Paris Music,S3922 +Bob Dylan,Blowin In The Wind,https://www.jamkazam.com/landing/jamtracks/bob-dylan-blowin-in-the-wind,Tency Music,8039 +Josh Groban,You Raise Me Up,https://www.jamkazam.com/landing/jamtracks/josh-groban-you-raise-me-up,Tency Music,5830 +Del Shannon,Hats off To Larry,https://www.jamkazam.com/landing/jamtracks/del-shannon-hats-off-to-larry,Paris Music,S1342 +Robbie Williams,One for the Road,https://www.jamkazam.com/landing/jamtracks/robbie-williams-one-for-the-road,Paris Music,S0686 +Gladys Knight,Licence To Kill,https://www.jamkazam.com/landing/jamtracks/gladys-knight-licence-to-kill,Paris Music,S0331 +Amy Winehouse,Back To Black,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-back-to-black,Tency Music,11998 +Gospel Singer,He Touched Me,https://www.jamkazam.com/landing/jamtracks/gospel-singer-he-touched-me,Tency Music,24458 +The Carpenters,Rainy Days & Mondays,https://www.jamkazam.com/landing/jamtracks/the-carpenters-rainy-days--mondays,Paris Music,S2136 +Mario Winans,I Don't Wanna Know,https://www.jamkazam.com/landing/jamtracks/mario-winans-i-dont-wanna-know,Paris Music,S0899 +Jack Johnson,Sitting Waiting Wishing,https://www.jamkazam.com/landing/jamtracks/jack-johnson-sitting-waiting-wishing,Tency Music,16185 +Michael Buble,That's All,https://www.jamkazam.com/landing/jamtracks/michael-buble-thats-all,Paris Music,S2137 +Lorde,Team,https://www.jamkazam.com/landing/jamtracks/lorde-team,Tency Music,45643 +The Gipsy Kings,Quiero Saber,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-quiero-saber,Tency Music,44919 +Bonnie Tyler,It's A Heartache,https://www.jamkazam.com/landing/jamtracks/bonnie-tyler-its-a-heartache,Tency Music,13870 +Red Hot C Hili Peppers,Universally Speaking,https://www.jamkazam.com/landing/jamtracks/red-hot-c-hili-peppers-universally-speaking,Paris Music,S0540 +The Ramones,Baby I Love You,https://www.jamkazam.com/landing/jamtracks/the-ramones-baby-i-love-you,Paris Music,S1620 +Ziggy Marley And The Melody Makers,Look Who's Dancing,https://www.jamkazam.com/landing/jamtracks/ziggy-marley-and-the-melody-makers-look-whos-dancing,Tency Music,35529 +The Drifters,Please Stay,https://www.jamkazam.com/landing/jamtracks/the-drifters-please-stay,Paris Music,S2448 +Brooks And Dunn,Red Dirt Road,https://www.jamkazam.com/landing/jamtracks/brooks-and-dunn-red-dirt-road,Tency Music,6242 +Carly Rae Jepsen,Call Me Maybe,https://www.jamkazam.com/landing/jamtracks/carly-rae-jepsen-call-me-maybe,Paris Music,S3925 +Del Shannon,Runaway,https://www.jamkazam.com/landing/jamtracks/del-shannon-runaway,Paris Music,S1346 +Duan Stephenson,Border,https://www.jamkazam.com/landing/jamtracks/duan-stephenson-border,Paris Music,S3923 +Sam Smith,Like I Can,https://www.jamkazam.com/landing/jamtracks/sam-smith-like-i-can,Tency Music,48045 +Motorhead,Ace Of Spades,https://www.jamkazam.com/landing/jamtracks/motorhead-ace-of-spades,Tency Music,22204 +Celine Dion,Because You Loved Me,https://www.jamkazam.com/landing/jamtracks/celine-dion-because-you-loved-me,Tency Music,10787 +Justin Hayward,Forever Autumn,https://www.jamkazam.com/landing/jamtracks/justin-hayward-forever-autumn,Paris Music,S0342 +Heather Small,Proud,https://www.jamkazam.com/landing/jamtracks/heather-small-proud,Paris Music,S1539 +Marmalade,Ob-La-Di-Ob-La-Da,https://www.jamkazam.com/landing/jamtracks/marmalade-ob-la-di-ob-la-da,Paris Music,S1767 +Sly And The Family Stone,Everyday People,https://www.jamkazam.com/landing/jamtracks/sly-and-the-family-stone-everyday-people,Tency Music,33334 +Jason Derulo,Want To Want Me,https://www.jamkazam.com/landing/jamtracks/jason-derulo-want-to-want-me,Tency Music,49016 +Tina Turner,Best,https://www.jamkazam.com/landing/jamtracks/tina-turner-best,Paris Music,S1875 +Kings Of Leon,Sex On Fire,https://www.jamkazam.com/landing/jamtracks/kings-of-leon-sex-on-fire,Tency Music,20791 +Jim Croce,Bad Bad Leroy Brown,https://www.jamkazam.com/landing/jamtracks/jim-croce-bad-bad-leroy-brown,Tency Music,9979 +Steely Dan,Peg,https://www.jamkazam.com/landing/jamtracks/steely-dan-peg,Tency Music,18470 +Michael Jackson,P.Y.T. (Pretty Young Thing),https://www.jamkazam.com/landing/jamtracks/michael-jackson-pyt-pretty-young-thing,Tency Music,21250 +The Jacksons,Santa Claus Is Coming To Town,https://www.jamkazam.com/landing/jamtracks/the-jacksons-santa-claus-is-coming-to-town,Paris Music,S0697 +Billy Joel,Uptown Girl,https://www.jamkazam.com/landing/jamtracks/billy-joel-uptown-girl,Tency Music,12829 +Paul Simon,Kodachrome,https://www.jamkazam.com/landing/jamtracks/paul-simon-kodachrome,Tency Music,48463 +The Eagles,Take It Easy,https://www.jamkazam.com/landing/jamtracks/the-eagles-take-it-easy,Paris Music,S2976 +Jessie J,Price Tag,https://www.jamkazam.com/landing/jamtracks/jessie-j-price-tag,Tency Music,35680 +Jackson Browne,Running On Empty,https://www.jamkazam.com/landing/jamtracks/jackson-browne-running-on-empty,Tency Music,6306 +Max Bygraves,Gilly Gilly Ossenfeffer Katzenellen Bogen By the Sea,https://www.jamkazam.com/landing/jamtracks/max-bygraves-gilly-gilly-ossenfeffer-katzenellen-bogen-by-the-sea,Paris Music,S2375 +Rumer,Am I Forgiven?,https://www.jamkazam.com/landing/jamtracks/rumer-am-i-forgiven,Paris Music,S3518 +Jim Croce,I'll Have To Say I Love You In a Song,https://www.jamkazam.com/landing/jamtracks/jim-croce-ill-have-to-say-i-love-you-in-a-song,Paris Music,S2810 +The Buzzcocks,Ever Fallen In Love With Someone?,https://www.jamkazam.com/landing/jamtracks/the-buzzcocks-ever-fallen-in-love-with-someone,Paris Music,S0554 +Sonny And Cher,I Got You Babe,https://www.jamkazam.com/landing/jamtracks/sonny-and-cher-i-got-you-babe,Tency Music,7657 +Queen,Somebody To Love,https://www.jamkazam.com/landing/jamtracks/queen-somebody-to-love,Tency Music,12619 +The Village People,Y.M.C.A,https://www.jamkazam.com/landing/jamtracks/the-village-people-ymca,Paris Music,S3379 +Billy Joel,My Life,https://www.jamkazam.com/landing/jamtracks/billy-joel-my-life,Tency Music,13110 +Jill Scott,He Loves Me,https://www.jamkazam.com/landing/jamtracks/jill-scott-he-loves-me,Tency Music,20780 +Jackson Browne,Stay,https://www.jamkazam.com/landing/jamtracks/jackson-browne-stay,Tency Music,41276 +The Beach Boys,Lady Lynda,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-lady-lynda,Paris Music,S3126 +Visage,Fade To Grey,https://www.jamkazam.com/landing/jamtracks/visage-fade-to-grey,Paris Music,S1463 +Deacon Blue,I'll Never Fall In Love Again,https://www.jamkazam.com/landing/jamtracks/deacon-blue-ill-never-fall-in-love-again,Paris Music,S1470 +Adele,Make You Feel My Love,https://www.jamkazam.com/landing/jamtracks/adele-make-you-feel-my-love,Tency Music,21496 +Megadeth,Moto Psycho,https://www.jamkazam.com/landing/jamtracks/megadeth-moto-psycho,Tency Music,29944 +Shakin' Stevens,Teardrops,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-teardrops,Paris Music,S1665 +Bill Withers,Use Me,https://www.jamkazam.com/landing/jamtracks/bill-withers-use-me,Tency Music,32207 +Stevie Nicks,Stop Draggin My Heart Around,https://www.jamkazam.com/landing/jamtracks/stevie-nicks-stop-draggin-my-heart-around,Tency Music,35404 +The Troggs,Wild Thing,https://www.jamkazam.com/landing/jamtracks/the-troggs-wild-thing,Tency Music,5456 +Tony Christie,Avenues & Alleyways,https://www.jamkazam.com/landing/jamtracks/tony-christie-avenues--alleyways,Paris Music,S1237 +The Ronettes,Be My Baby,https://www.jamkazam.com/landing/jamtracks/the-ronettes-be-my-baby,Paris Music,S0176 +Little Richard,Tutti Frutti,https://www.jamkazam.com/landing/jamtracks/little-richard-tutti-frutti,Tency Music,36001 +Jet,Are You Gonna Be My Girl,https://www.jamkazam.com/landing/jamtracks/jet-are-you-gonna-be-my-girl,Tency Music,15711 +Electric Light Orchestra,Mr. Blue Sky,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-mr-blue-sky,Tency Music,11955 +George Michael,Fast Love,https://www.jamkazam.com/landing/jamtracks/george-michael-fast-love,Paris Music,S4256 +Avril Lavigne,Here's To Never Growing Up,https://www.jamkazam.com/landing/jamtracks/avril-lavigne-heres-to-never-growing-up,Tency Music,43672 +Oasis,Morning Glory,https://www.jamkazam.com/landing/jamtracks/oasis-morning-glory,Paris Music,S3137 +Bob Seger,Old Time Rock And Roll,https://www.jamkazam.com/landing/jamtracks/bob-seger-old-time-rock-and-roll,Music Master Exchange LLC, +Supertramp,Goodbye Stranger,https://www.jamkazam.com/landing/jamtracks/supertramp-goodbye-stranger,Tency Music,30648 +Elvis Presley,Wooden Heart,https://www.jamkazam.com/landing/jamtracks/elvis-presley-wooden-heart,Paris Music,S2452 +Loverboy,Turn Me Loose,https://www.jamkazam.com/landing/jamtracks/loverboy-turn-me-loose,Tency Music,47398 +The Four Tops,Walk Away Renee,https://www.jamkazam.com/landing/jamtracks/the-four-tops-walk-away-renee,Paris Music,S0546 +Years & Years,King,https://www.jamkazam.com/landing/jamtracks/years--years-king,Paris Music,S4803 +Van Morrison,Tupelo Honey,https://www.jamkazam.com/landing/jamtracks/van-morrison-tupelo-honey,Tency Music,43277 +Deacon Blue,Real Gone Kid,https://www.jamkazam.com/landing/jamtracks/deacon-blue-real-gone-kid,Paris Music,S0359 +Alice In Chains,Rooster,https://www.jamkazam.com/landing/jamtracks/alice-in-chains-rooster,Tency Music,30212 +Buffalo Springfield,For What It's Worth,https://www.jamkazam.com/landing/jamtracks/buffalo-springfield-for-what-its-worth,Tency Music,9992 +Halestorm,I Miss The Misery,https://www.jamkazam.com/landing/jamtracks/halestorm-i-miss-the-misery,Tency Music,43655 +Lionel Richie,Stuck On You,https://www.jamkazam.com/landing/jamtracks/lionel-richie-stuck-on-you,Paris Music,S0528 +The Urban Cookie Collective,"Key, the Secret",https://www.jamkazam.com/landing/jamtracks/the-urban-cookie-collective-key-the-secret,Paris Music,S1771 +Pink Floyd,The Great Gig In The Sky,https://www.jamkazam.com/landing/jamtracks/pink-floyd-the-great-gig-in-the-sky,Tency Music,31047 +Simple Minds,Don't You Forget About Me,https://www.jamkazam.com/landing/jamtracks/simple-minds-dont-you-forget-about-me,Tency Music,14175 +Eminem,Love The Way You Lie,https://www.jamkazam.com/landing/jamtracks/eminem-love-the-way-you-lie,Tency Music,31372 +Frankie Laine,High Noon,https://www.jamkazam.com/landing/jamtracks/frankie-laine-high-noon,Paris Music,S2143 +Usher,Scream,https://www.jamkazam.com/landing/jamtracks/usher-scream,Tency Music,40621 +Neil Diamond,Solitary Man - Live Arrangement,https://www.jamkazam.com/landing/jamtracks/neil-diamond-solitary-man---live-arrangement,Paris Music,S2451 +Michael Buble,Everything,https://www.jamkazam.com/landing/jamtracks/michael-buble-everything,Paris Music,S2145 +Jazzy Gershwin,Someone To Watch Over Me,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-someone-to-watch-over-me,Tency Music,35544 +Billie Holiday,God Bless The Child,https://www.jamkazam.com/landing/jamtracks/billie-holiday-god-bless-the-child,Tency Music,25886 +ZZ Top,Tush,https://www.jamkazam.com/landing/jamtracks/zz-top-tush,Tency Music,20852 +Santana,The Game Of Love,https://www.jamkazam.com/landing/jamtracks/santana-the-game-of-love,Tency Music,7063 +Daniel Boone,Beautiful Sunday,https://www.jamkazam.com/landing/jamtracks/daniel-boone-beautiful-sunday,Paris Music,S2806 +"John Goodman, Dan Aykroyd & The Blues Brothers",Ghost Riders In the Sky,https://www.jamkazam.com/landing/jamtracks/john-goodman-dan-aykroyd--the-blues-brothers-ghost-riders-in-the-sky,Paris Music,S4763 +The Beach Boys,Barbara Ann,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-barbara-ann,Tency Music,5868 +Blondie,Union City Blue,https://www.jamkazam.com/landing/jamtracks/blondie-union-city-blue,Paris Music,S4272 +Junior Mervin,Police & Thieves,https://www.jamkazam.com/landing/jamtracks/junior-mervin-police--thieves,Paris Music,S0699 +Michael Buble,Cry Me a River,https://www.jamkazam.com/landing/jamtracks/michael-buble-cry-me-a-river,Paris Music,S3134 +Lana Del Rey,Video Games,https://www.jamkazam.com/landing/jamtracks/lana-del-rey-video-games,Tency Music,38398 +Foreigner,Double Vision,https://www.jamkazam.com/landing/jamtracks/foreigner-double-vision,Tency Music,47386 +David Guetta Feat. Nicki Minaj,Turn Me On,https://www.jamkazam.com/landing/jamtracks/david-guetta-feat-nicki-minaj-turn-me-on,Paris Music,S3930 +Elvis Presley,Don't Be Cruel,https://www.jamkazam.com/landing/jamtracks/elvis-presley-dont-be-cruel,Tency Music,7020 +Queen,Who Wants To Live Forever,https://www.jamkazam.com/landing/jamtracks/queen-who-wants-to-live-forever,Paris Music,S0908 +Fountains Of Wayne,Stacy's Mom,https://www.jamkazam.com/landing/jamtracks/fountains-of-wayne-stacys-mom,Tency Music,5738 +Pharrell Williams,Happy,https://www.jamkazam.com/landing/jamtracks/pharrell-williams-happy,Tency Music,45218 +Jerry Lee Lewis,Great Balls Of Fire,https://www.jamkazam.com/landing/jamtracks/jerry-lee-lewis-great-balls-of-fire,Tency Music,6980 +Amen Corner,Bend Me Shape Me,https://www.jamkazam.com/landing/jamtracks/amen-corner-bend-me-shape-me,Paris Music,S1474 +The Everly Brothers,Wake Up Little Susie,https://www.jamkazam.com/landing/jamtracks/the-everly-brothers-wake-up-little-susie,Tency Music,15698 +Jennifer Hudson,Spotlight,https://www.jamkazam.com/landing/jamtracks/jennifer-hudson-spotlight,Tency Music,20848 +Ricky Nelson,Hello Mary Lou (A Cappella),https://www.jamkazam.com/landing/jamtracks/ricky-nelson-hello-mary-lou-acapella,Tim Waurick, +Sam Smith,Stay With Me,https://www.jamkazam.com/landing/jamtracks/sam-smith-stay-with-me,Tency Music,46588 +Christina Aguilera,Voice Within,https://www.jamkazam.com/landing/jamtracks/christina-aguilera-voice-within,Paris Music,S0693 +Oasis,Stop Crying Your Heart Out,https://www.jamkazam.com/landing/jamtracks/oasis-stop-crying-your-heart-out,Tency Music,19147 +Will.I.Am Feat. Justin Bieber,#That Power,https://www.jamkazam.com/landing/jamtracks/william-feat-justin-bieber-that-power,Paris Music,S4271 +Adele,Skyfall,https://www.jamkazam.com/landing/jamtracks/adele-skyfall,Paris Music,S4097 +Neil Diamond,Love On The Rocks,https://www.jamkazam.com/landing/jamtracks/neil-diamond-love-on-the-rocks,Tency Music,6911 +Elvis Presley,Pledge My Love,https://www.jamkazam.com/landing/jamtracks/elvis-presley-pledge-my-love,Paris Music,S2449 +Dusty Springfield,I Just Don't Know What to Do With Myself,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-i-just-dont-know-what-to-do-with-myself,Paris Music,S0912 +Mott The Hoople,All the Young Dudes,https://www.jamkazam.com/landing/jamtracks/mott-the-hoople-all-the-young-dudes,Paris Music,S3934 +B.J. Thomas,Raindrops Keep Fallin On My Head,https://www.jamkazam.com/landing/jamtracks/bj-thomas-raindrops-keep-fallin-on-my-head,Tency Music,10099 +Pink Floyd,Pigs (Three Different Ones),https://www.jamkazam.com/landing/jamtracks/pink-floyd-pigs-three-different-ones,Tency Music,47995 +T Rex,20th Century Boy,https://www.jamkazam.com/landing/jamtracks/t-rex-20th-century-boy,Paris Music,S0560 +The Rolling Stones,You Can't Always Get What You Want,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-you-cant-always-get-what-you-want,Tency Music,33771 +ZZ Top,Sharp Dressed Man,https://www.jamkazam.com/landing/jamtracks/zz-top-sharp-dressed-man,Tency Music,17483 +David Essex,Winters Tale,https://www.jamkazam.com/landing/jamtracks/david-essex-winters-tale,Paris Music,S1238 +Heart,Alone,https://www.jamkazam.com/landing/jamtracks/heart-alone,Paris Music,S0722 +Manfred Mann,"If You Gotta Go, Go Now",https://www.jamkazam.com/landing/jamtracks/manfred-mann-if-you-gotta-go-go-now,Paris Music,S1477 +AC/DC,Shoot To Thrill,https://www.jamkazam.com/landing/jamtracks/acdc-shoot-to-thrill,Back in Black LLC, +Snoop Dogg,Drop It Like It's Hot,https://www.jamkazam.com/landing/jamtracks/snoop-dogg-drop-it-like-its-hot,Tency Music,41103 +Midnight Oil,Beds Are Burning,https://www.jamkazam.com/landing/jamtracks/midnight-oil-beds-are-burning,Tency Music,12687 +James,Sit Down,https://www.jamkazam.com/landing/jamtracks/james-sit-down,Paris Music,S2153 +Tina Turner,Let's Stay Together,https://www.jamkazam.com/landing/jamtracks/tina-turner-lets-stay-together,Tency Music,13810 +The Kinks,All Day And All Of The Night,https://www.jamkazam.com/landing/jamtracks/the-kinks-all-day-and-all-of-the-night,Tency Music,12704 +Lionel Richie,Running With the Night,https://www.jamkazam.com/landing/jamtracks/lionel-richie-running-with-the-night,Paris Music,S1471 +Elton John,Crocodile Rock,https://www.jamkazam.com/landing/jamtracks/elton-john-crocodile-rock,Tency Music,5473 +Warrant,Cherry Pie,https://www.jamkazam.com/landing/jamtracks/warrant-cherry-pie,Paris Music,S3298 +Jay-Z,I Just Wanna Love You,https://www.jamkazam.com/landing/jamtracks/jay-z-i-just-wanna-love-you,Tency Music,23798 +Bon Jovi,You Give Love A Bad Name,https://www.jamkazam.com/landing/jamtracks/bon-jovi-you-give-love-a-bad-name,Tency Music,13036 +Rihanna,Rude Boy,https://www.jamkazam.com/landing/jamtracks/rihanna-rude-boy,Paris Music,S3149 +Phil Collins,Easy Lover,https://www.jamkazam.com/landing/jamtracks/phil-collins-easy-lover,Paris Music,S2147 +Great White,Once Bitten Twice Shy,https://www.jamkazam.com/landing/jamtracks/great-white-once-bitten-twice-shy,Tency Music,15953 +James Morrison,I Won't Let You Go,https://www.jamkazam.com/landing/jamtracks/james-morrison-i-wont-let-you-go,Tency Music,37905 +The Saturdays,Just Can't Get Enough,https://www.jamkazam.com/landing/jamtracks/the-saturdays-just-cant-get-enough,Paris Music,S2822 +Conor Maynard,Can't Say No,https://www.jamkazam.com/landing/jamtracks/conor-maynard-cant-say-no,Paris Music,S3933 +Billy Joel,Just The Way You Are,https://www.jamkazam.com/landing/jamtracks/billy-joel-just-the-way-you-are,Tency Music,13108 +Luther Vandross,Reflections,https://www.jamkazam.com/landing/jamtracks/luther-vandross-reflections,Paris Music,S1245 +The Traveling Wilburys,Last Night,https://www.jamkazam.com/landing/jamtracks/the-traveling-wilburys-last-night,Paris Music,S2150 +Twisted Sister,We're Not Gonna Take It,https://www.jamkazam.com/landing/jamtracks/twisted-sister-were-not-gonna-take-it,Tency Music,19055 +Sarah McLachlan,Angel,https://www.jamkazam.com/landing/jamtracks/sarah-mclachlan-angel,Tency Music,6100 +Leann Rimes,How Do I Live Without You ?,https://www.jamkazam.com/landing/jamtracks/leann-rimes-how-do-i-live-without-you-,Paris Music,S0915 +Two Door Cinema Club,Sleep Alone,https://www.jamkazam.com/landing/jamtracks/two-door-cinema-club-sleep-alone,Paris Music,S4632 +Electric Light Orchestra,Livin Thing,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-livin-thing,Tency Music,32715 +Neil Young,Only Love Can Break Your Heart,https://www.jamkazam.com/landing/jamtracks/neil-young-only-love-can-break-your-heart,Tency Music,47748 +Elkie Brooks,Fool If You Think It's Over,https://www.jamkazam.com/landing/jamtracks/elkie-brooks-fool-if-you-think-its-over,Paris Music,S1777 +Yazoo,Don't Go,https://www.jamkazam.com/landing/jamtracks/yazoo-dont-go,Paris Music,S2110 +Lynyrd Skynyrd,You Got That Right,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-you-got-that-right,Tency Music,24663 +Cornershop,Brimful of Asha (Norman Cook Remix),https://www.jamkazam.com/landing/jamtracks/cornershop-brimful-of-asha-norman-cook-remix,Paris Music,S3519 +Sugarland,Stuck Like Glue,https://www.jamkazam.com/landing/jamtracks/sugarland-stuck-like-glue,Tency Music,32490 +Alabama Shakes,Hold On,https://www.jamkazam.com/landing/jamtracks/alabama-shakes-hold-on,Tency Music,41616 +Bad Manners,Special Brew,https://www.jamkazam.com/landing/jamtracks/bad-manners-special-brew,Paris Music,S1483 +Sarah Brightman,Memory,https://www.jamkazam.com/landing/jamtracks/sarah-brightman-memory,Paris Music,S1294 +Blondie,Hanging On the Telephone,https://www.jamkazam.com/landing/jamtracks/blondie-hanging-on-the-telephone,Paris Music,S2156 +Sia,Chandelier,https://www.jamkazam.com/landing/jamtracks/sia-chandelier,Tency Music,46789 +Led Zeppelin,Misty Mountain Hop,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-misty-mountain-hop,Music Master Exchange LLC, +Gospel Singer,We Gather Together,https://www.jamkazam.com/landing/jamtracks/gospel-singer-we-gather-together,Tency Music,24964 +Peter Gabriel,Sledgehammer,https://www.jamkazam.com/landing/jamtracks/peter-gabriel-sledgehammer,Paris Music,S0706 +Paolo Nutini,42287,https://www.jamkazam.com/landing/jamtracks/paolo-nutini-42287,Paris Music,S3156 +Whitney Houston,Didn't We Almost Have It All,https://www.jamkazam.com/landing/jamtracks/whitney-houston-didnt-we-almost-have-it-all,Paris Music,S2211 +Rufus Wainwright,Hallelujah,https://www.jamkazam.com/landing/jamtracks/rufus-wainwright-hallelujah,Tency Music,22813 +Diana Ross,Endless Love,https://www.jamkazam.com/landing/jamtracks/diana-ross-endless-love,Tency Music,6097 +Ray Charles,Georgia On My Mind,https://www.jamkazam.com/landing/jamtracks/ray-charles-georgia-on-my-mind,Tency Music,13533 +Los Bravos,Black Is Black,https://www.jamkazam.com/landing/jamtracks/los-bravos-black-is-black,Paris Music,S2458 +Pink,Sober,https://www.jamkazam.com/landing/jamtracks/pink-sober,Paris Music,S2782 +Wheatus,Teenage Dirtbag,https://www.jamkazam.com/landing/jamtracks/wheatus-teenage-dirtbag,Paris Music,S3528 +Phil Collins,You Can't Hurry Love,https://www.jamkazam.com/landing/jamtracks/phil-collins-you-cant-hurry-love,Paris Music,S4638 +Beverley Knight,Piece of My Heart,https://www.jamkazam.com/landing/jamtracks/beverley-knight-piece-of-my-heart,Paris Music,S1595 +The Shadows,Telstar,https://www.jamkazam.com/landing/jamtracks/the-shadows-telstar,Paris Music,S4809 +Gospel Singer,Crown Him With Many Crowns,https://www.jamkazam.com/landing/jamtracks/gospel-singer-crown-him-with-many-crowns,Tency Music,24185 +The Small Faces,All or Nothing,https://www.jamkazam.com/landing/jamtracks/the-small-faces-all-or-nothing,Paris Music,S1479 +Robert Palmer,I'll Be Your Baby Tonight,https://www.jamkazam.com/landing/jamtracks/robert-palmer-ill-be-your-baby-tonight,Paris Music,S0917 +The Rocky Horror Picture Show,Time Warp,https://www.jamkazam.com/landing/jamtracks/the-rocky-horror-picture-show-time-warp,Paris Music,S3938 +Pink Floyd,The Thin Ice,https://www.jamkazam.com/landing/jamtracks/pink-floyd-the-thin-ice,Tency Music,48374 +Billy Joel,Scenes From An Italian Restaurant,https://www.jamkazam.com/landing/jamtracks/billy-joel-scenes-from-an-italian-restaurant,Tency Music,8879 +Electric Light Orchestra,Hold On Tight,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-hold-on-tight,Paris Music,S2157 +Demi Lovato,Let It Go,https://www.jamkazam.com/landing/jamtracks/demi-lovato-let-it-go,Tency Music,45761 +Elvis Presley,All Shook Up,https://www.jamkazam.com/landing/jamtracks/elvis-presley-all-shook-up,Tency Music,7010 +Roberta Flack,Killing Me Softly With His Song,https://www.jamkazam.com/landing/jamtracks/roberta-flack-killing-me-softly-with-his-song,Tency Music,13961 +Kd Lang,Constant Craving,https://www.jamkazam.com/landing/jamtracks/kd-lang-constant-craving,Paris Music,S1248 +Swing Out Sister,Breakout,https://www.jamkazam.com/landing/jamtracks/swing-out-sister-breakout,Paris Music,S1481 +Cher Lloyd,Want U Back,https://www.jamkazam.com/landing/jamtracks/cher-lloyd-want-u-back,Tency Music,41164 +Barry White,I'm Gonna Love You Just a Little Bit More Babe,https://www.jamkazam.com/landing/jamtracks/barry-white-im-gonna-love-you-just-a-little-bit-more-babe,Paris Music,S4273 +Etta James,Stormy Weather,https://www.jamkazam.com/landing/jamtracks/etta-james-stormy-weather,Tency Music,36743 +Kenny Rogers,Lady,https://www.jamkazam.com/landing/jamtracks/kenny-rogers-lady,Paris Music,S1485 +Natalie Cole,I Wish You Love,https://www.jamkazam.com/landing/jamtracks/natalie-cole-i-wish-you-love,Tency Music,33755 +Frankie Goes To Hollywood,Two Tribes,https://www.jamkazam.com/landing/jamtracks/frankie-goes-to-hollywood-two-tribes,Paris Music,S3527 +Olly Murs Feat. Flo Rida,Troublemaker,https://www.jamkazam.com/landing/jamtracks/olly-murs-feat-flo-rida-troublemaker,Paris Music,S4105 +The Black Crowes,Hard to Handle,https://www.jamkazam.com/landing/jamtracks/the-black-crowes-hard-to-handle,Paris Music,S4641 +Alicia Keys,Empire State of Mind - Part 2,https://www.jamkazam.com/landing/jamtracks/alicia-keys-empire-state-of-mind---part-2,Paris Music,S3152 +Sly And The Family Stone,Hot Fun In The Summertime,https://www.jamkazam.com/landing/jamtracks/sly-and-the-family-stone-hot-fun-in-the-summertime,Tency Music,25252 +Gospel Singer,How Firm A Foundation,https://www.jamkazam.com/landing/jamtracks/gospel-singer-how-firm-a-foundation,Tency Music,24204 +Tears For Fears,Everybody Wants To Rule The World,https://www.jamkazam.com/landing/jamtracks/tears-for-fears-everybody-wants-to-rule-the-world,Tency Music,9986 +Jason Mraz,Lucky,https://www.jamkazam.com/landing/jamtracks/jason-mraz-lucky,Tency Music,21408 +Kylie Vs New Order,Can't Get You Outta My Head,https://www.jamkazam.com/landing/jamtracks/kylie-vs-new-order-cant-get-you-outta-my-head,Paris Music,S0718 +Jennifer Hudson,If This Isn't Love,https://www.jamkazam.com/landing/jamtracks/jennifer-hudson-if-this-isnt-love,Tency Music,22140 +Etta James,Someone To Watch Over Me,https://www.jamkazam.com/landing/jamtracks/etta-james-someone-to-watch-over-me,Tency Music,33496 +Right Said Fred,I'm Too Sexy,https://www.jamkazam.com/landing/jamtracks/right-said-fred-im-too-sexy,Paris Music,S3943 +Nina Simone,Feeling Good,https://www.jamkazam.com/landing/jamtracks/nina-simone-feeling-good,Tency Music,25907 +Chairman Of The Board,Give Me Just a Little More Time,https://www.jamkazam.com/landing/jamtracks/chairman-of-the-board-give-me-just-a-little-more-time,Paris Music,S1250 +Gospel Singer,Christ The Lord Is Risen Today,https://www.jamkazam.com/landing/jamtracks/gospel-singer-christ-the-lord-is-risen-today,Tency Music,24182 +Foster & Allen,After All These Years,https://www.jamkazam.com/landing/jamtracks/foster--allen-after-all-these-years,Paris Music,S1487 +Michael Buble,Moondance,https://www.jamkazam.com/landing/jamtracks/michael-buble-moondance,Paris Music,S2171 +Rod Stewart,Every Beat of My Heart,https://www.jamkazam.com/landing/jamtracks/rod-stewart-every-beat-of-my-heart,Paris Music,S1890 +The Yardbirds,For Your Love,https://www.jamkazam.com/landing/jamtracks/the-yardbirds-for-your-love,Tency Music,34666 +Alanis Morissette,You Oughta Know,https://www.jamkazam.com/landing/jamtracks/alanis-morissette-you-oughta-know,Paris Music,S0714 +Sophie B Hawkins,Damn I Wish I Was Your Lover,https://www.jamkazam.com/landing/jamtracks/sophie-b-hawkins-damn-i-wish-i-was-your-lover,Tency Music,6385 +Pink,Please Don't Leave Me,https://www.jamkazam.com/landing/jamtracks/pink-please-dont-leave-me,Paris Music,S2832 +Amy Winehouse,Valerie,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-valerie,Paris Music,S2301 +Gina G,Ooh..Aah Just a Little Bit,https://www.jamkazam.com/landing/jamtracks/gina-g-oohaah-just-a-little-bit,Paris Music,S3936 +Neil Young,Like A Hurricane,https://www.jamkazam.com/landing/jamtracks/neil-young-like-a-hurricane,Tency Music,47635 +Frank Sinatra,My Way,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-my-way,Tency Music,5103 +Wild Cherry,Play That Funky Music,https://www.jamkazam.com/landing/jamtracks/wild-cherry-play-that-funky-music,Paris Music,S4644 +Robert John,Sad Eyes,https://www.jamkazam.com/landing/jamtracks/robert-john-sad-eyes,Tency Music,29103 +Lynyrd Skynyrd,Saturday Night Special,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-saturday-night-special,Tency Music,30136 +Bobby Darin,(It's Only a) Paper Moon,https://www.jamkazam.com/landing/jamtracks/bobby-darin-its-only-a-paper-moon,Paris Music,S1794 +Jefferson Airplane,Somebody To Love,https://www.jamkazam.com/landing/jamtracks/jefferson-airplane-somebody-to-love,Tency Music,15710 +The Temptations,Just My Imagination,https://www.jamkazam.com/landing/jamtracks/the-temptations-just-my-imagination,Paris Music,S1251 +Will Young,Leave Right Now,https://www.jamkazam.com/landing/jamtracks/will-young-leave-right-now,Paris Music,S0925 +Gospel Singer,Blessed Assurance,https://www.jamkazam.com/landing/jamtracks/gospel-singer-blessed-assurance,Tency Music,29485 +Randy Crawford,Almaz,https://www.jamkazam.com/landing/jamtracks/randy-crawford-almaz,Paris Music,S1797 +Aerosmith,Love In An Elevator,https://www.jamkazam.com/landing/jamtracks/aerosmith-love-in-an-elevator,Tency Music,13813 +The Pointer Sisters,Fire,https://www.jamkazam.com/landing/jamtracks/the-pointer-sisters-fire,Paris Music,S2471 +Natalie Imbruglia,Torn,https://www.jamkazam.com/landing/jamtracks/natalie-imbruglia-torn,Tency Music,9928 +Faith No More,Epic,https://www.jamkazam.com/landing/jamtracks/faith-no-more-epic,Tency Music,46398 +Shania Twain,Honey I'm Home,https://www.jamkazam.com/landing/jamtracks/shania-twain-honey-im-home,Paris Music,S2168 +Carole King,I Feel The Earth Move,https://www.jamkazam.com/landing/jamtracks/carole-king-i-feel-the-earth-move,Tency Music,9259 +Boston,Smokin,https://www.jamkazam.com/landing/jamtracks/boston-smokin,Tency Music,29386 +Keith Urban,You'll Think Of Me,https://www.jamkazam.com/landing/jamtracks/keith-urban-youll-think-of-me,Tency Music,5800 +Stereophonics,Graffiti On the Train,https://www.jamkazam.com/landing/jamtracks/stereophonics-graffiti-on-the-train,Paris Music,S4275 +Labelle,Lady Marmalade,https://www.jamkazam.com/landing/jamtracks/labelle-lady-marmalade,Paris Music,S3944 +Ellie Goulding,Burn,https://www.jamkazam.com/landing/jamtracks/ellie-goulding-burn,Tency Music,44729 +Sixpence None The Richer,There She Goes,https://www.jamkazam.com/landing/jamtracks/sixpence-none-the-richer-there-she-goes,Tency Music,8701 +The Blues Brothers,Think,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-think,Tency Music,36821 +Barbra Streisand,As If We Never Said Goodbye,https://www.jamkazam.com/landing/jamtracks/barbra-streisand-as-if-we-never-said-goodbye,Paris Music,S2175 +Bobby Darin,More Than,https://www.jamkazam.com/landing/jamtracks/bobby-darin-more-than,Paris Music,S1807 +John Mayer,Half Of My Heart,https://www.jamkazam.com/landing/jamtracks/john-mayer-half-of-my-heart,Tency Music,26934 +Katie Melua,Closest Thing to Crazy,https://www.jamkazam.com/landing/jamtracks/katie-melua-closest-thing-to-crazy,Paris Music,S0726 +Doris Day,Que Sera Sera(Whatever Will Be Will Be),https://www.jamkazam.com/landing/jamtracks/doris-day-que-sera-serawhatever-will-be-will-be,Paris Music,S1296 +The Piranhas,Tom Hark,https://www.jamkazam.com/landing/jamtracks/the-piranhas-tom-hark,Paris Music,S2045 +Audioslave,Like A Stone,https://www.jamkazam.com/landing/jamtracks/audioslave-like-a-stone,Tency Music,6209 +East 17,Stay Another Day,https://www.jamkazam.com/landing/jamtracks/east-17-stay-another-day,Paris Music,S1486 +John Rowles,If I Only Had Time,https://www.jamkazam.com/landing/jamtracks/john-rowles-if-i-only-had-time,Paris Music,S1804 +The Greg Kihn Band,Breakup Song - They Don't Write 'Em,https://www.jamkazam.com/landing/jamtracks/the-greg-kihn-band-breakup-song---they-dont-write-em,Paris Music,S4648 +Dusty Springfield,Look of Love,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-look-of-love,Paris Music,S1254 +Taylor Swift,Mean,https://www.jamkazam.com/landing/jamtracks/taylor-swift-mean,Tency Music,34638 +Alexandra Burke,Bad Boys,https://www.jamkazam.com/landing/jamtracks/alexandra-burke-bad-boys,Paris Music,S3164 +Coolio,Gangsta's Paradise,https://www.jamkazam.com/landing/jamtracks/coolio-gangstas-paradise,Tency Music,12656 +Theory Of A Deadman,Bad Girlfriend,https://www.jamkazam.com/landing/jamtracks/theory-of-a-deadman-bad-girlfriend,Tency Music,39420 +Paolo Nutini,Jenny Don't Be Hasty,https://www.jamkazam.com/landing/jamtracks/paolo-nutini-jenny-dont-be-hasty,Paris Music,S1806 +Santana,Black Magic Woman,https://www.jamkazam.com/landing/jamtracks/santana-black-magic-woman,Tency Music,7626 +Toby Keith,Beer For My Horses,https://www.jamkazam.com/landing/jamtracks/toby-keith-beer-for-my-horses,Tency Music,7221 +Ziggy Marley,Concrete Jungle (Live Arrangement),https://www.jamkazam.com/landing/jamtracks/ziggy-marley-concrete-jungle-live-arrangement,Paris Music,S3941 +Brad Paisley,She's Everything,https://www.jamkazam.com/landing/jamtracks/brad-paisley-shes-everything,Tency Music,19886 +U2,Pride (In the Name of Love),https://www.jamkazam.com/landing/jamtracks/u2-pride-in-the-name-of-love,Paris Music,S2179 +From Cabaret,Cabaret,https://www.jamkazam.com/landing/jamtracks/from-cabaret-cabaret,Paris Music,S2631 +Simon And Garfunkel,Bridge Over Troubled Water,https://www.jamkazam.com/landing/jamtracks/simon-and-garfunkel-bridge-over-troubled-water,Tency Music,13166 +Hot Chocolate,Disco Queen,https://www.jamkazam.com/landing/jamtracks/hot-chocolate-disco-queen,Paris Music,S4291 +Natalie Cole,Our Love Is Here To Stay,https://www.jamkazam.com/landing/jamtracks/natalie-cole-our-love-is-here-to-stay,Tency Music,35372 +Emerson Lake And Palmer,Lucky Man,https://www.jamkazam.com/landing/jamtracks/emerson-lake-and-palmer-lucky-man,Tency Music,48004 +Noisettes,Don't Upset the Rhythm,https://www.jamkazam.com/landing/jamtracks/noisettes-dont-upset-the-rhythm,Paris Music,S2850 +Toni Braxton,Unbreak My Heart,https://www.jamkazam.com/landing/jamtracks/toni-braxton-unbreak-my-heart,Tency Music,10535 +REO Speedwagon,Take It On The Run,https://www.jamkazam.com/landing/jamtracks/reo-speedwagon-take-it-on-the-run,Tency Music,6316 +Jessica Rabbit,Why Don't You Do Right ?,https://www.jamkazam.com/landing/jamtracks/jessica-rabbit-why-dont-you-do-right-,Paris Music,S3546 +Status Quo,Rockin' All Over the World,https://www.jamkazam.com/landing/jamtracks/status-quo-rockin-all-over-the-world,Paris Music,S0967 +The Zombies,She's Not There,https://www.jamkazam.com/landing/jamtracks/the-zombies-shes-not-there,Tency Music,8958 +Tony Christie,Daddy Don't You Walk So Fast,https://www.jamkazam.com/landing/jamtracks/tony-christie-daddy-dont-you-walk-so-fast,Paris Music,S1490 +The Beach Boys,Little Deuce Coupe,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-little-deuce-coupe,Tency Music,10506 +The Rolling Stones,Around & Around,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-around--around,Paris Music,S2480 +Simple Minds,Alive & Kicking,https://www.jamkazam.com/landing/jamtracks/simple-minds-alive--kicking,Paris Music,S0517 +Mink Deville,Spanish Stroll,https://www.jamkazam.com/landing/jamtracks/mink-deville-spanish-stroll,Paris Music,S2584 +Suggs,Cecilia,https://www.jamkazam.com/landing/jamtracks/suggs-cecilia,Paris Music,S1488 +Crosby Stills And Nash,Suite Judy Blue Eyes,https://www.jamkazam.com/landing/jamtracks/crosby-stills-and-nash-suite-judy-blue-eyes,Tency Music,48391 +Kenny Chesney,Come Over,https://www.jamkazam.com/landing/jamtracks/kenny-chesney-come-over,Tency Music,40812 +Eric Clapton,Sweet Home Chicago,https://www.jamkazam.com/landing/jamtracks/eric-clapton-sweet-home-chicago,Tency Music,36341 +Van Morrison,Baby Please Don't Go,https://www.jamkazam.com/landing/jamtracks/van-morrison-baby-please-dont-go,Paris Music,S2183 +Badfinger,Day After Day,https://www.jamkazam.com/landing/jamtracks/badfinger-day-after-day,Tency Music,31397 +Ed Sheeran,Thinking Out Loud,https://www.jamkazam.com/landing/jamtracks/ed-sheeran-thinking-out-loud,Tency Music,47210 +Bruce Springsteen,I'm On Fire,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-im-on-fire,Paris Music,S2586 +Joe Nichols,Brokenheartsville,https://www.jamkazam.com/landing/jamtracks/joe-nichols-brokenheartsville,Tency Music,7084 +Connie Francis,Where the Boys Are,https://www.jamkazam.com/landing/jamtracks/connie-francis-where-the-boys-are,Paris Music,S1300 +Dolly Parton,Islands In The Stream,https://www.jamkazam.com/landing/jamtracks/dolly-parton-islands-in-the-stream,Tency Music,5554 +Dennis Brown,Love Has Found It's Way,https://www.jamkazam.com/landing/jamtracks/dennis-brown-love-has-found-its-way,Paris Music,S3163 +Boz Scaggs,Lido Shuffle,https://www.jamkazam.com/landing/jamtracks/boz-scaggs-lido-shuffle,Tency Music,35597 +Roy Orbison,Too Soon To Know,https://www.jamkazam.com/landing/jamtracks/roy-orbison-too-soon-to-know,Paris Music,S2475 +Neil Young,Harvest Moon,https://www.jamkazam.com/landing/jamtracks/neil-young-harvest-moon,Tency Music,30824 +Rihanna,Where Have You Been,https://www.jamkazam.com/landing/jamtracks/rihanna-where-have-you-been,Paris Music,S3949 +The Nolans,I'm In the Mood for Dancing,https://www.jamkazam.com/landing/jamtracks/the-nolans-im-in-the-mood-for-dancing,Paris Music,S1263 +Madeleine Peyroux,Dance Me To The End Of Love,https://www.jamkazam.com/landing/jamtracks/madeleine-peyroux-dance-me-to-the-end-of-love,Tency Music,32141 +Celia Cruz,Que Le Den Candela,https://www.jamkazam.com/landing/jamtracks/celia-cruz-que-le-den-candela,Tency Music,26680 +Kylie Minogue,Better the Devil You Know,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-better-the-devil-you-know,Paris Music,S2856 +Jennifer Hudson,I Love You I Do,https://www.jamkazam.com/landing/jamtracks/jennifer-hudson-i-love-you-i-do,Paris Music,S4299 +The Jimi Hendrix Experience,Foxy Lady,https://www.jamkazam.com/landing/jamtracks/the-jimi-hendrix-experience-foxy-lady,Tency Music,41920 +Alan Jackson,Remember When,https://www.jamkazam.com/landing/jamtracks/alan-jackson-remember-when,Tency Music,5781 +Jay-Z,Empire State Of Mind,https://www.jamkazam.com/landing/jamtracks/jay-z-empire-state-of-mind,Tency Music,25078 +Arctic Monkeys,I Bet You Look Good On the Dancefloor,https://www.jamkazam.com/landing/jamtracks/arctic-monkeys-i-bet-you-look-good-on-the-dancefloor,Paris Music,S1494 +Wanda Jackson,Let Me Go Lover,https://www.jamkazam.com/landing/jamtracks/wanda-jackson-let-me-go-lover,Paris Music,S1268 +The Rubettes,Sugar Baby Love,https://www.jamkazam.com/landing/jamtracks/the-rubettes-sugar-baby-love,Paris Music,S0970 +Naughty Boy,La La La feat. Sam Smith,https://www.jamkazam.com/landing/jamtracks/naughty-boy-la-la-la-feat-sam-smith,Paris Music,S4297 +Slade,Merry Christmas Everybody,https://www.jamkazam.com/landing/jamtracks/slade-merry-christmas-everybody,Paris Music,S2188 +Electric Light Orchestra,Don't Bring Me Down,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-dont-bring-me-down,Tency Music,36246 +Flogging Molly,Drunken Lullabies,https://www.jamkazam.com/landing/jamtracks/flogging-molly-drunken-lullabies,Paris Music,S2478 +Lady Gaga,Born This Way,https://www.jamkazam.com/landing/jamtracks/lady-gaga-born-this-way,Paris Music,S3549 +Alvin Lee,Bluest Blues,https://www.jamkazam.com/landing/jamtracks/alvin-lee-bluest-blues,Tency Music,43704 +Elvis Presley,Suspicious Minds,https://www.jamkazam.com/landing/jamtracks/elvis-presley-suspicious-minds,Tency Music,6922 +Biffy Clyro,Many of Horror,https://www.jamkazam.com/landing/jamtracks/biffy-clyro-many-of-horror,Paris Music,S3168 +Johnny Cash,I Walk The Line,https://www.jamkazam.com/landing/jamtracks/johnny-cash-i-walk-the-line,Tency Music,11585 +Norah Jones,Come Away With Me,https://www.jamkazam.com/landing/jamtracks/norah-jones-come-away-with-me,Tency Music,7070 +Sister Sledge,Lost In Music,https://www.jamkazam.com/landing/jamtracks/sister-sledge-lost-in-music,Paris Music,S4503 +The Jackson 5,I'll Be There,https://www.jamkazam.com/landing/jamtracks/the-jackson-5-ill-be-there,Tency Music,16187 +Busted,What I Go To School tor,https://www.jamkazam.com/landing/jamtracks/busted-what-i-go-to-school-tor,Paris Music,S3545 +Led Zeppelin,The Ocean,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-the-ocean,Music Master Exchange LLC, +Marvin Gaye & Tammi Terrell,Onion Song,https://www.jamkazam.com/landing/jamtracks/marvin-gaye--tammi-terrell-onion-song,Paris Music,S2483 +Odyssey,"Use It Up, Wear It Out",https://www.jamkazam.com/landing/jamtracks/odyssey-use-it-up-wear-it-out,Paris Music,S1493 +Styx,Show Me The Way,https://www.jamkazam.com/landing/jamtracks/styx-show-me-the-way,Tency Music,24581 +Team America World Police,I'm So Ronery,https://www.jamkazam.com/landing/jamtracks/team-america-world-police-im-so-ronery,Tency Music,36114 +Take That,Could It Be Magic,https://www.jamkazam.com/landing/jamtracks/take-that-could-it-be-magic,Paris Music,S2939 +Peter & Gordon,World Without Love,https://www.jamkazam.com/landing/jamtracks/peter--gordon-world-without-love,Paris Music,S3951 +The Jersey Boys,Rag Doll,https://www.jamkazam.com/landing/jamtracks/the-jersey-boys-rag-doll,Paris Music,S4662 +Kenny Chesney,Wild Child,https://www.jamkazam.com/landing/jamtracks/kenny-chesney-wild-child,Tency Music,48985 +Fats Domino,Blueberry Hill,https://www.jamkazam.com/landing/jamtracks/fats-domino-blueberry-hill,Paris Music,S3181 +Johnny Mathis,Send In the Clowns,https://www.jamkazam.com/landing/jamtracks/johnny-mathis-send-in-the-clowns,Paris Music,S4639 +Kylie Minogue,I Should Be so Lucky,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-i-should-be-so-lucky,Paris Music,S2857 +Rick Astley,Never Gonna Give You Up,https://www.jamkazam.com/landing/jamtracks/rick-astley-never-gonna-give-you-up,Tency Music,13974 +The Doors,Riders On The Storm,https://www.jamkazam.com/landing/jamtracks/the-doors-riders-on-the-storm,Tency Music,6524 +Brotherhood Of Man,Save All Your Kisses for Me,https://www.jamkazam.com/landing/jamtracks/brotherhood-of-man-save-all-your-kisses-for-me,Paris Music,S0977 +Joss Stone,Don't Cha Wanna Ride,https://www.jamkazam.com/landing/jamtracks/joss-stone-dont-cha-wanna-ride,Paris Music,S1264 +Paolo Nutini,Pencil Full of Lead,https://www.jamkazam.com/landing/jamtracks/paolo-nutini-pencil-full-of-lead,Paris Music,S3171 +The Killers,Shot At The Night,https://www.jamkazam.com/landing/jamtracks/the-killers-shot-at-the-night,Tency Music,45632 +Depeche Mode,Everything Counts,https://www.jamkazam.com/landing/jamtracks/depeche-mode-everything-counts,Paris Music,S0979 +Peter Tosh,Legalize It,https://www.jamkazam.com/landing/jamtracks/peter-tosh-legalize-it,Tency Music,27432 +Kylie Minogue,Locomotion,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-locomotion,Paris Music,S2858 +Kylie Minogue,Step Back In Time,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-step-back-in-time,Paris Music,S1814 +Rod Stewart,Downtown Train,https://www.jamkazam.com/landing/jamtracks/rod-stewart-downtown-train,Paris Music,S1823 +The Crystals,Santa Claus Is Coming To Town,https://www.jamkazam.com/landing/jamtracks/the-crystals-santa-claus-is-coming-to-town,Paris Music,S2191 +Goo Goo Dolls,Slide,https://www.jamkazam.com/landing/jamtracks/goo-goo-dolls-slide,Tency Music,9247 +America,Ventura Highway,https://www.jamkazam.com/landing/jamtracks/america-ventura-highway,Tency Music,8421 +Kylie Minogue,Love At First Sight,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-love-at-first-sight,Paris Music,S2859 +Nat King Cole,L-O-V-E,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-l-o-v-e,Tency Music,20125 +Neil Diamond,I Am I Said,https://www.jamkazam.com/landing/jamtracks/neil-diamond-i-am-i-said,Tency Music,7516 +Miley Cyrus,We Can't Stop,https://www.jamkazam.com/landing/jamtracks/miley-cyrus-we-cant-stop,Paris Music,S4304 +Coldplay,Speed of Sound,https://www.jamkazam.com/landing/jamtracks/coldplay-speed-of-sound,Paris Music,S1266 +The Ventures,Wipeout,https://www.jamkazam.com/landing/jamtracks/the-ventures-wipeout,Paris Music,S3555 +From Miss Saigon,Bui Doi,https://www.jamkazam.com/landing/jamtracks/from-miss-saigon-bui-doi,Paris Music,S2487 +The Small Faces,Sha-La-La-La-Le,https://www.jamkazam.com/landing/jamtracks/the-small-faces-sha-la-la-la-le,Paris Music,S2276 +Country Standards,Cotton Eyed Joe,https://www.jamkazam.com/landing/jamtracks/country-standards-cotton-eyed-joe,Tency Music,41084 +Florence & The Machine,You've Got the Love,https://www.jamkazam.com/landing/jamtracks/florence--the-machine-youve-got-the-love,Paris Music,S3185 +Paramore,Still Into You,https://www.jamkazam.com/landing/jamtracks/paramore-still-into-you,Tency Music,43358 +Rod Stewart,I Don't Want To Talk About It,https://www.jamkazam.com/landing/jamtracks/rod-stewart-i-dont-want-to-talk-about-it,Paris Music,S1509 +Mariah Carey,Fly Like a Bird,https://www.jamkazam.com/landing/jamtracks/mariah-carey-fly-like-a-bird,Paris Music,S1593 +Amy Mcdonald,This Is the Life,https://www.jamkazam.com/landing/jamtracks/amy-mcdonald-this-is-the-life,Paris Music,S2489 +America,You Can Do Magic,https://www.jamkazam.com/landing/jamtracks/america-you-can-do-magic,Tency Music,8431 +Godsmack,Greed,https://www.jamkazam.com/landing/jamtracks/godsmack-greed,Tency Music,29519 +Red Hot C Hili Peppers,Hump De Bump,https://www.jamkazam.com/landing/jamtracks/red-hot-c-hili-peppers-hump-de-bump,Paris Music,S2193 +Coheed And Cambria,Welcome Home,https://www.jamkazam.com/landing/jamtracks/coheed-and-cambria-welcome-home,Tency Music,28920 +Jamie Cullum,What A Difference A Day Made,https://www.jamkazam.com/landing/jamtracks/jamie-cullum-what-a-difference-a-day-made,Tency Music,30225 +Depeche Mode,Strangelove,https://www.jamkazam.com/landing/jamtracks/depeche-mode-strangelove,Paris Music,S0984 +Bob Dylan,Knocking On Heavens Door,https://www.jamkazam.com/landing/jamtracks/bob-dylan-knocking-on-heavens-door,Paris Music,S3571 +Madonna,Into the Groove,https://www.jamkazam.com/landing/jamtracks/madonna-into-the-groove,Paris Music,S2275 +Al Green,Love And Happiness,https://www.jamkazam.com/landing/jamtracks/al-green-love-and-happiness,Tency Music,38384 +The Marcels,Blue Moon,https://www.jamkazam.com/landing/jamtracks/the-marcels-blue-moon,Paris Music,S1279 +No Doubt,Settle Down,https://www.jamkazam.com/landing/jamtracks/no-doubt-settle-down,Paris Music,S4079 +Alison Krauss,Down To The River To Pray,https://www.jamkazam.com/landing/jamtracks/alison-krauss-down-to-the-river-to-pray,Tency Music,29507 +Amy Winehouse,Tears Dry On Their Own,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-tears-dry-on-their-own,Paris Music,S2278 +Lionel Richie,Dancing On The Ceiling (Live Version),https://www.jamkazam.com/landing/jamtracks/lionel-richie-dancing-on-the-ceiling-live-version,Paris Music,S1500 +Los Cafres,Nice Time,https://www.jamkazam.com/landing/jamtracks/los-cafres-nice-time,Paris Music,S4324 +Rod Stewart,Hot Legs,https://www.jamkazam.com/landing/jamtracks/rod-stewart-hot-legs,Tency Music,21736 +Ray Charles,I Can't Stop Loving You,https://www.jamkazam.com/landing/jamtracks/ray-charles-i-cant-stop-loving-you,Paris Music,S2862 +Al Green,Let's Stay Together,https://www.jamkazam.com/landing/jamtracks/al-green-lets-stay-together,Tency Music,13823 +Strawberry Alarm Clock,Incense & Peppermints,https://www.jamkazam.com/landing/jamtracks/strawberry-alarm-clock-incense--peppermints,Paris Music,S1832 +Sam Sparro,Black & Gold,https://www.jamkazam.com/landing/jamtracks/sam-sparro-black--gold,Paris Music,S2499 +Earth Wind And Fire,Got To Get You Into My Life,https://www.jamkazam.com/landing/jamtracks/earth-wind-and-fire-got-to-get-you-into-my-life,Tency Music,30937 +Stevie Wonder,You Are The Sunshine Of My Life,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-you-are-the-sunshine-of-my-life,Tency Music,12886 +Martika,I Feel the Earth Move,https://www.jamkazam.com/landing/jamtracks/martika-i-feel-the-earth-move,Paris Music,S2606 +Michael Jackson,Beat It,https://www.jamkazam.com/landing/jamtracks/michael-jackson-beat-it,Tency Music,12689 +Rose Royce,Car Wash,https://www.jamkazam.com/landing/jamtracks/rose-royce-car-wash,Paris Music,S3012 +Dusty Springfield,You Don't Have to Say You Love Me,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-you-dont-have-to-say-you-love-me,Paris Music,S3191 +Michael Jackson,Black or White,https://www.jamkazam.com/landing/jamtracks/michael-jackson-black-or-white,Paris Music,S1518 +Herman's Hermits,I'm Into Something Good,https://www.jamkazam.com/landing/jamtracks/hermans-hermits-im-into-something-good,Paris Music,S3956 +Roy Wood & Wizzard,I Wish It Could Be Christmas Every Day,https://www.jamkazam.com/landing/jamtracks/roy-wood--wizzard-i-wish-it-could-be-christmas-every-day,Paris Music,S2194 +B.B. King,Caldonia,https://www.jamkazam.com/landing/jamtracks/bb-king-caldonia,Tency Music,49219 +The Clash,Rock The Casbah,https://www.jamkazam.com/landing/jamtracks/the-clash-rock-the-casbah,Tency Music,14471 +Deborah Harry,I Want That Man,https://www.jamkazam.com/landing/jamtracks/deborah-harry-i-want-that-man,Paris Music,S4759 +Tina Charles,I Love To Love,https://www.jamkazam.com/landing/jamtracks/tina-charles-i-love-to-love,Paris Music,S3377 +Kings Of Leon,Use Somebody,https://www.jamkazam.com/landing/jamtracks/kings-of-leon-use-somebody,Tency Music,21404 +Spiller,Groovejet,https://www.jamkazam.com/landing/jamtracks/spiller-groovejet,Paris Music,S1099 +Flo Rida,Whistle,https://www.jamkazam.com/landing/jamtracks/flo-rida-whistle,Tency Music,40509 +Tom Jones,Knock On Wood - Live 80's US TV Special,https://www.jamkazam.com/landing/jamtracks/tom-jones-knock-on-wood---live-80s-us-tv-special,Paris Music,S3187 +Blur,Charmless Man,https://www.jamkazam.com/landing/jamtracks/blur-charmless-man,Paris Music,S1519 +The View,Same Jeans,https://www.jamkazam.com/landing/jamtracks/the-view-same-jeans,Paris Music,S1976 +David Bowie,Ziggy Stardust,https://www.jamkazam.com/landing/jamtracks/david-bowie-ziggy-stardust,Tency Music,12741 +Pink Martini,Amado Mio,https://www.jamkazam.com/landing/jamtracks/pink-martini-amado-mio,Tency Music,21144 +Dexy's Midnight Runners,Jackie Wilson,https://www.jamkazam.com/landing/jamtracks/dexys-midnight-runners-jackie-wilson,Paris Music,S1834 +Steps,Tragedy,https://www.jamkazam.com/landing/jamtracks/steps-tragedy,Paris Music,S0187 +The Spaniels,Goodnight Sweetheart,https://www.jamkazam.com/landing/jamtracks/the-spaniels-goodnight-sweetheart,Paris Music,S2873 +Elvis Presley,Wonder of You,https://www.jamkazam.com/landing/jamtracks/elvis-presley-wonder-of-you,Paris Music,S3285 +Joe Cocker,Unchain My Heart,https://www.jamkazam.com/landing/jamtracks/joe-cocker-unchain-my-heart,Tency Music,13155 +Sandie Shaw,(There's) Always Something There To Remind Me,https://www.jamkazam.com/landing/jamtracks/sandie-shaw-theres-always-something-there-to-remind-me,Paris Music,S3953 +Percy Sledge,When A Man Loves A Woman,https://www.jamkazam.com/landing/jamtracks/percy-sledge-when-a-man-loves-a-woman,Tency Music,12796 +The Chordettes,Mr. Sandman,https://www.jamkazam.com/landing/jamtracks/the-chordettes-mr-sandman,Tency Music,15353 +David Bowie,Rebel Rebel,https://www.jamkazam.com/landing/jamtracks/david-bowie-rebel-rebel,Tency Music,20872 +Animal Magnet,Welcome To the Monkey House,https://www.jamkazam.com/landing/jamtracks/animal-magnet-welcome-to-the-monkey-house,Paris Music,S1824 +Eric Clapton,Wonderful Tonight,https://www.jamkazam.com/landing/jamtracks/eric-clapton-wonderful-tonight,Tency Music,11939 +Bob Marley,Roots Rock Reggae,https://www.jamkazam.com/landing/jamtracks/bob-marley-roots-rock-reggae,Paris Music,S2875 +Grateful Dead,Casey Jones,https://www.jamkazam.com/landing/jamtracks/grateful-dead-casey-jones,Tency Music,26034 +The Jam,Going Underground,https://www.jamkazam.com/landing/jamtracks/the-jam-going-underground,Paris Music,S4059 +Take That,Everything Changes,https://www.jamkazam.com/landing/jamtracks/take-that-everything-changes,Paris Music,S1532 +Stevie Wonder,He's Misstra Know It All,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-hes-misstra-know-it-all,Paris Music,S2865 +The Stranglers,All Day & All of the Night,https://www.jamkazam.com/landing/jamtracks/the-stranglers-all-day--all-of-the-night,Paris Music,S1634 +Jackson Browne,Somebody's Baby,https://www.jamkazam.com/landing/jamtracks/jackson-browne-somebodys-baby,Paris Music,S2496 +Cliff Richard,Summer Holiday,https://www.jamkazam.com/landing/jamtracks/cliff-richard-summer-holiday,Paris Music,S1315 +John Mayer,Heartbreak Warfare,https://www.jamkazam.com/landing/jamtracks/john-mayer-heartbreak-warfare,Tency Music,27530 +Dire Straits,Sultans Of Swing,https://www.jamkazam.com/landing/jamtracks/dire-straits-sultans-of-swing,Tency Music,6262 +The Real Thing,Can't Get By Without You,https://www.jamkazam.com/landing/jamtracks/the-real-thing-cant-get-by-without-you,Paris Music,S1314 +Elvis Presley,Kiss Me Quick,https://www.jamkazam.com/landing/jamtracks/elvis-presley-kiss-me-quick,Paris Music,S2203 +The Allman Brothers Band,Whipping Post,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-whipping-post,Tency Music,47639 +Frankie Lymon & The Teenagers,Why Do Fools Fall In Love ?,https://www.jamkazam.com/landing/jamtracks/frankie-lymon--the-teenagers-why-do-fools-fall-in-love-,Paris Music,S1301 +Paul McCartney,Live And Let Die,https://www.jamkazam.com/landing/jamtracks/paul-mccartney-live-and-let-die,Tency Music,21263 +Randy Travis,Three Wooden Crosses,https://www.jamkazam.com/landing/jamtracks/randy-travis-three-wooden-crosses,Tency Music,6072 +Roxy Music,Avalon,https://www.jamkazam.com/landing/jamtracks/roxy-music-avalon,Tency Music,41472 +Estelle Feat. Kanye West,American Boy,https://www.jamkazam.com/landing/jamtracks/estelle-feat-kanye-west-american-boy,Paris Music,S2494 +Charlene,Never Been To Me,https://www.jamkazam.com/landing/jamtracks/charlene-never-been-to-me,Paris Music,S2205 +Neil Young,Needle And The Damage Done,https://www.jamkazam.com/landing/jamtracks/neil-young-needle-and-the-damage-done,Tency Music,37661 +Don Henley,Boys of Summer,https://www.jamkazam.com/landing/jamtracks/don-henley-boys-of-summer,Paris Music,S4327 +Wham,Last Christmas,https://www.jamkazam.com/landing/jamtracks/wham-last-christmas,Paris Music,S2195 +The Beatles,Ob La Di Ob La Da,https://www.jamkazam.com/landing/jamtracks/the-beatles-ob-la-di-ob-la-da,Tency Music,21446 +The Specials,Rat Race,https://www.jamkazam.com/landing/jamtracks/the-specials-rat-race,Paris Music,S1837 +Mott The Hoople,All the Way from Memphis,https://www.jamkazam.com/landing/jamtracks/mott-the-hoople-all-the-way-from-memphis,Paris Music,S2518 +Jim Reeves,I Won't Forget You,https://www.jamkazam.com/landing/jamtracks/jim-reeves-i-wont-forget-you,Paris Music,S2503 +Selena Gomez,Come And Get It,https://www.jamkazam.com/landing/jamtracks/selena-gomez-come-and-get-it,Tency Music,43389 +Billie Jo Spears,What I've Got In Mind,https://www.jamkazam.com/landing/jamtracks/billie-jo-spears-what-ive-got-in-mind,Paris Music,S0178 +Robbie Williams,Feel,https://www.jamkazam.com/landing/jamtracks/robbie-williams-feel,Tency Music,5525 +Hurt,Wonderful Life,https://www.jamkazam.com/landing/jamtracks/hurt-wonderful-life,Paris Music,S3580 +Clarence 'Frogman' Henry,I Don't Know Why I Love You (but I Do),https://www.jamkazam.com/landing/jamtracks/clarence-frogman-henry-i-dont-know-why-i-love-you-but-i-do,Paris Music,S1324 +Neil Young,Rockin In The Free World,https://www.jamkazam.com/landing/jamtracks/neil-young-rockin-in-the-free-world,Tency Music,27664 +Soundgarden,Outshined,https://www.jamkazam.com/landing/jamtracks/soundgarden-outshined,Tency Music,39621 +Jimmy Buffett,Margaritaville,https://www.jamkazam.com/landing/jamtracks/jimmy-buffett-margaritaville,Music Master Exchange LLC, +Sir Mix-A-Lot,Baby Got Back,https://www.jamkazam.com/landing/jamtracks/sir-mix-a-lot-baby-got-back,Tency Music,14483 +Lily Allen,Not Fair,https://www.jamkazam.com/landing/jamtracks/lily-allen-not-fair,Paris Music,S2882 +Randy Newman,Short People,https://www.jamkazam.com/landing/jamtracks/randy-newman-short-people,Tency Music,32560 +The Angels,My Boyfriends Back,https://www.jamkazam.com/landing/jamtracks/the-angels-my-boyfriends-back,Paris Music,S1835 +Nat King Cole,Let There Be Love,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-let-there-be-love,Paris Music,S3202 +Gloria Estefan,Rhythm Is Gonna Get You,https://www.jamkazam.com/landing/jamtracks/gloria-estefan-rhythm-is-gonna-get-you,Paris Music,S3958 +The Chambers Brothers,Time Has Come Today,https://www.jamkazam.com/landing/jamtracks/the-chambers-brothers-time-has-come-today,Tency Music,33769 +Cream,Crossroads,https://www.jamkazam.com/landing/jamtracks/cream-crossroads,Tency Music,23831 +The Wonderstuff,Size of a Cow,https://www.jamkazam.com/landing/jamtracks/the-wonderstuff-size-of-a-cow,Paris Music,S4501 +U2,Christmas (Baby Please Come Home),https://www.jamkazam.com/landing/jamtracks/u2-christmas-baby-please-come-home,Paris Music,S4119 +Robbie Williams,Trippin',https://www.jamkazam.com/landing/jamtracks/robbie-williams-trippin,Paris Music,S1547 +Crystal Gayle,Don't It Make Your Brown Eyes Blue,https://www.jamkazam.com/landing/jamtracks/crystal-gayle-dont-it-make-your-brown-eyes-blue,Paris Music,S0402 +Brooks And Dunn,Boot Scootin Boogie,https://www.jamkazam.com/landing/jamtracks/brooks-and-dunn-boot-scootin-boogie,Tency Music,6422 +Pink,Raise Your Glass,https://www.jamkazam.com/landing/jamtracks/pink-raise-your-glass,Paris Music,S3457 +Dan Hill,Sometimes When We Touch,https://www.jamkazam.com/landing/jamtracks/dan-hill-sometimes-when-we-touch,Paris Music,S0569 +Joan Jett,I Love Rock 'N' Roll,https://www.jamkazam.com/landing/jamtracks/joan-jett-i-love-rock-n-roll,Tency Music,9455 +Red Hot Chili Peppers,Higher Ground,https://www.jamkazam.com/landing/jamtracks/red-hot-chili-peppers-higher-ground,Tency Music,47558 +Middle Of The Road,Chirpy Chirpy Cheep Cheep,https://www.jamkazam.com/landing/jamtracks/middle-of-the-road-chirpy-chirpy-cheep-cheep,Paris Music,S2514 +Gwen Guthrie,Ain't Nothing Going On but the Rent,https://www.jamkazam.com/landing/jamtracks/gwen-guthrie-aint-nothing-going-on-but-the-rent,Paris Music,S0370 +Ub40,Watchdogs,https://www.jamkazam.com/landing/jamtracks/ub40-watchdogs,Paris Music,S2207 +Ricky Nelson,It's Late,https://www.jamkazam.com/landing/jamtracks/ricky-nelson-its-late,Paris Music,S1343 +Pink Floyd,Hey You,https://www.jamkazam.com/landing/jamtracks/pink-floyd-hey-you,Music Master Exchange LLC, +Huey Lewis & The News,Power of Love,https://www.jamkazam.com/landing/jamtracks/huey-lewis--the-news-power-of-love,Paris Music,S4328 +Robbie Williams,Something Beautiful,https://www.jamkazam.com/landing/jamtracks/robbie-williams-something-beautiful,Paris Music,S0559 +The Allman Brothers Band,Soulshine,https://www.jamkazam.com/landing/jamtracks/the-allman-brothers-band-soulshine,Tency Music,42064 +Gospel Singer,For The Beauty Of The Earth,https://www.jamkazam.com/landing/jamtracks/gospel-singer-for-the-beauty-of-the-earth,Tency Music,24200 +S Club 7,Reach,https://www.jamkazam.com/landing/jamtracks/s-club-7-reach,Paris Music,S0182 +The Drifters,Save the Last Dance for Me,https://www.jamkazam.com/landing/jamtracks/the-drifters-save-the-last-dance-for-me,Paris Music,S1327 +ZZ Top,Cheap Sunglasses,https://www.jamkazam.com/landing/jamtracks/zz-top-cheap-sunglasses,Tency Music,45215 +Bobby Vee,Night Has a Thousand Eyes,https://www.jamkazam.com/landing/jamtracks/bobby-vee-night-has-a-thousand-eyes,Paris Music,S4019 +The Beatles,Yesterday,https://www.jamkazam.com/landing/jamtracks/the-beatles-yesterday,Tency Music,12103 +Paul McCartney,Maybe I'm Amazed,https://www.jamkazam.com/landing/jamtracks/paul-mccartney-maybe-im-amazed,Tency Music,17028 +Bitty Mclean,Dedicated To the One I Love,https://www.jamkazam.com/landing/jamtracks/bitty-mclean-dedicated-to-the-one-i-love,Paris Music,S2210 +Coldplay,White Shadows,https://www.jamkazam.com/landing/jamtracks/coldplay-white-shadows,Paris Music,S2975 +Brooks And Dunn,My Maria,https://www.jamkazam.com/landing/jamtracks/brooks-and-dunn-my-maria,Tency Music,10662 +Def Leppard,Pour Some Sugar On Me,https://www.jamkazam.com/landing/jamtracks/def-leppard-pour-some-sugar-on-me,Paris Music,S3299 +Gospel Singer,Amazing Grace,https://www.jamkazam.com/landing/jamtracks/gospel-singer-amazing-grace,Tency Music,29477 +Take That,Pray (from an Audience With Take That),https://www.jamkazam.com/landing/jamtracks/take-that-pray-from-an-audience-with-take-that,Paris Music,S2883 +The Boomtown Rats,I Don't Like Mondays,https://www.jamkazam.com/landing/jamtracks/the-boomtown-rats-i-dont-like-mondays,Paris Music,S3961 +Abba,Summer Night City,https://www.jamkazam.com/landing/jamtracks/abba-summer-night-city,Paris Music,S2878 +Sugababes,Push the Button,https://www.jamkazam.com/landing/jamtracks/sugababes-push-the-button,Paris Music,S1326 +Kid Rock,All Summer Long,https://www.jamkazam.com/landing/jamtracks/kid-rock-all-summer-long,Tency Music,20108 +Billy Porter,Land of Lola,https://www.jamkazam.com/landing/jamtracks/billy-porter-land-of-lola,Paris Music,S4682 +Puff Daddy Feat. Faith Evans,I'll Be Missing You,https://www.jamkazam.com/landing/jamtracks/puff-daddy-feat-faith-evans-ill-be-missing-you,Paris Music,S1841 +The Beatles,Get Back,https://www.jamkazam.com/landing/jamtracks/the-beatles-get-back,Tency Music,16901 +Sarah Vaughan,My Funny Valentine,https://www.jamkazam.com/landing/jamtracks/sarah-vaughan-my-funny-valentine,Tency Music,19220 +Katy Perry,Dark Horse feat. Juicy J,https://www.jamkazam.com/landing/jamtracks/katy-perry-dark-horse-feat-juicy-j,Paris Music,S4491 +Foster The People,Pumped Up Kicks,https://www.jamkazam.com/landing/jamtracks/foster-the-people-pumped-up-kicks,Tency Music,37657 +Duffy,Warwick Avenue,https://www.jamkazam.com/landing/jamtracks/duffy-warwick-avenue,Paris Music,S2512 +Ziggy Marley And The Melody Makers,Conscious Party,https://www.jamkazam.com/landing/jamtracks/ziggy-marley-and-the-melody-makers-conscious-party,Tency Music,34508 +Eddie Cochran,Three Steps To Heaven,https://www.jamkazam.com/landing/jamtracks/eddie-cochran-three-steps-to-heaven,Paris Music,S1328 +Ashlee Simpson,L-O-V-E,https://www.jamkazam.com/landing/jamtracks/ashlee-simpson-l-o-v-e,Paris Music,S1555 +The Mixtures,Pushbike Song,https://www.jamkazam.com/landing/jamtracks/the-mixtures-pushbike-song,Paris Music,S1843 +Nirvana,Rape Me,https://www.jamkazam.com/landing/jamtracks/nirvana-rape-me,Tency Music,39394 +Clean Bandit,Rather Be feat. Jess Glynne,https://www.jamkazam.com/landing/jamtracks/clean-bandit-rather-be-feat-jess-glynne,Paris Music,S4476 +Belinda Carlisle,Heaven Is a Place On Earth,https://www.jamkazam.com/landing/jamtracks/belinda-carlisle-heaven-is-a-place-on-earth,Paris Music,S4330 +From The Jersey Boys,Sherry,https://www.jamkazam.com/landing/jamtracks/from-the-jersey-boys-sherry,Paris Music,S3408 +Cee Lo Green,Bright Lights Bigger City,https://www.jamkazam.com/landing/jamtracks/cee-lo-green-bright-lights-bigger-city,Paris Music,S3594 +Taylor Swift,Innocent,https://www.jamkazam.com/landing/jamtracks/taylor-swift-innocent,Tency Music,34974 +Lynyrd Skynyrd,Gimme Back My Bullets,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-gimme-back-my-bullets,Tency Music,38965 +Falco,Der Kommissar,https://www.jamkazam.com/landing/jamtracks/falco-der-kommissar,Tency Music,16734 +Corinne Bailey Rae,Put Your Records On,https://www.jamkazam.com/landing/jamtracks/corinne-bailey-rae-put-your-records-on,Paris Music,S1566 +Supertramp,Take The Long Way Home,https://www.jamkazam.com/landing/jamtracks/supertramp-take-the-long-way-home,Tency Music,13814 +Elvis Presley,I Need Your Love Tonight,https://www.jamkazam.com/landing/jamtracks/elvis-presley-i-need-your-love-tonight,Paris Music,S2213 +Grateful Dead,Truckin,https://www.jamkazam.com/landing/jamtracks/grateful-dead-truckin,Tency Music,11466 +The Black Keys,Fever,https://www.jamkazam.com/landing/jamtracks/the-black-keys-fever,Tency Music,47102 +Take That,Everything Changes/Relight My Fire (from an Audience With Take That),https://www.jamkazam.com/landing/jamtracks/take-that-everything-changesrelight-my-fire-from-an-audience-with-take-that,Paris Music,S2884 +Cream,White Room,https://www.jamkazam.com/landing/jamtracks/cream-white-room,Tency Music,29902 +AC/DC,For Those About To Rock,https://www.jamkazam.com/landing/jamtracks/acdc-for-those-about-to-rock,Back in Black LLC, +Lady Gaga,Bad Romance,https://www.jamkazam.com/landing/jamtracks/lady-gaga-bad-romance,Tency Music,25701 +ZZ Top,Just Got Paid,https://www.jamkazam.com/landing/jamtracks/zz-top-just-got-paid,Tency Music,48668 +Bruce Springsteen,Dancing In the Dark,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-dancing-in-the-dark,Paris Music,S2519 +The Beach Boys,Fun Fun Fun,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-fun-fun-fun,Tency Music,15058 +Sublime,What I Got,https://www.jamkazam.com/landing/jamtracks/sublime-what-i-got,Tency Music,48474 +Nik Kershaw,Wouldn't It Be Good,https://www.jamkazam.com/landing/jamtracks/nik-kershaw-wouldnt-it-be-good,Paris Music,S4329 +Deniece Williams,Let's Hear It for the Boy,https://www.jamkazam.com/landing/jamtracks/deniece-williams-lets-hear-it-for-the-boy,Paris Music,S4686 +Bob Marley,Could You Be Loved,https://www.jamkazam.com/landing/jamtracks/bob-marley-could-you-be-loved,Paris Music,S4128 +Freiheit,Keeping the Dream Alive,https://www.jamkazam.com/landing/jamtracks/freiheit-keeping-the-dream-alive,Paris Music,S3590 +Snoop Dogg,Sweat (David Guetta Remix),https://www.jamkazam.com/landing/jamtracks/snoop-dogg-sweat-david-guetta-remix,Tency Music,36787 +The Mc Coys,Hang On Sloopy,https://www.jamkazam.com/landing/jamtracks/the-mc-coys-hang-on-sloopy,Paris Music,S4141 +Take That,Never Forget (from ITV's Take That Come To Town) ,https://www.jamkazam.com/landing/jamtracks/take-that-never-forget-from-itvs-take-that-come-to-town,Paris Music,S2885 +Michael Jackson,You Are Not Alone,https://www.jamkazam.com/landing/jamtracks/michael-jackson-you-are-not-alone,Paris Music,S2958 +Simply Red,You Make Me Feel Brand New,https://www.jamkazam.com/landing/jamtracks/simply-red-you-make-me-feel-brand-new,Paris Music,S1918 +Bruno Mars,Lazy Song,https://www.jamkazam.com/landing/jamtracks/bruno-mars-lazy-song,Paris Music,S3604 +Bob Marley,Jamming,https://www.jamkazam.com/landing/jamtracks/bob-marley-jamming,Tency Music,24451 +Blancmange,Living On the Ceiling,https://www.jamkazam.com/landing/jamtracks/blancmange-living-on-the-ceiling,Paris Music,S2521 +Cat Stevens,Peace Train,https://www.jamkazam.com/landing/jamtracks/cat-stevens-peace-train,Tency Music,35494 +The Spencer Davis Group,Keep On Running,https://www.jamkazam.com/landing/jamtracks/the-spencer-davis-group-keep-on-running,Paris Music,S3969 +Mary Mary,Shackles,https://www.jamkazam.com/landing/jamtracks/mary-mary-shackles,Paris Music,S2215 +The Searchers,When You Walk In the Room,https://www.jamkazam.com/landing/jamtracks/the-searchers-when-you-walk-in-the-room,Paris Music,S4136 +Kim Wilde,Kids In America,https://www.jamkazam.com/landing/jamtracks/kim-wilde-kids-in-america,Tency Music,14140 +Coldplay,A Sky Full Of Stars,https://www.jamkazam.com/landing/jamtracks/coldplay-a-sky-full-of-stars,Tency Music,46848 +Johnny Nash,Cupid,https://www.jamkazam.com/landing/jamtracks/johnny-nash-cupid,Paris Music,S2217 +Merle Haggard,Silver Wings,https://www.jamkazam.com/landing/jamtracks/merle-haggard-silver-wings,Paris Music,S1627 +Johnny Burnette,You're Sixteen,https://www.jamkazam.com/landing/jamtracks/johnny-burnette-youre-sixteen,Paris Music,S2527 +Adele,One & Only,https://www.jamkazam.com/landing/jamtracks/adele-one--only,Paris Music,S3683 +Tom Jones,It's Not Unusual,https://www.jamkazam.com/landing/jamtracks/tom-jones-its-not-unusual,Tency Music,9539 +The Commitments,Mustang Sally,https://www.jamkazam.com/landing/jamtracks/the-commitments-mustang-sally,Tency Music,17465 +Michael Buble,Save the Last Dance for Me,https://www.jamkazam.com/landing/jamtracks/michael-buble-save-the-last-dance-for-me,Paris Music,S1626 +Rihanna,Take a Bow,https://www.jamkazam.com/landing/jamtracks/rihanna-take-a-bow,Paris Music,S2602 +Michael Sembello,Maniac,https://www.jamkazam.com/landing/jamtracks/michael-sembello-maniac,Paris Music,S4333 +David Guetta,Titanium,https://www.jamkazam.com/landing/jamtracks/david-guetta-titanium,Tency Music,37932 +John Denver,Back Home Again,https://www.jamkazam.com/landing/jamtracks/john-denver-back-home-again,Tency Music,23824 +The Scissor Sisters,Fire With Fire,https://www.jamkazam.com/landing/jamtracks/the-scissor-sisters-fire-with-fire,Paris Music,S3302 +John Cougar Mellencamp,Jack & Diane,https://www.jamkazam.com/landing/jamtracks/john-cougar-mellencamp-jack--diane,Paris Music,S2520 +Eddie Money,Gimme Some Water,https://www.jamkazam.com/landing/jamtracks/eddie-money-gimme-some-water,Tency Music,41678 +Neil Young,Old Man,https://www.jamkazam.com/landing/jamtracks/neil-young-old-man,Tency Music,32489 +Ultravox,Dancing With Tears In My Eyes,https://www.jamkazam.com/landing/jamtracks/ultravox-dancing-with-tears-in-my-eyes,Paris Music,S1901 +The Drifters,Something Tells Me Something's Gonna Happen Tonight,https://www.jamkazam.com/landing/jamtracks/the-drifters-something-tells-me-somethings-gonna-happen-tonight,Paris Music,S4690 +Foghat,I Just Wanna Make Love To You,https://www.jamkazam.com/landing/jamtracks/foghat-i-just-wanna-make-love-to-you,Tency Music,29310 +Joe Jackson,Different for Girls,https://www.jamkazam.com/landing/jamtracks/joe-jackson-different-for-girls,Paris Music,S4335 +Muse,Madness,https://www.jamkazam.com/landing/jamtracks/muse-madness,Tency Music,41552 +Don Gibson,Sea of Heartbreak,https://www.jamkazam.com/landing/jamtracks/don-gibson-sea-of-heartbreak,Paris Music,S3219 +Simple Minds,Promised You a Miracle,https://www.jamkazam.com/landing/jamtracks/simple-minds-promised-you-a-miracle,Paris Music,S4341 +Madonna,Give It To Me,https://www.jamkazam.com/landing/jamtracks/madonna-give-it-to-me,Paris Music,S2609 +Tina Turner,What's Love Got To Do With It,https://www.jamkazam.com/landing/jamtracks/tina-turner-whats-love-got-to-do-with-it,Tency Music,13766 +Van Morrison,Crazy Love,https://www.jamkazam.com/landing/jamtracks/van-morrison-crazy-love,Paris Music,S4693 +Martina Mcbride,White Christmas,https://www.jamkazam.com/landing/jamtracks/martina-mcbride-white-christmas,Paris Music,S3218 +Randy Crawford,Street Life,https://www.jamkazam.com/landing/jamtracks/randy-crawford-street-life,Paris Music,S3297 +Madonna,Open Your Heart,https://www.jamkazam.com/landing/jamtracks/madonna-open-your-heart,Paris Music,S2587 +Metallica,Enter Sandman,https://www.jamkazam.com/landing/jamtracks/metallica-enter-sandman,Damage Inc., +Radiohead,Karma Police,https://www.jamkazam.com/landing/jamtracks/radiohead-karma-police,Tency Music,12544 +Neil Diamond,Cracklin' Rosie,https://www.jamkazam.com/landing/jamtracks/neil-diamond-cracklin-rosie,Paris Music,S3606 +Elvis Presley,One Night,https://www.jamkazam.com/landing/jamtracks/elvis-presley-one-night,Paris Music,S3979 +Katy Perry,I Kissed A Girl,https://www.jamkazam.com/landing/jamtracks/katy-perry-i-kissed-a-girl,Tency Music,19811 +Bruce Springsteen,Born To Run,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-born-to-run,Paris Music,S4508 +The Beatles,Sgt. Pepper's Lonely Hearts Club Band,https://www.jamkazam.com/landing/jamtracks/the-beatles-sgt-peppers-lonely-hearts-club-band,Tency Music,10478 +Kylie Minogue,Into the Blue,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-into-the-blue,Paris Music,S4492 +Abba,Lay All Your Love On Me,https://www.jamkazam.com/landing/jamtracks/abba-lay-all-your-love-on-me,Paris Music,S4692 +The Miracles,You've Really Got a Hold On Me,https://www.jamkazam.com/landing/jamtracks/the-miracles-youve-really-got-a-hold-on-me,Paris Music,S2522 +George Strait,You Look So Good In Love,https://www.jamkazam.com/landing/jamtracks/george-strait-you-look-so-good-in-love,Tency Music,6668 +The Archies,Sugar Sugar,https://www.jamkazam.com/landing/jamtracks/the-archies-sugar-sugar,Paris Music,S2222 +Dave Edmunds,Queen of Hearts,https://www.jamkazam.com/landing/jamtracks/dave-edmunds-queen-of-hearts,Paris Music,S2903 +Sinead O'Connor,Nothing Compares 2 U,https://www.jamkazam.com/landing/jamtracks/sinead-oconnor-nothing-compares-2-u,Tency Music,6113 +The Bee Gees,I Started a Joke,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-i-started-a-joke,Paris Music,S0169 +Phil Oakey,Together In Electric Dreams,https://www.jamkazam.com/landing/jamtracks/phil-oakey-together-in-electric-dreams,Paris Music,S1913 +Tom Petty,You Wreck Me,https://www.jamkazam.com/landing/jamtracks/tom-petty-you-wreck-me,Tency Music,38173 +The Fray,You Found Me,https://www.jamkazam.com/landing/jamtracks/the-fray-you-found-me,Tency Music,21760 +R Dean Taylor,Indiana Wants Me,https://www.jamkazam.com/landing/jamtracks/r-dean-taylor-indiana-wants-me,Paris Music,S4062 +Elvis Presley,If I Can Dream,https://www.jamkazam.com/landing/jamtracks/elvis-presley-if-i-can-dream,Paris Music,S0475 +Jools Holland & Rumer,Acc-Cent-Tchu-Ate the Positive,https://www.jamkazam.com/landing/jamtracks/jools-holland--rumer-acc-cent-tchu-ate-the-positive,Paris Music,S4149 +Tom Petty,I Won't Back Down,https://www.jamkazam.com/landing/jamtracks/tom-petty-i-wont-back-down,Tency Music,29063 +Dave Clark Five,Bits & Pieces,https://www.jamkazam.com/landing/jamtracks/dave-clark-five-bits--pieces,Paris Music,S4110 +Zedd,Stay the Night feat Hayley Williams,https://www.jamkazam.com/landing/jamtracks/zedd-stay-the-night-feat-hayley-williams,Paris Music,S4493 +Andrew Gold,Never Let Her Slip Away,https://www.jamkazam.com/landing/jamtracks/andrew-gold-never-let-her-slip-away,Paris Music,S4106 +Status Quo,Whatever You Want,https://www.jamkazam.com/landing/jamtracks/status-quo-whatever-you-want,Paris Music,S4349 +The Outfield,Your Love,https://www.jamkazam.com/landing/jamtracks/the-outfield-your-love,Tency Music,38518 +Elton John & Kiki Dee,Don't Go Breaking My Heart,https://www.jamkazam.com/landing/jamtracks/elton-john--kiki-dee-dont-go-breaking-my-heart,Paris Music,S1902 +Brotherhood Of Man,Angelo,https://www.jamkazam.com/landing/jamtracks/brotherhood-of-man-angelo,Paris Music,S3972 +Joe Ramone,What a Wonderful World,https://www.jamkazam.com/landing/jamtracks/joe-ramone-what-a-wonderful-world,Paris Music,S2907 +Andy Williams,Butterfly,https://www.jamkazam.com/landing/jamtracks/andy-williams-butterfly,Paris Music,S3978 +Bob Seger,Fire Down Below,https://www.jamkazam.com/landing/jamtracks/bob-seger-fire-down-below,Music Master Exchange LLC, +Grateful Dead,Sugaree,https://www.jamkazam.com/landing/jamtracks/grateful-dead-sugaree,Tency Music,26639 +James Blunt,Goodbye My Lover,https://www.jamkazam.com/landing/jamtracks/james-blunt-goodbye-my-lover,Tency Music,5146 +Mariah Carey,O Holy Night,https://www.jamkazam.com/landing/jamtracks/mariah-carey-o-holy-night,Paris Music,S3224 +Pitch Perfect,Bella's Finals,https://www.jamkazam.com/landing/jamtracks/pitch-perfect-bellas-finals,Tency Music,42889 +No Doubt,Spiderwebs,https://www.jamkazam.com/landing/jamtracks/no-doubt-spiderwebs,Music Master Exchange LLC, +Atomic Kitten,Eternal Flame,https://www.jamkazam.com/landing/jamtracks/atomic-kitten-eternal-flame,Paris Music,S0017 +Abba,Does Your Mother Know ?,https://www.jamkazam.com/landing/jamtracks/abba-does-your-mother-know-,Paris Music,S2901 +John Mellencamp,R.O.C.K. In The U.S.A.,https://www.jamkazam.com/landing/jamtracks/john-mellencamp-rock-in-the-usa,Tency Music,36029 +Barrett Strong,Money (That's What I Want),https://www.jamkazam.com/landing/jamtracks/barrett-strong-money-thats-what-i-want,Paris Music,S2540 +Elton John,Step Into Christmas,https://www.jamkazam.com/landing/jamtracks/elton-john-step-into-christmas,Paris Music,S0061 +Rihanna,California King Bed,https://www.jamkazam.com/landing/jamtracks/rihanna-california-king-bed,Paris Music,S3614 +Amy Winehouse,Rehab,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-rehab,Tency Music,12511 +Tom Odell,Real Love,https://www.jamkazam.com/landing/jamtracks/tom-odell-real-love,Paris Music,S4699 +Scott Mckenzie,San Francisco (Be Sure To Wear Flowers In Your Hair),https://www.jamkazam.com/landing/jamtracks/scott-mckenzie-san-francisco-be-sure-to-wear-flowers-in-your-hair,Paris Music,S3977 +Fiction Factory,Feels Like Heaven,https://www.jamkazam.com/landing/jamtracks/fiction-factory-feels-like-heaven,Paris Music,S2530 +John Mayer,Daughters,https://www.jamkazam.com/landing/jamtracks/john-mayer-daughters,Tency Music,11522 +Herman's Hermits,My Sentimental Friend,https://www.jamkazam.com/landing/jamtracks/hermans-hermits-my-sentimental-friend,Paris Music,S1923 +Ella Fitzgerald,Stormy Weather,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-stormy-weather,Tency Music,25685 +Sister Sledge,Thinking of You,https://www.jamkazam.com/landing/jamtracks/sister-sledge-thinking-of-you,Paris Music,S4696 +Robin Thicke,Blurred Lines,https://www.jamkazam.com/landing/jamtracks/robin-thicke-blurred-lines,Tency Music,43562 +Dawn,Tie a Yellow Ribbon Round the Old Oak Tree,https://www.jamkazam.com/landing/jamtracks/dawn-tie-a-yellow-ribbon-round-the-old-oak-tree,Paris Music,S0958 +Alexandra Stan,Mr Saxobeat,https://www.jamkazam.com/landing/jamtracks/alexandra-stan-mr-saxobeat,Paris Music,S3625 +Cliff Richard,Travellin' Light,https://www.jamkazam.com/landing/jamtracks/cliff-richard-travellin-light,Paris Music,S3980 +Glen Campbell,By the Time I Get To Phoenix,https://www.jamkazam.com/landing/jamtracks/glen-campbell-by-the-time-i-get-to-phoenix,Paris Music,S2541 +Robbie Williams,Karma Killer,https://www.jamkazam.com/landing/jamtracks/robbie-williams-karma-killer,Paris Music,S1920 +Whitney Houston,I Will Always Love You,https://www.jamkazam.com/landing/jamtracks/whitney-houston-i-will-always-love-you,Paris Music,S3768 +Mountain,Mississippi Queen,https://www.jamkazam.com/landing/jamtracks/mountain-mississippi-queen,Music Master Exchange LLC, +Coldplay,Paradise,https://www.jamkazam.com/landing/jamtracks/coldplay-paradise,Tency Music,38236 +Charlie Pride,Crystal Chandelier,https://www.jamkazam.com/landing/jamtracks/charlie-pride-crystal-chandelier,Paris Music,S0757 +From Big Deal,Dancin' Dan (Me & My Shadow),https://www.jamkazam.com/landing/jamtracks/from-big-deal-dancin-dan-me--my-shadow,Paris Music,S3232 +Tavares,Heaven Must Be Missing an Angel,https://www.jamkazam.com/landing/jamtracks/tavares-heaven-must-be-missing-an-angel,Paris Music,S2661 +The Honeycombs,Have I the Right,https://www.jamkazam.com/landing/jamtracks/the-honeycombs-have-i-the-right,Paris Music,S4152 +Jeff Buckley,So Real,https://www.jamkazam.com/landing/jamtracks/jeff-buckley-so-real,Paris Music,S4698 +The Troggs,With a Girl Like You,https://www.jamkazam.com/landing/jamtracks/the-troggs-with-a-girl-like-you,Paris Music,S2914 +Eric Clapton,Tears In Heaven,https://www.jamkazam.com/landing/jamtracks/eric-clapton-tears-in-heaven,Tency Music,6989 +Frankie Miller,Darlin',https://www.jamkazam.com/landing/jamtracks/frankie-miller-darlin,Paris Music,S2236 +Ike & Tina Turner,Nutbush City Limits,https://www.jamkazam.com/landing/jamtracks/ike--tina-turner-nutbush-city-limits,Paris Music,S0607 +Stone Temple Pilots,Wicked Garden,https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-wicked-garden,Tency Music,38661 +George Benson,Greatest Love of All,https://www.jamkazam.com/landing/jamtracks/george-benson-greatest-love-of-all,Paris Music,S3227 +Destiny's Child,Bootylicious,https://www.jamkazam.com/landing/jamtracks/destinys-child-bootylicious,Paris Music,S4368 +The Patti Smith Group,Because the Night,https://www.jamkazam.com/landing/jamtracks/the-patti-smith-group-because-the-night,Paris Music,S2534 +Arctic Monkeys,R U Mine,https://www.jamkazam.com/landing/jamtracks/arctic-monkeys-r-u-mine,Tency Music,45711 +The Village People,Can't Stop the Music,https://www.jamkazam.com/landing/jamtracks/the-village-people-cant-stop-the-music,Paris Music,S3632 +The Wanted,I Found You,https://www.jamkazam.com/landing/jamtracks/the-wanted-i-found-you,Paris Music,S4168 +Robbie Williams,Straighten Up & Fly Right,https://www.jamkazam.com/landing/jamtracks/robbie-williams-straighten-up--fly-right,Paris Music,S0576 +Dionne Warwick,House Is Not a Home,https://www.jamkazam.com/landing/jamtracks/dionne-warwick-house-is-not-a-home,Paris Music,S1968 +Thin Lizzy,Whiskey In the Jar,https://www.jamkazam.com/landing/jamtracks/thin-lizzy-whiskey-in-the-jar,Paris Music,S0511 +Beastie Boys,Girls,https://www.jamkazam.com/landing/jamtracks/beastie-boys-girls,Tency Music,40697 +Blondie,Atomic,https://www.jamkazam.com/landing/jamtracks/blondie-atomic,Paris Music,S1473 +The Rembrandts,I'll Be There for You,https://www.jamkazam.com/landing/jamtracks/the-rembrandts-ill-be-there-for-you,Paris Music,S4153 +Christie,Yellow River,https://www.jamkazam.com/landing/jamtracks/christie-yellow-river,Paris Music,S3983 +Australian Crawl,Reckless,https://www.jamkazam.com/landing/jamtracks/australian-crawl-reckless,Paris Music,S3240 +Frank Sinatra,Saturday Night Is the Loneliest Night of the Week,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-saturday-night-is-the-loneliest-night-of-the-week,Paris Music,S4709 +Billy Joel,Piano Man,https://www.jamkazam.com/landing/jamtracks/billy-joel-piano-man,Tency Music,19332 +Marvin Gaye,Too Busy Thinking About My Baby,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-too-busy-thinking-about-my-baby,Paris Music,S1941 +The Village People,In the Navy,https://www.jamkazam.com/landing/jamtracks/the-village-people-in-the-navy,Paris Music,S3633 +Janis Joplin,Piece Of My Heart,https://www.jamkazam.com/landing/jamtracks/janis-joplin-piece-of-my-heart,Tency Music,18038 +James Taylor,Don't Let Me Be Lonely Tonight,https://www.jamkazam.com/landing/jamtracks/james-taylor-dont-let-me-be-lonely-tonight,Tency Music,18059 +The Stone Roses,I am the Resurrection (Shortened),https://www.jamkazam.com/landing/jamtracks/the-stone-roses-i-am-the-resurrection-shortened,Paris Music,S4363 +Mark Ronson Feat. Lilly Allen,Oh My God,https://www.jamkazam.com/landing/jamtracks/mark-ronson-feat-lilly-allen-oh-my-god,Paris Music,S2238 +Taylor Swift,Love Story,https://www.jamkazam.com/landing/jamtracks/taylor-swift-love-story,Tency Music,20977 +Pink,Who Knew,https://www.jamkazam.com/landing/jamtracks/pink-who-knew,Tency Music,6777 +Elvis Presley,Viva Las Vegas,https://www.jamkazam.com/landing/jamtracks/elvis-presley-viva-las-vegas,Paris Music,S4523 +The Lambrettas,Poison Ivy,https://www.jamkazam.com/landing/jamtracks/the-lambrettas-poison-ivy,Paris Music,S2919 +Connie Francis,Stupid Cupid,https://www.jamkazam.com/landing/jamtracks/connie-francis-stupid-cupid,Paris Music,S3303 +Fergie,Big Girls Don't Cry,https://www.jamkazam.com/landing/jamtracks/fergie-big-girls-dont-cry,Paris Music,S2243 +Sum 41,Hell Song,https://www.jamkazam.com/landing/jamtracks/sum-41-hell-song,Tency Music,32080 +Gabriella Cilmi,Sweet About Me,https://www.jamkazam.com/landing/jamtracks/gabriella-cilmi-sweet-about-me,Paris Music,S2550 +Big Country,Fields of Fire (400 Miles),https://www.jamkazam.com/landing/jamtracks/big-country-fields-of-fire-400-miles,Paris Music,S2247 +Max Bygraves,Somewhere My Love,https://www.jamkazam.com/landing/jamtracks/max-bygraves-somewhere-my-love,Paris Music,S4707 +Edie Brickell,What I Am,https://www.jamkazam.com/landing/jamtracks/edie-brickell-what-i-am,Tency Music,26644 +Lady Gaga,Poker Face,https://www.jamkazam.com/landing/jamtracks/lady-gaga-poker-face,Tency Music,21475 +Jimi Hendrix,Wind Cries Mary,https://www.jamkazam.com/landing/jamtracks/jimi-hendrix-wind-cries-mary,Paris Music,S3254 +Clout,Substitute,https://www.jamkazam.com/landing/jamtracks/clout-substitute,Paris Music,S3986 +Van Halen,Jump,https://www.jamkazam.com/landing/jamtracks/van-halen-jump,Music Master Exchange LLC, +Paul Jones,I've Been a Bad Bad Boy,https://www.jamkazam.com/landing/jamtracks/paul-jones-ive-been-a-bad-bad-boy,Paris Music,S2923 +Stevie Ray Vaughan,Love Struck Baby,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-love-struck-baby,Steven Buckner, +Keith Richards & Eric Clapton,Key to the Highway,https://www.jamkazam.com/landing/jamtracks/keith-richards--eric-clapton-key-to-the-highway,Paris Music,S4703 +Staind,Right Here,https://www.jamkazam.com/landing/jamtracks/staind-right-here,Tency Music,25419 +Neil Diamond,Sweet Caroline,https://www.jamkazam.com/landing/jamtracks/neil-diamond-sweet-caroline,Tency Music,6534 +Mozart,"Mozart String Quartet No. 17, K.458, Movement 2",https://www.jamkazam.com/landing/jamtracks/mozart-mozart-string-quartet-no-17-k458-movement-2,Alexander String Quartet, +David Essex,Gonna Make You A Star,https://www.jamkazam.com/landing/jamtracks/david-essex-gonna-make-you-a-star,Paris Music,S3985 +Elton John,Honky Cat,https://www.jamkazam.com/landing/jamtracks/elton-john-honky-cat,Tency Music,17620 +Little Walter,My Babe,https://www.jamkazam.com/landing/jamtracks/little-walter-my-babe,Paris Music,S4378 +Katy Perry,Last Friday Night,https://www.jamkazam.com/landing/jamtracks/katy-perry-last-friday-night,Paris Music,S3643 +The Pretty Reckless,Heaven Knows,https://www.jamkazam.com/landing/jamtracks/the-pretty-reckless-heaven-knows,Tency Music,46488 +Blondie,Mother,https://www.jamkazam.com/landing/jamtracks/blondie-mother,Paris Music,S3638 +Amy Mcdonald,Mr Rock & Roll,https://www.jamkazam.com/landing/jamtracks/amy-mcdonald-mr-rock--roll,Paris Music,S2249 +The Band,The Weight,https://www.jamkazam.com/landing/jamtracks/the-band-the-weight,Tency Music,10106 +Beautiful South,Song for Whoever,https://www.jamkazam.com/landing/jamtracks/beautiful-south-song-for-whoever,Paris Music,S1977 +Elvis Presley,In the Ghetto,https://www.jamkazam.com/landing/jamtracks/elvis-presley-in-the-ghetto,Paris Music,S3246 +Natalie Cole,Unforgettable (Duet),https://www.jamkazam.com/landing/jamtracks/natalie-cole-unforgettable-duet,Tency Music,6923 +Bon Jovi,Always,https://www.jamkazam.com/landing/jamtracks/bon-jovi-always,Paris Music,S2920 +Sting,Desert Rose,https://www.jamkazam.com/landing/jamtracks/sting-desert-rose,Tency Music,8508 +Jamiroquai & Jools Holland,I'm In the Mood for Love,https://www.jamkazam.com/landing/jamtracks/jamiroquai--jools-holland-im-in-the-mood-for-love,Paris Music,S1973 +Chris Andrews,Yesterday Man,https://www.jamkazam.com/landing/jamtracks/chris-andrews-yesterday-man,Paris Music,S3255 +Simple Minds,Glittering Prize,https://www.jamkazam.com/landing/jamtracks/simple-minds-glittering-prize,Paris Music,S2557 +Take That,These Days,https://www.jamkazam.com/landing/jamtracks/take-that-these-days,Paris Music,S4712 +The Tams,"Be Young, Be Foolish, Be Happy",https://www.jamkazam.com/landing/jamtracks/the-tams-be-young-be-foolish-be-happy,Paris Music,S2552 +Johnny Nash,I Can See Clearly Now,https://www.jamkazam.com/landing/jamtracks/johnny-nash-i-can-see-clearly-now,Paris Music,S3247 +Stevie Wonder,Sir Duke,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-sir-duke,Paris Music,S4379 +Paramore,The Only Exception,https://www.jamkazam.com/landing/jamtracks/paramore-the-only-exception,Tency Music,26369 +The Jackson 5,I Want You Back,https://www.jamkazam.com/landing/jamtracks/the-jackson-5-i-want-you-back,Tency Music,14562 +Love Affair,Everlasting Love,https://www.jamkazam.com/landing/jamtracks/love-affair-everlasting-love,Paris Music,S3992 +The Staple Singers,If You're Ready (Come Go With Me),https://www.jamkazam.com/landing/jamtracks/the-staple-singers-if-youre-ready-come-go-with-me,Paris Music,S4374 +Matchbox Twenty,Unwell,https://www.jamkazam.com/landing/jamtracks/matchbox-twenty-unwell,Tency Music,6081 +Billy Fury,Thousand Stars,https://www.jamkazam.com/landing/jamtracks/billy-fury-thousand-stars,Paris Music,S2591 +The Smiths,How Soon Is Now ?,https://www.jamkazam.com/landing/jamtracks/the-smiths-how-soon-is-now-,Paris Music,S3652 +Paul Weller,Wishing On a Star,https://www.jamkazam.com/landing/jamtracks/paul-weller-wishing-on-a-star,Paris Music,S1981 +Ub40,Don't Do the Crime,https://www.jamkazam.com/landing/jamtracks/ub40-dont-do-the-crime,Paris Music,S2562 +Bryan Adams,When You Love Someone,https://www.jamkazam.com/landing/jamtracks/bryan-adams-when-you-love-someone,Paris Music,S2928 +Tina Turner,Missing You,https://www.jamkazam.com/landing/jamtracks/tina-turner-missing-you,Paris Music,S2925 +Vera Lynn,We'll Meet Again,https://www.jamkazam.com/landing/jamtracks/vera-lynn-well-meet-again,Paris Music,S3256 +Dave Sebree,Head Over Heels,https://www.jamkazam.com/landing/jamtracks/dave-sebree-head-over-heels,Dave Sebree, +The Drifters,Kissing In the Back Row of the Movies,https://www.jamkazam.com/landing/jamtracks/the-drifters-kissing-in-the-back-row-of-the-movies,Paris Music,S3300 +Billy Joel,New York State Of Mind,https://www.jamkazam.com/landing/jamtracks/billy-joel-new-york-state-of-mind,Tency Music,8878 +Barry Manilow,Even Now - Live At the O2 Arena,https://www.jamkazam.com/landing/jamtracks/barry-manilow-even-now---live-at-the-o2-arena,Paris Music,S3988 +Charlie Rich,Behind Closed Doors,https://www.jamkazam.com/landing/jamtracks/charlie-rich-behind-closed-doors,Paris Music,S3658 +Ub40,Boom Shaka Lacka,https://www.jamkazam.com/landing/jamtracks/ub40-boom-shaka-lacka,Paris Music,S4735 +The Tams,Hey Girl Don't Bother Me,https://www.jamkazam.com/landing/jamtracks/the-tams-hey-girl-dont-bother-me,Paris Music,S2565 +The Blow Monkeys,Diggin' Your Scene,https://www.jamkazam.com/landing/jamtracks/the-blow-monkeys-diggin-your-scene,Paris Music,S1985 +Kylie Minogue,I Was Gonna Cancel,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-i-was-gonna-cancel,Paris Music,S4536 +Take That,Flood,https://www.jamkazam.com/landing/jamtracks/take-that-flood,Paris Music,S3440 +Simple Minds,Waterfront,https://www.jamkazam.com/landing/jamtracks/simple-minds-waterfront,Paris Music,S4724 +Train,Hey Soul Sister,https://www.jamkazam.com/landing/jamtracks/train-hey-soul-sister,Paris Music,S3259 +The Jags,Written On the Back of My Hand,https://www.jamkazam.com/landing/jamtracks/the-jags-written-on-the-back-of-my-hand,Paris Music,S3261 +Del Amitri,Nothing Ever Happens,https://www.jamkazam.com/landing/jamtracks/del-amitri-nothing-ever-happens,Paris Music,S3656 +Foghat,Slow Ride,https://www.jamkazam.com/landing/jamtracks/foghat-slow-ride,Tency Music,25211 +The Dropkick Murphys,Wild Rover,https://www.jamkazam.com/landing/jamtracks/the-dropkick-murphys-wild-rover,Paris Music,S2933 +Japan,Quiet Life,https://www.jamkazam.com/landing/jamtracks/japan-quiet-life,Paris Music,S2567 +Marvin Gaye,Sexual Healing,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-sexual-healing,Tency Music,14561 +Barry Ryan,Eloise,https://www.jamkazam.com/landing/jamtracks/barry-ryan-eloise,Paris Music,S2563 +Jessie J,It's My Party,https://www.jamkazam.com/landing/jamtracks/jessie-j-its-my-party,Paris Music,S4383 +Elton John,This Train Don't Stop There Anymore,https://www.jamkazam.com/landing/jamtracks/elton-john-this-train-dont-stop-there-anymore,Paris Music,S3663 +Men At Work,Down Under,https://www.jamkazam.com/landing/jamtracks/men-at-work-down-under,Paris Music,S4509 +Bruce Springsteen,Human Touch,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-human-touch,Paris Music,S4506 +Metallica,Master Of Puppets,https://www.jamkazam.com/landing/jamtracks/metallica-master-of-puppets,Damage Inc., +Cream,Outside Woman Blues (Live),https://www.jamkazam.com/landing/jamtracks/cream-outside-woman-blues-live,Paris Music,S4384 +Chris Rea,Driving Home for Christmas,https://www.jamkazam.com/landing/jamtracks/chris-rea-driving-home-for-christmas,Paris Music,S0153 +Buddy Holly,Peggy Sue,https://www.jamkazam.com/landing/jamtracks/buddy-holly-peggy-sue,Tency Music,7162 +The Fortunes,Storm In a Teacup,https://www.jamkazam.com/landing/jamtracks/the-fortunes-storm-in-a-teacup,Paris Music,S2935 +Del Amitri,Always the Last To Know,https://www.jamkazam.com/landing/jamtracks/del-amitri-always-the-last-to-know,Paris Music,S2289 +Gene Vincent,Race With the Devil,https://www.jamkazam.com/landing/jamtracks/gene-vincent-race-with-the-devil,Paris Music,S4385 +Sugababes,Girls,https://www.jamkazam.com/landing/jamtracks/sugababes-girls,Paris Music,S2826 +Billy Ocean,"Get Outta My Dreams, Get Into My Car",https://www.jamkazam.com/landing/jamtracks/billy-ocean-get-outta-my-dreams-get-into-my-car,Paris Music,S4732 +Little Richard,Long Tall Sally,https://www.jamkazam.com/landing/jamtracks/little-richard-long-tall-sally,Paris Music,S3677 +Outlaws,Ghost Riders In The Sky,https://www.jamkazam.com/landing/jamtracks/outlaws-ghost-riders-in-the-sky,Tency Music,29517 +Johnny Cash,Thing Called Love,https://www.jamkazam.com/landing/jamtracks/johnny-cash-thing-called-love,Paris Music,S2937 +John Williamson,Waltzing Matilda,https://www.jamkazam.com/landing/jamtracks/john-williamson-waltzing-matilda,Paris Music,S4122 +Neil Sedaka,Oh Carol,https://www.jamkazam.com/landing/jamtracks/neil-sedaka-oh-carol,Paris Music,S4001 +Shirley Bassey,Get the Party Started,https://www.jamkazam.com/landing/jamtracks/shirley-bassey-get-the-party-started,Paris Music,S2305 +Johnny Mathis & Deniece Williams,"Too Much, Too Little, Too Late",https://www.jamkazam.com/landing/jamtracks/johnny-mathis--deniece-williams-too-much-too-little-too-late,Paris Music,S2590 +Flogging Molly,Salty Dog,https://www.jamkazam.com/landing/jamtracks/flogging-molly-salty-dog,Tency Music,41522 +Kenny Loggins,Footloose,https://www.jamkazam.com/landing/jamtracks/kenny-loggins-footloose,Paris Music,S3275 +Janis Joplin,Move Over,https://www.jamkazam.com/landing/jamtracks/janis-joplin-move-over,Tency Music,49107 +Squeeze,If I Didn't Love You,https://www.jamkazam.com/landing/jamtracks/squeeze-if-i-didnt-love-you,Paris Music,S4394 +Ellis Island,With A Little Help from My Friends,https://www.jamkazam.com/landing/jamtracks/ellis-island-with-a-little-help-from-my-friends,Paris Music,S3669 +Matt Monroe,Gonna Build a Mountain,https://www.jamkazam.com/landing/jamtracks/matt-monroe-gonna-build-a-mountain,Paris Music,S2595 +The Fortunes,You've Got Your Troubles,https://www.jamkazam.com/landing/jamtracks/the-fortunes-youve-got-your-troubles,Paris Music,S4003 +Pilot,Magic,https://www.jamkazam.com/landing/jamtracks/pilot-magic,Paris Music,S4760 +Guy Mitchell,Heartaches By the Number,https://www.jamkazam.com/landing/jamtracks/guy-mitchell-heartaches-by-the-number,Paris Music,S2948 +Take That,A Million Love Songs,https://www.jamkazam.com/landing/jamtracks/take-that-a-million-love-songs,Paris Music,S2951 +Mike Oldfield,Moonlight Shadow ft. Maggie Reilly,https://www.jamkazam.com/landing/jamtracks/mike-oldfield-moonlight-shadow-ft-maggie-reilly,Paris Music,S4863 +Taylor Swift,Our Song,https://www.jamkazam.com/landing/jamtracks/taylor-swift-our-song,Tency Music,13084 +Metallica,Wherever I May Roam,https://www.jamkazam.com/landing/jamtracks/metallica-wherever-i-may-roam,Damage Inc., +Emile Ford & The Checkmates,Counting Teardrops,https://www.jamkazam.com/landing/jamtracks/emile-ford--the-checkmates-counting-teardrops,Paris Music,S3684 +Bob Seger,Rock And Roll Never Forgets,https://www.jamkazam.com/landing/jamtracks/bob-seger-rock-and-roll-never-forgets,Music Master Exchange LLC, +The Band Perry,Better Dig Two,https://www.jamkazam.com/landing/jamtracks/the-band-perry-better-dig-two,Tency Music,42146 +Celia Cruz,Rie Y Llora,https://www.jamkazam.com/landing/jamtracks/celia-cruz-rie-y-llora,Tency Music,44617 +Roxette,The Look,https://www.jamkazam.com/landing/jamtracks/roxette-the-look,Tency Music,13955 +Elton John & Kd Lang,Teardrops,https://www.jamkazam.com/landing/jamtracks/elton-john--kd-lang-teardrops,Paris Music,S4393 +Lynyrd Skynyrd,Call Me The Breeze,https://www.jamkazam.com/landing/jamtracks/lynyrd-skynyrd-call-me-the-breeze,Music Master Exchange LLC, +The Lighthouse Family,I Wish I Knew How It Would Feel To Be Free,https://www.jamkazam.com/landing/jamtracks/the-lighthouse-family-i-wish-i-knew-how-it-would-feel-to-be-free,Paris Music,S3676 +George Michael & Elton John,Don't Let the Sun Go Down On Me (Live),https://www.jamkazam.com/landing/jamtracks/george-michael--elton-john-dont-let-the-sun-go-down-on-me-live,Paris Music,S3014 +Elvis Presley,Teddy Bear,https://www.jamkazam.com/landing/jamtracks/elvis-presley-teddy-bear,Paris Music,S3284 +The Commodores,Still,https://www.jamkazam.com/landing/jamtracks/the-commodores-still,Tency Music,17448 +Bob Marley,Stir It Up,https://www.jamkazam.com/landing/jamtracks/bob-marley-stir-it-up,Tency Music,25906 +Duran Duran,Is There Something I Should Know ?,https://www.jamkazam.com/landing/jamtracks/duran-duran-is-there-something-i-should-know-,Paris Music,S4017 +Take That,Shine,https://www.jamkazam.com/landing/jamtracks/take-that-shine,Paris Music,S1967 +Tina Turner,River Deep Mountain High,https://www.jamkazam.com/landing/jamtracks/tina-turner-river-deep-mountain-high,Paris Music,S0193 +Status Quo,Anniversary Waltz,https://www.jamkazam.com/landing/jamtracks/status-quo-anniversary-waltz,Paris Music,S2608 +Eurythmics,Sweet Dreams,https://www.jamkazam.com/landing/jamtracks/eurythmics-sweet-dreams,Paris Music,S3282 +Jimi Hendrix,Crosstown Traffic,https://www.jamkazam.com/landing/jamtracks/jimi-hendrix-crosstown-traffic,Paris Music,S4407 +Kenny Rogers,"Ruby, Don't Take Your Love To Town",https://www.jamkazam.com/landing/jamtracks/kenny-rogers-ruby-dont-take-your-love-to-town,Paris Music,S3686 +Gene Pitney,I'm Gonna Be Strong,https://www.jamkazam.com/landing/jamtracks/gene-pitney-im-gonna-be-strong,Paris Music,S2612 +Garbage,I Think I'm Paranoid,https://www.jamkazam.com/landing/jamtracks/garbage-i-think-im-paranoid,Paris Music,S4408 +Bruno Mars,Marry You,https://www.jamkazam.com/landing/jamtracks/bruno-mars-marry-you,Paris Music,S3696 +Fleetwood Mac,You Make Lovin' Fun,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-you-make-lovin-fun,Music Master Exchange LLC, +Elvis Presley,Return To Sender,https://www.jamkazam.com/landing/jamtracks/elvis-presley-return-to-sender,Paris Music,S3291 +The Drifters,Up On the Roof,https://www.jamkazam.com/landing/jamtracks/the-drifters-up-on-the-roof,Paris Music,S3301 +Joseph & The Amazing Technicolor Dreamcoat,Any Dream Will Do,https://www.jamkazam.com/landing/jamtracks/joseph--the-amazing-technicolor-dreamcoat-any-dream-will-do,Paris Music,S2624 +Gospel Singer,I Love To Tell The Story,https://www.jamkazam.com/landing/jamtracks/gospel-singer-i-love-to-tell-the-story,Tency Music,25176 +Lady Gaga,You & I,https://www.jamkazam.com/landing/jamtracks/lady-gaga-you--i,Paris Music,S3709 +The Pointer Sisters,Jump (for My Love),https://www.jamkazam.com/landing/jamtracks/the-pointer-sisters-jump-for-my-love,Paris Music,S4024 +The Alan Parsons Project,Eye In The Sky,https://www.jamkazam.com/landing/jamtracks/the-alan-parsons-project-eye-in-the-sky,Tency Music,20583 +Frank Sinatra,Strangers In the Night,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-strangers-in-the-night,Paris Music,S3289 +Christina Perri,Jar of Hearts,https://www.jamkazam.com/landing/jamtracks/christina-perri-jar-of-hearts,Paris Music,S3711 +Ellie Goulding,Lights,https://www.jamkazam.com/landing/jamtracks/ellie-goulding-lights,Tency Music,36496 +Paloma Faith,30 Minute Love Affair,https://www.jamkazam.com/landing/jamtracks/paloma-faith-30-minute-love-affair,Paris Music,S4026 +The Osmonds,Love Me for a Reason,https://www.jamkazam.com/landing/jamtracks/the-osmonds-love-me-for-a-reason,Paris Music,S0921 +Robbie Williams,Go Gentle,https://www.jamkazam.com/landing/jamtracks/robbie-williams-go-gentle,Paris Music,S4410 +Lovin' Spoonful,Daydream,https://www.jamkazam.com/landing/jamtracks/lovin-spoonful-daydream,Paris Music,S3332 +Billy Ocean,Love Really Hurts Without You,https://www.jamkazam.com/landing/jamtracks/billy-ocean-love-really-hurts-without-you,Paris Music,S3719 +Bryan Adams,Summer Of 69,https://www.jamkazam.com/landing/jamtracks/bryan-adams-summer-of-69,Tency Music,5520 +Dean Martin,Little Ole Wine Drinker Me,https://www.jamkazam.com/landing/jamtracks/dean-martin-little-ole-wine-drinker-me,Paris Music,S3310 +Joao Gilberto,Desafinado,https://www.jamkazam.com/landing/jamtracks/joao-gilberto-desafinado,Tency Music,33136 +Elvis Presley,Wear My Ring Around Your Neck,https://www.jamkazam.com/landing/jamtracks/elvis-presley-wear-my-ring-around-your-neck,Paris Music,S3309 +Duran Duran,Hungry Like the Wolf,https://www.jamkazam.com/landing/jamtracks/duran-duran-hungry-like-the-wolf,Paris Music,S3724 +Green Day,Basket Case,https://www.jamkazam.com/landing/jamtracks/green-day-basket-case,Tency Music,13052 +Gary Barlow,Let Me Go,https://www.jamkazam.com/landing/jamtracks/gary-barlow-let-me-go,Paris Music,S4423 +Ronan Keating,Life Is A Rollercoaster,https://www.jamkazam.com/landing/jamtracks/ronan-keating-life-is-a-rollercoaster,Paris Music,S4783 +Tony Bennett & Michael Buble,Don't Get Around Much Anymore,https://www.jamkazam.com/landing/jamtracks/tony-bennett--michael-buble-dont-get-around-much-anymore,Paris Music,S3731 +Herman's Hermits,Silhouettes,https://www.jamkazam.com/landing/jamtracks/hermans-hermits-silhouettes,Paris Music,S4046 +The Mavericks,Dance The Night Away,https://www.jamkazam.com/landing/jamtracks/the-mavericks-dance-the-night-away,Tency Music,9074 +Ballroom Orchestra,Paso Doble (Original),https://www.jamkazam.com/landing/jamtracks/ballroom-orchestra-paso-doble-original,Tency Music,29956 +Guns N' Roses,Mr. Brownstone,https://www.jamkazam.com/landing/jamtracks/guns-n-roses-mr-brownstone,Chad Atkins, +The Beatles,Michelle,https://www.jamkazam.com/landing/jamtracks/the-beatles-michelle,Tency Music,12789 +Bad Company,Movin On,https://www.jamkazam.com/landing/jamtracks/bad-company-movin-on,Tency Music,48475 +J Geils Band,Freeze Frame,https://www.jamkazam.com/landing/jamtracks/j-geils-band-freeze-frame,Tency Music,29780 +The Beatles,I Saw Her Standing There,https://www.jamkazam.com/landing/jamtracks/the-beatles-i-saw-her-standing-there,Music Master Exchange LLC, +Human League,Mirror Man,https://www.jamkazam.com/landing/jamtracks/human-league-mirror-man,Paris Music,S1705 +Eric Clapton,Layla,https://www.jamkazam.com/landing/jamtracks/eric-clapton-layla,Tency Music,6432 +Keane,Fly to Me,https://www.jamkazam.com/landing/jamtracks/keane-fly-to-me,Paris Music,S2723 +AC/DC,Whole Lotta Rosie,https://www.jamkazam.com/landing/jamtracks/acdc-whole-lotta-rosie,Back in Black LLC, +Glen Campbell,Galveston,https://www.jamkazam.com/landing/jamtracks/glen-campbell-galveston,Paris Music,S1756 +Cyndi Lauper,Girls Just Wanna Have Fun,https://www.jamkazam.com/landing/jamtracks/cyndi-lauper-girls-just-wanna-have-fun,Tency Music,8231 +Peggy Lee,Black Coffee,https://www.jamkazam.com/landing/jamtracks/peggy-lee-black-coffee,Tency Music,27567 +The Byrds,Eight Miles High,https://www.jamkazam.com/landing/jamtracks/the-byrds-eight-miles-high,Tency Music,32822 +Take That,Back for Good,https://www.jamkazam.com/landing/jamtracks/take-that-back-for-good,Paris Music,S1964 +Fun,We Are Young,https://www.jamkazam.com/landing/jamtracks/fun-we-are-young,Tency Music,39711 +The Rolling Stones,It's All Over Now,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-its-all-over-now,Tency Music,26255 +Cher,Believe,https://www.jamkazam.com/landing/jamtracks/cher-believe,Paris Music,S3915 +Bad Company,Can't Get Enough,https://www.jamkazam.com/landing/jamtracks/bad-company-cant-get-enough,Music Master Exchange LLC, +Elvis Presley,It's Now Or Never,https://www.jamkazam.com/landing/jamtracks/elvis-presley-its-now-or-never,Tency Music,10889 +Grateful Dead,Tennessee Jed,https://www.jamkazam.com/landing/jamtracks/grateful-dead-tennessee-jed,DSO LLC, +Santana,Samba Pa Ti,https://www.jamkazam.com/landing/jamtracks/santana-samba-pa-ti,Tency Music,27510 +Cliff Richard,Bachelor Boy,https://www.jamkazam.com/landing/jamtracks/cliff-richard-bachelor-boy,Paris Music,S1311 +George Harrison,What Is Life,https://www.jamkazam.com/landing/jamtracks/george-harrison-what-is-life,Tency Music,45998 +Sham Rock,Tell Me Ma,https://www.jamkazam.com/landing/jamtracks/sham-rock-tell-me-ma,Paris Music,S1167 +Nelly,Hot In Herre,https://www.jamkazam.com/landing/jamtracks/nelly-hot-in-herre,Tency Music,6863 +Nightwish,Wish I Had An Angel,https://www.jamkazam.com/landing/jamtracks/nightwish-wish-i-had-an-angel,Tency Music,37204 +Smokey Robinson,The Tracks Of My Tears,https://www.jamkazam.com/landing/jamtracks/smokey-robinson-the-tracks-of-my-tears,Tency Music,9062 +Tower Of Power,What Is Hip,https://www.jamkazam.com/landing/jamtracks/tower-of-power-what-is-hip,Tency Music,41376 +Van Halen,Right Now,https://www.jamkazam.com/landing/jamtracks/van-halen-right-now,Tency Music,17761 +The B-52's,Roam,https://www.jamkazam.com/landing/jamtracks/the-b-52s-roam,Tency Music,11410 +Motley Crue,Wild Side,https://www.jamkazam.com/landing/jamtracks/motley-crue-wild-side,Music Master Exchange LLC, +Jo Dee Messina,Heads Carolina Tails California,https://www.jamkazam.com/landing/jamtracks/jo-dee-messina-heads-carolina-tails-california,Tency Music,10727 +Lady Gaga,Telephone,https://www.jamkazam.com/landing/jamtracks/lady-gaga-telephone,Tency Music,26459 +The La's,There She Goes,https://www.jamkazam.com/landing/jamtracks/the-las-there-she-goes,Tency Music,33821 +Outkast,Ms. Jackson,https://www.jamkazam.com/landing/jamtracks/outkast-ms-jackson,Tency Music,14058 +Bad Manners,Lip Up Fatty,https://www.jamkazam.com/landing/jamtracks/bad-manners-lip-up-fatty,Tency Music,35154 +Squeeze,Is That Love,https://www.jamkazam.com/landing/jamtracks/squeeze-is-that-love,Paris Music,S4702 +Rascal Flatts,Rewind,https://www.jamkazam.com/landing/jamtracks/rascal-flatts-rewind,Tency Music,46950 +Taking Back Sunday,A Decade Under The Influence,https://www.jamkazam.com/landing/jamtracks/taking-back-sunday-a-decade-under-the-influence,Tency Music,29278 +Peter Andre,Mysterious Girl,https://www.jamkazam.com/landing/jamtracks/peter-andre-mysterious-girl,Paris Music,S0765 +Squeeze,Tempted,https://www.jamkazam.com/landing/jamtracks/squeeze-tempted,Tency Music,11479 +U2,Angel Of Harlem,https://www.jamkazam.com/landing/jamtracks/u2-angel-of-harlem,Tency Music,12707 +Jeff Buckley,Hallelujah,https://www.jamkazam.com/landing/jamtracks/jeff-buckley-hallelujah,Tency Music,12265 +Pistol Annies,Hell On Heels,https://www.jamkazam.com/landing/jamtracks/pistol--annies-hell-on-heels,Tency Music,37899 +The Beatles,Getting Better,https://www.jamkazam.com/landing/jamtracks/the-beatles-getting-better,Tency Music,10481 +Justin Timberlake,Sexyback,https://www.jamkazam.com/landing/jamtracks/justin-timberlake-sexyback,Tency Music,9435 +John Lennon,Imagine,https://www.jamkazam.com/landing/jamtracks/john-lennon-imagine,Music Master Exchange LLC, +Santana,"Europa (Earth's Cry, Heaven's Smile)",https://www.jamkazam.com/landing/jamtracks/santana-europa-earths-cry-heavens-smile,Tency Music,33763 +Neil Young,Cinnamon Girl,https://www.jamkazam.com/landing/jamtracks/neil-young-cinnamon-girl,Tency Music,15191 +Deep Purple,Highway Star,https://www.jamkazam.com/landing/jamtracks/deep-purple-highway-star,Tency Music,29658 +Alison Krauss And Union Station,When You Say Nothing At All,https://www.jamkazam.com/landing/jamtracks/alison-krauss-and-union-station-when-you-say-nothing-at-all,Tency Music,8293 +Stooshe,Black Heart,https://www.jamkazam.com/landing/jamtracks/stooshe-black-heart,Paris Music,S4018 +Jimmy Crawford,I Go To Rio,https://www.jamkazam.com/landing/jamtracks/jimmy-crawford-i-go-to-rio,Paris Music,S3437 +My Chemical Romance,Teenagers,https://www.jamkazam.com/landing/jamtracks/my-chemical-romance-teenagers,Tency Music,12286 +Bob Marley,Three Little Birds,https://www.jamkazam.com/landing/jamtracks/bob-marley-three-little-birds,Tency Music,13150 +The Byrds,Turn Turn Turn,https://www.jamkazam.com/landing/jamtracks/the-byrds-turn-turn-turn,Tency Music,9996 +Ella Fitzgerald,Satin Doll,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-satin-doll,Tency Music,35555 +Styx,Come Sail Away,https://www.jamkazam.com/landing/jamtracks/styx-come-sail-away,Tency Music,18442 +Rumer,Aretha,https://www.jamkazam.com/landing/jamtracks/rumer-aretha,Paris Music,S3554 +Gospel Singer,Just A Closer Walk With Thee,https://www.jamkazam.com/landing/jamtracks/gospel-singer-just-a-closer-walk-with-thee,Tency Music,24885 +R.E.M.,Imitation Of Life,https://www.jamkazam.com/landing/jamtracks/rem-imitation-of-life,Tency Music,7901 +The Gipsy Kings,La Quiero,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-la-quiero,Tency Music,45655 +Led Zeppelin,Ramble On,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-ramble-on,Music Master Exchange LLC, +Elton John,Blue Eyes,https://www.jamkazam.com/landing/jamtracks/elton-john-blue-eyes,Paris Music,S4210 +Journey,Stone In Love,https://www.jamkazam.com/landing/jamtracks/journey-stone-in-love,Tency Music,18337 +Pat Benatar,We Belong,https://www.jamkazam.com/landing/jamtracks/pat-benatar-we-belong,Tency Music,19062 +Nickelback,Lullaby,https://www.jamkazam.com/landing/jamtracks/nickelback-lullaby,Tency Music,40262 +Ray Lamontagne,Let It Be Me,https://www.jamkazam.com/landing/jamtracks/ray-lamontagne-let-it-be-me,Tency Music,38174 +Sara Evans,Suds In The Bucket,https://www.jamkazam.com/landing/jamtracks/sara-evans-suds-in-the-bucket,Tency Music,8466 +Shania Twain,You're Still The One,https://www.jamkazam.com/landing/jamtracks/shania-twain-youre-still-the-one,Tency Music,9899 +T Rex,Ride a White Swan,https://www.jamkazam.com/landing/jamtracks/t-rex-ride-a-white-swan,Paris Music,S1431 +Nirvana,Lithium,https://www.jamkazam.com/landing/jamtracks/nirvana-lithium,Tency Music,16891 +Gloria Estefan,Mi Tierra,https://www.jamkazam.com/landing/jamtracks/gloria-estefan-mi-tierra,Tency Music,19328 +The Bee Gees,How Deep Is Your Love ?,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-how-deep-is-your-love-,Paris Music,S0919 +Demi Lovato,Heart Attack,https://www.jamkazam.com/landing/jamtracks/demi-lovato-heart-attack,Tency Music,43093 +Halestorm,Here's To Us,https://www.jamkazam.com/landing/jamtracks/halestorm-heres-to-us,Tency Music,39936 +Sting,Someone To Watch Over Me,https://www.jamkazam.com/landing/jamtracks/sting-someone-to-watch-over-me,Tency Music,40571 +Orleans,Dance With Me,https://www.jamkazam.com/landing/jamtracks/orleans-dance-with-me,Tency Music,31669 +Pearl Jam,Black,https://www.jamkazam.com/landing/jamtracks/pearl-jam-black,Music Master Exchange LLC, +Gospel Singer,I Can Only Imagine,https://www.jamkazam.com/landing/jamtracks/gospel-singer-i-can-only-imagine,Tency Music,29528 +Ella Fitzgerald,Mack The Knife,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-mack-the-knife,Tency Music,26371 +Squeeze,Cool for Cats,https://www.jamkazam.com/landing/jamtracks/squeeze-cool-for-cats,Paris Music,S4143 +Hootie And The Blowfish,Hold My Hand,https://www.jamkazam.com/landing/jamtracks/hootie-and-the-blowfish-hold-my-hand,Tency Music,9783 +Neil Young,Helpless,https://www.jamkazam.com/landing/jamtracks/neil-young-helpless,Tency Music,47634 +Pink Floyd,Another Brick In The Wall Part 2,https://www.jamkazam.com/landing/jamtracks/pink-floyd-another-brick-in-the-wall-part-2,Music Master Exchange LLC, +Gospel Singer,Lord I Lift Your Name On High,https://www.jamkazam.com/landing/jamtracks/gospel-singer-lord-i-lift-your-name-on-high,Tency Music,29352 +Hank Williams Jr,Family Tradition,https://www.jamkazam.com/landing/jamtracks/hank-williams-jr-family-tradition,Tency Music,15992 +Guns N' Roses,Patience,https://www.jamkazam.com/landing/jamtracks/guns-n-roses-patience,Chad Atkins, +The Who,Baba O'Riley,https://www.jamkazam.com/landing/jamtracks/the-who-baba-oriley,Music Master Exchange LLC, +The Band Perry,Done,https://www.jamkazam.com/landing/jamtracks/the-band-perry-done,Tency Music,43332 +The Commitments,Try A Little Tenderness,https://www.jamkazam.com/landing/jamtracks/the-commitments-try-a-little-tenderness,Tency Music,20599 +Jaci Velasquez,Jesus Is,https://www.jamkazam.com/landing/jamtracks/jaci-velasquez-jesus-is,Tency Music,28316 +Godsmack,I Stand Alone,https://www.jamkazam.com/landing/jamtracks/godsmack-i-stand-alone,Tency Music,24877 +Sum 41,Pieces,https://www.jamkazam.com/landing/jamtracks/sum-41-pieces,Tency Music,28974 +Gavin DeGraw,I Don't Want To Be,https://www.jamkazam.com/landing/jamtracks/gavin-degraw-i-dont-want-to-be,Tency Music,5614 +Sublime,Garden Grove,https://www.jamkazam.com/landing/jamtracks/sublime-garden-grove,Tency Music,41515 +Stone Sour,Through Glass,https://www.jamkazam.com/landing/jamtracks/stone-sour-through-glass,Tency Music,11762 +Joan Jett,Bad Reputation,https://www.jamkazam.com/landing/jamtracks/joan-jett-bad-reputation,Tency Music,42594 +Survivor,Burning Heart,https://www.jamkazam.com/landing/jamtracks/survivor-burning-heart,Tency Music,39148 +Randy Newman,I Love L.A.,https://www.jamkazam.com/landing/jamtracks/randy-newman-i-love-la,Tency Music,35478 +Elton John,Rocket Man,https://www.jamkazam.com/landing/jamtracks/elton-john-rocket-man,Music Master Exchange LLC, +Justin Bieber,Baby,https://www.jamkazam.com/landing/jamtracks/justin-bieber-baby,Tency Music,27935 +Joan Jett,I Hate Myself For Loving You,https://www.jamkazam.com/landing/jamtracks/joan-jett-i-hate-myself-for-loving-you,Tency Music,22295 +The Eagles,The Sad Cafe,https://www.jamkazam.com/landing/jamtracks/the-eagles-the-sad-cafe,Tency Music,32218 +The Beach Boys,Help Me Rhonda,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-help-me-rhonda,Tency Music,17084 +Stevie Ray Vaughan,Cold Shot,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-cold-shot,Steven Buckner, +Joe Walsh,All Night Long,https://www.jamkazam.com/landing/jamtracks/joe-walsh-all-night-long,Tency Music,29133 +The Beach Boys,In My Room,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-in-my-room,Tency Music,27428 +The Doobie Brothers,Jesus Is Just Alright,https://www.jamkazam.com/landing/jamtracks/the-doobie-brothers-jesus-is-just-alright,Tency Music,47537 +Elvis Presley,Can't Help Falling In Love,https://www.jamkazam.com/landing/jamtracks/elvis-presley-cant-help-falling-in-love,Tency Music,36600 +Talking Heads,Take Me To The River,https://www.jamkazam.com/landing/jamtracks/talking-heads-take-me-to-the-river,Tency Music,6317 +Shania Twain,Man I Feel Like A Woman,https://www.jamkazam.com/landing/jamtracks/shania-twain-man-i-feel-like-a-woman,Tency Music,9673 +George Strait,All My Exes Live In Texas,https://www.jamkazam.com/landing/jamtracks/george-strait-all-my-exes-live-in-texas,Tency Music,24379 +Elton John,Tiny Dancer,https://www.jamkazam.com/landing/jamtracks/elton-john-tiny-dancer,Tency Music,13124 +ABBA,Mamma Mia,https://www.jamkazam.com/landing/jamtracks/abba-mamma-mia,Tency Music,7302 +The Beatles,Eight Days A Week,https://www.jamkazam.com/landing/jamtracks/the-beatles-eight-days-a-week,Tency Music,14174 +Tim McGraw,Southern Girl,https://www.jamkazam.com/landing/jamtracks/tim-mcgraw-southern-girl,Tency Music,45034 +Van Halen,Panama,https://www.jamkazam.com/landing/jamtracks/van-halen-panama,Music Master Exchange LLC, +The Darts,Come Back My Love,https://www.jamkazam.com/landing/jamtracks/the-darts-come-back-my-love,Paris Music,S2418 +Susan Tedeschi,It Hurt So Bad,https://www.jamkazam.com/landing/jamtracks/susan-tedeschi-it-hurt-so-bad,Tency Music,29503 +Rush,Freewill,https://www.jamkazam.com/landing/jamtracks/rush-freewill,Tency Music,25835 +Dean Martin,Everybody Loves Somebody,https://www.jamkazam.com/landing/jamtracks/dean-martin-everybody-loves-somebody,Paris Music,S0887 +Marvin Gaye,Let's Get It On,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-lets-get-it-on,Tency Music,13652 +OneRepublic,Good Life,https://www.jamkazam.com/landing/jamtracks/onerepublic-good-life,Tency Music,37248 +The Monkees,I'm A Believer,https://www.jamkazam.com/landing/jamtracks/the-monkees-im-a-believer,Tency Music,14179 +Take That,Up All Night,https://www.jamkazam.com/landing/jamtracks/take-that-up-all-night,Paris Music,S2772 +Bobby Darin,Mack The Knife,https://www.jamkazam.com/landing/jamtracks/bobby-darin-mack-the-knife,Tency Music,6913 +Billy Joel,Big Shot,https://www.jamkazam.com/landing/jamtracks/billy-joel-big-shot,Tency Music,6383 +Peter Paul And Mary,If I Had A Hammer,https://www.jamkazam.com/landing/jamtracks/peter-paul-and-mary-if-i-had-a-hammer,Tency Music,11294 +Kings Of Leon,Closer,https://www.jamkazam.com/landing/jamtracks/kings-of-leon-closer,Tency Music,23959 +Deep Purple,Smoke On The Water,https://www.jamkazam.com/landing/jamtracks/deep-purple-smoke-on-the-water,Tency Music,18156 +Scouting For Girls,She's So Lovely,https://www.jamkazam.com/landing/jamtracks/scouting-for-girls-shes-so-lovely,Tency Music,12764 +Manfred Mann,Pretty Flamingo,https://www.jamkazam.com/landing/jamtracks/manfred-mann-pretty-flamingo,Paris Music,S1446 +Led Zeppelin,Babe I'm Gonna Leave You,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-babe-im-gonna-leave-you,Music Master Exchange LLC, +Sublime,Santeria,https://www.jamkazam.com/landing/jamtracks/sublime-santeria,Tency Music,27932 +INXS,Devil Inside,https://www.jamkazam.com/landing/jamtracks/inxs-devil-inside,Tency Music,17173 +Kool And The Gang,Celebration,https://www.jamkazam.com/landing/jamtracks/kool-and-the-gang-celebration,Tency Music,8285 +Aerosmith,I Don't Want To Miss A Thing,https://www.jamkazam.com/landing/jamtracks/aerosmith-i-dont-want-to-miss-a-thing,Tency Music,9151 +Sting,Fields Of Gold,https://www.jamkazam.com/landing/jamtracks/sting-fields-of-gold,Tency Music,6979 +Thin Lizzy,The Boys Are Back In Town,https://www.jamkazam.com/landing/jamtracks/thin-lizzy-the-boys-are-back-in-town,Tency Music,6394 +Motley Crue,Home Sweet Home,https://www.jamkazam.com/landing/jamtracks/motley-crue-home-sweet-home,Music Master Exchange LLC, +The Teardrop Explodes,Reward,https://www.jamkazam.com/landing/jamtracks/the-teardrop-explodes-reward,Paris Music,S1653 +Abba,Ring Ring,https://www.jamkazam.com/landing/jamtracks/abba-ring-ring,Paris Music,S4767 +Eddie Rabbitt,Drivin My Life Away,https://www.jamkazam.com/landing/jamtracks/eddie-rabbitt-drivin-my-life-away,Tency Music,15635 +Everlast,What It's Like,https://www.jamkazam.com/landing/jamtracks/everlast-what-its-like,Tency Music,8514 +No Doubt,Underneath It All,https://www.jamkazam.com/landing/jamtracks/no-doubt-underneath-it-all,Tency Music,7069 +System Of A Down,Lonely Day,https://www.jamkazam.com/landing/jamtracks/system-of-a-down-lonely-day,Tency Music,28853 +Orleans,Still The One,https://www.jamkazam.com/landing/jamtracks/orleans-still-the-one,Tency Music,32353 +Etta James,The Very Thought Of You,https://www.jamkazam.com/landing/jamtracks/etta-james-the-very-thought-of-you,Tency Music,43912 +Nirvana,Heart-Shaped Box,https://www.jamkazam.com/landing/jamtracks/nirvana-heart-shaped-box,Tency Music,47459 +Nazareth,This Flight Tonight,https://www.jamkazam.com/landing/jamtracks/nazareth-this-flight-tonight,Tency Music,47477 +Leonard Cohen,Hallelujah,https://www.jamkazam.com/landing/jamtracks/leonard-cohen-hallelujah,Tency Music,22114 +Kacey Musgraves,Biscuits,https://www.jamkazam.com/landing/jamtracks/kacey-musgraves-biscuits,Tency Music,49115 +Survivor,Eye Of The Tiger,https://www.jamkazam.com/landing/jamtracks/survivor-eye-of-the-tiger,Tency Music,7252 +The Beatles,I Want You (She's So Heavy),https://www.jamkazam.com/landing/jamtracks/the-beatles-i-want-you-shes-so-heavy,Tency Music,31639 +Gospel Singer,We Shall Overcome,https://www.jamkazam.com/landing/jamtracks/gospel-singer-we-shall-overcome,Tency Music,24552 +The Band,Up On Cripple Creek,https://www.jamkazam.com/landing/jamtracks/the-band-up-on-cripple-creek,Tency Music,10105 +The Gipsy Kings,Vamos A Bailar,https://www.jamkazam.com/landing/jamtracks/the-gipsy-kings-vamos-a-bailar,Tency Music,32778 +Chuck Berry,Johnny B Goode,https://www.jamkazam.com/landing/jamtracks/chuck-berry-johnny-b-goode,Tency Music,13103 +Pink Floyd,Mother,https://www.jamkazam.com/landing/jamtracks/pink-floyd-mother,Tency Music,30377 +Red Hot Chili Peppers,Californication,https://www.jamkazam.com/landing/jamtracks/red-hot-chili-peppers-californication,Tency Music,7499 +Pink Floyd,Coming Back To Life,https://www.jamkazam.com/landing/jamtracks/pink-floyd-coming-back-to-life,Tency Music,41013 +The Coasters,Yakety Yak,https://www.jamkazam.com/landing/jamtracks/the-coasters-yakety-yak,Tency Music,17443 +Sweet,Ballroom Blitz,https://www.jamkazam.com/landing/jamtracks/sweet-ballroom-blitz,Tency Music,25823 +Taylor Swift,The Other Side Of The Door,https://www.jamkazam.com/landing/jamtracks/taylor-swift-the-other-side-of-the-door,Tency Music,27979 +Pink Floyd,Wish You Were Here,https://www.jamkazam.com/landing/jamtracks/pink-floyd-wish-you-were-here,Music Master Exchange LLC, +Staind,Outside,https://www.jamkazam.com/landing/jamtracks/staind-outside,Tency Music,29095 +Ingrid Michaelson,Girls Chase Boys,https://www.jamkazam.com/landing/jamtracks/ingrid-michaelson-girls-chase-boys,Tency Music,47202 +Reel Big Fish,Sell Out,https://www.jamkazam.com/landing/jamtracks/reel-big-fish-sell-out,Tency Music,33341 +Tower Of Power,Diggin On James Brown,https://www.jamkazam.com/landing/jamtracks/tower-of-power-diggin-on-james-brown,Tency Music,41411 +Bad Company,Ready For Love,https://www.jamkazam.com/landing/jamtracks/bad-company-ready-for-love,Music Master Exchange LLC, +Los Lonely Boys,Heaven,https://www.jamkazam.com/landing/jamtracks/los-lonely-boys-heaven,Tency Music,16633 +Vanessa Williams,Save The Best For Last,https://www.jamkazam.com/landing/jamtracks/vanessa-williams-save-the-best-for-last,Tency Music,13799 +Nat King Cole,Straighten Up And Fly Right,https://www.jamkazam.com/landing/jamtracks/nat-king-cole-straighten-up-and-fly-right,Tency Music,30798 +MGMT,Kids,https://www.jamkazam.com/landing/jamtracks/mgmt-kids,Tency Music,21403 +The Smithereens,A Girl Like You,https://www.jamkazam.com/landing/jamtracks/the-smithereens-a-girl-like-you,Tency Music,33133 +Loverboy,Working For The Weekend,https://www.jamkazam.com/landing/jamtracks/loverboy-working-for-the-weekend,Tency Music,30068 +Neil Young,Heart Of Gold,https://www.jamkazam.com/landing/jamtracks/neil-young-heart-of-gold,Tency Music,6901 +Scorpions,Wind Of Change,https://www.jamkazam.com/landing/jamtracks/scorpions-wind-of-change,Tency Music,6120 +Rick James,Superfreak,https://www.jamkazam.com/landing/jamtracks/rick-james-superfreak,Tency Music,13945 +Lady Antebellum,Need You Now,https://www.jamkazam.com/landing/jamtracks/lady-antebellum-need-you-now,Tency Music,25407 +Pink Floyd,Young Lust,https://www.jamkazam.com/landing/jamtracks/pink-floyd-young-lust,Tency Music,38931 +The Cure,Friday I'm In Love,https://www.jamkazam.com/landing/jamtracks/the-cure-friday-im-in-love,Tency Music,13850 +Rush,The Trees,https://www.jamkazam.com/landing/jamtracks/rush-the-trees,Tency Music,42199 +Bad Company,Bad Company,https://www.jamkazam.com/landing/jamtracks/bad-company-bad-company,Music Master Exchange LLC, +Skillet,Awake And Alive,https://www.jamkazam.com/landing/jamtracks/skillet-awake-and-alive,Tency Music,37975 +Santana,I Love You Much Too Much,https://www.jamkazam.com/landing/jamtracks/santana-i-love-you-much-too-much,Tency Music,39736 +T.I.,No Mediocre,https://www.jamkazam.com/landing/jamtracks/ti-no-mediocre,Tency Music,47483 +The Tubes,She's A Beauty,https://www.jamkazam.com/landing/jamtracks/the-tubes-shes-a-beauty,Tency Music,33561 +Carrie Underwood,Something In The Water,https://www.jamkazam.com/landing/jamtracks/carrie-underwood-something-in-the-water,Tency Music,47747 +Foo Fighters,Learn To Fly,https://www.jamkazam.com/landing/jamtracks/foo-fighters-learn-to-fly,Tency Music,8818 +Van Halen,Ain't Talkin Bout Love,https://www.jamkazam.com/landing/jamtracks/van-halen-aint-talkin-bout-love,Tency Music,47395 +Edwin Starr,War,https://www.jamkazam.com/landing/jamtracks/edwin-starr-war,Tency Music,15648 +Metallica,For Whom The Bell Tolls,https://www.jamkazam.com/landing/jamtracks/metallica-for-whom-the-bell-tolls,Damage Inc., +Peter Frampton,Do You Feel Like I Do,https://www.jamkazam.com/landing/jamtracks/peter-frampton-do-you-feel-like-i-do,Tency Music,30120 +Red Hot Chili Peppers,Breaking The Girl,https://www.jamkazam.com/landing/jamtracks/red-hot-chili-peppers-breaking-the-girl,Tency Music,21275 +Jason Mraz,I Won't Give Up,https://www.jamkazam.com/landing/jamtracks/jason-mraz-i-wont-give-up,Tency Music,39380 +Bruno Mars,Treasure,https://www.jamkazam.com/landing/jamtracks/bruno-mars-treasure,Tency Music,43260 +Badfinger,Baby Blue,https://www.jamkazam.com/landing/jamtracks/badfinger-baby-blue,Tency Music,31381 +Steely Dan,Dirty Work,https://www.jamkazam.com/landing/jamtracks/steely-dan-dirty-work,Tency Music,18469 +Seals And Crofts,Summer Breeze,https://www.jamkazam.com/landing/jamtracks/seals-and-crofts-summer-breeze,Tency Music,40275 +Selena Gomez,The Heart Wants What It Wants,https://www.jamkazam.com/landing/jamtracks/selena-gomez-the-heart-wants-what-it-wants,Tency Music,48026 +Ed Sheeran,I See Fire,https://www.jamkazam.com/landing/jamtracks/ed-sheeran-i-see-fire,Tency Music,45635 +The 1975,Chocolate,https://www.jamkazam.com/landing/jamtracks/the-1975-chocolate,Tency Music,43276 +U2,Desire,https://www.jamkazam.com/landing/jamtracks/u2-desire,Tency Music,12708 +Texas Tornados,A Little Bit Is Better Than Nada,https://www.jamkazam.com/landing/jamtracks/texas-tornados-a-little-bit-is-better-than-nada,Tency Music,39972 +Katy Perry,Hot 'N' Cold,https://www.jamkazam.com/landing/jamtracks/katy-perry-hot-n-cold,Tency Music,20788 +Oasis,Don't Look Back In Anger,https://www.jamkazam.com/landing/jamtracks/oasis-dont-look-back-in-anger,Tency Music,11038 +Rage Against The Machine,Killing In The Name,https://www.jamkazam.com/landing/jamtracks/rage-against-the-machine-killing-in-the-name,Tency Music,14469 +Buddy Guy,Damn Right I've Got The Blues,https://www.jamkazam.com/landing/jamtracks/buddy-guy-damn-right-ive-got-the-blues,Tency Music,8545 +Patsy Cline,Crazy,https://www.jamkazam.com/landing/jamtracks/patsy-cline-crazy,Tency Music,6126 +Cream,Sunshine Of Your Love,https://www.jamkazam.com/landing/jamtracks/cream-sunshine-of-your-love,Tency Music,21709 +Luke Bryan,Drunk On You,https://www.jamkazam.com/landing/jamtracks/luke-bryan-drunk-on-you,Tency Music,40260 +Dire Straits,Romeo And Juliet,https://www.jamkazam.com/landing/jamtracks/dire-straits-romeo-and-juliet,Tency Music,13174 +Stevie Ray Vaughan,Life By The Drop,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-life-by-the-drop,Tency Music,47877 +Gospel Singer,Rock Of Ages,https://www.jamkazam.com/landing/jamtracks/gospel-singer-rock-of-ages,Tency Music,24794 +The Doobie Brothers,Long Train Runnin,https://www.jamkazam.com/landing/jamtracks/the-doobie-brothers-long-train-runnin,Tency Music,14594 +Adele,Rolling In The Deep,https://www.jamkazam.com/landing/jamtracks/adele-rolling-in-the-deep,Tency Music,35287 +The Pretenders,Brass In Pocket,https://www.jamkazam.com/landing/jamtracks/the-pretenders-brass-in-pocket,Tency Music,7121 +The Commodores,Nightshift,https://www.jamkazam.com/landing/jamtracks/the-commodores-nightshift,Tency Music,17447 +Maroon 5,One More Night,https://www.jamkazam.com/landing/jamtracks/maroon-5-one-more-night,Tency Music,41078 +The Doors,Back Door Man,https://www.jamkazam.com/landing/jamtracks/the-doors-back-door-man,Tency Music,6483 +One Direction,Night Changes,https://www.jamkazam.com/landing/jamtracks/one-direction-night-changes,Tency Music,48177 +Bob Marley,Buffalo Soldier,https://www.jamkazam.com/landing/jamtracks/bob-marley-buffalo-soldier,Tency Music,13151 +Corrosion Of Conformity,Albatross,https://www.jamkazam.com/landing/jamtracks/corrosion-of-conformity-albatross,Tency Music,42490 +Cascada,Evacuate the Dancefloor,https://www.jamkazam.com/landing/jamtracks/cascada-evacuate-the-dancefloor,Paris Music,S2956 +The Carter Family,Can The Circle Be Unbroken By And By,https://www.jamkazam.com/landing/jamtracks/the-carter-family-can-the-circle-be-unbroken-by-and-by,Tency Music,28770 +Sara Bareilles,Gravity,https://www.jamkazam.com/landing/jamtracks/sara-bareilles-gravity,Tency Music,20946 +Sum 41,In Too Deep,https://www.jamkazam.com/landing/jamtracks/sum-41-in-too-deep,Tency Music,30764 +Diana Ross,I'm Coming Out,https://www.jamkazam.com/landing/jamtracks/diana-ross-im-coming-out,Tency Music,20892 +Calvin Harris,Summer,https://www.jamkazam.com/landing/jamtracks/calvin-harris-summer,Tency Music,46657 +Carrie Underwood,Good Girl,https://www.jamkazam.com/landing/jamtracks/carrie-underwood-good-girl,Tency Music,39879 +Bruno Mars,Uptown Funk,https://www.jamkazam.com/landing/jamtracks/bruno-mars-uptown-funk,Tency Music,48052 +The Shirelles,Mama Said,https://www.jamkazam.com/landing/jamtracks/the-shirelles-mama-said,Tency Music,8159 +Robert Palmer,Addicted To Love,https://www.jamkazam.com/landing/jamtracks/robert-palmer-addicted-to-love,Tency Music,6440 +The Beach Boys,Sloop John B,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-sloop-john-b,Tency Music,27842 +Blue Oyster Cult,Godzilla,https://www.jamkazam.com/landing/jamtracks/blue-oyster-cult-godzilla,Tency Music,31403 +Taylor Swift,Breathe,https://www.jamkazam.com/landing/jamtracks/taylor-swift-breathe,Tency Music,22571 +Josh Turner,Your Man,https://www.jamkazam.com/landing/jamtracks/josh-turner-your-man,Tency Music,16401 +Santana,The Sensitive Kind,https://www.jamkazam.com/landing/jamtracks/santana-the-sensitive-kind,Tency Music,7641 +Electric Light Orchestra,Telephone Line,https://www.jamkazam.com/landing/jamtracks/electric-light-orchestra-telephone-line,Tency Music,37865 +Jerry Lee Lewis,Rockin My Life Away,https://www.jamkazam.com/landing/jamtracks/jerry-lee-lewis-rockin-my-life-away,Tency Music,16283 +The Beatles,Blackbird,https://www.jamkazam.com/landing/jamtracks/the-beatles-blackbird,Tency Music,21432 +Tom Petty,Here Comes My Girl,https://www.jamkazam.com/landing/jamtracks/tom-petty-here-comes-my-girl,Tency Music,48843 +Foreigner,Juke Box Hero,https://www.jamkazam.com/landing/jamtracks/foreigner-juke-box-hero,Tency Music,40261 +Lady Antebellum,Bartender,https://www.jamkazam.com/landing/jamtracks/lady-antebellum-bartender,Tency Music,47015 +The Bangles,Eternal Flame,https://www.jamkazam.com/landing/jamtracks/the-bangles-eternal-flame,Tency Music,12709 +Breaking Benjamin,The Diary Of Jane,https://www.jamkazam.com/landing/jamtracks/breaking-benjamin-the-diary-of-jane,Tency Music,15221 +John Mayer,Your Body Is A Wonderland,https://www.jamkazam.com/landing/jamtracks/john-mayer-your-body-is-a-wonderland,Tency Music,6950 +Trace Adkins,Honky Tonk Badonkadonk,https://www.jamkazam.com/landing/jamtracks/trace-adkins-honky-tonk-badonkadonk,Tency Music,5661 +The Commodores,Easy,https://www.jamkazam.com/landing/jamtracks/the-commodores-easy,Tency Music,13677 +Jake Owen,Beachin,https://www.jamkazam.com/landing/jamtracks/jake-owen-beachin,Tency Music,47411 +Willie Nelson,Blue Eyes Crying In The Rain,https://www.jamkazam.com/landing/jamtracks/willie-nelson-blue-eyes-crying-in-the-rain,Tency Music,6629 +Cheap Trick,Surrender,https://www.jamkazam.com/landing/jamtracks/cheap-trick-surrender,Tency Music,34960 +Van Halen,Ice Cream Man,https://www.jamkazam.com/landing/jamtracks/van-halen-ice-cream-man,Tency Music,17713 +Tom Petty,Into The Great Wide Open,https://www.jamkazam.com/landing/jamtracks/tom-petty-into-the-great-wide-open,Tency Music,15193 +Madonna,Vogue,https://www.jamkazam.com/landing/jamtracks/madonna-vogue,Tency Music,6330 +Maroon 5,Harder To Breathe,https://www.jamkazam.com/landing/jamtracks/maroon-5-harder-to-breathe,Tency Music,6218 +The Beatles,Paperback Writer,https://www.jamkazam.com/landing/jamtracks/the-beatles-paperback-writer,Tency Music,17089 +Jimmy Cliff,I Can See Clearly Now,https://www.jamkazam.com/landing/jamtracks/jimmy-cliff-i-can-see-clearly-now,Tency Music,11403 +The Cardigans,Lovefool,https://www.jamkazam.com/landing/jamtracks/the-cardigans-lovefool,Tency Music,11210 +Papa Roach,Last Resort,https://www.jamkazam.com/landing/jamtracks/papa-roach-last-resort,Tency Music,29535 +Joss Stone,Super Duper Love,https://www.jamkazam.com/landing/jamtracks/joss-stone-super-duper-love,Tency Music,5263 +ZZ Top,Blue Jean Blues,https://www.jamkazam.com/landing/jamtracks/zz-top-blue-jean-blues,Tency Music,24406 +LMFAO,Party Rock Anthem,https://www.jamkazam.com/landing/jamtracks/lmfao-party-rock-anthem,Tency Music,36646 +Madonna,Borderline,https://www.jamkazam.com/landing/jamtracks/madonna-borderline,Tency Music,6376 +Muse,Starlight,https://www.jamkazam.com/landing/jamtracks/muse-starlight,Tency Music,12552 +Ella Fitzgerald,Night And Day,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-night-and-day,Tency Music,35718 +Franz Ferdinand,Take Me Out,https://www.jamkazam.com/landing/jamtracks/franz-ferdinand-take-me-out,Tency Music,5324 +Steve Miller Band,Abracadabra,https://www.jamkazam.com/landing/jamtracks/steve-miller-band-abracadabra,Tency Music,14053 +Fun,Carry On,https://www.jamkazam.com/landing/jamtracks/fun-carry-on,Tency Music,41273 +The Fugees,Killing Me Softly,https://www.jamkazam.com/landing/jamtracks/the-fugees-killing-me-softly,Tency Music,10815 +Bob Marley,Redemption Song,https://www.jamkazam.com/landing/jamtracks/bob-marley-redemption-song,Tency Music,21928 +Peggy Lee,Why Don't You Do Right,https://www.jamkazam.com/landing/jamtracks/peggy-lee-why-dont-you-do-right,Tency Music,18990 +Erasure,A Little Respect,https://www.jamkazam.com/landing/jamtracks/erasure-a-little-respect,Tency Music,13543 +Willie Nelson,Blue Skies,https://www.jamkazam.com/landing/jamtracks/willie-nelson-blue-skies,Tency Music,27606 +The Who,See Me Feel Me,https://www.jamkazam.com/landing/jamtracks/the-who-see-me-feel-me,Tency Music,33268 +Steely Dan,Deacon Blues,https://www.jamkazam.com/landing/jamtracks/steely-dan-deacon-blues,Tency Music,18473 +The Tokens,The Lion Sleeps Tonight,https://www.jamkazam.com/landing/jamtracks/the-tokens-the-lion-sleeps-tonight,Tency Music,9450 +The Kinks,You Really Got Me,https://www.jamkazam.com/landing/jamtracks/the-kinks-you-really-got-me,Tency Music,12706 +The Beatles,We Can Work It Out,https://www.jamkazam.com/landing/jamtracks/the-beatles-we-can-work-it-out,Tency Music,17087 +Gospel Singer,Tell Me The Story Of Jesus,https://www.jamkazam.com/landing/jamtracks/gospel-singer-tell-me-the-story-of-jesus,Tency Music,24172 +Robert Cray,Phone Booth,https://www.jamkazam.com/landing/jamtracks/robert-cray-phone-booth,Tency Music,24570 +Men At Work,Who Can It Be Now,https://www.jamkazam.com/landing/jamtracks/men-at-work-who-can-it-be-now,Tency Music,31764 +Jethro Tull,Locomotive Breath,https://www.jamkazam.com/landing/jamtracks/jethro-tull-locomotive-breath,Tency Music,30430 +Billy Idol,White Wedding,https://www.jamkazam.com/landing/jamtracks/billy-idol-white-wedding,Tency Music,13752 +Wings,Band On The Run,https://www.jamkazam.com/landing/jamtracks/wings-band-on-the-run,Tency Music,7508 +Katie Melua,If You Were a Sailboat,https://www.jamkazam.com/landing/jamtracks/katie-melua-if-you-were-a-sailboat,Paris Music,S2319 +Aretha Franklin,Respect,https://www.jamkazam.com/landing/jamtracks/aretha-franklin-respect,Paris Music,S0767 +Celia Cruz,Azucar Negra,https://www.jamkazam.com/landing/jamtracks/celia-cruz-azucar-negra,Tency Music,33245 +Rihanna,Disturbia,https://www.jamkazam.com/landing/jamtracks/rihanna-disturbia,Paris Music,S2837 +Queen,I Want To Break Free,https://www.jamkazam.com/landing/jamtracks/queen-i-want-to-break-free,Paris Music,S3790 +The Four Tops,Baby I Need Your Loving,https://www.jamkazam.com/landing/jamtracks/the-four-tops-baby-i-need-your-loving,Paris Music,S0578 +Tina Arena,Chains,https://www.jamkazam.com/landing/jamtracks/tina-arena-chains,Paris Music,S1827 +Roy Orbison,Penny Arcade,https://www.jamkazam.com/landing/jamtracks/roy-orbison-penny-arcade,Paris Music,S1436 +No Doubt,It's My Life,https://www.jamkazam.com/landing/jamtracks/no-doubt-its-my-life,Tency Music,5778 +Slade,Mama We're All Crazy Now,https://www.jamkazam.com/landing/jamtracks/slade-mama-were-all-crazy-now,Paris Music,S0583 +Hall And Oates,Maneater,https://www.jamkazam.com/landing/jamtracks/hall-and-oates-maneater,Tency Music,10820 +Stone Temple Pilots,Creep,https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-creep,Tency Music,38295 +System Of A Down,Aerials,https://www.jamkazam.com/landing/jamtracks/system-of-a-down-aerials,Tency Music,18431 +Elton John,Levon,https://www.jamkazam.com/landing/jamtracks/elton-john-levon,Paris Music,S2186 +Alvin Stardust,My Coo Ca Choo,https://www.jamkazam.com/landing/jamtracks/alvin-stardust-my-coo-ca-choo,Paris Music,S1030 +Byron Lee,Hot Hot Hot,https://www.jamkazam.com/landing/jamtracks/byron-lee-hot-hot-hot,Paris Music,S3384 +Abba,Chiquitita,https://www.jamkazam.com/landing/jamtracks/abba-chiquitita,Paris Music,S0802 +The Beatles,I Want To Hold Your Hand,https://www.jamkazam.com/landing/jamtracks/the-beatles-i-want-to-hold-your-hand,Music Master Exchange LLC, +The Kinks,Dedicated Follower of Fashion,https://www.jamkazam.com/landing/jamtracks/the-kinks-dedicated-follower-of-fashion,Paris Music,S2908 +The Eagles,Desperado,https://www.jamkazam.com/landing/jamtracks/the-eagles-desperado,Paris Music,S0264 +Oasis,Wonderwall,https://www.jamkazam.com/landing/jamtracks/oasis-wonderwall,Tency Music,11335 +Hall And Oates,She's Gone,https://www.jamkazam.com/landing/jamtracks/hall-and-oates-shes-gone,Tency Music,15974 +The Cure,Love Cats,https://www.jamkazam.com/landing/jamtracks/the-cure-love-cats,Paris Music,S2027 +Dion & The Belmonts,Wanderer,https://www.jamkazam.com/landing/jamtracks/dion--the-belmonts-wanderer,Paris Music,S1364 +The Pogues,Fairytale Of New York,https://www.jamkazam.com/landing/jamtracks/the-pogues-fairytale-of-new-york,Tency Music,12423 +Led Zeppelin,Ten Years Gone,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-ten-years-gone,Music Master Exchange LLC, +Sade,Smooth Operator,https://www.jamkazam.com/landing/jamtracks/sade-smooth-operator,Paris Music,S0007 +Dusty Springfield,I Only Wanna Be With You,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-i-only-wanna-be-with-you,Paris Music,S0211 +Boyzone,Love You Anyway,https://www.jamkazam.com/landing/jamtracks/boyzone-love-you-anyway,Paris Music,S2683 +Elton John,Don't Let The Sun Go Down On Me,https://www.jamkazam.com/landing/jamtracks/elton-john-dont-let-the-sun-go-down-on-me,Tency Music,6096 +The Cure,Close To Me,https://www.jamkazam.com/landing/jamtracks/the-cure-close-to-me,Tency Music,43691 +Marty Wilde,Sea of Love,https://www.jamkazam.com/landing/jamtracks/marty-wilde-sea-of-love,Paris Music,S1347 +Simon & Garfunkel,Homeward Bound,https://www.jamkazam.com/landing/jamtracks/simon--garfunkel-homeward-bound,Paris Music,S0248 +Charlie Rich,Most Beautiful Girl In the World,https://www.jamkazam.com/landing/jamtracks/charlie-rich-most-beautiful-girl-in-the-world,Paris Music,S3821 +Tommy Tutone,867-5309 Jenny,https://www.jamkazam.com/landing/jamtracks/tommy-tutone-867-5309-jenny,Tency Music,28758 +Elvis Costello,Pump It Up,https://www.jamkazam.com/landing/jamtracks/elvis-costello-pump-it-up,Paris Music,S1640 +Robbie Williams,Strong,https://www.jamkazam.com/landing/jamtracks/robbie-williams-strong,Paris Music,S0416 +Blue,One Love,https://www.jamkazam.com/landing/jamtracks/blue-one-love,Paris Music,S0247 +Taylor Swift,A Perfectly Good Heart,https://www.jamkazam.com/landing/jamtracks/taylor-swift-a-perfectly-good-heart,Tency Music,44767 +Michael Buble,Foggy Day,https://www.jamkazam.com/landing/jamtracks/michael-buble-foggy-day,Paris Music,S3201 +Boz Scaggs,Sierra,https://www.jamkazam.com/landing/jamtracks/boz-scaggs-sierra,Paris Music,S1961 +Red Hot Chili Peppers,Otherside,https://www.jamkazam.com/landing/jamtracks/red-hot-chili-peppers-otherside,Tency Music,8917 +Elvis Presley,Always On My Mind,https://www.jamkazam.com/landing/jamtracks/elvis-presley-always-on-my-mind,Paris Music,S3034 +Frankie Goes To Hollywood,Relax,https://www.jamkazam.com/landing/jamtracks/frankie-goes-to-hollywood-relax,Paris Music,S2666 +The Cure,Just Like Heaven,https://www.jamkazam.com/landing/jamtracks/the-cure-just-like-heaven,Tency Music,18037 +The Eagles,Lyin' Eyes,https://www.jamkazam.com/landing/jamtracks/the-eagles-lyin-eyes,Paris Music,S0172 +Bad Manners,Woolly Bully,https://www.jamkazam.com/landing/jamtracks/bad-manners-woolly-bully,Paris Music,S2678 +Fats Domino,Ain't That A Shame,https://www.jamkazam.com/landing/jamtracks/fats-domino-aint-that-a-shame,Tency Music,7114 +Meatloaf,You Took the Words Right Out of My Mouth,https://www.jamkazam.com/landing/jamtracks/meatloaf-you-took-the-words-right-out-of-my-mouth,Paris Music,S0097 +Abba,S.O.S.,https://www.jamkazam.com/landing/jamtracks/abba-sos,Paris Music,S0804 +Dire Straits,Walk Of Life,https://www.jamkazam.com/landing/jamtracks/dire-straits-walk-of-life,Tency Music,5569 +The Monkees,Daydream Believer,https://www.jamkazam.com/landing/jamtracks/the-monkees-daydream-believer,Paris Music,S0045 +U2,All I Want Is You,https://www.jamkazam.com/landing/jamtracks/u2-all-i-want-is-you,Tency Music,12569 +Coheed And Cambria,A Favor House Atlantic,https://www.jamkazam.com/landing/jamtracks/coheed-and-cambria-a-favor-house-atlantic,Tency Music,29039 +Kylie Minogue,In Your Eyes,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-in-your-eyes,Paris Music,S0076 +Bill Withers,Lovely Day,https://www.jamkazam.com/landing/jamtracks/bill-withers-lovely-day,Tency Music,13842 +Madonna,Like a Virgin,https://www.jamkazam.com/landing/jamtracks/madonna-like-a-virgin,Paris Music,S0432 +Tom Jones,She's a Lady,https://www.jamkazam.com/landing/jamtracks/tom-jones-shes-a-lady,Paris Music,S4288 +Van Morrison,Gloria,https://www.jamkazam.com/landing/jamtracks/van-morrison-gloria,Tency Music,39222 +Van Morrison,Days Like This,https://www.jamkazam.com/landing/jamtracks/van-morrison-days-like-this,Tency Music,45137 +Ottis Redding,Hard To Handle,https://www.jamkazam.com/landing/jamtracks/ottis-redding-hard-to-handle,Paris Music,S2342 +Take That,When They Were Young Medley,https://www.jamkazam.com/landing/jamtracks/take-that-when-they-were-young-medley,Paris Music,S3855 +The Rolling Stones,It's Only Rock And Roll,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-its-only-rock-and-roll,Tency Music,28800 +Shakin' Stevens,Blue Christmas,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-blue-christmas,Paris Music,S1377 +Elvis Costello,Everyday I Write the Book,https://www.jamkazam.com/landing/jamtracks/elvis-costello-everyday-i-write-the-book,Paris Music,S1655 +James Taylor,Fire And Rain,https://www.jamkazam.com/landing/jamtracks/james-taylor-fire-and-rain,Tency Music,9811 +Chicago,If You Leave Me Now,https://www.jamkazam.com/landing/jamtracks/chicago-if-you-leave-me-now,Paris Music,S3385 +Buddy Knox,Party Doll,https://www.jamkazam.com/landing/jamtracks/buddy-knox-party-doll,Paris Music,S1361 +The Script,Superheroes,https://www.jamkazam.com/landing/jamtracks/the-script-superheroes,Tency Music,47572 +Diana Ross,I'm Still Waiting,https://www.jamkazam.com/landing/jamtracks/diana-ross-im-still-waiting,Paris Music,S3016 +Jamie Cullum,These Are the Days,https://www.jamkazam.com/landing/jamtracks/jamie-cullum-these-are-the-days,Paris Music,S0781 +Sam Brown,Stop,https://www.jamkazam.com/landing/jamtracks/sam-brown-stop,Paris Music,S0129 +Within Temptation,Faster,https://www.jamkazam.com/landing/jamtracks/within-temptation-faster,Tency Music,36792 +Madness,Madness,https://www.jamkazam.com/landing/jamtracks/madness-madness,Paris Music,S3030 +Perry Como,Catch a Falling Star,https://www.jamkazam.com/landing/jamtracks/perry-como-catch-a-falling-star,Paris Music,S1574 +B.o.B.,Airplanes,https://www.jamkazam.com/landing/jamtracks/bob-airplanes,Tency Music,30208 +Ry Cooder,Little Sister,https://www.jamkazam.com/landing/jamtracks/ry-cooder-little-sister,Paris Music,S3208 +The Legarde Twins,I've Been Everywhere,https://www.jamkazam.com/landing/jamtracks/the-legarde-twins-ive-been-everywhere,Paris Music,S4178 +Fleetwood Mac,The Chain,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-the-chain,Tency Music,37306 +Bob Seger,Her Strut,https://www.jamkazam.com/landing/jamtracks/bob-seger-her-strut,Music Master Exchange LLC, +Lonestar,Amazed,https://www.jamkazam.com/landing/jamtracks/lonestar-amazed,Paris Music,S0296 +The Beatles,Something,https://www.jamkazam.com/landing/jamtracks/the-beatles-something,Music Master Exchange LLC, +Glee Cast,Jump,https://www.jamkazam.com/landing/jamtracks/glee-cast-jump,Paris Music,S3401 +Cher,If I Could Turn Back Time,https://www.jamkazam.com/landing/jamtracks/cher-if-i-could-turn-back-time,Paris Music,S0426 +The Small Faces,Itchycoo Park,https://www.jamkazam.com/landing/jamtracks/the-small-faces-itchycoo-park,Paris Music,S2335 +Herman's Hermits,There's A Kind of Hush,https://www.jamkazam.com/landing/jamtracks/hermans-hermits-theres-a-kind-of-hush,Paris Music,S1104 +Frank Sinatra,Bad Bad Leroy Brown,https://www.jamkazam.com/landing/jamtracks/frank-sinatra-bad-bad-leroy-brown,Paris Music,S0813 +Jamey Johnson,In Color,https://www.jamkazam.com/landing/jamtracks/jamey-johnson-in-color,Tency Music,26102 +The Guess Who,No Time,https://www.jamkazam.com/landing/jamtracks/the-guess-who-no-time,Tency Music,29175 +Eurythmics,When Tomorrow Comes,https://www.jamkazam.com/landing/jamtracks/eurythmics-when-tomorrow-comes,Paris Music,S2021 +The Carpenters,Goodbye To Love,https://www.jamkazam.com/landing/jamtracks/the-carpenters-goodbye-to-love,Paris Music,S1610 +Pixie Lott,Boys & Girls,https://www.jamkazam.com/landing/jamtracks/pixie-lott-boys--girls,Paris Music,S2963 +Blondie,Dreaming,https://www.jamkazam.com/landing/jamtracks/blondie-dreaming,Paris Music,S1041 +Michael Jackson,Billie Jean,https://www.jamkazam.com/landing/jamtracks/michael-jackson-billie-jean,Paris Music,S2673 +Meatloaf,I'd Do Anything for Love (but I Won't Do That),https://www.jamkazam.com/landing/jamtracks/meatloaf-id-do-anything-for-love-but-i-wont-do-that,Paris Music,S0098 +Helen Shapiro,Walking Back To Happiness,https://www.jamkazam.com/landing/jamtracks/helen-shapiro-walking-back-to-happiness,Paris Music,S0197 +The Jam,In the City,https://www.jamkazam.com/landing/jamtracks/the-jam-in-the-city,Paris Music,S1050 +Whitney Houston,I Wanna Dance With Somebody,https://www.jamkazam.com/landing/jamtracks/whitney-houston-i-wanna-dance-with-somebody,Paris Music,S2685 +Johnny Tillotson,Poetry In Motion,https://www.jamkazam.com/landing/jamtracks/johnny-tillotson-poetry-in-motion,Paris Music,S1282 +The Rolling Stones,Satisfaction,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-satisfaction,Paris Music,S0216 +Madonna,Crazy for You,https://www.jamkazam.com/landing/jamtracks/madonna-crazy-for-you,Paris Music,S0351 +Asleep At The Wheel,Route 66,https://www.jamkazam.com/landing/jamtracks/asleep-at-the-wheel-route-66,Paris Music,S4543 +Freda Payne,Band of Gold,https://www.jamkazam.com/landing/jamtracks/freda-payne-band-of-gold,Paris Music,S3203 +Bruce Springsteen,Born In the USA,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-born-in-the-usa,Paris Music,S4216 +Bruce Springsteen,Cover Me,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-cover-me,Tency Music,11348 +Patty Loveless,Blame It On Your Heart,https://www.jamkazam.com/landing/jamtracks/patty-loveless-blame-it-on-your-heart,Tency Music,5889 +Michael Buble,To Love Somebody,https://www.jamkazam.com/landing/jamtracks/michael-buble-to-love-somebody,Paris Music,S4554 +Peggy Lee,I'm A Woman,https://www.jamkazam.com/landing/jamtracks/peggy-lee-im-a-woman,Tency Music,18989 +50 Cent,In Da Club,https://www.jamkazam.com/landing/jamtracks/50-cent-in-da-club,Tency Music,12410 +The Sweet,Wig Wam Bam,https://www.jamkazam.com/landing/jamtracks/the-sweet-wig-wam-bam,Paris Music,S0221 +Girls Aloud,The Promise,https://www.jamkazam.com/landing/jamtracks/girls-aloud-the-promise,Paris Music,S2694 +Garbage,Cherry Lips,https://www.jamkazam.com/landing/jamtracks/garbage-cherry-lips,Paris Music,S2074 +Santana,Evil Ways,https://www.jamkazam.com/landing/jamtracks/santana-evil-ways,Tency Music,7625 +Dolly Parton,9 To 5,https://www.jamkazam.com/landing/jamtracks/dolly-parton-9-to-5,Tency Music,11099 +Space,Female of the Species,https://www.jamkazam.com/landing/jamtracks/space-female-of-the-species,Paris Music,S0010 +Jilted John,Jilted John,https://www.jamkazam.com/landing/jamtracks/jilted-john-jilted-john,Paris Music,S1056 +Glee Cast,Defying Gravity,https://www.jamkazam.com/landing/jamtracks/glee-cast-defying-gravity,Paris Music,S3410 +Blondie,Rapture,https://www.jamkazam.com/landing/jamtracks/blondie-rapture,Paris Music,S2230 +The Stranglers,No More Heroes,https://www.jamkazam.com/landing/jamtracks/the-stranglers-no-more-heroes,Paris Music,S1053 +ABBA,The Winner Takes It All,https://www.jamkazam.com/landing/jamtracks/abba-the-winner-takes-it-all,Tency Music,5483 +Yazoo,Situation,https://www.jamkazam.com/landing/jamtracks/yazoo-situation,Paris Music,S0028 +DJ Sammy,Boys of Summer,https://www.jamkazam.com/landing/jamtracks/dj-sammy-boys-of-summer,Paris Music,S0374 +Dire Straits,Money For Nothing,https://www.jamkazam.com/landing/jamtracks/dire-straits-money-for-nothing,Tency Music,6263 +Otis Redding,Dock of the Bay,https://www.jamkazam.com/landing/jamtracks/otis-redding-dock-of-the-bay,Paris Music,S0669 +The Skids,Into the Valley,https://www.jamkazam.com/landing/jamtracks/the-skids-into-the-valley,Paris Music,S1051 +Colbie Caillat,Bubbly,https://www.jamkazam.com/landing/jamtracks/colbie-caillat-bubbly,Paris Music,S2616 +Led Zeppelin,Rock And Roll,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-rock-and-roll,Music Master Exchange LLC, +Spin Doctors,Two Princes,https://www.jamkazam.com/landing/jamtracks/spin-doctors-two-princes,Paris Music,S2339 +Sheryl Crow & Sting,Always On Your Side,https://www.jamkazam.com/landing/jamtracks/sheryl-crow--sting-always-on-your-side,Paris Music,S2235 +The Rolling Stones,Ruby Tuesday,https://www.jamkazam.com/landing/jamtracks/the-rolling-stones-ruby-tuesday,Tency Music,11358 +Anastacia,Left Outside Alone,https://www.jamkazam.com/landing/jamtracks/anastacia-left-outside-alone,Paris Music,S0890 +Tommy James & The Shondells,Mony Mony,https://www.jamkazam.com/landing/jamtracks/tommy-james--the-shondells-mony-mony,Paris Music,S2447 +Grace Potter,Something That I Want,https://www.jamkazam.com/landing/jamtracks/grace-potter-something-that-i-want,Tency Music,37602 +George Mccrae,Rock Your Baby,https://www.jamkazam.com/landing/jamtracks/george-mccrae-rock-your-baby,Paris Music,S1939 +Gabrielle,Out of Reach,https://www.jamkazam.com/landing/jamtracks/gabrielle-out-of-reach,Paris Music,S0901 +Eartha Kitt,Santa Baby,https://www.jamkazam.com/landing/jamtracks/eartha-kitt-santa-baby,Paris Music,S1368 +The Beatles,Drive My Car (A Cappella),https://www.jamkazam.com/landing/jamtracks/the-beatles-drive-my-car-acapella,Tim Waurick, +Abc,Look of Love,https://www.jamkazam.com/landing/jamtracks/abc-look-of-love,Paris Music,S4361 +Nelly & Kelly,Dilemma,https://www.jamkazam.com/landing/jamtracks/nelly--kelly-dilemma,Paris Music,S0918 +AC/DC,Thunderstruck,https://www.jamkazam.com/landing/jamtracks/acdc-thunderstruck,Back in Black LLC, +The Clash,Bank Robber,https://www.jamkazam.com/landing/jamtracks/the-clash-bank-robber,Paris Music,S1648 +The Supremes,Baby Love,https://www.jamkazam.com/landing/jamtracks/the-supremes-baby-love,Paris Music,S0205 +Zac Brown Band,Jolene,https://www.jamkazam.com/landing/jamtracks/zac-brown-band-jolene,Paris Music,S3864 +The Cars,Drive,https://www.jamkazam.com/landing/jamtracks/the-cars-drive,Paris Music,S0824 +AC/DC,Back In Black,https://www.jamkazam.com/landing/jamtracks/acdc-back-in-black,Back in Black LLC, +Ne-Yo,Closer,https://www.jamkazam.com/landing/jamtracks/ne-yo-closer,Tency Music,19385 +Gym Class Heroes,Ass Back Home,https://www.jamkazam.com/landing/jamtracks/gym-class-heroes-ass-back-home,Tency Music,39714 +Abba,Waterloo,https://www.jamkazam.com/landing/jamtracks/abba-waterloo,Paris Music,S0801 +James Arthur,Impossible,https://www.jamkazam.com/landing/jamtracks/james-arthur-impossible,Paris Music,S4159 +Enrique Iglesias,Loco,https://www.jamkazam.com/landing/jamtracks/enrique-iglesias-loco,Tency Music,45405 +Elvis Costello,She,https://www.jamkazam.com/landing/jamtracks/elvis-costello-she,Paris Music,S4561 +Smokie,Living Next Door To Alice,https://www.jamkazam.com/landing/jamtracks/smokie-living-next-door-to-alice,Tency Music,5479 +Tom Petty,American Girl,https://www.jamkazam.com/landing/jamtracks/tom-petty-american-girl,Tency Music,6657 +R.E.M.,The One I Love,https://www.jamkazam.com/landing/jamtracks/rem-the-one-i-love,Tency Music,18907 +Keane,Disconnected,https://www.jamkazam.com/landing/jamtracks/keane-disconnected,Paris Music,S4193 +Stevie Wonder,I Wish,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-i-wish,Tency Music,18444 +will.i.am,Thatpower,https://www.jamkazam.com/landing/jamtracks/william-thatpower,Tency Music,43474 +Coldplay,Fix You,https://www.jamkazam.com/landing/jamtracks/coldplay-fix-you,Tency Music,5372 +The Beatles,Hello Goodbye,https://www.jamkazam.com/landing/jamtracks/the-beatles-hello-goodbye,Music Master Exchange LLC, +Otis Redding,Love Man,https://www.jamkazam.com/landing/jamtracks/otis-redding-love-man,Paris Music,S1070 +Ed Sheeran,Sing,https://www.jamkazam.com/landing/jamtracks/ed-sheeran-sing,Paris Music,S4539 +AC/DC,Hells Bells,https://www.jamkazam.com/landing/jamtracks/acdc-hells-bells,Back in Black LLC, +Glee Cast,I'll Stand By You,https://www.jamkazam.com/landing/jamtracks/glee-cast-ill-stand-by-you,Paris Music,S3413 +Amy Winehouse,Will You Still Love Me Tomorrow,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-will-you-still-love-me-tomorrow,Paris Music,S2034 +The Specials,Gangsters,https://www.jamkazam.com/landing/jamtracks/the-specials-gangsters,Paris Music,S0048 +The Four Tops,Ain't No Woman Like The One I've Got,https://www.jamkazam.com/landing/jamtracks/the-four-tops-aint-no-woman-like-the-one-ive-got,Tency Music,17791 +Heart,Barracuda,https://www.jamkazam.com/landing/jamtracks/heart-barracuda,Music Master Exchange LLC, +Ocean Colour Scene,Riverboat Song,https://www.jamkazam.com/landing/jamtracks/ocean-colour-scene-riverboat-song,Paris Music,S0204 +Stereophonics,Handbags & Gladrags,https://www.jamkazam.com/landing/jamtracks/stereophonics-handbags--gladrags,Paris Music,S0445 +Pharrell Williams,Happy (A Cappella),https://www.jamkazam.com/landing/jamtracks/pharrell-williams-happy-acapella,Tim Waurick, +Tears For Fears,Shout,https://www.jamkazam.com/landing/jamtracks/tears-for-fears-shout,Paris Music,S0869 +Elvis Presley,Didja Ever,https://www.jamkazam.com/landing/jamtracks/elvis-presley-didja-ever,Paris Music,S3796 +Kylie Minogue,Two Hearts,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-two-hearts,Paris Music,S2322 +One Direction,Kiss You,https://www.jamkazam.com/landing/jamtracks/one-direction-kiss-you,Paris Music,S4195 +Puddle Of Mudd,She Hates Me,https://www.jamkazam.com/landing/jamtracks/puddle-of-mudd-she-hates-me,Tency Music,6952 +Devo,Whip It,https://www.jamkazam.com/landing/jamtracks/devo-whip-it,Tency Music,17492 +The Beatles,Hard Days Night,https://www.jamkazam.com/landing/jamtracks/the-beatles-hard-days-night,Paris Music,S0421 +Zac Brown Band,Homegrown,https://www.jamkazam.com/landing/jamtracks/zac-brown-band-homegrown,Tency Music,48677 +Josh Groban,You Are Loved (Don't Give Up),https://www.jamkazam.com/landing/jamtracks/josh-groban-you-are-loved-dont-give-up,Paris Music,S2035 +ABBA,Take A Chance On Me,https://www.jamkazam.com/landing/jamtracks/abba-take-a-chance-on-me,Tency Music,7303 +The Killers,Mr. Brightside,https://www.jamkazam.com/landing/jamtracks/the-killers-mr-brightside,Tency Music,5632 +Take That,Rule the World,https://www.jamkazam.com/landing/jamtracks/take-that-rule-the-world,Paris Music,S2314 +The Platters,Great Pretender,https://www.jamkazam.com/landing/jamtracks/the-platters-great-pretender,Paris Music,S1356 +Keith Urban,Stupid Boy,https://www.jamkazam.com/landing/jamtracks/keith-urban-stupid-boy,Tency Music,22402 +Elvis Presley,Guitar Man,https://www.jamkazam.com/landing/jamtracks/elvis-presley-guitar-man,Paris Music,S1644 +Bob Seger,Against The Wind,https://www.jamkazam.com/landing/jamtracks/bob-seger-against-the-wind,Music Master Exchange LLC, +Aerosmith,Dream On,https://www.jamkazam.com/landing/jamtracks/aerosmith-dream-on,Tency Music,14869 +Jethro Tull,Aqualung,https://www.jamkazam.com/landing/jamtracks/jethro-tull-aqualung,Tency Music,24397 +Carly Simon,You're so Vain,https://www.jamkazam.com/landing/jamtracks/carly-simon-youre-so-vain,Paris Music,S0435 +Regina Spektor,On The Radio,https://www.jamkazam.com/landing/jamtracks/regina-spektor-on-the-radio,Tency Music,28713 +Ludacris,How Low,https://www.jamkazam.com/landing/jamtracks/ludacris-how-low,Tency Music,27046 +Nancy Sinatra,These Boots Are Made For Walkin,https://www.jamkazam.com/landing/jamtracks/nancy-sinatra-these-boots-are-made-for-walkin,Tency Music,9965 +George Thorogood,Bad To The Bone,https://www.jamkazam.com/landing/jamtracks/george-thorogood-bad-to-the-bone,Tency Music,29023 +Phil Collins,In the Air Tonight,https://www.jamkazam.com/landing/jamtracks/phil-collins-in-the-air-tonight,Paris Music,S0263 +George Thorogood,Move It On Over,https://www.jamkazam.com/landing/jamtracks/george-thorogood-move-it-on-over,Tency Music,45217 +Sia,Elastic Heart,https://www.jamkazam.com/landing/jamtracks/sia-elastic-heart,Tency Music,47872 +Depeche Mode,I Feel You,https://www.jamkazam.com/landing/jamtracks/depeche-mode-i-feel-you,Paris Music,S1068 +Salt N Pepa,Shoop,https://www.jamkazam.com/landing/jamtracks/salt-n-pepa-shoop,Tency Music,30607 +From Jungle Book,I Wanna Be Like You,https://www.jamkazam.com/landing/jamtracks/from-jungle-book-i-wanna-be-like-you,Paris Music,S0200 +The Bee Gees,Massachusetts,https://www.jamkazam.com/landing/jamtracks/the-bee-gees-massachusetts,Paris Music,S3841 +Noisettes,Never Forget You,https://www.jamkazam.com/landing/jamtracks/noisettes-never-forget-you,Paris Music,S3021 +Madeleine Peyroux,Don't Wait Too Long,https://www.jamkazam.com/landing/jamtracks/madeleine-peyroux-dont-wait-too-long,Tency Music,38395 +U2,Bullet The Blue Sky,https://www.jamkazam.com/landing/jamtracks/u2-bullet-the-blue-sky,Tency Music,38896 +Will Young,Evergreen,https://www.jamkazam.com/landing/jamtracks/will-young-evergreen,Paris Music,S0027 +Pink Floyd,Time,https://www.jamkazam.com/landing/jamtracks/pink-floyd-time,Music Master Exchange LLC, +Sheryl Crow,The First Cut Is The Deepest,https://www.jamkazam.com/landing/jamtracks/sheryl-crow-the-first-cut-is-the-deepest,Tency Music,5772 +Abba,One of Us,https://www.jamkazam.com/landing/jamtracks/abba-one-of-us,Paris Music,S3025 +The Killers,When You Were Young,https://www.jamkazam.com/landing/jamtracks/the-killers-when-you-were-young,Tency Music,14105 +Rihanna,Stay,https://www.jamkazam.com/landing/jamtracks/rihanna-stay,Tency Music,42231 +Steely Dan,My Old School,https://www.jamkazam.com/landing/jamtracks/steely-dan-my-old-school,Tency Music,18465 +The Boomtown Rats,Rat Trap,https://www.jamkazam.com/landing/jamtracks/the-boomtown-rats-rat-trap,Paris Music,S1089 +The Police,Wrapped Around Your Finger,https://www.jamkazam.com/landing/jamtracks/the-police-wrapped-around-your-finger,Tency Music,11474 +The Doors,Soul Kitchen,https://www.jamkazam.com/landing/jamtracks/the-doors-soul-kitchen,Tency Music,42388 +John Lennon,Woman,https://www.jamkazam.com/landing/jamtracks/john-lennon-woman,Paris Music,S1371 +Tanya Tucker,Delta Dawn,https://www.jamkazam.com/landing/jamtracks/tanya-tucker-delta-dawn,Tency Music,18413 +Gretchen Wilson,Here For The Party,https://www.jamkazam.com/landing/jamtracks/gretchen-wilson-here-for-the-party,Tency Music,8394 +Jazzy Gershwin,Oh Lady Be Good,https://www.jamkazam.com/landing/jamtracks/jazzy-gershwin-oh-lady-be-good,Tency Music,35535 +From Annie,Tomorrow,https://www.jamkazam.com/landing/jamtracks/from-annie-tomorrow,Paris Music,S3033 +Iron Maiden,Fear Of The Dark,https://www.jamkazam.com/landing/jamtracks/iron-maiden-fear-of-the-dark,Tency Music,21879 +The Jeff Healey Band,I'm Tore Down,https://www.jamkazam.com/landing/jamtracks/the-jeff-healey-band-im-tore-down,Tency Music,47560 +Johnny Cash,Folsom Prison Blues,https://www.jamkazam.com/landing/jamtracks/johnny-cash-folsom-prison-blues,Tency Music,6656 +Erasure,Rain,https://www.jamkazam.com/landing/jamtracks/erasure-rain,Paris Music,S4196 +Paramore,Ain't It Fun,https://www.jamkazam.com/landing/jamtracks/paramore-aint-it-fun,Tency Music,43632 +Mud,Lonely This Christmas,https://www.jamkazam.com/landing/jamtracks/mud-lonely-this-christmas,Paris Music,S1382 +Little Eva,Locomotion,https://www.jamkazam.com/landing/jamtracks/little-eva-locomotion,Paris Music,S0214 +Inxs,Never Tear Us Apart,https://www.jamkazam.com/landing/jamtracks/inxs-never-tear-us-apart,Paris Music,S3679 +Motley Crue,Girls Girls Girls,https://www.jamkazam.com/landing/jamtracks/motley-crue-girls-girls-girls,Music Master Exchange LLC, +KT Tunstall,Suddenly I See,https://www.jamkazam.com/landing/jamtracks/kt-tunstall-suddenly-i-see,Tency Music,5368 +Abba,Angel Eyes,https://www.jamkazam.com/landing/jamtracks/abba-angel-eyes,Paris Music,S4745 +Led Zeppelin,Whole Lotta Love,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-whole-lotta-love,Music Master Exchange LLC, +Pearl Jam,Alive,https://www.jamkazam.com/landing/jamtracks/pearl-jam-alive,Music Master Exchange LLC, +Toto,Hold The Line,https://www.jamkazam.com/landing/jamtracks/toto-hold-the-line,Tency Music,10907 +Queen,Another One Bites The Dust,https://www.jamkazam.com/landing/jamtracks/queen-another-one-bites-the-dust,Music Master Exchange LLC, +Led Zeppelin,Dancing Days,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-dancing-days,Music Master Exchange LLC, +Vic Reeves & The Wonderstuff,Dizzy,https://www.jamkazam.com/landing/jamtracks/vic-reeves--the-wonderstuff-dizzy,Paris Music,S0206 +Alice Cooper,I'm Eighteen,https://www.jamkazam.com/landing/jamtracks/alice-cooper-im-eighteen,Music Master Exchange LLC, +Glee Cast,Hello Goodbye,https://www.jamkazam.com/landing/jamtracks/glee-cast-hello-goodbye,Paris Music,S3430 +Johnny & The Hurricanes,Red River Rock,https://www.jamkazam.com/landing/jamtracks/johnny--the-hurricanes-red-river-rock,Paris Music,S4750 +Metallica,One,https://www.jamkazam.com/landing/jamtracks/metallica-one,Damage Inc., +AC/DC,Dirty Deeds Done Dirt Cheap,https://www.jamkazam.com/landing/jamtracks/acdc-dirty-deeds-done-dirt-cheap,Back in Black LLC, +The Enemy,You're Not Alone,https://www.jamkazam.com/landing/jamtracks/the-enemy-youre-not-alone,Paris Music,S2356 +Alice Cooper,School's Out,https://www.jamkazam.com/landing/jamtracks/alice-cooper-schools-out,Music Master Exchange LLC, +Stone Temple Pilots,Plush,https://www.jamkazam.com/landing/jamtracks/stone-temple-pilots-plush,Tency Music,38612 +Gary Puckett & The Union Gap,Young Girl,https://www.jamkazam.com/landing/jamtracks/gary-puckett--the-union-gap-young-girl,Paris Music,S0733 +Guns N' Roses,Knockin' On Heaven's Door,https://www.jamkazam.com/landing/jamtracks/guns-n-roses-knockin-on-heavens-door,Chad Atkins, +Doris Day,Deadwood Stage,https://www.jamkazam.com/landing/jamtracks/doris-day-deadwood-stage,Paris Music,S2352 +Lulu,Shout,https://www.jamkazam.com/landing/jamtracks/lulu-shout,Paris Music,S0218 +The Beach Boys,Don't Worry Baby,https://www.jamkazam.com/landing/jamtracks/the-beach-boys-dont-worry-baby,Tency Music,12446 +Billy Ocean,Caribbean Queen,https://www.jamkazam.com/landing/jamtracks/billy-ocean-caribbean-queen,Paris Music,S4513 +Arrow,Hot Hot Hot,https://www.jamkazam.com/landing/jamtracks/arrow-hot-hot-hot,Paris Music,S4023 +Led Zeppelin,Kashmir,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-kashmir,Music Master Exchange LLC, +The Beatles,Can't Buy Me Love,https://www.jamkazam.com/landing/jamtracks/the-beatles-cant-buy-me-love,Music Master Exchange LLC, +Lily Allen,Smile,https://www.jamkazam.com/landing/jamtracks/lily-allen-smile,Paris Music,S1664 +Donna Summer,Bad Girls,https://www.jamkazam.com/landing/jamtracks/donna-summer-bad-girls,Paris Music,S3856 +Pearl Jam,Even Flow,https://www.jamkazam.com/landing/jamtracks/pearl-jam-even-flow,Music Master Exchange LLC, +The Pointer Sisters,I'm so Excited,https://www.jamkazam.com/landing/jamtracks/the-pointer-sisters-im-so-excited,Paris Music,S2688 +Michael Buble,Always On My Mind,https://www.jamkazam.com/landing/jamtracks/michael-buble-always-on-my-mind,Paris Music,S3040 +The Beatles,Day Tripper,https://www.jamkazam.com/landing/jamtracks/the-beatles-day-tripper,Music Master Exchange LLC, +Peter Andre,Behind Closed Doors,https://www.jamkazam.com/landing/jamtracks/peter-andre-behind-closed-doors,Paris Music,S3042 +Boney M,Mary's Boy Child,https://www.jamkazam.com/landing/jamtracks/boney-m-marys-boy-child,Paris Music,S1390 +Queen,Fat Bottomed Girls,https://www.jamkazam.com/landing/jamtracks/queen-fat-bottomed-girls,Music Master Exchange LLC, +Eddie Money,Two Tickets To Paradise,https://www.jamkazam.com/landing/jamtracks/eddie-money-two-tickets-to-paradise,Tency Music,47538 +Coldplay,Charlie Brown,https://www.jamkazam.com/landing/jamtracks/coldplay-charlie-brown,Tency Music,39216 +Primal Scream,Rocks,https://www.jamkazam.com/landing/jamtracks/primal-scream-rocks,Paris Music,S0336 +The Police,"De Do Do Do, De Da Da Da",https://www.jamkazam.com/landing/jamtracks/the-police-de-do-do-do-de-da-da-da,Music Master Exchange LLC, +The Who,Who Are You,https://www.jamkazam.com/landing/jamtracks/the-who-who-are-you,Music Master Exchange LLC, +The Beatles,Drive My Car,https://www.jamkazam.com/landing/jamtracks/the-beatles-drive-my-car,Music Master Exchange LLC, +Duran Duran,Reflex,https://www.jamkazam.com/landing/jamtracks/duran-duran-reflex,Paris Music,S1109 +The Eagles,After The Thrill Is Gone,https://www.jamkazam.com/landing/jamtracks/the-eagles-after-the-thrill-is-gone,Tency Music,47870 +Joe Mcelderry,Ambitions,https://www.jamkazam.com/landing/jamtracks/joe-mcelderry-ambitions,Paris Music,S3442 +Abba,Knowing Me Knowing You,https://www.jamkazam.com/landing/jamtracks/abba-knowing-me-knowing-you,Paris Music,S0811 +Metallica,Fade To Black,https://www.jamkazam.com/landing/jamtracks/metallica-fade-to-black,Damage Inc., +Fleetwood Mac,Rhiannon,https://www.jamkazam.com/landing/jamtracks/fleetwood-mac-rhiannon,Paris Music,S0467 +The Fratellis,Whistle for the Choir,https://www.jamkazam.com/landing/jamtracks/the-fratellis-whistle-for-the-choir,Paris Music,S2052 +Buddy Holly,Think It Over,https://www.jamkazam.com/landing/jamtracks/buddy-holly-think-it-over,Paris Music,S3045 +The Beatles,Let It Be,https://www.jamkazam.com/landing/jamtracks/the-beatles-let-it-be,Music Master Exchange LLC, +Dexy's Midnight Runners,Come On Eileen,https://www.jamkazam.com/landing/jamtracks/dexys-midnight-runners-come-on-eileen,Paris Music,S3293 +Mariah Carey,Hero,https://www.jamkazam.com/landing/jamtracks/mariah-carey-hero,Paris Music,S0093 +Meatloaf,Paradise By The Dashboard Light,https://www.jamkazam.com/landing/jamtracks/meatloaf-paradise-by-the-dashboard-light,Music Master Exchange LLC, +Bob Seger,Like A Rock,https://www.jamkazam.com/landing/jamtracks/bob-seger-like-a-rock,Music Master Exchange LLC, +Guns N' Roses,Sweet Child O' Mine,https://www.jamkazam.com/landing/jamtracks/guns-n-roses-sweet-child-o-mine,Chad Atkins, +Bob Seger,Mainstreet,https://www.jamkazam.com/landing/jamtracks/bob-seger-mainstreet,Music Master Exchange LLC, +The Police,Don't Stand So Close To Me,https://www.jamkazam.com/landing/jamtracks/the-police-dont-stand-so-close-to-me,Music Master Exchange LLC, +Heart,Magic Man,https://www.jamkazam.com/landing/jamtracks/heart-magic-man,Music Master Exchange LLC, +Grateful Dead,Brown Eyed Women,https://www.jamkazam.com/landing/jamtracks/grateful-dead-brown-eyed-women,DSO LLC, +Dave Sebree,Halfway To Avalon,https://www.jamkazam.com/landing/jamtracks/dave-sebree-halfway-to-avalon,Dave Sebree, +Bachman Turner Overdrive,Takin' Care Of Business,https://www.jamkazam.com/landing/jamtracks/bachman-turner-overdrive-takin-care-of-business,Music Master Exchange LLC, +Van Halen,You Really Got Me,https://www.jamkazam.com/landing/jamtracks/van-halen-you-really-got-me,Music Master Exchange LLC, +AC/DC,T.N.T.,https://www.jamkazam.com/landing/jamtracks/acdc-tnt,Back in Black LLC, +Pink,Perfect,https://www.jamkazam.com/landing/jamtracks/pink-perfect,Paris Music,S3531 +Led Zeppelin,Dazed And Confused,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-dazed-and-confused,Music Master Exchange LLC, +Bob Seger,You'll Accomp'ny Me,https://www.jamkazam.com/landing/jamtracks/bob-seger-youll-accompny-me,Music Master Exchange LLC, +Led Zeppelin,Heartbreaker,https://www.jamkazam.com/landing/jamtracks/led-zeppelin-heartbreaker,Music Master Exchange LLC, +Stevie Ray Vaughan,Texas Flood,https://www.jamkazam.com/landing/jamtracks/stevie-ray-vaughan-texas-flood,Steven Buckner, +Katy Perry,Firework,https://www.jamkazam.com/landing/jamtracks/katy-perry-firework,Paris Music,S3446 +The Shirelles,Will You Still Love Me Tomorrow,https://www.jamkazam.com/landing/jamtracks/the-shirelles-will-you-still-love-me-tomorrow,Paris Music,S0283 +Dave Berry,Little Things,https://www.jamkazam.com/landing/jamtracks/dave-berry-little-things,Paris Music,S3863 +Blondie,Picture This,https://www.jamkazam.com/landing/jamtracks/blondie-picture-this,Paris Music,S0608 +Sam Cooke,Bring It On Home To Me,https://www.jamkazam.com/landing/jamtracks/sam-cooke-bring-it-on-home-to-me,Paris Music,S1680 +Kenny Rogers,Gambler,https://www.jamkazam.com/landing/jamtracks/kenny-rogers-gambler,Paris Music,S3053 +Buddy Holly,Raining In My Heart,https://www.jamkazam.com/landing/jamtracks/buddy-holly-raining-in-my-heart,Paris Music,S2070 +Tenpole Tudor,Swords of 1000 Men,https://www.jamkazam.com/landing/jamtracks/tenpole-tudor-swords-of-1000-men,Paris Music,S3337 +Bon Jovi,In These Arms,https://www.jamkazam.com/landing/jamtracks/bon-jovi-in-these-arms,Paris Music,S3859 +Madness,My Girl,https://www.jamkazam.com/landing/jamtracks/madness-my-girl,Paris Music,S1869 +Candi Staton,Nights On Broadway,https://www.jamkazam.com/landing/jamtracks/candi-staton-nights-on-broadway,Paris Music,S1398 +Abba,Name of the Game,https://www.jamkazam.com/landing/jamtracks/abba-name-of-the-game,Paris Music,S2968 +Gnarls Barkley,Crazy,https://www.jamkazam.com/landing/jamtracks/gnarls-barkley-crazy,Paris Music,S3052 +Eurythmics,Thorn In My Side,https://www.jamkazam.com/landing/jamtracks/eurythmics-thorn-in-my-side,Paris Music,S0456 +Dire Straits,Private Investigations,https://www.jamkazam.com/landing/jamtracks/dire-straits-private-investigations,Paris Music,S2377 +Elvis Presley,Way Down,https://www.jamkazam.com/landing/jamtracks/elvis-presley-way-down,Paris Music,S0479 +The Skyliners,Since I Don't Have You,https://www.jamkazam.com/landing/jamtracks/the-skyliners-since-i-dont-have-you,Paris Music,S1284 +The Bee Gees,Jive Talkin',https://www.jamkazam.com/landing/jamtracks/the-bee-gees-jive-talkin,Paris Music,S1142 +The Coral,Dreaming of You,https://www.jamkazam.com/landing/jamtracks/the-coral-dreaming-of-you,Paris Music,S1411 +The Trammps,Disco Inferno,https://www.jamkazam.com/landing/jamtracks/the-trammps-disco-inferno,Paris Music,S1146 +Blondie,Sunday Girl,https://www.jamkazam.com/landing/jamtracks/blondie-sunday-girl,Paris Music,S2078 +Michael Jackson,Thriller (Live),https://www.jamkazam.com/landing/jamtracks/michael-jackson-thriller-live,Paris Music,S4861 +Michael Buble,Hollywood,https://www.jamkazam.com/landing/jamtracks/michael-buble-hollywood,Paris Music,S3460 +Dusty Springfield,I'm Going Back,https://www.jamkazam.com/landing/jamtracks/dusty-springfield-im-going-back,Paris Music,S2395 +Bette Midler,From a Distance,https://www.jamkazam.com/landing/jamtracks/bette-midler-from-a-distance,Paris Music,S4225 +The Beatles,From Me To You,https://www.jamkazam.com/landing/jamtracks/the-beatles-from-me-to-you,Paris Music,S2401 +Engelbert Humperdinck,Man Without Love,https://www.jamkazam.com/landing/jamtracks/engelbert-humperdinck-man-without-love,Paris Music,S1410 +Lou Reed,Walk On the Wild Side,https://www.jamkazam.com/landing/jamtracks/lou-reed-walk-on-the-wild-side,Paris Music,S2080 +Blondie,Call Me,https://www.jamkazam.com/landing/jamtracks/blondie-call-me,Paris Music,S2295 +Nickelback,Someday,https://www.jamkazam.com/landing/jamtracks/nickelback-someday,Paris Music,S0640 +Razorlight,America,https://www.jamkazam.com/landing/jamtracks/razorlight-america,Paris Music,S1970 +Wham,I'm Your Man,https://www.jamkazam.com/landing/jamtracks/wham-im-your-man,Paris Music,S0857 +Elton John,Are You Ready for Love,https://www.jamkazam.com/landing/jamtracks/elton-john-are-you-ready-for-love,Paris Music,S0630 +Foreigner,I Want To Know What Love Is,https://www.jamkazam.com/landing/jamtracks/foreigner-i-want-to-know-what-love-is,Paris Music,S3757 +The Lighthouse Family,Ocean Drive,https://www.jamkazam.com/landing/jamtracks/the-lighthouse-family-ocean-drive,Paris Music,S3879 +Chic,Everybody Dance,https://www.jamkazam.com/landing/jamtracks/chic-everybody-dance,Paris Music,S4535 +Ella Fitzgerald,Someone To Watch Over Me,https://www.jamkazam.com/landing/jamtracks/ella-fitzgerald-someone-to-watch-over-me,Paris Music,S1415 +Paul Weller,You Do Something To Me,https://www.jamkazam.com/landing/jamtracks/paul-weller-you-do-something-to-me,Paris Music,S0270 +The Clash,I Fought the Law,https://www.jamkazam.com/landing/jamtracks/the-clash-i-fought-the-law,Paris Music,S2408 +Pulp,Common People,https://www.jamkazam.com/landing/jamtracks/pulp-common-people,Paris Music,S1182 +Eddie Arnold,Make the World Go Away,https://www.jamkazam.com/landing/jamtracks/eddie-arnold-make-the-world-go-away,Paris Music,S3074 +Swinging Blue Jeans,Hippy Hippy Shake,https://www.jamkazam.com/landing/jamtracks/swinging-blue-jeans-hippy-hippy-shake,Paris Music,S0507 +Ashanti,Don't Leave Me Alone,https://www.jamkazam.com/landing/jamtracks/ashanti-dont-leave-me-alone,Paris Music,S1176 +The Cure,In Between Days,https://www.jamkazam.com/landing/jamtracks/the-cure-in-between-days,Paris Music,S1716 +Sammy Davis Junior,Candy Man,https://www.jamkazam.com/landing/jamtracks/sammy-davis-junior-candy-man,Paris Music,S0938 +Heart,All I Wanna Do Is Make Love To You,https://www.jamkazam.com/landing/jamtracks/heart-all-i-wanna-do-is-make-love-to-you,Paris Music,S2090 +Leona Lewis,Run,https://www.jamkazam.com/landing/jamtracks/leona-lewis-run,Paris Music,S2736 +Shakin' Stevens,Fire Down Below,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-fire-down-below,Paris Music,S4605 +Elton John,Daniel,https://www.jamkazam.com/landing/jamtracks/elton-john-daniel,Paris Music,S0950 +Abba,"I Do, I Do, I Do , I Do, I Do",https://www.jamkazam.com/landing/jamtracks/abba-i-do-i-do-i-do--i-do-i-do,Paris Music,S3475 +Bruce Springsteen,Girls In Their Summer Clothes,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-girls-in-their-summer-clothes,Paris Music,S2406 +The Jam,Down In the Tube Station At Midnight,https://www.jamkazam.com/landing/jamtracks/the-jam-down-in-the-tube-station-at-midnight,Paris Music,S2415 +Kylie Minogue,Wow,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-wow,Paris Music,S2414 +David Bowie,Sorrow,https://www.jamkazam.com/landing/jamtracks/david-bowie-sorrow,Paris Music,S3086 +Junior Walker,Road Runner,https://www.jamkazam.com/landing/jamtracks/junior-walker-road-runner,Paris Music,S0665 +Alexandra Burke,Hallelujah,https://www.jamkazam.com/landing/jamtracks/alexandra-burke-hallelujah,Paris Music,S2741 +Michael Buble,It's a Beautiful Day,https://www.jamkazam.com/landing/jamtracks/michael-buble-its-a-beautiful-day,Paris Music,S4244 +Charles & Eddie,Would I Lie To You,https://www.jamkazam.com/landing/jamtracks/charles--eddie-would-i-lie-to-you,Paris Music,S2101 +Keane,Everybody's Changing,https://www.jamkazam.com/landing/jamtracks/keane-everybodys-changing,Paris Music,S0871 +Toploader,Dancing In the Moonlight,https://www.jamkazam.com/landing/jamtracks/toploader-dancing-in-the-moonlight,Paris Music,S4238 +Pixie Lott,Cry Me Out,https://www.jamkazam.com/landing/jamtracks/pixie-lott-cry-me-out,Paris Music,S3095 +Lou Reed,Perfect Day,https://www.jamkazam.com/landing/jamtracks/lou-reed-perfect-day,Paris Music,S1441 +The Beatles,This Boy,https://www.jamkazam.com/landing/jamtracks/the-beatles-this-boy,Paris Music,S0341 +Perry Como,And I Love Her so,https://www.jamkazam.com/landing/jamtracks/perry-como-and-i-love-her-so,Paris Music,S0667 +George Harrison,Got My Mind Set On You,https://www.jamkazam.com/landing/jamtracks/george-harrison-got-my-mind-set-on-you,Paris Music,S4057 +Imelda May,Big Bad Handsome Man,https://www.jamkazam.com/landing/jamtracks/imelda-may-big-bad-handsome-man,Paris Music,S3099 +Take That,Patience,https://www.jamkazam.com/landing/jamtracks/take-that-patience,Paris Music,S1912 +Wilson Pickett,Midnight Hour,https://www.jamkazam.com/landing/jamtracks/wilson-pickett-midnight-hour,Paris Music,S0673 +Roy Orbison,Scarlett Ribbons,https://www.jamkazam.com/landing/jamtracks/roy-orbison-scarlett-ribbons,Paris Music,S3103 +Pet Shop Boys,Always On My Mind,https://www.jamkazam.com/landing/jamtracks/pet-shop-boys-always-on-my-mind,Paris Music,S2109 +Chaka Khan,Ain't Nobody,https://www.jamkazam.com/landing/jamtracks/chaka-khan-aint-nobody,Paris Music,S0313 +Frankie Vaughan,There Must Be a Way,https://www.jamkazam.com/landing/jamtracks/frankie-vaughan-there-must-be-a-way,Paris Music,S1752 +Johnny Cash,One,https://www.jamkazam.com/landing/jamtracks/johnny-cash-one,Paris Music,S2432 +Madonna,Masterpiece,https://www.jamkazam.com/landing/jamtracks/madonna-masterpiece,Paris Music,S3919 +Buddy Holly,Rave On,https://www.jamkazam.com/landing/jamtracks/buddy-holly-rave-on,Paris Music,S1204 +Britney Spears,"Baby, One More Time",https://www.jamkazam.com/landing/jamtracks/britney-spears-baby-one-more-time,Paris Music,S3912 +Boney M,Boney M Megamix,https://www.jamkazam.com/landing/jamtracks/boney-m-boney-m-megamix,Paris Music,S1454 +Sheena Easton,For Your Eyes Only,https://www.jamkazam.com/landing/jamtracks/sheena-easton-for-your-eyes-only,Paris Music,S0320 +The Rasmus,In the Shadows,https://www.jamkazam.com/landing/jamtracks/the-rasmus-in-the-shadows,Paris Music,S0888 +Wings,Mull of Kintyre,https://www.jamkazam.com/landing/jamtracks/wings-mull-of-kintyre,Paris Music,S3499 +Evanescence,Going Under,https://www.jamkazam.com/landing/jamtracks/evanescence-going-under,Paris Music,S0530 +Blondie,Denis,https://www.jamkazam.com/landing/jamtracks/blondie-denis,Paris Music,S2274 +Box Tops,Soul Deep,https://www.jamkazam.com/landing/jamtracks/box-tops-soul-deep,Paris Music,S3120 +La Roux,Bulletproof,https://www.jamkazam.com/landing/jamtracks/la-roux-bulletproof,Paris Music,S2944 +En Vogue,Free Your Mind,https://www.jamkazam.com/landing/jamtracks/en-vogue-free-your-mind,Paris Music,S4445 +Shirley Bassey,Goldfinger,https://www.jamkazam.com/landing/jamtracks/shirley-bassey-goldfinger,Paris Music,S0329 +Take That,Hold Up a Light,https://www.jamkazam.com/landing/jamtracks/take-that-hold-up-a-light,Paris Music,S3107 +Arthur Conley,Sweet Soul Music,https://www.jamkazam.com/landing/jamtracks/arthur-conley-sweet-soul-music,Paris Music,S0539 +Etta James,I'd Rather Go Blind,https://www.jamkazam.com/landing/jamtracks/etta-james-id-rather-go-blind,Paris Music,S0685 +Katie Melua,If the Lights Go Out,https://www.jamkazam.com/landing/jamtracks/katie-melua-if-the-lights-go-out,Paris Music,S2439 +Justin Hayward & John Lodge,Blue Guitar,https://www.jamkazam.com/landing/jamtracks/justin-hayward--john-lodge-blue-guitar,Paris Music,S3133 +The Cure,Lullaby,https://www.jamkazam.com/landing/jamtracks/the-cure-lullaby,Paris Music,S1223 +Dion & The Belmonts,Runaround Sue,https://www.jamkazam.com/landing/jamtracks/dion--the-belmonts-runaround-sue,Paris Music,S1233 +The Body Snatchers,Let's Do Rock Steady,https://www.jamkazam.com/landing/jamtracks/the-body-snatchers-lets-do-rock-steady,Paris Music,S4635 +Madness,It Must Be Love,https://www.jamkazam.com/landing/jamtracks/madness-it-must-be-love,Paris Music,S2134 +Duffy,Mercy,https://www.jamkazam.com/landing/jamtracks/duffy-mercy,Paris Music,S2437 +Warren G,Regulate,https://www.jamkazam.com/landing/jamtracks/warren-g-regulate,Paris Music,S1762 +Train,Drive By,https://www.jamkazam.com/landing/jamtracks/train-drive-by,Paris Music,S3926 +The Osmonds,Crazy Horses,https://www.jamkazam.com/landing/jamtracks/the-osmonds-crazy-horses,Paris Music,S0906 +Coast To Coast,Do the Hucklebuck,https://www.jamkazam.com/landing/jamtracks/coast-to-coast-do-the-hucklebuck,Paris Music,S2816 +Johnny Mathis,Misty,https://www.jamkazam.com/landing/jamtracks/johnny-mathis-misty,Paris Music,S0556 +The Romantics,Talking In Your Sleep,https://www.jamkazam.com/landing/jamtracks/the-romantics-talking-in-your-sleep,Paris Music,S4633 +Paolo Nutini,Scream (Funk Your Life Up),https://www.jamkazam.com/landing/jamtracks/paolo-nutini-scream-funk-your-life-up,Paris Music,S4538 +Bruno Mars,Grenade,https://www.jamkazam.com/landing/jamtracks/bruno-mars-grenade,Paris Music,S3511 +The Sweet,Ballroom Blitz,https://www.jamkazam.com/landing/jamtracks/the-sweet-ballroom-blitz,Paris Music,S0561 +Bruno Mars,Locked Out of Heaven,https://www.jamkazam.com/landing/jamtracks/bruno-mars-locked-out-of-heaven,Paris Music,S4095 +Alison Moyet,All Cried Out,https://www.jamkazam.com/landing/jamtracks/alison-moyet-all-cried-out,Paris Music,S0701 +Dawn,Knock Three Times,https://www.jamkazam.com/landing/jamtracks/dawn-knock-three-times,Paris Music,S1243 +Neil Diamond,Beautiful Noise,https://www.jamkazam.com/landing/jamtracks/neil-diamond-beautiful-noise,Paris Music,S0702 +Pink,Funhouse,https://www.jamkazam.com/landing/jamtracks/pink-funhouse,Paris Music,S2986 +Sam Brown,Can I Get a Witness,https://www.jamkazam.com/landing/jamtracks/sam-brown-can-i-get-a-witness,Paris Music,S1785 +Kelly Clarkson,My Life Would Suck Without You,https://www.jamkazam.com/landing/jamtracks/kelly-clarkson-my-life-would-suck-without-you,Paris Music,S2802 +Adele,Cold Shoulder,https://www.jamkazam.com/landing/jamtracks/adele-cold-shoulder,Paris Music,S2455 +The Happy Mondays,Step On,https://www.jamkazam.com/landing/jamtracks/the-happy-mondays-step-on,Paris Music,S1770 +The Specials,Too Much Too Young,https://www.jamkazam.com/landing/jamtracks/the-specials-too-much-too-young,Paris Music,S1299 +Elton John,Your Song,https://www.jamkazam.com/landing/jamtracks/elton-john-your-song,Paris Music,S0916 +Bay City Rollers,Bye Bye Baby,https://www.jamkazam.com/landing/jamtracks/bay-city-rollers-bye-bye-baby,Paris Music,S0955 +Amen Corner,(If Paradise Is) Half as Nice,https://www.jamkazam.com/landing/jamtracks/amen-corner-if-paradise-is-half-as-nice,Paris Music,S2817 +Barry Mcguire,Eve of Destruction,https://www.jamkazam.com/landing/jamtracks/barry-mcguire-eve-of-destruction,Paris Music,S2459 +Chicago,Hard To Say I'm Sorry (Single Version),https://www.jamkazam.com/landing/jamtracks/chicago-hard-to-say-im-sorry-single-version,Paris Music,S2460 +Pixie Lott,Gravity,https://www.jamkazam.com/landing/jamtracks/pixie-lott-gravity,Paris Music,S3147 +The Clash,Should I Stay or Should I Go,https://www.jamkazam.com/landing/jamtracks/the-clash-should-i-stay-or-should-i-go,Paris Music,S1782 +Jackie Wilson,Higher & Higher,https://www.jamkazam.com/landing/jamtracks/jackie-wilson-higher--higher,Paris Music,S1249 +The Korgis,Everybody's Gotta Learn Sometime,https://www.jamkazam.com/landing/jamtracks/the-korgis-everybodys-gotta-learn-sometime,Paris Music,S2469 +Robbie Williams,Let Me Entertain You,https://www.jamkazam.com/landing/jamtracks/robbie-williams-let-me-entertain-you,Paris Music,S2467 +The Tremeloes,Here Comes My Baby,https://www.jamkazam.com/landing/jamtracks/the-tremeloes-here-comes-my-baby,Paris Music,S2167 +Madness,Baggy Trousers,https://www.jamkazam.com/landing/jamtracks/madness-baggy-trousers,Paris Music,S3533 +Michael Buble,Come Fly With Me,https://www.jamkazam.com/landing/jamtracks/michael-buble-come-fly-with-me,Paris Music,S1489 +The Jam,That's Entertainment,https://www.jamkazam.com/landing/jamtracks/the-jam-thats-entertainment,Paris Music,S0926 +Imelda May,Inside Out,https://www.jamkazam.com/landing/jamtracks/imelda-may-inside-out,Paris Music,S3532 +Robbie Williams,Morning Sun,https://www.jamkazam.com/landing/jamtracks/robbie-williams-morning-sun,Paris Music,S3161 +Girls Aloud,Loving Kind,https://www.jamkazam.com/landing/jamtracks/girls-aloud-loving-kind,Paris Music,S2831 +Al Martino,Speak Softly Love,https://www.jamkazam.com/landing/jamtracks/al-martino-speak-softly-love,Paris Music,S2473 +The Temptations,Get Ready,https://www.jamkazam.com/landing/jamtracks/the-temptations-get-ready,Paris Music,S1259 +Lilly Wood & The Prick & Robin Schulz,Prayer In C Robin Schulz Remix,https://www.jamkazam.com/landing/jamtracks/lilly-wood--the-prick--robin-schulz-prayer-in-c-robin-schulz-remix,Paris Music,S4656 +The Wurzels,Combine Harvester,https://www.jamkazam.com/landing/jamtracks/the-wurzels-combine-harvester,Paris Music,S2176 +Kylie Minogue,Shocked,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-shocked,Paris Music,S1813 +The Three Degrees,When Will I See You Again ?,https://www.jamkazam.com/landing/jamtracks/the-three-degrees-when-will-i-see-you-again-,Paris Music,S0969 +The Jacksons,Blame It on the Boogie,https://www.jamkazam.com/landing/jamtracks/the-jacksons-blame-it-on-the-boogie,Paris Music,S4646 +Shakin' Stevens,You Drive Me Crazy,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-you-drive-me-crazy,Paris Music,S1492 +The Weather Girls,It's Raining Men,https://www.jamkazam.com/landing/jamtracks/the-weather-girls-its-raining-men,Paris Music,S3945 +Michael Holliday,Story of My Life,https://www.jamkazam.com/landing/jamtracks/michael-holliday-story-of-my-life,Paris Music,S1822 +Dion & The Belmonts,Teenager In Love,https://www.jamkazam.com/landing/jamtracks/dion--the-belmonts-teenager-in-love,Paris Music,S1271 +Robbie Williams,No Regrets,https://www.jamkazam.com/landing/jamtracks/robbie-williams-no-regrets,Paris Music,S4134 +Stevie Wonder,Part Time Lover,https://www.jamkazam.com/landing/jamtracks/stevie-wonder-part-time-lover,Paris Music,S4295 +Madonna,True Blue,https://www.jamkazam.com/landing/jamtracks/madonna-true-blue,Paris Music,S3544 +De Barge,Rhythm of the Night,https://www.jamkazam.com/landing/jamtracks/de-barge-rhythm-of-the-night,Paris Music,S4659 +The Pretenders,Talk of the Town,https://www.jamkazam.com/landing/jamtracks/the-pretenders-talk-of-the-town,Paris Music,S1897 +Shakin' Stevens,Rockin' Good Way,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-rockin-good-way,Paris Music,S1504 +The Mindbenders,Groovy Kind of Love,https://www.jamkazam.com/landing/jamtracks/the-mindbenders-groovy-kind-of-love,Paris Music,S3955 +Depeche Mode,Shake the Disease,https://www.jamkazam.com/landing/jamtracks/depeche-mode-shake-the-disease,Paris Music,S0978 +The Kalin Twins,When,https://www.jamkazam.com/landing/jamtracks/the-kalin-twins-when,Paris Music,S1272 +Paloma Faith,Picking Up the Pieces,https://www.jamkazam.com/landing/jamtracks/paloma-faith-picking-up-the-pieces,Paris Music,S3950 +Madonna,Cherish,https://www.jamkazam.com/landing/jamtracks/madonna-cherish,Paris Music,S2579 +Bobby Darin,Dream Lover,https://www.jamkazam.com/landing/jamtracks/bobby-darin-dream-lover,Paris Music,S1278 +Robbie Williams,Radio,https://www.jamkazam.com/landing/jamtracks/robbie-williams-radio,Paris Music,S0996 +One Direction,Live While We're Young,https://www.jamkazam.com/landing/jamtracks/one-direction-live-while-were-young,Paris Music,S4083 +Bobby Darin,Splish Splash,https://www.jamkazam.com/landing/jamtracks/bobby-darin-splish-splash,Paris Music,S3575 +John Newman,Love Me Again,https://www.jamkazam.com/landing/jamtracks/john-newman-love-me-again,Paris Music,S4305 +From The Jersey Boys,Beggin',https://www.jamkazam.com/landing/jamtracks/from-the-jersey-boys-beggin,Paris Music,S4679 +Roy Orbison,Mean Woman Blues,https://www.jamkazam.com/landing/jamtracks/roy-orbison-mean-woman-blues,Paris Music,S4855 +Brian Wilson & Various Artists,God Only Knows,https://www.jamkazam.com/landing/jamtracks/brian-wilson--various-artists-god-only-knows,Paris Music,S4680 +Laura Branigan,Gloria,https://www.jamkazam.com/landing/jamtracks/laura-branigan-gloria,Paris Music,S3568 +Elvis Presley,Don't,https://www.jamkazam.com/landing/jamtracks/elvis-presley-dont,Paris Music,S3200 +Cher,Shoop Shoop Song,https://www.jamkazam.com/landing/jamtracks/cher-shoop-shoop-song,Paris Music,S1536 +Ray Charles,Busted,https://www.jamkazam.com/landing/jamtracks/ray-charles-busted,Paris Music,S1996 +The Bluebells,Young At Heart,https://www.jamkazam.com/landing/jamtracks/the-bluebells-young-at-heart,Paris Music,S4025 +The Searchers,Needles & Pins,https://www.jamkazam.com/landing/jamtracks/the-searchers-needles-and-pins,Paris Music,S3976 +Roy Orbison,Heartache,https://www.jamkazam.com/landing/jamtracks/roy-orbison-heartache,Paris Music,S4479 +Buddy Holly,It Doesn't Matter Anymore,https://www.jamkazam.com/landing/jamtracks/buddy-holly-it-doesnt-matter-anymore,Paris Music,S3962 +The Sex Pistols,Anarchy In the UK,https://www.jamkazam.com/landing/jamtracks/the-sex-pistols-anarchy-in-the-uk,Paris Music,S3010 +Lady Gaga,Marry the Night,https://www.jamkazam.com/landing/jamtracks/lady-gaga-marry-the-night,Paris Music,S3774 +Queen,Killer Queen,https://www.jamkazam.com/landing/jamtracks/queen-killer-queen,Paris Music,S4173 +Mika,Happy Ending,https://www.jamkazam.com/landing/jamtracks/mika-happy-ending,Paris Music,S2308 +Deloris & The Sisters,Spread the Love Around,https://www.jamkazam.com/landing/jamtracks/deloris--the-sisters-spread-the-love-around,Paris Music,S4683 +David Bowie,Suffragette City,https://www.jamkazam.com/landing/jamtracks/david-bowie-suffragette-city,Paris Music,S1842 +Mc Guiness Flint,When I'm Dead & Gone,https://www.jamkazam.com/landing/jamtracks/mc-guiness-flint-when-im-dead--gone,Paris Music,S2209 +Unit Four Plus Two,Concrete & Clay,https://www.jamkazam.com/landing/jamtracks/unit-four-plus-two-concrete--clay,Paris Music,S3965 +Lobo,Me & You & a Dog Named Boo,https://www.jamkazam.com/landing/jamtracks/lobo-me--you--a-dog-named-boo,Paris Music,S3209 +Ziggy Marley,Drive,https://www.jamkazam.com/landing/jamtracks/ziggy-marley-drive,Paris Music,S1846 +David Bowie,Life On Mars,https://www.jamkazam.com/landing/jamtracks/david-bowie-life-on-mars,Paris Music,S3207 +Kc & The Sunshine Band,Give it Up,https://www.jamkazam.com/landing/jamtracks/kc--the-sunshine-band-give-it-up,Paris Music,S4685 +Bread,Make It With You,https://www.jamkazam.com/landing/jamtracks/bread-make-it-with-you,Paris Music,S4107 +Marvin Gaye,Wherever I Lay My Hat,https://www.jamkazam.com/landing/jamtracks/marvin-gaye-wherever-i-lay-my-hat,Paris Music,S1993 +The Who,My Generation,https://www.jamkazam.com/landing/jamtracks/the-who-my-generation,Paris Music,S3966 +Sick Puppies,Maybe,https://www.jamkazam.com/landing/jamtracks/sick-puppies-maybe,Paris Music,S3603 +Engelbert Humperdinck,Ten Guitars,https://www.jamkazam.com/landing/jamtracks/engelbert-humperdinck-ten-guitars,Paris Music,S3211 +Coldplay,Viva La Vida,https://www.jamkazam.com/landing/jamtracks/coldplay-viva-la-vida,Paris Music,S4334 +Barry Manilow,Copacabana,https://www.jamkazam.com/landing/jamtracks/barry-manilow-copacabana,Paris Music,S3967 +Lenny Kravitz,Are You Gonna Go My Way ?,https://www.jamkazam.com/landing/jamtracks/lenny-kravitz-are-you-gonna-go-my-way-,Paris Music,S4166 +Busted,Year 3000,https://www.jamkazam.com/landing/jamtracks/busted-year-3000,Paris Music,S0417 +Manfred Mann,Blinded By the Light,https://www.jamkazam.com/landing/jamtracks/manfred-mann-blinded-by-the-light,Paris Music,S2285 +David Bowie,Absolute Beginners,https://www.jamkazam.com/landing/jamtracks/david-bowie-absolute-beginners,Paris Music,S2216 +Daniel Merriweather,Red,https://www.jamkazam.com/landing/jamtracks/daniel-merriweather-red,Paris Music,S2888 +Take That,Said It All,https://www.jamkazam.com/landing/jamtracks/take-that-said-it-all,Paris Music,S2893 +The Hollies,Just One Look,https://www.jamkazam.com/landing/jamtracks/the-hollies-just-one-look,Paris Music,S3975 +Donna Summer,On the Radio,https://www.jamkazam.com/landing/jamtracks/donna-summer-on-the-radio,Paris Music,S2227 +Etta James,At Last,https://www.jamkazam.com/landing/jamtracks/etta-james-at-last,Paris Music,S1619 +Sutherland Brothers & Quiver,Arms of Mary,https://www.jamkazam.com/landing/jamtracks/sutherland-brothers--quiver-arms-of-mary,Paris Music,S3216 +Jools Holland & Prince Buster,Enjoy YourSelf,https://www.jamkazam.com/landing/jamtracks/jools-holland--prince-buster-enjoy-yourself,Paris Music,S2529 +Elvis Presley,C.C. Rider,https://www.jamkazam.com/landing/jamtracks/elvis-presley-cc-rider,Paris Music,S4522 +Bread,Everything I Own,https://www.jamkazam.com/landing/jamtracks/bread-everything-i-own,Paris Music,S2594 +Rumer,Goodbye Girl,https://www.jamkazam.com/landing/jamtracks/rumer-goodbye-girl,Paris Music,S3605 +Leroy Van Dyke,Walk On By,https://www.jamkazam.com/landing/jamtracks/leroy-van-dyke-walk-on-by,Paris Music,S2906 +Judy Clay & William Bell,Private Number,https://www.jamkazam.com/landing/jamtracks/judy-clay--william-bell-private-number,Paris Music,S2229 +Aloe Blacc,I Need a Dollar,https://www.jamkazam.com/landing/jamtracks/aloe-blacc-i-need-a-dollar,Paris Music,S3609 +Talking Heads,And She Was,https://www.jamkazam.com/landing/jamtracks/talking-heads-and-she-was,Paris Music,S4358 +John Denver,Annie's Song,https://www.jamkazam.com/landing/jamtracks/john-denver-annies-song,Paris Music,S3765 +Lady Gaga,Applause,https://www.jamkazam.com/landing/jamtracks/lady-gaga-applause,Paris Music,S4346 +Madness,House of Fun,https://www.jamkazam.com/landing/jamtracks/madness-house-of-fun,Paris Music,S3347 +Rihanna Feat. Jay Z,Umbrella,https://www.jamkazam.com/landing/jamtracks/rihanna-feat-jay-z-umbrella,Paris Music,S2234 +Alexander O'neal,Criticise,https://www.jamkazam.com/landing/jamtracks/alexander-oneal-criticise,Paris Music,S1929 +The Selecter,On My Radio,https://www.jamkazam.com/landing/jamtracks/the-selecter-on-my-radio,Paris Music,S2098 +Abba,Honey Honey,https://www.jamkazam.com/landing/jamtracks/abba-honey-honey,Paris Music,S2909 +Aswad,Don't Turn Around,https://www.jamkazam.com/landing/jamtracks/aswad-dont-turn-around,Paris Music,S1986 +Georgie Fame,Yeh Yeh,https://www.jamkazam.com/landing/jamtracks/georgie-fame-yeh-yeh,Paris Music,S3345 +Labrinth,Beneath Your Beautiful feat. Emeli Sande,https://www.jamkazam.com/landing/jamtracks/labrinth-beneath-your-beautiful-feat-emeli-sande,Paris Music,S4158 +Elaine Page & Barbara Dickson,I Know Him so Well,https://www.jamkazam.com/landing/jamtracks/elaine-page--barbara-dickson-i-know-him-so-well,Paris Music,S1933 +Beautiful South,Don't Marry Her Have Me,https://www.jamkazam.com/landing/jamtracks/beautiful-south-dont-marry-her-have-me,Paris Music,S2918 +Bruce Springsteen,Secret Garden,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-secret-garden,Paris Music,S2543 +Box Tops,Letter,https://www.jamkazam.com/landing/jamtracks/box-tops-letter,Paris Music,S2551 +The Spice Girls,Stop,https://www.jamkazam.com/landing/jamtracks/the-spice-girls-stop,Paris Music,S4372 +Louis Armstrong,What a Wonderful World,https://www.jamkazam.com/landing/jamtracks/louis-armstrong-what-a-wonderful-world,Paris Music,S3984 +Shakin' Stevens,This Ole House,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-this-ole-house,Paris Music,S3641 +Bruce Springsteen,Jungleland,https://www.jamkazam.com/landing/jamtracks/bruce-springsteen-jungleland,Paris Music,S4524 +Disney,A Dream Is A Wish Your Heart Makes (A Cappella),https://www.jamkazam.com/landing/jamtracks/disney-a-dream-is-a-wish-your-heart-makes-acapella,Tim Waurick, +The Shadows,Foot Tapper,https://www.jamkazam.com/landing/jamtracks/the-shadows-foot-tapper,Paris Music,S4805 +Matchbox Twenty,3am,https://www.jamkazam.com/landing/jamtracks/matchbox-twenty-3am,Tency Music,9695 +Billie Holiday,Ain't Nobody's Business,https://www.jamkazam.com/landing/jamtracks/billie-holiday-aint-nobodys-business,Tency Music,17112 +Foo Fighters,All My Life,https://www.jamkazam.com/landing/jamtracks/foo-fighters-all-my-life,Paris Music,S4455 +Tom Jones,Help Yourself,https://www.jamkazam.com/landing/jamtracks/tom-jones-help-yourself,Paris Music,S4818 +Del Shannon,Little Town Flirt,https://www.jamkazam.com/landing/jamtracks/del-shannon-little-town-flirt,Paris Music,S4112 +Jimmy Boyd,I Saw Mommy Kissing Santa Claus (A Cappella),https://www.jamkazam.com/landing/jamtracks/jimmy-boyd-i-saw-mommy-kissing-santa-claus-acapella,Tim Waurick, +Baccara,Yes Sir I Can Boogie,https://www.jamkazam.com/landing/jamtracks/baccara-yes-sir-i-can-boogie,Paris Music,S3361 +Madonna,Papa Don't Preach,https://www.jamkazam.com/landing/jamtracks/madonna-papa-dont-preach,Paris Music,S3368 +Billy Fury,Halfway To Paradise,https://www.jamkazam.com/landing/jamtracks/billy-fury-halfway-to-paradise,Paris Music,S1341 +Amy Winehouse,You Know I'm No Good,https://www.jamkazam.com/landing/jamtracks/amy-winehouse-you-know-im-no-good,Paris Music,S1992 +Van Morrison,Here Comes the Night,https://www.jamkazam.com/landing/jamtracks/van-morrison-here-comes-the-night,Paris Music,S0570 +Elton John,Circle of Life,https://www.jamkazam.com/landing/jamtracks/elton-john-circle-of-life,Paris Music,S2990 +The Blues Brothers,Everybody Needs Somebody To Love,https://www.jamkazam.com/landing/jamtracks/the-blues-brothers-everybody-needs-somebody-to-love,Paris Music,S0770 +Chicago,25 Or 6 To 4,https://www.jamkazam.com/landing/jamtracks/chicago-25-or-6-to-4,Tency Music,15346 +Ray Charles,That Lucky Old Sun (A Cappella),https://www.jamkazam.com/landing/jamtracks/ray-charles-that-lucky-old-sun-acapella,Tim Waurick, +Temptations,My Girl (A Cappella),https://www.jamkazam.com/landing/jamtracks/temptations-my-girl-acapella,Tim Waurick, +Bill Withers,Ain't No Sunshine,https://www.jamkazam.com/landing/jamtracks/bill-withers-aint-no-sunshine,Tency Music,5471 +Mozart,"Mozart String Quartet No. 17, K.458, Movement 2 (Dry)",https://www.jamkazam.com/landing/jamtracks/mozart-mozart-string-quartet-no-17-k458-movement-2-dry,, +Leo Sayer,You Make Me Feel Like Dancing,https://www.jamkazam.com/landing/jamtracks/leo-sayer-you-make-me-feel-like-dancing,Paris Music,S4799 +Abba,Hole In Your Soul - Live,https://www.jamkazam.com/landing/jamtracks/abba-hole-in-your-soul---live,Paris Music,S4424 +Buggles,Video Killed the Radio Star,https://www.jamkazam.com/landing/jamtracks/buggles-video-killed-the-radio-star,Paris Music,S3997 +Shakin' Stevens,Ready Teddy,https://www.jamkazam.com/landing/jamtracks/shakin-stevens-ready-teddy,Paris Music,S2251 +Gwen Stefani,Sweet Escape,https://www.jamkazam.com/landing/jamtracks/gwen-stefani-sweet-escape,Paris Music,S1979 +Kings Of Leon,Notion,https://www.jamkazam.com/landing/jamtracks/kings-of-leon-notion,Paris Music,S2929 +Focus,Sylvia (Instrumental),https://www.jamkazam.com/landing/jamtracks/focus-sylvia-instrumental,Paris Music,S3272 +Don Williams,To Be Your Man,https://www.jamkazam.com/landing/jamtracks/don-williams-to-be-your-man,Paris Music,S4740 +Tom Jones,Delilah - Live Arrangement,https://www.jamkazam.com/landing/jamtracks/tom-jones-delilah---live-arrangement,Paris Music,S3263 +Michael Mcdonald,Higher & Higher (Live),https://www.jamkazam.com/landing/jamtracks/michael-mcdonald-higher--higher-live,Paris Music,S4382 +Kylie Minogue,All the Lovers,https://www.jamkazam.com/landing/jamtracks/kylie-minogue-all-the-lovers,Paris Music,S3273 +Michael Jackson,Ben,https://www.jamkazam.com/landing/jamtracks/michael-jackson-ben,Paris Music,S3276 +Betty Wright,Clean Up Woman,https://www.jamkazam.com/landing/jamtracks/betty-wright-clean-up-woman,Paris Music,S4396 +Rupert Holmes,Escape - the Piña Colada Song,https://www.jamkazam.com/landing/jamtracks/rupert-holmes-escape---the-pia-colada-song,Paris Music,S4761 +Michael Jackson,They Don't Really Care About Us,https://www.jamkazam.com/landing/jamtracks/michael-jackson-they-dont-really-care-about-us,Paris Music,S4774 +The Police,Can't Stand Losing You,https://www.jamkazam.com/landing/jamtracks/the-police-cant-stand-losing-you,Paris Music,S4411 +Neon Trees,Everybody Talks,https://www.jamkazam.com/landing/jamtracks/neon-trees-everybody-talks,Paris Music,S4415 +Noisettes,That Girl,https://www.jamkazam.com/landing/jamtracks/noisettes-that-girl,Paris Music,S4029 +Lord Rockingham's Xi,Hoots Mon,https://www.jamkazam.com/landing/jamtracks/lord-rockinghams-xi-hoots-mon,Paris Music,S4785 +Amelia Lily,You Bring Me Joy,https://www.jamkazam.com/landing/jamtracks/amelia-lily-you-bring-me-joy,Paris Music,S4030 diff --git a/lambda/jamtrack-importer/lambdas/unzipper/.bundle/config b/lambda/jamtrack-importer/lambdas/unzipper/.bundle/config new file mode 100644 index 000000000..236922881 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_PATH: "vendor/bundle" diff --git a/lambda/jamtrack-importer/lambdas/unzipper/Gemfile b/lambda/jamtrack-importer/lambdas/unzipper/Gemfile new file mode 100644 index 000000000..533f27d22 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/Gemfile @@ -0,0 +1,12 @@ +source "https://rubygems.org" +gem "shared", path: "../../shared" +#gem "protected_attributes" +gem "activerecord"# "= 4.2.8" # or your Rails version +gem "aws-sdk-lambda" +gem "json" #, "1.8.6" +gem "pg" +gem "ox" +gem 'iso-639' +gem "logging" +gem 'aws-sdk-s3', '~> 1' # , '~> 1' +gem 'aws_lambda_ric' diff --git a/lambda/jamtrack-importer/lambdas/unzipper/Gemfile.lock b/lambda/jamtrack-importer/lambdas/unzipper/Gemfile.lock new file mode 100644 index 000000000..b8e8dc78f --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/Gemfile.lock @@ -0,0 +1,96 @@ +PATH + remote: ../../shared + specs: + shared (0.1.0) + aws-sdk-s3 (~> 1.0) + json (~> 2.0) + +GEM + remote: https://rubygems.org/ + specs: + activemodel (8.0.1) + activesupport (= 8.0.1) + activerecord (8.0.1) + activemodel (= 8.0.1) + activesupport (= 8.0.1) + timeout (>= 0.4.0) + activesupport (8.0.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + aws-eventstream (1.3.0) + aws-partitions (1.1032.0) + aws-sdk-core (3.214.1) + aws-eventstream (~> 1, >= 1.3.0) + aws-partitions (~> 1, >= 1.992.0) + aws-sigv4 (~> 1.9) + jmespath (~> 1, >= 1.6.1) + aws-sdk-kms (1.96.0) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sigv4 (~> 1.5) + aws-sdk-lambda (1.144.0) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sigv4 (~> 1.5) + aws-sdk-s3 (1.177.0) + aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-kms (~> 1) + aws-sigv4 (~> 1.5) + aws-sigv4 (1.10.1) + aws-eventstream (~> 1, >= 1.0.2) + aws_lambda_ric (2.0.0) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + csv (3.3.2) + drb (2.2.1) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + iso-639 (0.3.8) + csv + jmespath (1.6.2) + json (2.9.1) + little-plugger (1.1.4) + logger (1.6.4) + logging (2.4.0) + little-plugger (~> 1.1) + multi_json (~> 1.14) + minitest (5.25.4) + multi_json (1.15.0) + ox (2.14.19) + bigdecimal (>= 3.0) + pg (1.5.9) + securerandom (0.4.1) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + uri (1.0.2) + +PLATFORMS + ruby + x86_64-darwin-20 + +DEPENDENCIES + activerecord + aws-sdk-lambda + aws-sdk-s3 (~> 1) + aws_lambda_ric + iso-639 + json + logging + ox + pg + shared! + +BUNDLED WITH + 2.6.2 diff --git a/lambda/jamtrack-importer/lambdas/unzipper/app.rb b/lambda/jamtrack-importer/lambdas/unzipper/app.rb new file mode 100644 index 000000000..8c4ea9491 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/app.rb @@ -0,0 +1,203 @@ +require_relative "../../shared/lib/jam_ruby/lib/lambda_function" + +require 'cgi' +require 'fileutils' + +module JamRuby +end + +# Establish database connection +def establish_connection + # Load database configuration + db_config_path = File.join(Dir.pwd, 'config', 'database.yml') + puts "db_config_path #{db_config_path}" + db_config = YAML.load(ERB.new(File.read(db_config_path)).result) + puts "db_config #{db_config}" + environment = ENV['RAILS_ENV'] || 'production' + + + # Establish connection + ActiveRecord::Base.establish_connection(db_config[environment]) +end + +def lambda_handler(event:, context:) + + + + puts "event #{event}" + invocation_id = event["invocationId"] + invocation_schema_version = event["invocationSchemaVersion"] + + if invocation_schema_version != "2.0" + puts "InformationSchemaVersion must be 2.0; found #{invocation_schema_version}" + exit 1 + end + + results = [] + result_code = nil + result_string = nil + + user_arguments = event["job"]["userArguments"] + mode = user_arguments["mode"] if user_arguments + if mode.nil? + puts "Mode not specified as argument: #{user_arguments}" + exit 1 + end + + task = event["tasks"][0] + task_id = task["taskId"] + obj_key = CGI.unescape(task["s3Key"]) + obj_version_id = task["s3VersionId"] + bucket_name = task["s3Bucket"] + + if run(mode, bucket_name, obj_key, task_id) == true + result_code = "Succeeded" + result_string = "Imported #{obj_key}" + else + result_code = "Failed" + result_string = "Failed to import #{obj_key}" + end + + results.append( + { + "taskId": task_id, + "resultCode": result_code, + "resultString": result_string, + } + ) + + { + "invocationSchemaVersion": invocation_schema_version, + "treatMissingKeysAs": "PermanentFailure", + "invocationId": invocation_id, + "results": results, + } +end + +def run(mode, bucket_name, obj_key, task_id) + + puts "mode=#{mode}" + ENV['LD_LIBRARY_PATH'] = "/opt/lib:" + ENV['LD_LIBRARY_PATH'].to_s + + # Debugging: Print the library path to verify + puts "LD_LIBRARY_PATH: #{ENV['LD_LIBRARY_PATH']}" + + zip_key = obj_key + manifest_name = File.basename(zip_key) + + puts "Processing obj_key #{obj_key} manifest #{manifest_name}" + + tency_zips_bucket = ENV["TENCY_ZIPS_BUCKET"] #jamka + tency_uploads_bucket = ENV["TENCY_JAMTRACKS_BUCKET"] # jamkazam-tency-202410 + + tency_aws_region = ENV["AWS_REGION"] || "us-east-1" + if tency_aws_region.nil? + puts "tency_aws_region #{tency_aws_region}" + end + puts "Tency AWS Region '#{tency_aws_region}'" + s3_host = ENV["S3_HOST"] || nil # "http://localhost:19090" + + tmp = ENV["MOUNT_PATH"] || "/tmp" + + if mode == "cleanup" + FileUtils.rm_rf(tmp) + return true + end + + working_dir = File.join(tmp, mode, manifest_name) + puts "Working_dir #{working_dir}" + if File.exist?(working_dir) + FileUtils.remove_dir(working_dir, true) + end + FileUtils.mkdir_p(working_dir) + + begin + local_manifest_path = File.join(working_dir, "manifest.txt") + + puts "local manifest path #{local_manifest_path}" + # Initialize the S3 client for the manifest + s3_client = Aws::S3::Client.new( + region: tency_aws_region, + force_path_style: false, + endpoint: 'https://s3.us-east-1.amazonaws.com' + ) + + puts s3_client.config.endpoint + + importer = JamRuby::JamTrackLambdaImporter.new + + #manifest = "/Users/seth/workspace/tency/scripts/manifests/ace-of-base_the-sign_10111/manifest.txt" + #tmp = "/Users/seth/workspace/jam-cloud/lambda/jamtrack-importer/tmp" + + if mode == "unzip" + #Aws.config[:region] = tency_aws_region + puts "HEYYYY zips bucket: #{bucket_name}, exploded-files bucket: #{tency_uploads_bucket}" + tency_zips_manager = JamRuby::S3Manager.new(bucket_name, s3_host) + tence_uploads_manager = JamRuby::S3Manager.new(tency_uploads_bucket, s3_host) + + puts importer.tency_unzipper(tency_zips_manager, tence_uploads_manager, working_dir, manifest_name, local_manifest_path) + elsif mode == "create-jamtrack" + + tency_zips_manager = JamRuby::S3Manager.new(tency_zips_bucket, s3_host) + tence_uploads_manager = JamRuby::S3Manager.new(tency_uploads_bucket, s3_host) + + + begin + # Download the manifest from S3 + puts "Downloading manifest from #{bucket_name} the #{zip_key}" + File.open(local_manifest_path, 'wb') do |file| + s3_client.get_object(bucket: bucket_name, key: zip_key) do |chunk| + file.write(chunk) + end + end + + puts "File downloaded successfully to: #{local_manifest_path}" + rescue Aws::S3::Errors::ServiceError => e + puts "Failed to download manifest: #{e.message}" + result_code = "PermanentFailure" + result_string = "Failed to download manifest: #{e.message}" + end + + if ActiveRecord::Base.connected? + puts "Already connected to db" + else + establish_connection + end + + result = ActiveRecord::Base.connection.execute('SELECT NOW()') + puts "Database query result: #{result.first}" + + JamRuby::JamTrackLambdaImporter.storage_format = "Tency" + JamRuby::JamTrackLambdaImporter::import(tence_uploads_manager, working_dir, manifest_name, local_manifest_path, obj_key) + else + puts "Unknown mode #{mode}" + exit 1 + end + rescue => e + puts "Error: #{e.message}" + puts e.backtrace.join("\n") + raise + ensure + puts "ensure block of run" + if mode == "unzip" # because this happens generally in EFS/AWS + FileUtils.rm_rf(working_dir) + end + end + + puts "success" + true +end + +# take the 1st 3 args from the cli +if __FILE__ == $0 + if ARGV.length < 3 + puts "Usage: #{$0} " + exit 1 + end + + mode = ARGV[0] + bucket_name = ARGV[1] + obj_key = ARGV[2] + + run(mode,bucket_name, obj_key, "1") +end diff --git a/lambda/jamtrack-importer/lambdas/unzipper/config/database.yml b/lambda/jamtrack-importer/lambdas/unzipper/config/database.yml new file mode 100644 index 000000000..284f37b20 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/config/database.yml @@ -0,0 +1,10 @@ +production: + adapter: postgresql + encoding: unicode + pool: 5 + host: <%= ENV['DB_HOST'] %> + database: <%= ENV['DB_NAME'] %> + username: <%= ENV['DB_USER'] %> + password: <%= ENV['DB_PASSWORD'] %> + port: 5432 + sslmode: require diff --git a/lambda/jamtrack-importer/lambdas/unzipper/mapping.csv b/lambda/jamtrack-importer/lambdas/unzipper/mapping.csv new file mode 100644 index 000000000..5cd35d685 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/mapping.csv @@ -0,0 +1,9105 @@ +count,track_name,Instrument,Disambiguation String +4893,click.wav,Clicktrack, +3873,drums.wav,Drums, +3797,bass.wav,Bass Guitar, +2508,bv.wav,Voice,Backing +1657,piano.wav,Piano, +1654,ld.wav,Voice,Lead +1004,strings.wav,Orchestra,Strings +810,lv.wav,Voice,Lead +764,perc.wav,Percussion, +672,organ.wav,Keyboard,Organ +666,fx.wav,Computer,FX +564,synth.wav,Keyboard,Synth +459,pad.wav,Keyboard,Pad +414,ag.wav,Acoustic Guitar, +382,s_drums.wav,Drums, +380,percussion.wav,Percussion, +367,voc.wav,Voice, +351,s_bass.wav,Bass Guitar, +321,eg.wav,Electric Guitar, +306,bkgnds.wav,Computer,Backgrounds +288,precount.wav,Computer,Count In +270,brass.wav,Other,Brass +255,s_bv.wav,Voice,Backing +234,gtr.wav,Electric Guitar, +223,eg 2.wav,Electric Guitar,Electric 2 +216,eg 1.wav,Electric Guitar,Electric 1 +208,gtr 1.wav,Electric Guitar,Electric 1 +205,lead vocal.wav,Voice,Lead +192,s_lv.wav,Voice,Lead +184,gtr 2.wav,Electric Guitar,Electric 2 +183,synth bass.wav,Keyboard,Synth Bass +183,synth 1.wav,Keyboard,Synth 1 +179,synth 2.wav,Keyboard,Synth 2 +174,sfx.wav,Computer,SFX +170,guitar.wav,Electric Guitar, +170,gtr 3.wav,Electric Guitar,Electric 3 +167,percussions.wav,Percussion, +166,pads.wav,Keyboard,Pad +166,lead vox.wav,Voice,Lead +161,eg 3.wav,Electric Guitar,Electric 3 +156,ld-adlib.wav,Voice,Lead Rap +151,rhodes.wav,Keyboard,Rhodes +149,tambourine.wav,Percussion,Tambourine +148,guitar 2.wav,Electric Guitar,Electric 2 +146,synths.wav,Keyboard,Synths +142,s_piano.wav,Piano, +140,b vox only.wav,Voice,Backing +139,guitar 1.wav,Electric Guitar,Electric 1 +134,el piano.wav,Keyboard,Electric Piano +134,bells.wav,Other,Bells +133,horns.wav,Other,Horns +131,flute.wav,Flute, +124,keys.wav,Keyboard, +123,ep.wav,Keyboard,Electric Piano +119,claps.wav,Other,Claps +113,gtr 1 left.wav,Electric Guitar,Electric 1 Left +113,eg_r.wav,Electric Guitar,Right +113,eg_l.wav,Electric Guitar,Left +111,percs.wav,Percussion, +105,sax.wav,Saxophone, +101,eg 4.wav,Electric Guitar,Electric 4 +100,gtr 2 right.wav,Electric Guitar,Electric 2 Right +98,s_perc.wav,Percussion, +96,synth pad.wav,Keyboard,Synth Pad +96,banjo.wav,Banjo, +95,gtr 4.wav,Electric Guitar,Electric 4 +93,synth2.wav,Keyboard,Synth 2 +90,bgv.wav,Voice,Backing +89,synth lead.wav,Keyboard,Synth Lead +88,guitar 3.wav,Electric Guitar,Electric 3 +86,s_fx.wav,Computer,FX +86,gtr1.wav,Electric Guitar,Electric 1 +85,synth 3.wav,Keyboard,Synth 3 +84,gtr2.wav,Electric Guitar,Electric 2 +83,shaker.wav,Percussion,Shaker +83,hammond.wav,Keyboard,Hammond +81,s_gtr1.wav,Electric Guitar,Electric 1 +81,backing vocals.wav,Voice,Backing +78,s_gtr2.wav,Electric Guitar,Electric 2 +78,percu.wav,Percussion, +76,harp.wav,Harp, +76,drum.wav,Drums, +76,bg vocals.wav,Voice,Backing +75,synth1.wav,Keyboard,Synth 1 +75,s_ld.wav,Voice,Lead +74,bvox only.wav,Voice,Backing +72,s_ag.wav,Acoustic Guitar, +71,steel.wav,Electric Guitar,Steel +71,acoustic guitar.wav,Acoustic Guitar, +68,fiddle.wav,Violin,Fiddle +67,synth 01.wav,Keyboard,Synth 1 +66,backing_vocals.wav,Voice,Backing +65,lead.wav,Voice,Lead +65,harmonica.wav,Harmonica, +64,synth 02.wav,Keyboard,Synth 2 +64,s_pad.wav,Keyboard,Pad +63,s_organ.wav,Keyboard,Organ +63,mandolin.wav,Mandolin, +62,s_strings.wav,Orchestra,Strings +62,eglead.wav,Electric Guitar,Lead +62,eg solo.wav,Electric Guitar,Solo +58,synth strings.wav,Keyboard,Synth Strings +56,s_synth.wav,Keyboard,Synth +56,lead_vocals.wav,Voice,Lead +56,drum kit.wav,Drums, +55,trumpet.wav,Trumpet, +55,s_percussion.wav,Percussion, +54,s_eg.wav,Electric Guitar, +52,violin.wav,Violin, +52,eg 5.wav,Electric Guitar,Electric 5 +50,s_gtr3.wav,Electric Guitar,Electric 3 +50,gtr3.wav,Electric Guitar,Electric 3 +50,fxs.wav,Computer,FX +49,synth3.wav,Keyboard,Synth 3 +49,lv-adlib.wav,Voice,Lead Rap +49,gtr 5.wav,Electric Guitar,Electric 5 +47,synthpad.wav,Keyboard,Synth Pad +47,e piano.wav,Keyboard,Electric Piano +47,clavinet.wav,Keyboard,Clavinet +45,leadgt.wav,Electric Guitar,Lead +45,adds.wav,Electric Guitar,Adds +44,gtr 2 left.wav,Electric Guitar,Electric 2 Left +44,bass 2.wav,Bass Guitar,Bass 2 +43,noise.wav,Computer,Noise +43,epiano.wav,Keyboard,Electric Piano +42,guitar 4.wav,Electric Guitar,Electric 4 +41,scratch.wav,Other,Scratch +40,bass 1.wav,Bass Guitar,Bass 1 +39,gtr 3 right.wav,Electric Guitar,Electric 3 Right +39,clarinet.wav,Clarinet, +39,arp.wav,Keyboard,Arpeggio +38,synth brass.wav,Keyboard,Synth Brass +38,eg(lead).wav,Electric Guitar,Lead +38,acgtr.wav,Acoustic Guitar, +37,pluck.wav,Other,Pluck +37,guits.wav,Electric Guitar,Guitars +37,electric guitar.wav,Electric Guitar, +37,ac gtr.wav,Acoustic Guitar, +36,lvocal.wav,Voice,Lead +36,glockenspiel.wav,Glockenspiel, +35,synthbass.wav,Keyboard,Synth Bass +35,oboe.wav,Oboe, +35,flutes.wav,Flute, +35,eguit.wav,Electric Guitar, +35,congas.wav,Percussion,Congas +34,french horns.wav,French Horn, +34,egclean.wav,Electric Guitar,Clean +34,ag 2.wav,Acoustic Guitar,Acoustic 2 +34,808.wav,Keyboard,808 +33,voc 1.wav,Voice,Lead +33,marimba.wav,Percussion,Marimba +33,cello.wav,Cello, +33,bvocal.wav,Voice,Backing +33,acoustic.wav,Acoustic Guitar, +32,tamb.wav,Percussion,Tambourine +32,guitars 2.wav,Electric Guitar,Guitars 2 +32,guitars 1.wav,Electric Guitar,Guitars 1 +32,eg dist.wav,Electric Guitar,Distorted +32,eg 02.wav,Electric Guitar,Electric 2 +32,eg 01.wav,Electric Guitar,Electric 1 +32,choir.wav,Voice,Choir +31,whistle.wav,Other,Whistle +31,vibes.wav,Keyboard,Vibes +31,synth 4.wav,Keyboard,Synth 4 +31,solo eg.wav,Electric Guitar,Solo +31,electric guitar 2.wav,Electric Guitar,Electric 2 +31,eg2.wav,Electric Guitar,Electric 2 +31,bvs.wav,Voice,Backing +31,ag 1.wav,Acoustic Guitar,Acoustic 1 +30,voc 2.wav,Voice,Voice 2 +30,synthlead.wav,Keyboard,Synth Lead +30,eg clean.wav,Electric Guitar,Clean +30,drake.wav,Voice,Drake +30,acougt.wav,Acoustic Guitar, +29,synth 03.wav,Keyboard,Synth 3 +29,s_b.v.wav,Voice,Backing +29,rhygt.wav,Electric Guitar,Rhythm +29,gtr 3 left.wav,Electric Guitar,Electric 3 Left +29,electric guitar 1.wav,Electric Guitar,Electric 1 +28,synth choir.wav,Keyboard,Synth Choir +28,s_synth bass.wav,Keyboard,Synth Bass +28,mix synths.wav,Keyboard,Synth Mix +28,gtr 4 right.wav,Electric Guitar,Electric 4 Right +27,string.wav,Orchestra,Strings +27,s_gtr4.wav,Electric Guitar,Electric 4 +27,brasses.wav,Other,Brass +27,accordion.wav,Accordion, +26,guitars 3.wav,Electric Guitar,Electric 3 +26,guit.wav,Electric Guitar, +26,electric piano.wav,Keyboard,Electric Piano +25,mellotron.wav,Keyboard,Mellotron +25,egdisto.wav,Electric Guitar,Distorted +24,percs and fx.wav,Percussion, +24,ld and double.wav,Voice,Lead +24,ld 12.wav,Voice,Lead +24,lap steel.wav,Electric Guitar,Lap Steel +24,eg 6.wav,Electric Guitar,Electric 6 +24,eg 1 left.wav,Electric Guitar,Electric 1 Left +24,dobro.wav,Dobro, +23,solo.wav,Electric Guitar,Solo +23,loop.wav,Computer,Loop +23,leftgtr 1.wav,Electric Guitar,Electric 1 Left +23,glock.wav,Glockenspiel, +23,elgtr 02.wav,Electric Guitar,Electric 2 +23,elgtr 01.wav,Electric Guitar,Electric 1 +23,eguit2.wav,Electric Guitar,Electric 2 +22,trance.wav,Computer,Trance +22,synth guit.wav,Keyboard,Synth Guitar +22,synth arp.wav,Keyboard,Synth Arpeggio +22,gtr4.wav,Electric Guitar,Electric 4 +22,eg lead.wav,Electric Guitar,Lead +22,eg adds.wav,Electric Guitar,Adds +22,brass section.wav,Other,Brass +22,ag_r.wav,Acoustic Guitar,Right +22,ag_l.wav,Acoustic Guitar,Left +21,voc 1b.wav,Voice,Backing +21,trumpets.wav,Trumpet, +21,synth pluck.wav,Keyboard,Synth Pluck +21,sitar.wav,Sitar, +21,s_synth1.wav,Keyboard,Synth 1 +21,s_ep.wav,Keyboard,Electric Piano +21,eguit 1.wav,Electric Guitar,Electric 1 +21,eg l.wav,Electric Guitar,Left +21,eg 2 right.wav,Electric Guitar,Electric 2 Right +21,acoustic_guitar.wav,Acoustic Guitar, +20,synth 5.wav,Keyboard,Synth 5 +20,s_synth2.wav,Keyboard,Synth 2 +20,rightgtr 2.wav,Electric Guitar,Electric 2 Right +20,right eg.wav,Electric Guitar,Right +20,mallets.wav,Percussion,Mallets +20,lead synth.wav,Keyboard,Synth Lead +20,elgtr.wav,Electric Guitar, +20,electric guitar 3.wav,Electric Guitar,Electric 3 +20,eg r.wav,Electric Guitar,Right +20,eg crunch.wav,Electric Guitar,Crunch +20,eg 03.wav,Electric Guitar,Electric 3 +20,double bass.wav,Double Bass, +20,cleangt.wav,Electric Guitar,Clean +20,clav.wav,Keyboard,Clavinet +20,bv2.wav,Voice,Backing 2 +20,bass synth.wav,Keyboard,Synth Bass +20,ag 02.wav,Acoustic Guitar,Acoustic 2 +20,ag 01.wav,Acoustic Guitar,Acoustic 1 +19,vocoder.wav,Vocoder, +19,trombone.wav,Trombone, +19,synths 1.wav,Keyboard,Synth 1 +19,s_sfx.wav,Computer,SFX +19,gtr 6.wav,Electric Guitar,Electric 6 +19,eguit1.wav,Electric Guitar,Electric 1 +19,02_drums.wav,Drums,Drums 2 +18,s_synth keys.wav,Keyboard,Synth Keys +18,precompte.wav,Other, +18,left eg.wav,Electric Guitar,Left +18,guitars 4.wav,Electric Guitar,Electric 4 +18,gtrs.wav,Electric Guitar,Guitars +18,gtr 4 left.wav,Electric Guitar,Electric 4 Left +18,gtr 1 right.wav,Electric Guitar,Electric 1 Right +18,egsolo.wav,Electric Guitar,Solo +18,e guitar 1.wav,Electric Guitar,Electric 1 +18,cowbell.wav,Percussion,Cowbell +18,bell.wav,Keyboard,Synth Bells +18,acc guitar.wav,Acoustic Guitar, +17,synth4.wav,Keyboard,Synth 4 +17,synth keys.wav,Keyboard,Synth +17,synth bells.wav,Keyboard,Synth Bells +17,organ 1.wav,Keyboard,Organ +17,moog.wav,Keyboard,Moog +17,lil wayne.wav,Voice,Lil Wayne +17,lead vocals.wav,Voice,Lead +17,guitar 1 left.wav,Electric Guitar,Electric 1 Left +17,gtr solo.wav,Electric Guitar,Solo +17,gtr 5 right.wav,Electric Guitar,Electric 5 Right +17,disto eg.wav,Electric Guitar,Distorted +16,vocal.wav,Voice,Lead +16,tympani.wav,Timpani, +16,s_gtr.wav,Electric Guitar, +16,s_eg1.wav,Electric Guitar,Electric 1 +16,s_brass.wav,Other,Brass +16,organ 2.wav,Keyboard,Organ 2 +16,key.wav,Keyboard, +16,elegtr1.wav,Electric Guitar,Electric 1 +16,elegtr.wav,Electric Guitar, +16,electric_guitar.wav,Electric Guitar, +16,eguit solo.wav,Electric Guitar,Solo +16,eguit 3.wav,Electric Guitar,Electric 3 +16,eguit 2.wav,Electric Guitar,Electric 2 +16,eg(disto).wav,Electric Guitar,Distorted +16,eg(clean).wav,Electric Guitar,Clean +16,eg arr.wav,Electric Guitar,Arpeggios +16,bg vocals 2.wav,Voice,Backing +15,timpani.wav,Timpani, +15,synths 2.wav,Keyboard,Synth 2 +15,synthbrass.wav,Keyboard,Synth Brass +15,s_electric guitar 2.wav,Electric Guitar,Electric 2 +15,s_eg_l.wav,Electric Guitar,Left +15,s_eg2.wav,Electric Guitar,Electric 2 +15,s_eg 02.wav,Electric Guitar,Electric 2 +15,pizzicato.wav,Keyboard,Pizzicato +15,lv and double.wav,Voice,Lead +15,left gtr 1.wav,Electric Guitar,Electric 1 Left +15,leadsynth.wav,Keyboard,Synth Lead +15,lds.wav,Voice,Lead +15,harpsichord.wav,Keyboard,Harpsichord +15,guitar 5.wav,Electric Guitar,Electric 5 +15,guitar 2 right.wav,Electric Guitar,Electric 2 Right +15,elegtr2.wav,Electric Guitar,Electric 2 +15,el gtr.wav,Electric Guitar, +15,eg c.wav,Electric Guitar, +15,e guitar 2.wav,Electric Guitar,Electric 2 +15,cardi b.wav,Voice,Cardi B +15,brass synth.wav,Keyboard,Synth Brass +15,bg vocals 1.wav,Voice,Backing +15,bassoon.wav,Bassoon, +15,bad bunny.wav,Voice,Bad Bunny +15,ag2.wav,Acoustic Guitar,Acoustic 2 +15,acoustic guitar 2.wav,Acoustic Guitar,Acoustic 2 +15,acoustic guitar 1.wav,Acoustic Guitar,Acoustic 1 +14,wurlitzer.wav,Keyboard,Wurlitzer +14,tuba.wav,Tuba, +14,synthfx.wav,Keyboard,Synth FX +14,synth fx.wav,Keyboard,Synth FX +14,sub bass.wav,Bass Guitar, +14,snoop dogg.wav,Voice,Snoop Dogg +14,s_sax.wav,Saxophone, +14,s_gtr5.wav,Electric Guitar,Electric 5 +14,s_electric guitar 1.wav,Electric Guitar,Electric 1 +14,s_eg3.wav,Electric Guitar,Electric 3 +14,s_eg 01.wav,Electric Guitar,Electric 1 +14,right gtr 2.wav,Electric Guitar,Electric 2 Right +14,female.wav,Voice,Female +14,egcrunch.wav,Electric Guitar,Crunch +14,drivegt.wav,Electric Guitar,Drive +14,basse.wav,Bass Guitar, +14,arr eg.wav,Electric Guitar,Arpeggios +14,acoustic_guitar_steel.wav,Acoustic Guitar,Steel +13,vibraphone.wav,Keyboard,Vibes +13,synth lead 2.wav,Keyboard,Synth Lead 2 +13,snaps.wav,Other,Snaps +13,s_guit.wav,Electric Guitar, +13,s_gtr r.wav,Electric Guitar,Right +13,s_gtr ld.wav,Electric Guitar,Lead +13,s_gtr l.wav,Electric Guitar,Left +13,s_flute.wav,Flute, +13,s_electric guitar.wav,Electric Guitar, +13,s_eg_r.wav,Electric Guitar,Right +13,s_bass synth.wav,Keyboard,Synth Bass +13,s_banjo.wav,Banjo, +13,s_ag2.wav,Acoustic Guitar,Acoustic 2 +13,rhygt_r.wav,Electric Guitar,Rhythm Right +13,rhygt_l.wav,Electric Guitar,Rhythm Left +13,pluck synth.wav,Keyboard,Synth Pluck +13,organs.wav,Keyboard,Organ +13,lead_vocal.wav,Voice,Lead +13,kalimba.wav,Other,Kalimba +13,guitar2.wav,Electric Guitar,Electric 2 +13,eguit3.wav,Electric Guitar,Electric 3 +13,eg3.wav,Electric Guitar,Electric 3 +13,eg 7.wav,Electric Guitar,Electric Guitar 7 +13,eg 04.wav,Electric Guitar,Electric 4 +13,efx.wav,Keyboard,FX +13,clap.wav,Other,Clap +13,bv 2.wav,Voice,Backing 2 +13,addgt.wav,Electric Guitar,Adds +13,acguitar.wav,Acoustic Guitar, +13,2pac.wav,Voice,2Pac +13,01 drums.wav,Drums, +12,voc-adlib.wav,Voice,Rap +12,tubular bells.wav,Keyboard,Tubular Bells +12,synthstrings.wav,Keyboard,Synth Strings +12,s_violin.wav,Violin, +12,s_keys.wav,Keyboard, +12,pre count.wav,Computer,Count In +12,percus.wav,Percussion, +12,perc 1.wav,Percussion,Percussion 1 +12,nicki minaj.wav,Voice,Nicki Minaj +12,male lead.wav,Voice,Male Lead +12,lead guitar.wav,Electric Guitar,Lead +12,lead guit.wav,Electric Guitar,Lead +12,horn.wav,Other,Horns +12,hits.wav,Percussion,Hits +12,hammond organ.wav,Keyboard,Hammond +12,guitars.wav,Electric Guitar,Guitars +12,guitar solo.wav,Electric Guitar,Solo +12,gtr synth.wav,Keyboard,Synth Guitar +12,elec gtr 1.wav,Electric Guitar,Electric 1 +12,eguit 4.wav,Electric Guitar,Electric 4 +12,eg dist 01.wav,Electric Guitar,Distorted 1 +12,eg 2 left.wav,Electric Guitar,Electric 2 Left +12,edrums.wav,Drums,Electronic +12,drumkit.wav,Drums, +12,bv male.wav,Voice,Backing Male +12,bongos.wav,Percussion,Bongos +12,ag 2 right.wav,Acoustic Guitar,Acoustic 2 Right +12,ag 1 left.wav,Acoustic Guitar,Acoustic 1 Left +12,ac guitar.wav,Acoustic Guitar, +11,xylophone.wav,Other,Xylophone +11,upright bass.wav,Double Bass, +11,tpt.wav,Other, +11,synth pads.wav,Keyboard,Synth Pad +11,synth pad 2.wav,Keyboard,Synth Pad 2 +11,synth lead 1.wav,Keyboard,Synth Lead 1 +11,synth guitar.wav,Keyboard,Synth Guitar +11,synth adds.wav,Keyboard,Synth Adds +11,synth 6.wav,Keyboard,Synth 6 +11,strings 1.wav,Orchestra,Strings 1 +11,string section.wav,Orchestra,Strings +11,string ensemble.wav,Orchestra,Strings +11,s_trumpet.wav,Trumpet, +11,s_sub.wav,Other, +11,s_eglead.wav,Electric Guitar,Lead +11,rap lead.wav,Voice,Rap Lead +11,perc 2.wav,Percussion,Percussion 2 +11,male.wav,Voice,Male +11,lap steel guitar.wav,Electric Guitar,Lap Steel +11,gtr 7.wav,Electric Guitar,Electric 7 +11,eminem.wav,Voice,Eminem +11,electric guitar 5.wav,Electric Guitar,Electric 5 +11,electric guitar 4.wav,Electric Guitar,Electric 4 +11,el gtr 2.wav,Electric Guitar,Electric 2 +11,eguit solos.wav,Electric Guitar,Solo +11,egmute.wav,Electric Guitar,Muted +11,eg_r 2.wav,Electric Guitar,Electric Right 2 +11,eg dis.wav,Electric Guitar,Distorted +11,eg clean 01.wav,Electric Guitar,Electric Clean 1 +11,eg 3 left.wav,Electric Guitar,Electric 3 Left +11,eg 1 right.wav,Electric Guitar,Electric 1 Right +11,eg 1 + 2.wav,Electric Guitar, +11,doublebass.wav,Double Bass, +11,clean eg.wav,Electric Guitar,Clean +11,bv female.wav,Voice,Backing Female +11,bv 1.wav,Voice,Backing 1 +11,b.v.wav,Voice,Backing +11,accordeon.wav,Accordion, +11,03_percu.wav,Percussion,Percussion 3 +10,vox.wav,Voice, +10,voicesynth.wav,Keyboard,Synth Voice +10,tambo.wav,Percussion,Tambourine +10,strings 2.wav,Orchestra,Strings 2 +10,saxes.wav,Saxophone, +10,s_synth3.wav,Keyboard,Synth 3 +10,s_ag1.wav,Acoustic Guitar,Acoustic 1 +10,rhythmic eg.wav,Electric Guitar,Rhythm +10,real pedal steel.wav,Electric Guitar,Pedal Steel +10,quavo.wav,Voice,Quavo +10,piano 2.wav,Piano,Piano 2 +10,piano 1.wav,Piano,Piano 1 +10,pad 2.wav,Keyboard,Pad 2 +10,mix keys.wav,Keyboard,Mixed Keys +10,ludacris.wav,Voice,Ludacris +10,ld 2.wav,Voice,Lead 2 +10,lapsteelgt.wav,Electric Guitar,Lap Steel +10,kendrick lamar.wav,Voice,Kendrick Lamar +10,kanye west.wav,Voice,Kanye West +10,gtr5.wav,Electric Guitar,Electric 5 +10,electric_rhythm_guitar_left.wav,Electric Guitar,Rhythm Left +10,electric_rhythm_guitar.wav,Electric Guitar,Rhythm +10,electric_lead_guitar.wav,Electric Guitar,Lead +10,elec gtr.wav,Electric Guitar, +10,elec gtr 2.wav,Electric Guitar,Electric 2 +10,egtr2.wav,Electric Guitar,Electric 2 +10,egslide.wav,Electric Guitar,Slide +10,eg(solo).wav,Electric Guitar,Solo +10,eg dist 03.wav,Electric Guitar,Distorted 3 +10,celeste.wav,Voice,Celeste +10,all bvs.wav,Voice,Backing +10,add synths.wav,Keyboard,Synth Adds +10,acousticguitar.wav,Acoustic Guitar, +10,2.wav,Other, +10,1.wav,Other, +9,woodwinds.wav,Orchestra,Woodwinds +9,windchimes.wav,Percussion,Wind Chimes +9,travis scott.wav,Voice,Travis Scott +9,synthkey.wav,Keyboard,Synth +9,subbass.wav,Bass Guitar,Sub Bass +9,steel drums.wav,Percussion,Steel Drums +9,slide gtr.wav,Electric Guitar,Slide +9,sax solo.wav,Saxophone,Solo +9,s_tambourine.wav,Percussion,Tambourine +9,s_string section.wav,Orchestra,Strings +9,s_mandolin.wav,Mandolin, +9,s_electric piano.wav,Keyboard,Electric Piano +9,s_ag 02.wav,Acoustic Guitar,Acoustic 2 +9,s_ag 01.wav,Acoustic Guitar,Acoustic 1 +9,rhode.wav,Keyboard,Rhodes +9,plucksynth.wav,Keyboard,Synth Pluck +9,plucks.wav,Keyboard,Synth Pluck +9,pluck synths.wav,Keyboard,Synth Pluck +9,organ synth.wav,Keyboard,Organ +9,mix synthpads.wav,Keyboard,Synth Pad +9,mandoline.wav,Mandolin, +9,ld synth.wav,Keyboard,Synth Lead +9,female lead.wav,Voice,Lead Female +9,electronic_drums.wav,Drums,Electronic +9,electric_rhythm_guitar_right.wav,Electric Guitar,Rhythm Right +9,electric_rhythm_guitar_2.wav,Electric Guitar,Rhythm 2 +9,electric_rhythm_guitar_1.wav,Electric Guitar,Rhythm 1 +9,el piano 2.wav,Keyboard,Electric Piano +9,el gtr 1.wav,Electric Guitar,Electric 1 +9,eguit4.wav,Electric Guitar,Electric 4 +9,eg1.wav,Electric Guitar,Electric 1 +9,eg(crunch).wav,Electric Guitar,Crunch +9,eg fx.wav,Electric Guitar,FX +9,eg b.wav,Electric Guitar,Electric 2 +9,eg a.wav,Electric Guitar,Electric 1 +9,e guitar lead.wav,Electric Guitar,Lead +9,conga.wav,Percussion,Congas +9,clavi.wav,Keyboard,Clavinet +9,bv1.wav,Voice,Backing +9,bv and adds.wav,Voice,Backing +9,04_bass.wav,Bass Guitar, +8,vocal synth.wav,Keyboard,Synth Vocal +8,violins.wav,Violin, +8,trombones.wav,Trombone, +8,theremin.wav,Theremin, +8,t-pain.wav,Voice,T-Pain +8,synth_pad.wav,Keyboard,Synth Pad +8,synth_bass.wav,Keyboard,Synth Bass +8,synth pad 1.wav,Keyboard,Synth Pad 1 +8,synth 04.wav,Keyboard,Synth 4 +8,sung lead.wav,Voice,Lead +8,strings section.wav,Orchestra,Strings +8,sample.wav,Computer,Sample +8,s_tambo.wav,Percussion,Tambourine +8,s_synth strings.wav,Keyboard,Synth Strings +8,s_synth lead.wav,Keyboard,Synth Lead +8,s_sound effects.wav,Computer,SFX +8,s_eg lead.wav,Electric Guitar,Lead +8,s_eg 2.wav,Electric Guitar,Electric 2 +8,s_eg 1.wav,Electric Guitar,Electric 1 +8,s_eg 03.wav,Electric Guitar,Electric 3 +8,s_distortion guitar.wav,Electric Guitar,Distorted +8,rhythmguitar.wav,Electric Guitar,Rhythm +8,rhythmgtr.wav,Electric Guitar,Rhythm +8,reversecymbal.wav,Computer,Reverse Cymbal +8,pizz.wav,Keyboard,Pizzicato +8,pad 1.wav,Keyboard,Synth Pad 1 +8,mutegt.wav,Electric Guitar,Muted +8,missy elliott.wav,Voice,Missy Elliott +8,megan thee stallion.wav,Voice,Megan Thee Stallion +8,lv and adds.wav,Voice,Lead +8,leadguitar.wav,Electric Guitar,Lead +8,jay-z.wav,Voice,Jay-Z +8,gtrsolo.wav,Electric Guitar,Solo +8,gtr-acst.wav,Acoustic Guitar, +8,gtr 5 left.wav,Electric Guitar,Electric 5 Left +8,electric_piano.wav,Keyboard,Electric Piano +8,el piano 1.wav,Keyboard,Electric Piano 1 +8,el guit.wav,Electric Guitar, +8,egtr3.wav,Electric Guitar,Electric 3 +8,egdistortion.wav,Electric Guitar,Distorted +8,eg_rlead.wav,Electric Guitar,Lead Right +8,eg_rcrunch.wav,Electric Guitar,Crunch Right +8,eg_llead.wav,Electric Guitar,Lead +8,eg_lcrunch.wav,Electric Guitar,Crunch Left +8,eg2 right.wav,Electric Guitar,Electric Right 2 +8,eg dist 04.wav,Electric Guitar,Distorted 4 +8,eg dist 02.wav,Electric Guitar,Distorted 2 +8,eg clean 02.wav,Electric Guitar,Electric Clean 2 +8,eg chorus.wav,Electric Guitar,Chorus +8,eg 4 right.wav,Electric Guitar,Electric 4 Right +8,drums-.wav,Drums, +8,dr. dre.wav,Voice,Dr. Dre +8,crunch eg.wav,Electric Guitar,Crunch +8,contrabass.wav,Other,Contrabass +8,choeurs.wav,Other, +8,chimes.wav,Keyboard,Chimes +8,celesta.wav,Keyboard,Celesta +8,camila cabello.wav,Voice,Camila Cabello +8,bv-2.wav,Voice,Backing 2 +8,bruno mars.wav,Voice,Bruno Mars +8,basssynth.wav,Keyboard,Synth Bass +8,bass-.wav,Bass Guitar, +8,atmo.wav,Computer,Atmosphere +8,ag3.wav,Acoustic Guitar,Acoustic 3 +8,ag1.wav,Acoustic Guitar,Acoustic 1 +8,ag l.wav,Acoustic Guitar,Acoustic Left +8,acgtrs.wav,Acoustic Guitar,Guitars +7,wurly.wav,Keyboard,Wurlitzer +7,willie nelson.wav,Voice,Willie Nelson +7,vox fx.wav,Keyboard,Synth Vox FX +7,trp.wav,Other, +7,triangle.wav,Percussion,Triangle +7,sza.wav,Voice,SZA +7,synthsolo.wav,Keyboard,Synth Solo +7,syntharp.wav,Keyboard,Synth Arpeggios +7,synth5.wav,Keyboard,Synth 5 +7,synth key.wav,Keyboard,Synth +7,synth bell.wav,Keyboard,Synth Bells +7,synth 7.wav,Keyboard,Synth 7 +7,strings vst.wav,Keyboard,Synth Strings +7,steeldrums.wav,Percussion,Steel Drums +7,steel gtr.wav,Electric Guitar,Steel +7,scratches.wav,Other,Scratches +7,s_trombone.wav,Trombone, +7,s_synth_lead.wav,Keyboard,Synth Lead +7,s_shaker.wav,Percussion,Shaker +7,s_mellotron.wav,Keyboard,Mellotron +7,s_lap steel guitar.wav,Electric Guitar,Lap Steel +7,s_bv m.wav,Voice,Backing Male +7,s_bv f.wav,Voice,Backing Female +7,s_bells.wav,Keyboard,Synth Bells +7,s_arpeggiator.wav,Keyboard,Arpeggios +7,s_acoustic guitar.wav,Acoustic Guitar, +7,rock organ.wav,Keyboard,Rock Organ +7,rightgtr 3.wav,Electric Guitar,Electric Right 3 +7,right ag.wav,Acoustic Guitar,Right +7,real harmonica.wav,Harmonica, +7,perc-.wav,Percussion, +7,perc+fx.wav,Percussion, +7,pads and strings.wav,Keyboard,Pads & Strings +7,orchestra.wav,Orchestra, +7,mix percs+fxs.wav,Percussion, +7,mix ld1+2.wav,Other, +7,mando.wav,Mandolin, +7,left ag.wav,Acoustic Guitar,Left +7,ld and adds.wav,Other, +7,ld 123.wav,Other, +7,kick.wav,Drums,Kick +7,keyboard.wav,Keyboard, +7,hit.wav,Percussion,Hit +7,guitar 6.wav,Electric Guitar,Electric 6 +7,gtr6.wav,Electric Guitar,Electric 6 +7,elpiano.wav,Keyboard,Electric Piano +7,el.gtr solo.wav,Electric Guitar,Solo +7,eguit5.wav,Electric Guitar,Electric 5 +7,eguit 5.wav,Electric Guitar,Electric 5 +7,egtr1.wav,Electric Guitar,Electric 1 +7,eg rhythm.wav,Electric Guitar,Rhythm +7,eg lead 2.wav,Electric Guitar,Electric Lead 2 +7,eg clean 03.wav,Electric Guitar,Electric Clean 3 +7,eg 3 right.wav,Electric Guitar,Electric 3 Right +7,eg 05.wav,Electric Guitar,Electric 5 +7,e guitar 3.wav,Electric Guitar,Electric 3 +7,countin.wav,Computer,Count In +7,chris brown.wav,Voice,Chris Brown +7,chords.wav,Other,Chords +7,bv-.wav,Voice,Backing +7,bkgnds 2.wav,Computer,Background 2 +7,bkgnds 1.wav,Computer,Background 1 +7,beyonce.wav,Voice,Beyonce +7,bell synth.wav,Keyboard,Synth Bells +7,becky g.wav,Voice,Becky G +7,beat.wav,Percussion,Beat +7,batterie.wav,Other, +7,bass_synth.wav,Keyboard,Synth Bass +7,bass-01.wav,Bass Guitar,Bass 1 +7,bass guitar.wav,Bass Guitar, +7,b3.wav,Bass Guitar,Bass 3 +7,anderson .paak.wav,Voice,Anderson .Paak +7,ag r.wav,Acoustic Guitar,Right +7,ag 3.wav,Acoustic Guitar,Acoustic 3 +7,add guits.wav,Electric Guitar,Adds +7,ad libs.wav,Voice,Rap +7,acougt_r.wav,Acoustic Guitar,Right +7,accordian.wav,Accordion, +7,ac gtr 2.wav,Acoustic Guitar,Acoustic 2 +7,808 bass.wav,Keyboard,808 +7,50 cent.wav,Voice,50 Cent +6,whagt.wav,Other, +6,voc 4.wav,Voice,Voice 4 +6,voc 3.wav,Voice,Voice 3 +6,vinyl.wav,Other,Vinyl +6,ukelele.wav,Ukulele, +6,synthpluck.wav,Keyboard,Synth Pluck +6,synthflute.wav,Keyboard,Synth Flute +6,synth-2.wav,Keyboard,Synth 2 +6,synth vox.wav,Keyboard,Synth Vox +6,synth string.wav,Keyboard,Synth Strings +6,synth organ.wav,Keyboard,Organ +6,synth flute.wav,Keyboard,Synth Flute +6,synth 1 left.wav,Keyboard,Synth 1 Left +6,sweep.wav,Keyboard,Sweep +6,sound fx.wav,Keyboard,SFX +6,seq synths.wav,Keyboard, +6,sax 2.wav,Saxophone,Sax 2 +6,s_synth bells.wav,Keyboard,Synth Bells +6,s_synth 1.wav,Keyboard,Synth 1 +6,s_synth 02.wav,Keyboard,Synth 2 +6,s_synth 01.wav,Keyboard,Synth 1 +6,s_string ensemble.wav,Orchestra,Strings +6,s_pluck.wav,Keyboard,Synth Pluck +6,s_percs.wav,Percussion, +6,s_guit_solo.wav,Electric Guitar,Solo +6,s_epiano.wav,Keyboard,Electric Piano +6,s_electric guitar 3.wav,Electric Guitar,Electric 3 +6,s_eg4.wav,Electric Guitar,Electric 4 +6,s_eg solo.wav,Electric Guitar,Solo +6,s_crunch guitar.wav,Electric Guitar,Crunch +6,s_cello.wav,Cello, +6,s_bell.wav,Keyboard,Synth Bells +6,rhythmic ag.wav,Acoustic Guitar,Rhythm +6,real violin.wav,Violin, +6,post malone.wav,Voice,Post Malone +6,poly synth.wav,Keyboard,Poly Synth +6,pitbull.wav,Voice,Pitbull +6,pia.wav,Voice,Pia +6,pharrell williams.wav,Voice,Pharrell Williams +6,pedal steel.wav,Electric Guitar,Pedal Steel +6,offset.wav,Other, +6,nate dogg.wav,Voice,Nate Dogg +6,mix strings.wav,Orchestra,Strings +6,mix percs.wav,Percussion, +6,mix brasses.wav,Other,Brass +6,mix basses.wav,Other,Brass +6,mix ac.gtrs.wav,Acoustic Guitar, +6,mainsynth.wav,Keyboard,Synth Main +6,main synth.wav,Keyboard,Synth Main +6,leftgtr 3.wav,Electric Guitar,Electric Left 3 +6,leftgtr 2.wav,Electric Guitar,Electric Left 2 +6,leadvox.wav,Voice,Lead +6,leadgtr.wav,Electric Guitar,Lead +6,leadgt 2.wav,Electric Guitar,Lead 2 +6,lead gtr.wav,Electric Guitar,Lead +6,ld-.wav,Electric Guitar,Lead +6,ld 1.wav,Electric Guitar,Lead 1 +6,lady gaga.wav,Voice,Lady Gaga +6,keyboards.wav,Keyboard, +6,justin bieber.wav,Voice,Justin Bieber +6,guitars 5.wav,Electric Guitar,Electric 5 +6,guitar 2 left.wav,Electric Guitar,Electric 2 Left +6,gtr synths.wav,Keyboard,Synth Guitar +6,gtr ld.wav,Electric Guitar,Lead +6,gtr 6 left.wav,Electric Guitar,Electric 6 Left +6,french horn.wav,French Horn, +6,electric_solo_guitar.wav,Electric Guitar,Solo +6,electric_arrangement_guitar.wav,Electric Guitar, +6,electric guitar solo.wav,Electric Guitar,Solo +6,elec guitar.wav,Electric Guitar, +6,egtr1 left.wav,Electric Guitar,Electric 1 Left +6,egtr.wav,Electric Guitar, +6,egt 2.wav,Electric Guitar,Electric 2 +6,egt 1.wav,Electric Guitar,Electric 1 +6,eg_r(disto).wav,Electric Guitar,Distorted Right +6,eg_lclean.wav,Electric Guitar,Clean Left +6,eg_l(disto).wav,Electric Guitar,Distorted Left +6,eg_l 2.wav,Electric Guitar,Electric 2 Left +6,eg left.wav,Electric Guitar,Left +6,eg lead 3.wav,Electric Guitar,Lead 3 +6,eg lead 1.wav,Electric Guitar,Lead 1 +6,eg 8.wav,Electric Guitar,Electric 8 +6,ed sheeran.wav,Voice,Ed Sheeran +6,e guitar.wav,Electric Guitar, +6,drivegt_l.wav,Electric Guitar,Drive Left +6,distortion guitar.wav,Electric Guitar,Distorted +6,distortion guitar solo.wav,Electric Guitar,Distorted Solo +6,dist synths.wav,Keyboard,Synths +6,clngtr.wav,Electric Guitar,Clean +6,cleangt_r.wav,Electric Guitar,Clean Right +6,cleangt_l.wav,Electric Guitar,Clean Left +6,bv-1.wav,Voice,Backing 1 +6,bgs.wav,Voice,Backing 1 +6,beatbox.wav,Other,Beatbox +6,arpeggio.wav,Other,Arpeggios +6,arp synth.wav,Keyboard,Synth Arpeggios +6,ag 1 + 2.wav,Acoustic Guitar, +6,acoustic gtr.wav,Acoustic Guitar, +6,acougt_l.wav,Acoustic Guitar,Left +6,ac gtr 1.wav,Acoustic Guitar,Acoustic 1 +6,a guitar 2.wav,Acoustic Guitar,Acoustic 2 +6,a guitar 1.wav,Acoustic Guitar,Acoustic 1 +6,3.wav,Other, +5,wurli.wav,Keyboard,Wurlitzer +5,will.i.am.wav,Voice,Will.i.am +5,vocals.wav,Voice, +5,vocal fx.wav,Voice,FX +5,voc synth.wav,Keyboard,Synth Vox +5,voc 2b.wav,Voice, +5,violons.wav,Violin, +5,viola.wav,Viola, +5,vibra.wav,Keyboard,Vibes +5,ty dolla sign.wav,Voice,Ty Dolla Sign +5,trancesynth.wav,Keyboard,Synth Trance +5,the weeknd.wav,Voice,The Weeknd +5,the notorious b.i.g..wav,Voice,Notorious B.I.G. +5,tambourin.wav,Percussion,Tambourine +5,takeoff.wav,Other,Takeoff +5,synth-1.wav,Keyboard,Synth 1 +5,synth vocal.wav,Keyboard,Synth Vox +5,synth solo.wav,Keyboard,Synth Solo +5,synth melo.wav,Keyboard,Synth Melo +5,synth ld.wav,Keyboard,Synth Lead +5,synth arr.wav,Keyboard,Synth Arpeggios +5,sub.wav,Other, +5,stabs.wav,Keyboard,Synth Stabs +5,sonar.wav,Other,Sonar +5,sexyy red.wav,Voice,Sexyy Red +5,scott.wav,Other, +5,saxophone.wav,Saxophone, +5,saw synth.wav,Keyboard,Synth Saw +5,s_synth4.wav,Keyboard,Synth 4 +5,s_synth vox.wav,Keyboard,Synth Vox +5,s_synth pad.wav,Keyboard,Synth Pad +5,s_rock organ.wav,Keyboard,Rock Organ +5,s_guit_clean.wav,Electric Guitar,Clean +5,s_gtr6.wav,Electric Guitar,Electric 6 +5,s_gtr fx.wav,Electric Guitar,FX +5,s_fiddle.wav,Violin,Fiddle +5,s_electric guitar 4.wav,Electric Guitar,Electric 4 +5,s_eg 3.wav,Electric Guitar,Electric 3 +5,s_claps.wav,Other,Claps +5,s_clap.wav,Other,Claps +5,s_choir.wav,Voice,Choir +5,s_brasses.wav,Other,Brass +5,s_bass gtr.wav,Bass Guitar, +5,s_ag3.wav,Acoustic Guitar,Acoustic 3 +5,s_acoustic guitar 2.wav,Acoustic Guitar,Acoustic 2 +5,rightgtr 4.wav,Electric Guitar,Electric 4 Right +5,real trumpet.wav,Trumpet, +5,precount click.wav,Computer,Count In +5,playboi carti.wav,Voice,Playboi Carti +5,pink.wav,Voice,Pink +5,percusion.wav,Percussion, +5,music box.wav,Other,Music Box +5,mix synthkeys.wav,Keyboard,Synth Mix +5,mix synthbasses.wav,Keyboard,Synth Bass +5,mix pad+strings.wav,Keyboard,Synth Pad +5,mix fx.wav,Other,FX +5,mix el.gtrs.wav,Electric Guitar,Guitars +5,mix bv.wav,Voice,Backing +5,mix bv+adds.wav,Voice,Backing +5,mallet synths.wav,Keyboard,Synth Mallet +5,machine gun kelly.wav,Voice,Machine Gun Kelly +5,lil nas x.wav,Voice,Lil Nas X +5,lil kim.wav,Voice,Lil Kim +5,lil durk.wav,Voice,Lil Durk +5,left gtr 3.wav,Electric Guitar,Electric 3 Left +5,lead guits.wav,Electric Guitar,Lead +5,ldgtr.wav,Electric Guitar,Lead +5,key synths.wav,Keyboard,Synth Lead +5,intro.wav,Other,Intro +5,hammond_organ_2.wav,Keyboard,Hammond 2 +5,hammond_organ_1.wav,Keyboard,Hammond 1 +5,hammond_organ.wav,Keyboard,Hammond +5,hammond-.wav,Keyboard,Hammond +5,guitar_2.wav,Electric Guitar,Electric 2 +5,guitar_1.wav,Electric Guitar,Electric 1 +5,guitar3.wav,Electric Guitar,Electric 3 +5,guitar-2.wav,Electric Guitar,Electric 2 +5,guitar 1 right.wav,Electric Guitar,Electric 1 Right +5,guit 2.wav,Electric Guitar,Electric 2 +5,guit 1.wav,Electric Guitar,Electric 1 +5,gtr-solo.wav,Electric Guitar,Solo +5,gtr clean.wav,Electric Guitar,Clean +5,gtr 8.wav,Electric Guitar,Electric 8 +5,fiddle 2.wav,Violin,Fiddle 2 +5,fergie.wav,Voice,Fergie +5,electric_clean_guitar.wav,Electric Guitar,Clean +5,elec gtr 3.wav,Electric Guitar,Electric 3 +5,el.gtr.wav,Electric Guitar, +5,el gtr1.wav,Electric Guitar,Electric 1 +5,eguitar.wav,Electric Guitar, +5,eguit7.wav,Electric Guitar,Electric 7 +5,eguit rhytmic 1.wav,Electric Guitar,Rhythm 1 +5,eguit 6.wav,Electric Guitar,Electric 6 +5,eguit 1 left.wav,Electric Guitar,Electric 1 Left +5,egtremolo.wav,Electric Guitar,Tremolo +5,egchorus3.wav,Electric Guitar,Chorus 3 +5,egchorus2.wav,Electric Guitar,Chorus 2 +5,egatmo.wav,Electric Guitar,Atmospheric +5,eg_ldisto.wav,Electric Guitar,Distorted Left +5,eg right.wav,Electric Guitar,Right +5,eg rhy.wav,Electric Guitar,Rhythm +5,eg clean r.wav,Electric Guitar,Clean Right +5,eg arr 2.wav,Electric Guitar,Arpeggio 2 +5,eg 02 left.wav,Electric Guitar,Electric 2 Left +5,e guitar rhytmic clean.wav,Electric Guitar,Rhythm Clean +5,e guitar 4.wav,Electric Guitar,Electric 4 +5,e guitar 2 right.wav,Electric Guitar,Electric 2 Right +5,dv.wav,Other, +5,dulcimer.wav,Keyboard,Dulcimer +5,drivegt_r.wav,Electric Guitar,Drive Right +5,dj khaled.wav,Voice,DJ Khaled +5,dbass.wav,Double Bass, +5,crunch guitar.wav,Electric Guitar,Crunch +5,count in.wav,Computer,Count In +5,cleanguitar.wav,Electric Guitar,Clean +5,center eg.wav,Electric Guitar,Center +5,bradley cooper.wav,Voice,Bradley Cooper +5,bips.wav,Other, +5,bg vocals 3.wav,Voice,Backing 3 +5,agsolo.wav,Acoustic Guitar,Solo +5,ag nylon.wav,Acoustic Guitar,Nylon +5,acoustic bass.wav,Double Bass, +5,acordeon.wav,Accordion, +5,acgtr 02.wav,Acoustic Guitar,Acoustic 2 +5,acgtr 01.wav,Acoustic Guitar,Acoustic 1 +5,acc guitar 2.wav,Acoustic Guitar,Acoustic 2 +5,14_bv.wav,Voice,Backing +5,03_bass.wav,Bass Guitar,Bass 3 +5,03 bass.wav,Bass Guitar,Bass 3 +5,02 bass.wav,Bass Guitar,Bass 2 +4,wiz khalifa.wav,Voice,Wiz Khalifa +4,wind.wav,Other,Wind +4,vst brass.wav,Keyboard,Synth Brass +4,vocal synths.wav,Keyboard,Synth Vox +4,usher.wav,Voice,Usher +4,trumpet solo.wav,Trumpet,Solo +4,tremologt.wav,Electric Guitar,Tremolo +4,timbaland.wav,Voice,Timbaland +4,t.i..wav,Voice,T.I. +4,synthvox.wav,Keyboard,Synth Vox +4,synthvoice.wav,Keyboard,Synth Vox +4,synths 3.wav,Keyboard,Synth 3 +4,synthpiano.wav,Keyboard,Synth Piano +4,synthpad2.wav,Keyboard,Pad 2 +4,synthlead2.wav,Keyboard,Synth Lead 2 +4,synthguitar.wav,Keyboard,Synth Guitar +4,synthe.wav,Keyboard,Synth +4,synth_strings.wav,Keyboard,Synth Strings +4,synth_lead.wav,Keyboard,Synth Lead +4,synth_choir.wav,Keyboard,Synth Choir +4,synth-bass.wav,Keyboard,Synth Bass +4,synth-3.wav,Keyboard,Synth 3 +4,synth voices.wav,Keyboard,Synth Vox +4,synth vocals.wav,Keyboard,Synth Vox +4,synth saw.wav,Keyboard,Synth Saw +4,synth piano.wav,Keyboard,Electric Piano +4,synth lead 3.wav,Keyboard,Synth Lead 3 +4,synth dis.wav,Keyboard,Synth Distorted +4,synth 8.wav,Keyboard,Synth 8 +4,synth 4 right.wav,Keyboard,Synth 4 Right +4,synth 12.wav,Keyboard, +4,square.wav,Keyboard,Square +4,sound effects.wav,Keyboard,SFX +4,solo_guitar.wav,Electric Guitar,Solo +4,solo ag.wav,Acoustic Guitar,Solo +4,sfx 2.wav,Keyboard,SFX 2 +4,seq synth.wav,Keyboard,Synth Seq +4,selena gomez.wav,Voice,Selena Gomez +4,sean paul.wav,Voice,Sean Paul +4,sax 3.wav,Saxophone,Sax 3 +4,sax 1.wav,Saxophone,Sax 1 +4,s_vox synth.wav,Keyboard,Synth Vox +4,s_trumpets.wav,Trumpet, +4,s_tpt.wav,Other, +4,s_timpani.wav,Timpani, +4,s_tamb.wav,Percussion,Tambourine +4,s_synth keys 2.wav,Keyboard,Synth 2 +4,s_synth choir.wav,Keyboard,Synth Choir +4,s_synth brass.wav,Keyboard,Synth Brass +4,s_synth 2.wav,Keyboard,Synth 2 +4,s_sub_bass.wav,Keyboard,Sub Bass +4,s_samples.wav,Computer,Samples +4,s_overdriven guitar.wav,Electric Guitar,Overdriven +4,s_lead vocal.wav,Voice,Lead +4,s_lapsteel.wav,Electric Guitar,Lap Steel +4,s_harp.wav,Harp, +4,s_guit_rythm.wav,Electric Guitar,Rhythm +4,s_guit_dist.wav,Electric Guitar,Distorted +4,s_gtr solo.wav,Electric Guitar,Solo +4,s_eg 04.wav,Electric Guitar,Electric 4 +4,s_e piano.wav,Keyboard,Electric Piano +4,s_dobro.wav,Dobro, +4,s_distortion guitar solo.wav,Electric Guitar,Solo Distorted +4,s_brass section.wav,Other,Brass +4,s_bass2.wav,Bass Guitar,Bass 2 +4,s_ag 2.wav,Acoustic Guitar,Acoustic 2 +4,s_acoustic guitar 1.wav,Acoustic Guitar,Acoustic 1 +4,s_acoust.wav,Acoustic Guitar, +4,rihanna.wav,Voice,Rihanna +4,rhythm gtr.wav,Electric Guitar,Rhythm +4,recorder.wav,Other,Recorder +4,real sax.wav,Saxophone, +4,q-tip.wav,Voice,Q-Tip +4,polysynth.wav,Keyboard,Polysynth +4,pluckedsynth.wav,Keyboard,Synth Pluck +4,pipes.wav,Other,Pipes +4,piano-notdups.wav,Piano, +4,piano-01.wav,Piano,Piano 1 +4,piano-.wav,Piano, +4,percussion 2.wav,Percussion,Percussion 2 +4,percussion 1.wav,Percussion,Percussion 1 +4,pads and choir.wav,Keyboard,Synth Pad & Choir +4,pads 2.wav,Keyboard,Synth Pad 2 +4,pads 12.wav,Keyboard,Synth Pad +4,pad synths.wav,Keyboard,Synth Pad +4,pad synth.wav,Keyboard,Synth Pad +4,overdriven guitar.wav,Electric Guitar,Overdriven +4,organ_hammond_1.wav,Keyboard,Hammond +4,organ2.wav,Keyboard,Organ 2 +4,organ 3.wav,Keyboard,Organ 3 +4,orchestra hit.wav,Orchestra,Hit +4,noises.wav,Computer,Noise +4,noisefx.wav,Computer,Noise FX +4,noah kahan.wav,Voice,Noah Kahan +4,muted eg.wav,Electric Guitar,Muted +4,mix synthleads.wav,Keyboard,Synth Lead +4,mix piano.wav,Piano, +4,mix lv.wav,Voice,Lead +4,mix el.gtr arr.wav,Electric Guitar,Arpeggios +4,mix eg5+6.wav,Electric Guitar,Electric 5 +4,mix bvs.wav,Voice,Backing +4,mix ag1+2.wav,Acoustic Guitar, +4,mitch.wav,Voice,Mitch +4,missy elliott-adlib.wav,Voice,Missy Elliot +4,melodica.wav,Keyboard,Melodica +4,melo synths.wav,Keyboard,Synth Melo +4,mandolina.wav,Other, +4,mallet.wav,Keyboard,Mallets +4,macklemore.wav,Voice,Macklemore +4,lv ad lib.wav,Voice,Lead Rap +4,lv 2.wav,Voice,Lead 2 +4,lv 1.wav,Voice,Lead 1 +4,lil peep.wav,Voice,Lil Peep +4,lil baby.wav,Voice,Lil Baby +4,left gtr 2.wav,Electric Guitar,Electric 2 Left +4,leads.wav,Electric Guitar,Lead +4,lead voc.wav,Voice,Lead +4,ld synths.wav,Keyboard,Synth Lead +4,ld 12 and adds.wav,Other, +4,latto.wav,Other, +4,koto.wav,Other, +4,keys 2.wav,Keyboard,Synth 2 +4,keys 1.wav,Keyboard,Synth 1 +4,kesha.wav,Voice,Kesha +4,kali uchis.wav,Voice,Kali Uchis +4,jack harlow.wav,Voice,Jack Harlow +4,harpsicord.wav,Keyboard,Harpsichord +4,harmonium.wav,Keyboard,Harmonium +4,hamm.wav,Voice,Hamm +4,halsey.wav,Voice,Halsey +4,h.e.r..wav,Voice,H.E.R. +4,guitar-1.wav,Electric Guitar,Electric 1 +4,guitar fx.wav,Electric Guitar,FX +4,guitar 3 right.wav,Electric Guitar,Electric 3 Right +4,guitar 3 left.wav,Electric Guitar,Electric 3 Left +4,gtr-elec.wav,Electric Guitar, +4,gtr r.wav,Electric Guitar,Right +4,gtr left.wav,Electric Guitar,Left +4,gtr l.wav,Electric Guitar,Left +4,gtr fx.wav,Electric Guitar,FX +4,gtr 2 muted.wav,Electric Guitar,Electric 2 Muted +4,future.wav,Voice,Future +4,fr horns.wav,French Horn, +4,flugel.wav,Other,Flugelhorn +4,flo rida.wav,Voice,Flo Rida +4,fiddle 1 left.wav,Violin,Fiddle +4,eric clapton.wav,Voice,Eric Clapton +4,electricguitar.wav,Electric Guitar, +4,electric_lead_guitar_2.wav,Electric Guitar,Electric Lead 2 +4,electric_lead_guitar_1.wav,Electric Guitar,Electric Lead 1 +4,electric_guitar_left.wav,Electric Guitar,Left +4,electric_guitar_lead.wav,Electric Guitar,Lead +4,electric_arrangement_guitar_right.wav,Electric Guitar,Right +4,electric_arrangement_guitar_2.wav,Electric Guitar,Electric 2 +4,electric guitars.wav,Electric Guitar,Guitars +4,electric bass.wav,Bass Guitar, +4,elec gt 2.wav,Electric Guitar,Electric 2 +4,el.gtr disto.wav,Electric Guitar,Distorted +4,el guits.wav,Electric Guitar,Guitars +4,el guitar.wav,Electric Guitar, +4,el guitar lead.wav,Electric Guitar,Lead +4,el gtr 4.wav,Electric Guitar,Electric 4 +4,el gtr 3.wav,Electric Guitar,Electric 3 +4,eguit8.wav,Electric Guitar,Electric 8 +4,eguit6.wav,Electric Guitar,Electric 6 +4,eguit rhytmic 2.wav,Electric Guitar,Rhythm 2 +4,egtreble.wav,Electric Guitar,Treble +4,egmute2.wav,Electric Guitar,Electric 2 Muted +4,egchorus1.wav,Electric Guitar,Electric Chorus 1 +4,eg_rdisto.wav,Electric Guitar,Distorted Right +4,eg(muted).wav,Electric Guitar,Muted +4,eg(lead) 2.wav,Electric Guitar,Lead 2 +4,eg wah.wav,Electric Guitar,Wah +4,eg solo 2.wav,Electric Guitar,Solo 2 +4,eg solo 1.wav,Electric Guitar,Solo 1 +4,eg main.wav,Electric Guitar,Main +4,eg dist 05.wav,Electric Guitar,Electric 5 +4,eg dis l.wav,Electric Guitar,Distorted Left +4,eg clean l.wav,Electric Guitar,Clean Left +4,eg clean 2.wav,Electric Guitar,Clean 2 +4,eg adds 2.wav,Electric Guitar,Adds 2 +4,eg 3 + 4.wav,Electric Guitar,Electric 3 +4,eg 01 right.wav,Electric Guitar,Electric 1 Right +4,e-piano.wav,Keyboard,Electric Piano +4,e guitar rhythm.wav,Electric Guitar,Rhythm +4,e gtr.wav,Electric Guitar, +4,drums_1.wav,Drums,Drums 1 +4,distogtrs.wav,Electric Guitar,Distorted +4,distgtr.wav,Electric Guitar,Distorted +4,demi lovato.wav,Voice,Demi Lovato +4,crowd.wav,Other,Crows +4,cosmic.wav,Voice,Cosmic +4,ciara.wav,Voice,Ciara +4,charlie puth.wav,Voice,Charlie Puth +4,centergtr 3.wav,Electric Guitar,Electric 3 Center +4,carrie underwood.wav,Voice,Carrie Underwood +4,bv_1.wav,Voice,Backing +4,bv m.wav,Voice,Backing Male +4,bv 12.wav,Voice,Backing +4,busta rhymes.wav,Voice,Busta Rhymes +4,breath.wav,Other,Breath +4,block.wav,Keyboard,Block +4,blips.wav,Computer,Blips +4,bkgnd vocals.wav,Voice,Backing +4,baritone sax.wav,Saxophone,Baritone +4,backvox.wav,Voice,Backing +4,b.wav,Voice,Backing +4,b.v..wav,Voice,Backing +4,b.b. king.wav,Voice,B.B. King +4,arp synths.wav,Keyboard,Synth Arpeggios +4,andre 3000.wav,Voice,Andre 3000 +4,alto sax.wav,Saxophone,Alto +4,alejandro sanz.wav,Voice,Alejandro Sanz +4,agt.wav,Acoustic Guitar, +4,agmute.wav,Acoustic Guitar,Muted +4,ag slide.wav,Acoustic Guitar,Slide +4,ag lead.wav,Acoustic Guitar,Lead +4,ag arr.wav,Acoustic Guitar, +4,ag 03.wav,Acoustic Guitar,Acoustic 3 +4,ag 01 left.wav,Acoustic Guitar,Acoustic 1 Left +4,acousticgtr.wav,Acoustic Guitar, +4,acoustic_guitar_steel_left.wav,Acoustic Guitar,Steel Left +4,acoustic_guitar_left.wav,Acoustic Guitar,Left +4,acoustic guitars.wav,Acoustic Guitar, +4,acoustic guitar 3.wav,Acoustic Guitar,Acoustic 3 +4,acoustic gtrs.wav,Acoustic Guitar, +4,acguit.wav,Acoustic Guitar, +4,acc guitar 1.wav,Acoustic Guitar,Acoustic 1 +4,ac.gtr.wav,Acoustic Guitar, +4,ac guitars.wav,Acoustic Guitar, +4,ac gtr 3.wav,Acoustic Guitar,Acoustic 3 +4,a guitar.wav,Acoustic Guitar, +4,21 savage.wav,Voice,21 Savage +4,2 chainz.wav,Voice,2 Chainz +4,09 lead vocal.wav,Voice,Lead +4,08 backing vocals.wav,Voice,Backing +3,zach bryan.wav,Voice,Zach Bryan +3,yg.wav,Other, +3,woosh.wav,Other,Woosh +3,woodwind.wav,Orchestra,Woodwinds +3,wobble.wav,Other,Wobble +3,vox synth.wav,Keyboard,Synth Vox +3,voicepad.wav,Keyboard,Pad Voice +3,voice pad.wav,Keyboard,Pad Voice +3,vocalsynth.wav,Keyboard,Synth Vox +3,vocalfx.wav,Keyboard,FX Vox +3,violins real.wav,Violin, +3,trombone solo.wav,Trombone,Solo +3,toy piano.wav,Piano,Toy +3,tenor sax.wav,Saxophone,Tenor +3,synthstring.wav,Keyboard,Synth Strings +3,synths1.wav,Keyboard,Synth 1 +3,synths-.wav,Keyboard,Synths +3,synths pad.wav,Keyboard,Synth Pad +3,synthpad1.wav,Keyboard,Synth Pad 1 +3,synthkeys.wav,Keyboard,Synth +3,synthchords.wav,Keyboard,Synth Chords +3,synthchoir.wav,Keyboard,Synth Choir +3,synthbells.wav,Keyboard,Synth Bells +3,synth_chords.wav,Keyboard,Synth Chords +3,synth_arp.wav,Keyboard,Synth Arpeggios +3,synth-strings.wav,Keyboard,Synth Strings +3,synth-pad.wav,Keyboard,Synth Pad +3,synth-lead.wav,Keyboard,Synth Lead +3,synth-.wav,Keyboard,Synth +3,synth theme.wav,Keyboard,Synth Theme +3,synth strings 2.wav,Keyboard,Synth Strings 2 +3,synth strings 1.wav,Keyboard,Synth Strings 1 +3,synth poly.wav,Keyboard,Synth Poly +3,synth leads.wav,Keyboard,Synth Lead +3,synth intro.wav,Keyboard,Synth Intro +3,synth guits.wav,Keyboard,Synth Guitar +3,synth gtr.wav,Keyboard,Synth Guitar +3,synth 2 left.wav,Keyboard,Synth 2 Left +3,strings pad.wav,Keyboard,Synth Strings +3,strings mix.wav,Keyboard,Synth Strings +3,strings and violin.wav,Keyboard,Synth Strings +3,strings and harp.wav,Keyboard,Synth Strings & Harp +3,string synth.wav,Keyboard,Synth Strings +3,steel drum.wav,Percussion,Steel Drum +3,spoken.wav,Other,Spoken +3,soundfx.wav,Computer,SFX +3,sologtr.wav,Electric Guitar,Solo +3,solo eg1.wav,Electric Guitar,Solo +3,slidegt.wav,Electric Guitar,Slide +3,siren.wav,Other,Siren +3,shakira.wav,Voice,Shakira +3,sfx 1.wav,Other,SFX +3,seq.wav,Other,Seq +3,sax vst.wav,Keyboard,Synth Sax +3,sawsynth.wav,Keyboard,Synth Saw +3,saw.wav,Keyboard,Synth Saw +3,s_vibraphone.wav,Keyboard,Vibes +3,s_tubular_bells.wav,Keyboard,Tubular Bells +3,s_ts.wav,Other, +3,s_synthstrings.wav,Keyboard,Synth Strings +3,s_synths.wav,Keyboard,Synth +3,s_synth clavinet.wav,Keyboard,Clavinet +3,s_subbass.wav,Bass Guitar,Sub Bass +3,s_sub bass.wav,Bass Guitar,Sub Bass +3,s_string sctn.wav,Orchestra,Strings +3,s_scratch.wav,Other,Scratch +3,s_saxophone.wav,Saxophone, +3,s_noise.wav,Computer,Noise +3,s_marimba.wav,Other,Marimba +3,s_lead.wav,Electric Guitar,Lead +3,s_lap.wav,Electric Guitar,Lap Steel +3,s_guit_crunch.wav,Electric Guitar,Crunch +3,s_gtr7.wav,Electric Guitar,Electric 7 +3,s_gtr ld2.wav,Electric Guitar,Lead 2 +3,s_gtr ld1.wav,Electric Guitar,Lead 1 +3,s_gtr clean.wav,Electric Guitar,Clean +3,s_fxs.wav,Computer,FX +3,s_el_piano.wav,Keyboard,Electric Piano +3,s_egdisto.wav,Electric Guitar,Distorted +3,s_eg_llead.wav,Electric Guitar,Lead Left +3,s_eg riff.wav,Electric Guitar,Riff +3,s_eg r.wav,Electric Guitar,Right +3,s_eg l.wav,Electric Guitar,Left +3,s_eg harmonics.wav,Electric Guitar,Harmonics +3,s_eg clean.wav,Electric Guitar,Clean +3,s_drum loop.wav,Percussion,Drum Loop +3,s_cowbell.wav,Percussion,Cowbell +3,s_bvs.wav,Voice,Backing +3,s_bv2.wav,Voice,Backing 2 +3,s_bass1.wav,Bass Guitar,Bass 1 +3,s_arp.wav,Other, +3,s_ag_l.wav,Acoustic Guitar,Left +3,s_acoustic guitar 3.wav,Acoustic Guitar,Acoustic 3 +3,run.wav,Other,Run +3,robert plant.wav,Voice,Robert Plant +3,rightgtr 5.wav,Electric Guitar,Electric 5 Right +3,right gtr 4.wav,Electric Guitar,Electric 4 Right +3,rhythm_electric_guitar_2.wav,Electric Guitar,Rhythm 2 +3,rhythm_electric_guitar_1.wav,Electric Guitar,Rhythm 1 +3,rhythm_electric_guitar.wav,Electric Guitar,Rhythm +3,rhodes ep.wav,Keyboard,Rhodes +3,rhodes 1.wav,Keyboard,Rhodes 1 +3,reverse piano.wav,Keyboard,Reverse Piano +3,reeds.wav,Keyboard,Synth Reeds +3,real dobro.wav,Dobro, +3,real banjo.wav,Banjo, +3,rap vox.wav,Voice,Rap +3,r. kelly.wav,Voice,R. Kelly +3,prince.wav,Voice,Prince +3,prekey.wav,Other, +3,precountclick.wav,Computer,Count In +3,plucked.wav,Keyboard,Synth Pluck +3,plucked synth.wav,Keyboard,Synth Pluck +3,pluck2.wav,Keyboard,Synth Pluck 2 +3,pluck1.wav,Keyboard,Synth Pluck 1 +3,pizzicato strings.wav,Keyboard,Pizzicato +3,pianos.wav,Piano, +3,pianopad.wav,Keyboard,Piano Pad +3,piano_2.wav,Piano,Piano 2 +3,piano_1.wav,Piano,Piano 1 +3,piano2.wav,Piano,Piano 2 +3,piano1.wav,Piano,Piano 1 +3,piano+organ.wav,Keyboard,Organ +3,phife dawg.wav,Voice,Phife Dawg +3,percs+fx.wav,Percussion, +3,perc&fx.wav,Percussion, +3,pads strings.wav,Keyboard,Synth Strings +3,pad_synth.wav,Keyboard,Synth Pad +3,pad strings.wav,Keyboard,Synth Strings +3,pad and organ.wav,Keyboard,Organ Pad +3,pad 01.wav,Keyboard,Pad 1 +3,organ_hammond_2.wav,Keyboard,Hammond 2 +3,organ hammond.wav,Keyboard,Hammond +3,organ + pad.wav,Keyboard,Organ Pad +3,orchestral percussion.wav,Percussion,Orchestral +3,nylon guitar 1.wav,Acoustic Guitar,Nylon +3,noise-fx.wav,Computer,Noise FX +3,noise fx.wav,Computer,Noise FX +3,mystikal.wav,Voice,Mystikal +3,morgan wallen.wav,Voice,Morgan Wallen +3,mix synth lead 1+2.wav,Keyboard,Synth Lead +3,mix synth 1 + 2.wav,Keyboard,Synth Mix +3,mix strings+pad.wav,Keyboard,Synth Strings +3,mix pianos.wav,Piano, +3,mix piano1+2.wav,Piano, +3,mix pads.wav,Keyboard,Synth Pad +3,mix lds.wav,Other, +3,mix ld.wav,Other, +3,mix fxs.wav,Other,FX +3,mix eps.wav,Keyboard,Electric Piano +3,mix ep.wav,Other,Electric Piano +3,mix drums.wav,Drums, +3,mix disto egs.wav,Electric Guitar,Distorted +3,mix arr egs.wav,Electric Guitar,Arpeggios +3,mix ags.wav,Acoustic Guitar, +3,minimoog.wav,Keyboard,Mini Moog +3,miley cyrus.wav,Voice,Miley Cyrus +3,mike shinoda.wav,Voice,Mike Shinoda +3,miguel.wav,Voice,Miguel +3,method man.wav,Voice,Method Man +3,melotron.wav,Keyboard,Melotron +3,maluma.wav,Voice,Maluma +3,lv1.wav,Voice,Lead +3,lv add lib.wav,Voice,Lead Rap +3,lv 12.wav,Voice,Lead +3,ll cool j.wav,Voice,LL Cool J +3,lil jon.wav,Voice,Lil Jon +3,leftgtr 4.wav,Electric Guitar,Electric 4 Left +3,lead_synth.wav,Keyboard,Synth Lead +3,lead_2.wav,Other, +3,lead_1.wav,Other, +3,lead vox glu.wav,Voice,Lead +3,lead vox 2.wav,Voice,Lead 2 +3,lead 2.wav,Voice,Lead 2 +3,ld2.wav,Voice,Lead 2 +3,ld-2.wav,Voice,Lead 2 +3,ld fem.wav,Voice,Lead Female +3,lapsteel.wav,Electric Guitar,Lap Steel +3,lapsteel eg.wav,Electric Guitar,Lap Steel +3,lap.wav,Electric Guitar,Lap Steel +3,kurupt.wav,Voice,Kurupt +3,kristin.wav,Voice,Kristin +3,kora.wav,Voice,Kora +3,kit.wav,Voice,Kit +3,killer mike.wav,Voice,Killer Mike +3,khalid.wav,Voice,Khalid +3,key synth.wav,Keyboard,Synth +3,kevin.wav,Voice,Kevin +3,kelsea ballerini.wav,Voice,Kelsea Ballerini +3,jupitor.wav,Voice,Jupitor +3,joy williams.wav,Voice,Joy Williams +3,john paul white.wav,Voice,John Paul White +3,joao gilberto.wav,Voice,Joao Gilberto +3,jennifer lopez.wav,Voice,Jennifer Lopez +3,ja rule.wav,Voice,Ja Rule +3,j. cole.wav,Voice,J. Cole +3,j balvin.wav,Voice,J. Balvin +3,inspectah deck.wav,Voice,Inspectah Deck +3,iggy azalea.wav,Voice,Iggy Azalea +3,ice cube.wav,Voice,Ice Cube +3,i.wav,Other, +3,harmonic.wav,Other, +3,hammondorgan.wav,Keyboard,Hammond +3,guitars acoustic.wav,Acoustic Guitar, +3,guitarlead.wav,Electric Guitar,Lead +3,guitar_mute.wav,Electric Guitar,Muted +3,guitar left.wav,Electric Guitar,Left +3,guitar intro.wav,Electric Guitar,Intro +3,guitar 4 left.wav,Electric Guitar,Electric 4 Left +3,guitar 1 muted.wav,Electric Guitar,Electric 1 Muted +3,guit_rthm.wav,Electric Guitar,Rhythm +3,guiro.wav,Percussion,Guiro +3,gtrr.wav,Electric Guitar,Right +3,gtr3 left.wav,Electric Guitar,Electric 3 Left +3,gtr-riff.wav,Electric Guitar,Riff +3,gtr-dist.wav,Electric Guitar,Distorted +3,gtr-clean.wav,Electric Guitar,Clean +3,gtr right.wav,Electric Guitar,Right +3,gtr lead.wav,Electric Guitar,Lead +3,gtr ac.wav,Acoustic Guitar, +3,gtr ac-.wav,Acoustic Guitar, +3,gtr 6 right.wav,Electric Guitar,Electric 6 Right +3,gtr 3+4.wav,Electric Guitar,Electric 3 Left +3,gtr 1+2.wav,Electric Guitar,Electric 1 +3,glocken.wav,Glockenspiel, +3,g-eazy.wav,Voice,G-Eazy +3,fx synth.wav,Keyboard,Synth FX +3,fx 1.wav,Keyboard,Synth FX 1 +3,fr horn.wav,French Horn, +3,flute synth.wav,Keyboard,Synth Flute +3,filter bit.wav,Other, +3,fiddle 2 right.wav,Violin,Fiddle 2 Right +3,fiddle 1.wav,Violin,Fiddle 1 +3,farfisa.wav,Keyboard,Farfisa +3,ethnic.wav,Other, +3,ethnic guitar.wav,Other,Ethnic Guitar +3,enrique iglesias.wav,Voice,Enrique Iglesias +3,endsynth.wav,Keyboard,Synth End +3,elguitar.wav,Electric Guitar, +3,elgtr2.wav,Electric Guitar,Electric 2 +3,elgtr1.wav,Electric Guitar,Electric 1 +3,elgtr 03.wav,Electric Guitar,Electric 3 +3,elegtrs.wav,Electric Guitar,Guitars +3,elegtr3.wav,Electric Guitar,Electric 3 +3,electronic drums.wav,Drums,Electronic +3,electronic drum kit.wav,Drums,Electronic +3,electro drums.wav,Drums,Electronic +3,electric_rhythm_guitar_3.wav,Electric Guitar,Rhythm 3 +3,electric_guitar_clean_left.wav,Electric Guitar,Clean Left +3,electric_guitar_clean.wav,Electric Guitar,Clean +3,electric_arrangement_guitar_left.wav,Electric Guitar,Left +3,electric_arrangement_guitar_1.wav,Electric Guitar,Electric 1 +3,electric_adds_guitar.wav,Electric Guitar,Adds +3,electric guitar2.wav,Electric Guitar,Electric 2 +3,electric guitar 2 left.wav,Electric Guitar,Electric 2 Left +3,electric gtr.wav,Electric Guitar, +3,elec piano.wav,Keyboard,Electric Piano +3,elec gt 1.wav,Electric Guitar,Electric 1 +3,el.gtr theme.wav,Electric Guitar,Theme +3,el.gtr rhythm.wav,Electric Guitar,Rhythm +3,el.gtr arr.wav,Electric Guitar, +3,el guitar rhythm.wav,Electric Guitar,Rhythm +3,el gtr2.wav,Electric Guitar,Electric 2 +3,eguitarrhythm.wav,Electric Guitar,Rhythm +3,eguitarlead.wav,Electric Guitar,Lead +3,eguitar rythmic 2.wav,Electric Guitar,Rhythm 2 +3,eguitar rythmic 1.wav,Electric Guitar,Rhythm 1 +3,eguit trem.wav,Electric Guitar,Tremolo +3,eguit solos 2.wav,Electric Guitar,Solo 2 +3,eguit dist 1.wav,Electric Guitar,Distorted 1 +3,eguit 2 right.wav,Electric Guitar,Electric 2 Right +3,eguit 1 right.wav,Electric Guitar,Electric 1 Right +3,egtr5.wav,Electric Guitar,Electric 5 +3,egtr2 right.wav,Electric Guitar,Electric 2 Right +3,egtr2 left.wav,Electric Guitar,Electric 2 Left +3,egt.wav,Electric Guitar, +3,egstereo.wav,Electric Guitar, +3,egmuted.wav,Electric Guitar,Muted +3,egfx.wav,Electric Guitar,FX +3,egchorus2 right.wav,Electric Guitar,Chorus 2 Right +3,egchorus1 left.wav,Electric Guitar,Chorus 1 Left +3,eg_r(lead).wav,Electric Guitar,Lead Right +3,eg_r(crunch).wav,Electric Guitar,Crunch Right +3,eg_l(crunch).wav,Electric Guitar,Crunch Left +3,eg5.wav,Electric Guitar,Electric 5 +3,eg4.wav,Electric Guitar,Electric 4 +3,eg4 left.wav,Electric Guitar,Electric 4 Left +3,eg(treble).wav,Electric Guitar,Treble +3,eg(stereo).wav,Electric Guitar, +3,eg(arr).wav,Electric Guitar, +3,eg rythm.wav,Electric Guitar,Rhythm +3,eg mute.wav,Electric Guitar,Muted +3,eg lead 4.wav,Electric Guitar,Lead 4 +3,eg dis r.wav,Electric Guitar,Distorted Right +3,eg clean 1.wav,Electric Guitar,Clean 1 +3,eg chords.wav,Electric Guitar,Chords +3,eg arr 1.wav,Electric Guitar, +3,eg 5 right.wav,Electric Guitar,Electric 5 Right +3,eg 5 + 6.wav,Electric Guitar,Electric 5 +3,eg 2 + 4.wav,Electric Guitar,Electric 2 +3,eg 12.wav,Electric Guitar, +3,eg 1 + 3.wav,Electric Guitar, +3,eg 06.wav,Electric Guitar,Electric 6 +3,eg 02 right.wav,Electric Guitar,Electric 2 Right +3,effects.wav,Computer,FX +3,edrum.wav,Drums,Electronic +3,eazy-e.wav,Voice,Eazy-E +3,e guitar solo.wav,Electric Guitar,Solo 2 +3,e guitar r.wav,Electric Guitar,Right +3,e guitar lead disto.wav,Electric Guitar,Lead Distorted +3,e guitar l.wav,Electric Guitar,Left +3,e guitar arragement disto.wav,Electric Guitar,Distorted +3,e guitar 1 left.wav,Electric Guitar,Electric 1 Left +3,e drums.wav,Drums,Electronic +3,dua lipa.wav,Voice,Dua Lipa +3,drums 2.wav,Drums,Drums 2 +3,drums 1.wav,Drums,Drums 1 +3,drake-adlib.wav,Voice,Drake +3,dr.wav,Other, +3,dolly parton.wav,Voice,Dolly Parton +3,doja cat.wav,Voice,Doja Cat +3,dist synth.wav,Keyboard,Synth Distorted +3,delaygtr.wav,Electric Guitar,Delay +3,daniel caesar.wav,Voice,Daniel Caesar +3,dance.wav,Other, +3,d.m.c..wav,Voice,D.M.C. +3,cp70.wav,Other, +3,cordes.wav,Other, +3,clean.wav,Electric Guitar,Clean +3,clean guitar.wav,Electric Guitar,Clean +3,clavinet 2.wav,Keyboard,Clavinet 2 +3,christina aguilera.wav,Voice,Christina Aguilera +3,choir pad.wav,Keyboard,Synth Choir +3,charlie scene.wav,Voice,Charlie Scene +3,chance the rapper.wav,Voice,Chance The Rapper +3,cardi b-adlib.wav,Voice,Cardi B +3,camila cabello-adlib.wav,Voice,Camila Cabello +3,bv fem.wav,Voice,Backing Female +3,bv f.wav,Voice,Backing Female +3,bv adds.wav,Voice,Backing Adds +3,bv (2).wav,Voice,Backing +3,bois.wav,Other, +3,blackbear.wav,Voice,Black Bear +3,big sean.wav,Voice,Big Sean +3,big boi.wav,Voice,Big Boi +3,bg vocals male.wav,Voice,Backing Male +3,bg vocals 1 2.wav,Voice,Backing +3,bells2.wav,Keyboard,Synth Bells +3,bell synths.wav,Keyboard,Synth Bells +3,beat box.wav,Percussion,Beat Box +3,bd.wav,Other, +3,bassguitar.wav,Bass Guitar, +3,bass2.wav,Bass Guitar,Bass 2 +3,bass1.wav,Bass Guitar,Bass 1 +3,bass-synth.wav,Keyboard,Synth Bass +3,bass clarinet.wav,Clarinet,Bass +3,bass 808.wav,Keyboard,808 +3,backing_vocal.wav,Voice,Backing +3,ashnikko.wav,Voice,Ashnikko +3,asap rocky.wav,Voice,ASAP Rocky +3,arr ag.wav,Acoustic Guitar, +3,arpeggiosynth.wav,Keyboard,Synth Arpeggios +3,arpeggiator.wav,Keyboard,Synth Arpeggios +3,analogsynth.wav,Keyboard,Synth Analog +3,all strings.wav,Keyboard,Synth Strings +3,all percs.wav,Percussion, +3,akon.wav,Voice,Akon +3,ag-notdups.wav,Acoustic Guitar, +3,ag solo.wav,Acoustic Guitar,Solo +3,ag l + r.wav,Acoustic Guitar, +3,ag base.wav,Acoustic Guitar, +3,ag adds.wav,Acoustic Guitar,Adds +3,ag 3 right.wav,Acoustic Guitar,Acoustic 3 Right +3,ag 12.wav,Acoustic Guitar, +3,ag 02 right.wav,Acoustic Guitar, +3,addleadgt.wav,Electric Guitar,Lead Adds +3,acoustic_rhythm_guitar.wav,Acoustic Guitar,Rhythm +3,acoustic_guitar_steel_right.wav,Acoustic Guitar,Steel +3,acoustic_guitar_right.wav,Acoustic Guitar,Right +3,acoustic guitar 2 right.wav,Acoustic Guitar,Right +3,acoustic guitar 1 left.wav,Acoustic Guitar,Left +3,acoust-guitar.wav,Acoustic Guitar, +3,acgtr2.wav,Acoustic Guitar, +3,acgtr1.wav,Acoustic Guitar, +3,acc gtr 1.wav,Acoustic Guitar, +3,ac piano.wav,Piano, +3,ac guit.wav,Acoustic Guitar, +3,ac gtr 1+2.wav,Acoustic Guitar, +3,ac drums.wav,Drums, +3,abass.wav,Bass Guitar, +3,a.wav,Other, +3,808bass.wav,Keyboard,808 +3,06 clean guitar.wav,Electric Guitar,Clean +3,05_bass.wav,Bass Guitar, +3,04_fx.wav,Computer,FX +3,04 rhythm guitars.wav,Electric Guitar,Rhythm +3,04 bass.wav,Bass Guitar, +3,02 samples.wav,Computer,Samples +3,02 percussion.wav,Percussion, +2,zither.wav,Other,Zither +2,young thug.wav,Voice,Young Thug +2,wurlitzer 1.wav,Keyboard,Wurlitzer +2,wurlit.wav,Keyboard,Wurlitzer +2,wurlie.wav,Keyboard,Wurlitzer +2,woodwind section.wav,Orchestra,Woodwinds +2,woods.wav,Orchestra,Woodwinds +2,winds.wav,Orchestra,Woodwinds +2,weird.wav,Other, +2,waylon jennings.wav,Voice,Waylon Jennings +2,warren g.wav,Voice,Warren G +2,vst str.wav,Keyboard,Synth Strings +2,voxsynth.wav,Keyboard,Synth Vox +2,voice-melody.wav,Voice,Lead Adds +2,voice synth.wav,Keyboard,Synth Vox +2,voc and 1b.wav,Voice,Lead +2,voc 5.wav,Voice, +2,voc 3b.wav,Voice, +2,violin 02.wav,Violin, +2,violin 01.wav,Violin, +2,vinyl fx.wav,Keyboard,Synth +2,vince gill.wav,Voice,Vince Gill +2,usher-adlib.wav,Voice,Usher +2,ukulele.wav,Ukulele, +2,tyler the creator.wav,Voice,Tyler The Creator +2,twista.wav,Voice,Twista +2,tubularbells.wav,Keyboard,Synth +2,trumpets real.wav,Trumpet, +2,trumpet 123.wav,Trumpet, +2,trb.wav,Other, +2,trance synths.wav,Keyboard,Synth +2,trance 1.wav,Keyboard,Synth +2,tpts.wav,Other, +2,tp 2.wav,Other, +2,tp 1.wav,Other, +2,tone.wav,Other, +2,tinie tempah.wav,Voice,Tinie Tempah +2,tinashe.wav,Voice,Tinashe +2,tina turner.wav,Voice,Tina Turner +2,timbales.wav,Percussion,Timbales +2,ti.wav,Voice,T.I. +2,thing.wav,Other, +2,the kid laroi.wav,Voice,The Kid Laroi +2,tammi terrell.wav,Voice,Tammi Terrell +2,synthstrings2.wav,Keyboard,Synth +2,synthplucks.wav,Keyboard,Synth +2,synthperc.wav,Keyboard,Synth +2,synthmelo.wav,Keyboard,Synth +2,synthlow.wav,Keyboard,Synth +2,synthlead1.wav,Keyboard,Synth +2,synthhit.wav,Keyboard,Synth +2,synthetic_piano.wav,Keyboard,Synth +2,synthe lead.wav,Keyboard,Synth +2,synth_solo.wav,Keyboard,Synth +2,synth_melody.wav,Keyboard,Synth +2,synth_mellotron_strings.wav,Keyboard,Synth +2,synth_flutes.wav,Keyboard,Synth +2,synth_brass.wav,Keyboard,Synth +2,synth_bells.wav,Keyboard,Synth +2,synth_2.wav,Keyboard,Synth +2,synth_1.wav,Keyboard,Synth +2,synth6.wav,Keyboard,Synth +2,synth4 bass.wav,Keyboard,Synth +2,synth12.wav,Keyboard,Synth +2,synth-bridge.wav,Keyboard,Synth +2,synth-4.wav,Keyboard,Synth +2,synth(efx).wav,Keyboard,Synth +2,synth str.wav,Keyboard,Synth +2,synth square.wav,Keyboard,Synth +2,synth sax.wav,Keyboard,Synth +2,synth riser.wav,Keyboard,Synth +2,synth reverse.wav,Keyboard,Synth +2,synth power.wav,Keyboard,Synth +2,synth pluck 1+2.wav,Keyboard,Synth +2,synth perc.wav,Keyboard,Synth +2,synth pad+strings.wav,Keyboard,Synth +2,synth noise.wav,Keyboard,Synth +2,synth marimba.wav,Keyboard,Synth +2,synth main.wav,Keyboard,Synth +2,synth hits.wav,Keyboard,Synth +2,synth harp.wav,Keyboard,Synth +2,synth fxs.wav,Keyboard,Synth +2,synth flutes.wav,Keyboard,Synth +2,synth disto.wav,Keyboard,Synth +2,synth bass moog.wav,Keyboard,Synth +2,synth bass 2.wav,Keyboard,Synth +2,synth bass 1.wav,Keyboard,Synth +2,synth bass 02.wav,Keyboard,Synth +2,synth bass 01.wav,Keyboard,Synth +2,synth arpegiator.wav,Keyboard,Synth +2,synth ambient.wav,Keyboard,Synth +2,synth adds 2.wav,Keyboard,Synth +2,synth add.wav,Keyboard,Synth +2,synth 9.wav,Keyboard,Synth +2,synth 5 left.wav,Keyboard,Synth +2,synth 3 right.wav,Keyboard,Synth +2,synth 3 left.wav,Keyboard,Synth +2,synth 2 right.wav,Keyboard,Synth +2,synth 2 intro.wav,Keyboard,Synth +2,synth 124.wav,Keyboard,Synth +2,synth 1 right.wav,Keyboard,Synth +2,synth 1 bells.wav,Keyboard,Synth +2,synth 1 bass.wav,Keyboard,Synth +2,synth 05.wav,Keyboard,Synth +2,synth + pads.wav,Keyboard,Synth +2,sung vox.wav,Voice, +2,sub_bass.wav,Bass Guitar,Sub Bass +2,strs.wav,Other, +2,strings_1.wav,Keyboard,Synth Strings +2,strings2.wav,Keyboard,Synth Strings +2,strings1.wav,Keyboard,Synth Strings +2,strings synth.wav,Keyboard,Synth Strings +2,strings and violins.wav,Keyboard,Synth Strings +2,strings (vst).wav,Keyboard,Synth Strings +2,stringpad.wav,Keyboard,Synth Strings +2,string synths.wav,Keyboard,Synth Strings +2,str synth.wav,Keyboard,Synth Strings +2,stick.wav,Other, +2,steve perry.wav,Voice, +2,steel guitar.wav,Electric Guitar,Steel +2,square synth.wav,Keyboard,Synth +2,speranto.wav,Other, +2,spanish guitar.wav,Acoustic Guitar, +2,solos.wav,Other, +2,solo sax.wav,Saxophone, +2,solo organ.wav,Keyboard,Organ +2,solo guitar.wav,Electric Guitar, +2,solo eg2.wav,Electric Guitar, +2,solo 2.wav,Electric Guitar, +2,solo 1.wav,Electric Guitar, +2,snap.wav,Other,Snaps +2,slidegtr.wav,Electric Guitar, +2,slide.wav,Electric Guitar, +2,slide guitar.wav,Electric Guitar, +2,slide guit.wav,Electric Guitar, +2,skylar grey.wav,Voice, +2,sisqo.wav,Voice, +2,sine synth.wav,Keyboard,Synth +2,sheena easton.wav,Voice, +2,shakers.wav,Percussion,Shakers +2,sfx vocal.wav,Keyboard,Synth +2,sfx crowd cheer.wav,Keyboard,Synth +2,sculpture.wav,Keyboard,Synth +2,scratching.wav,Other,Scratches +2,scratch and fx.wav,Other,Scratches +2,scott hoying.wav,Voice, +2,saxo.wav,Saxophone, +2,sax_tenor.wav,Saxophone, +2,sax_baritone.wav,Saxophone, +2,sax real.wav,Saxophone, +2,sax lead.wav,Saxophone, +2,saweetie.wav,Voice, +2,sawbass.wav,Keyboard,Synth +2,saw synths.wav,Keyboard,Synth +2,sam smith.wav,Voice, +2,salt.wav,Other, +2,s_woodwinds.wav,Orchestra,Woodwinds +2,s_whistle.wav,Other,Whistle +2,s_vocal synth.wav,Keyboard,Synth +2,s_vln.wav,Violin, +2,s_viola.wav,Viola, +2,s_trp.wav,Trumpet, +2,s_trombones.wav,Trombone, +2,s_timps.wav,Timpani, +2,s_taiko.wav,Other, +2,s_synth_strings.wav,Keyboard,Synth +2,s_synth_pluck.wav,Keyboard,Synth +2,s_synth_pad.wav,Keyboard,Synth +2,s_synth lead 2.wav,Keyboard,Synth +2,s_synth lead 1.wav,Keyboard,Synth +2,s_synth guitar.wav,Keyboard,Synth +2,s_synth effects.wav,Keyboard,Synth +2,s_synth bass 2.wav,Keyboard,Synth +2,s_synth 3.wav,Keyboard,Synth +2,s_synth 04.wav,Keyboard,Synth +2,s_synth 03.wav,Keyboard,Synth +2,s_strings sectn.wav,Keyboard,Synth +2,s_string.wav,Keyboard,Synth +2,s_shakers.wav,Percussion,Shakers +2,s_rhodes.wav,Keyboard,Synth +2,s_polysynth.wav,Keyboard,Synth +2,s_pianos.wav,Keyboard,Synth +2,s_pedal steel.wav,Electric Guitar, +2,s_pedal steel guitar.wav,Electric Guitar, +2,s_pads.wav,Keyboard,Synth +2,s_pad2.wav,Keyboard,Synth +2,s_oboe.wav,Oboe, +2,s_noize.wav,Computer,Noise +2,s_leadchiff.wav,Other, +2,s_kick.wav,Other, +2,s_harmonium.wav,Other, +2,s_harmonica.wav,Harmonica, +2,s_hammnd.wav,Keyboard,Synth +2,s_guit_wah.wav,Electric Guitar, +2,s_guit_lead.wav,Electric Guitar, +2,s_glock.wav,Glockenspiel, +2,s_french horn.wav,French Horn, +2,s_electric guitar 5.wav,Electric Guitar, +2,s_electric guitar 12.wav,Electric Guitar, +2,s_egclean.wav,Electric Guitar, +2,s_eg_rlead.wav,Electric Guitar, +2,s_eg_rclean.wav,Electric Guitar, +2,s_eg solo 2.wav,Electric Guitar, +2,s_eg solo 1.wav,Electric Guitar, +2,s_eg slide.wav,Electric Guitar, +2,s_eg intro.wav,Electric Guitar, +2,s_eg ctr.wav,Electric Guitar, +2,s_eg clean 2.wav,Electric Guitar, +2,s_eg chorus.wav,Electric Guitar, +2,s_eg 4.wav,Electric Guitar, +2,s_efx.wav,Other, +2,s_e-piano.wav,Keyboard,Synth +2,s_distortion guitar2.wav,Electric Guitar, +2,s_clavinet.wav,Keyboard,Clavinet +2,s_clav.wav,Keyboard,Clavinet +2,s_bv1.wav,Voice,Backing +2,s_bv sample.wav,Voice,Backing Sample +2,s_brass sect.wav,Other, +2,s_bgv.wav,Voice,Backing +2,s_bell synth.wav,Keyboard,Synth +2,s_bass_synth.wav,Keyboard,Synth +2,s_bass sub.wav,Bass Guitar, +2,s_bass acoustic.wav,Bass Guitar, +2,s_ag_r.wav,Acoustic Guitar, +2,s_ag 1.wav,Acoustic Guitar, +2,s_ag 03.wav,Acoustic Guitar, +2,s_acoustic guitarstrumming.wav,Acoustic Guitar, +2,s_acoustic guitar2.wav,Acoustic Guitar, +2,s_acoustic bass.wav,Bass Guitar, +2,s_accordion.wav,Accordion, +2,rza.wav,Voice, +2,russ.wav,Voice, +2,rthm.wav,Other, +2,rodhes.wav,Keyboard,Synth +2,rob halford.wav,Voice, +2,rm.wav,Other, +2,riser.wav,Other, +2,rightguitar 2.wav,Electric Guitar, +2,rightgtr 1.wav,Electric Guitar, +2,right gtr 1.wav,Electric Guitar, +2,right disto eg.wav,Electric Guitar, +2,ricky martin.wav,Voice, +2,rick ross.wav,Voice, +2,rhythm_guitars.wav,Electric Guitar, +2,rhythm guitars.wav,Electric Guitar, +2,reversefx.wav,Keyboard,Synth +2,reverse fx.wav,Keyboard,Synth +2,real trumpet 2.wav,Trumpet, +2,real trumpet 1.wav,Trumpet, +2,real trombon.wav,Trombone, +2,real tenor sax.wav,Saxophone,Tenor +2,raye.wav,Voice, +2,rap fills.wav,Voice, +2,raekwon.wav,Voice, +2,popcorn.wav,Other, +2,poly.wav,Keyboard,Synth +2,plucked2.wav,Keyboard,Synth +2,pluck 2.wav,Keyboard,Synth +2,pluck 1.wav,Keyboard,Synth +2,pluck 1 + 2.wav,Keyboard,Synth +2,picked bass.wav,Bass Guitar, +2,pick bass.wav,Bass Guitar, +2,piccolo.wav,Piccolo, +2,piano-notdup.wav,Keyboard,Synth +2,piano+rhodes.wav,Keyboard,Synth +2,piano melo.wav,Keyboard,Synth +2,piano loop.wav,Keyboard,Synth +2,piano 3.wav,Piano, +2,piano + ep.wav,Piano, +2,peso pluma.wav,Voice, +2,perx.wav,Percussion, +2,percussion-2.wav,Percussion, +2,percussion-1.wav,Percussion, +2,percussion+fx.wav,Percussion, +2,percumix.wav,Percussion, +2,percu + fx.wav,Percussion, +2,percs+sfx.wav,Percussion, +2,percs+fxs.wav,Percussion, +2,perc+sfx.wav,Percussion, +2,perc synth.wav,Percussion, +2,perc 3.wav,Percussion, +2,pepa.wav,Voice, +2,pedalgt.wav,Electric Guitar, +2,paul simon.wav,Voice, +2,pads-.wav,Keyboard,Synth +2,pads+strings.wav,Keyboard,Synth +2,pads and fx.wav,Keyboard,Synth +2,pads 1.wav,Keyboard,Synth +2,pad2.wav,Keyboard,Synth +2,pad vox.wav,Keyboard,Synth +2,pad and strings.wav,Keyboard,Synth +2,pad 3.wav,Keyboard,Synth +2,pad 02.wav,Keyboard,Synth +2,overdrive eg.wav,Electric Guitar, +2,other synths.wav,Keyboard,Synth +2,other guits.wav,Electric Guitar, +2,other bits.wav,Other, +2,organ_hammond_3.wav,Keyboard,Synth +2,organ_hammond.wav,Keyboard,Synth +2,organ+pad.wav,Keyboard,Synth +2,organ synths.wav,Keyboard,Synth +2,organ pad.wav,Keyboard,Synth +2,organ key.wav,Keyboard,Synth +2,organ 4.wav,Keyboard,Synth +2,organ 1 + 2.wav,Keyboard,Synth +2,organ + synth.wav,Keyboard,Synth +2,organ + bells.wav,Keyboard,Synth +2,orch hit.wav,Other, +2,omara portuondo.wav,Voice, +2,oboes.wav,Oboe, +2,nylon guitar.wav,Acoustic Guitar, +2,nylon guitar 2.wav,Acoustic Guitar, +2,nova.wav,Other, +2,nick jonas.wav,Voice, +2,nick cave.wav,Voice, +2,nf.wav,Other, +2,nelly.wav,Voice, +2,nelly furtado.wav,Voice, +2,ne-yo.wav,Voice, +2,muteguitar.wav,Electric Guitar, +2,muted trumpet.wav,Trumpet, +2,muted trp.wav,Trumpet, +2,muted guitar.wav,Electric Guitar, +2,mute guit.wav,Electric Guitar, +2,monosynth.wav,Keyboard,Synth +2,mono synth.wav,Keyboard,Synth +2,mix woodwinds.wav,Keyboard,Synth +2,mix synth1+4.wav,Keyboard,Synth +2,mix synth1+2+3.wav,Keyboard,Synth +2,mix synth.wav,Keyboard,Synth +2,mix synth+pad.wav,Keyboard,Synth +2,mix synth keys.wav,Keyboard,Synth +2,mix synth bass1+2.wav,Keyboard,Synth +2,mix synth bass.wav,Keyboard,Synth +2,mix synth 5+6.wav,Keyboard,Synth +2,mix rhodes.wav,Keyboard,Synth +2,mix piano+organ.wav,Keyboard,Synth +2,mix percus.wav,Percussion, +2,mix pads+strings.wav,Keyboard,Synth +2,mix organ.wav,Keyboard,Synth +2,mix lv1+2.wav,Voice,Lead +2,mix lv+dv.wav,Voice,Lead +2,mix l+r ags.wav,Other, +2,mix guit 1 + 2.wav,Electric Guitar, +2,mix gtr5+6.wav,Electric Guitar, +2,mix gtr2+4.wav,Electric Guitar, +2,mix gtr 3+4.wav,Electric Guitar, +2,mix eg3+5.wav,Electric Guitar, +2,mix eg2+6.wav,Electric Guitar, +2,mix eg2+4.wav,Electric Guitar, +2,mix eg l+r.wav,Electric Guitar, +2,mix eg crunch 1+2.wav,Electric Guitar, +2,mix eg clean 1+2.wav,Electric Guitar, +2,mix drums+tamb.wav,Drums, +2,mix drums + percs.wav,Drums, +2,mix bv1+2.wav,Voice,Backing +2,mix brass.wav,Other, +2,mix bells.wav,Other, +2,mix bass.wav,Other, +2,mitch grassi.wav,Voice, +2,misc.wav,Other, +2,misc lead synths.wav,Keyboard,Synth +2,miranda lambert.wav,Voice, +2,minji.wav,Voice, +2,mike d.wav,Voice, +2,melodysynth.wav,Keyboard,Synth +2,melo synth.wav,Keyboard,Synth +2,mellotron strings.wav,Keyboard,Synth +2,meghan trainor.wav,Voice, +2,mary j. blige.wav,Voice, +2,marvin gaye.wav,Voice, +2,mariah carey.wav,Voice, +2,marc anthony.wav,Voice, +2,mandolin 2.wav,Mandolin,Mandolin 2 +2,male vox.wav,Voice, +2,macklemore-adlib.wav,Voice, +2,mac miller.wav,Voice, +2,lv_1.wav,Voice,Lead 1 +2,lv2.wav,Voice,Lead 2 +2,lv and double-adlib.wav,Voice,Lead +2,lv adds.wav,Voice,Lead Adds +2,luke combs.wav,Voice, +2,louis armstrong.wav,Voice, +2,loop fx.wav,Other, +2,logic.wav,Other, +2,lizzo.wav,Voice, +2,lil tracy.wav,Voice, +2,lil kleine.wav,Voice, +2,lil jon-adlib.wav,Voice, +2,lil flip.wav,Voice, +2,lil bow wow.wav,Voice, +2,leftguitar 1.wav,Electric Guitar, +2,leftgtr 5.wav,Electric Guitar, +2,left rhythmic eg.wav,Electric Guitar, +2,left disto eg.wav,Electric Guitar, +2,leadgt_r.wav,Electric Guitar, +2,leadgt_l.wav,Electric Guitar, +2,leadgt right.wav,Electric Guitar, +2,lead_synth_1.wav,Electric Guitar, +2,lead_guitar.wav,Electric Guitar, +2,lead vox 1.wav,Voice, +2,lead vocal 1.wav,Voice, +2,lead sinth.wav,Keyboard,Synth +2,lead guitar 2.wav,Electric Guitar, +2,lead guitar 1.wav,Electric Guitar, +2,lea.wav,Voice, +2,ld12.wav,Voice, +2,ld1.wav,Voice, +2,ld-man.wav,Voice, +2,ld-girl.wav,Voice, +2,ld-1.wav,Voice, +2,ld(addlib).wav,Voice, +2,ld vox.wav,Voice, +2,ld male.wav,Voice, +2,ld female.wav,Voice, +2,ld and echo.wav,Voice, +2,ld adds.wav,Voice, +2,ld ad lib.wav,Voice, +2,lap steel real.wav,Electric Guitar, +2,kris kristofferson.wav,Voice, +2,kirstin maldonado.wav,Voice, +2,kim petras.wav,Voice, +2,key fx.wav,Other,FX +2,keri hilson.wav,Voice, +2,kelsea ballerini-adlib.wav,Voice, +2,kelly rowland.wav,Voice, +2,kelis.wav,Voice, +2,keith urban.wav,Voice, +2,kane brown.wav,Voice, +2,justin timberlake.wav,Voice, +2,jungkook.wav,Voice, +2,jung kook.wav,Voice, +2,julia michaels.wav,Voice, +2,juice wrld.wav,Voice, +2,jonny lang.wav,Voice, +2,johnny 3 tears.wav,Voice, +2,john legend.wav,Voice, +2,joe bonamassa.wav,Voice, +2,jessie murph.wav,Voice, +2,jay sean.wav,Voice, +2,jaw harp.wav,Other,Jaw Harp +2,jason derulo.wav,Voice, +2,intro synth.wav,Keyboard,Synth +2,ice spice.wav,Voice, +2,hit 2.wav,Other, +2,hillary scott.wav,Voice, +2,hautbois.wav,Voice, +2,hats.wav,Other, +2,harp synth.wav,Keyboard,Synth +2,harmonics.wav,Other, +2,hardy.wav,Voice, +2,hanni.wav,Voice, +2,haerin.wav,Voice, +2,gwen stefani.wav,Voice, +2,gun shot.wav,Voice, +2,guitarsynth.wav,Keyboard,Synth +2,guitars rhythm.wav,Electric Guitar, +2,guitars 6.wav,Electric Guitar, +2,guitarright.wav,Electric Guitar, +2,guitarrhythm.wav,Electric Guitar, +2,guitarfx.wav,Electric Guitar, +2,guitar_acoustic.wav,Acoustic Guitar, +2,guitar_3.wav,Electric Guitar, +2,guitar_2 right.wav,Electric Guitar, +2,guitar_1 left.wav,Electric Guitar, +2,guitar1.wav,Electric Guitar, +2,guitar-solo.wav,Electric Guitar, +2,guitar-acoust.wav,Acoustic Guitar, +2,guitar-3.wav,Electric Guitar, +2,guitar lead.wav,Electric Guitar, +2,guitar 4 right.wav,Electric Guitar, +2,guit_solo.2.wav,Electric Guitar, +2,guit_mute.wav,Electric Guitar, +2,guit solo.wav,Electric Guitar, +2,guit right.wav,Electric Guitar, +2,guit left.wav,Electric Guitar, +2,guit 3 + 5.wav,Electric Guitar, +2,guit 2 right.wav,Electric Guitar, +2,gucci mane.wav,Voice, +2,gtrs 2.wav,Electric Guitar, +2,gtrl.wav,Electric Guitar, +2,gtracus.wav,Acoustic Guitar, +2,gtracoustic.wav,Acoustic Guitar, +2,gtrac.wav,Acoustic Guitar, +2,gtr7.wav,Electric Guitar, +2,gtr2 right.wav,Electric Guitar, +2,gtr2 clean.wav,Electric Guitar, +2,gtr1+3.wav,Electric Guitar, +2,gtr-r.wav,Electric Guitar, +2,gtr-l.wav,Electric Guitar, +2,gtr-chords.wav,Electric Guitar, +2,gtr-c.wav,Electric Guitar, +2,gtr synth 2.wav,Electric Guitar, +2,gtr sample.wav,Electric Guitar, +2,gtr ny.wav,Electric Guitar, +2,gtr el.wav,Electric Guitar, +2,gtr el 4-.wav,Electric Guitar, +2,gtr el 3-.wav,Electric Guitar, +2,gtr el 3 right.wav,Electric Guitar, +2,gtr el 2 right.wav,Electric Guitar, +2,gtr el 2 left.wav,Electric Guitar, +2,gtr el 1-.wav,Electric Guitar, +2,gtr el 1 right.wav,Electric Guitar, +2,gtr el 1 left.wav,Electric Guitar, +2,gtr dist.wav,Electric Guitar, +2,gtr adds.wav,Electric Guitar, +2,gtr ac 2.wav,Acoustic Guitar, +2,gtr ac 1.wav,Acoustic Guitar, +2,gtr 9.wav,Electric Guitar, +2,gtr 7 right.wav,Electric Guitar, +2,gtr 3gauche.wav,Electric Guitar, +2,gtr 3 muted.wav,Electric Guitar, +2,gtr 1gauche.wav,Electric Guitar, +2,gtr 1 + 2.wav,Electric Guitar, +2,gt.wav,Electric Guitar, +2,gregg rolie.wav,Voice, +2,gong.wav,Percussion,Gong +2,glorilla.wav,Voice, +2,gate synth.wav,Keyboard,Synth +2,fx-.wav,Keyboard,Synth +2,fx's.wav,Keyboard,Synth +2,fx synths.wav,Keyboard,Synth +2,fx intro.wav,Keyboard,Synth +2,fx crowd.wav,Keyboard,Synth +2,fx birds.wav,Keyboard,Synth +2,fx and sweep.wav,Keyboard,Synth +2,fx 2.wav,Keyboard,Synth +2,fx + noise.wav,Keyboard,Synth +2,funk eg.wav,Electric Guitar, +2,frank zappa.wav,Voice, +2,flute synths.wav,Flute, +2,flute 2.wav,Flute, +2,fills.wav,Other, +2,fill.wav,Other, +2,fiddle 2 left.wav,Violin, +2,fiddle 1 right.wav,Violin, +2,female vox.wav,Voice, +2,feedback.wav,Other, +2,end synth.wav,Keyboard,Synth +2,ellie goulding.wav,Voice, +2,ella fitzgerald.wav,Voice, +2,elguit.wav,Electric Guitar, +2,elgtr lead.wav,Electric Guitar, +2,elegtr4.wav,Electric Guitar, +2,electrique.wav,Electric Guitar, +2,electric_rhythm_guitar_clean.wav,Electric Guitar, +2,electric_rhythm_guitar_center.wav,Electric Guitar, +2,electric_piano_rhodes_1.wav,Keyboard,Synth +2,electric_lead_guitar_left.wav,Electric Guitar, +2,electric_guitar_solo.wav,Electric Guitar, +2,electric_guitar_right.wav,Electric Guitar, +2,electric_guitar_rhythm_right.wav,Electric Guitar, +2,electric_guitar_rhythm_left.wav,Electric Guitar, +2,electric_guitar_rhythm.wav,Electric Guitar, +2,electric_guitar_overdrive.wav,Electric Guitar, +2,electric_guitar_clean_right.wav,Electric Guitar, +2,electric_guitar_clean_intro.wav,Electric Guitar, +2,electric_guitar_clean_center.wav,Electric Guitar, +2,electric_guitar_3.wav,Electric Guitar, +2,electric_guitar_2.wav,Electric Guitar, +2,electric_guitar_1.wav,Electric Guitar, +2,electric_feedback_guitar.wav,Electric Guitar, +2,electric_clean_guitar_left.wav,Electric Guitar, +2,electric_arrangement_guitar_3.wav,Electric Guitar, +2,electric piano 1.wav,Keyboard,Synth +2,electric guitar3.wav,Electric Guitar, +2,electric guitar(solo).wav,Electric Guitar, +2,electric guitar solo 2.wav,Electric Guitar, +2,electric guitar solo 1.wav,Electric Guitar, +2,electric guitar r.wav,Electric Guitar, +2,electric guitar muted.wav,Electric Guitar, +2,electric guitar l.wav,Electric Guitar, +2,electric guitar clean 3.wav,Electric Guitar, +2,electric guitar clean 2.wav,Electric Guitar, +2,electric guitar clean 1.wav,Electric Guitar, +2,electric guitar 6.wav,Electric Guitar, +2,electric guitar 4 right.wav,Electric Guitar, +2,electric guitar 1 left.wav,Electric Guitar, +2,electric drums.wav,Drums, +2,elect guitar.wav,Electric Guitar, +2,elecgtr.wav,Electric Guitar, +2,elec gtr 2 right.wav,Electric Guitar, +2,elec gtr 1 left.wav,Electric Guitar, +2,el.gtr rhyt.wav,Electric Guitar, +2,el.gtr r.wav,Electric Guitar, +2,el.gtr left.wav,Electric Guitar, +2,el.gtr l.wav,Electric Guitar, +2,el.gtr clean.wav,Electric Guitar, +2,el.gtr arp.wav,Electric Guitar, +2,el.drums.wav,Drums, +2,el-p.wav,Keyboard,Synth +2,el piano 3.wav,Keyboard,Synth +2,el piano 2 right.wav,Keyboard,Synth +2,el piano 1 left.wav,Keyboard,Synth +2,el pia.wav,Keyboard,Synth +2,el guitar solo.wav,Electric Guitar, +2,el guitar clean.wav,Electric Guitar, +2,el guitar 3.wav,Electric Guitar, +2,el guitar 2.wav,Electric Guitar, +2,el guitar 1.wav,Electric Guitar, +2,el gtr clean.wav,Electric Guitar, +2,el gtr 5.wav,Electric Guitar, +2,el gtr 1 left.wav,Electric Guitar, +2,el alfa.wav,Other, +2,egwah.wav,Other, +2,eguitar2.wav,Electric Guitar, +2,eguitar1.wav,Electric Guitar, +2,eguitar rythmic 3.wav,Electric Guitar, +2,eguitar clean.wav,Electric Guitar, +2,eguitar arrangement 3.wav,Electric Guitar, +2,eguitar arrangement 2.wav,Electric Guitar, +2,eguitar arrangement 1.wav,Electric Guitar, +2,eguit2 intro.wav,Electric Guitar, +2,eguit solos 1.wav,Electric Guitar, +2,eguit lead.wav,Electric Guitar, +2,eguit dist 3.wav,Electric Guitar, +2,eguit dist 2.wav,Electric Guitar, +2,eguit 7.wav,Electric Guitar, +2,eguit 2 left.wav,Electric Guitar, +2,egtrsolo.wav,Electric Guitar, +2,egtr4.wav,Electric Guitar, +2,egtr1 right.wav,Electric Guitar, +2,egt 3.wav,Electric Guitar, +2,egmute left.wav,Electric Guitar, +2,eglead 2.wav,Electric Guitar, +2,egfuzz.wav,Electric Guitar, +2,egclean2.wav,Electric Guitar, +2,egchorus.wav,Electric Guitar, +2,eg_rclean.wav,Electric Guitar, +2,eg_lslide.wav,Electric Guitar, +2,eg_l(lead).wav,Electric Guitar, +2,eg_l 3.wav,Electric Guitar, +2,eg6.wav,Electric Guitar, +2,eg3 left.wav,Electric Guitar, +2,eg2lead.wav,Electric Guitar, +2,eg1 right.wav,Electric Guitar, +2,eg1 left.wav,Electric Guitar, +2,eg(wha).wav,Electric Guitar, +2,eg(tremolo).wav,Electric Guitar, +2,eg(lead)_2.wav,Electric Guitar, +2,eg(fuzz).wav,Electric Guitar, +2,eg(efx).wav,Electric Guitar, +2,eg trem.wav,Electric Guitar, +2,eg slide.wav,Electric Guitar, +2,eg phaser.wav,Electric Guitar, +2,eg od.wav,Electric Guitar, +2,eg lead 5.wav,Electric Guitar, +2,eg lead 02.wav,Electric Guitar, +2,eg lead 01.wav,Electric Guitar, +2,eg intro.wav,Electric Guitar, +2,eg disto.wav,Electric Guitar, +2,eg dist solo.wav,Electric Guitar, +2,eg dist 02 right.wav,Electric Guitar, +2,eg dist 02 left.wav,Electric Guitar, +2,eg cln.wav,Electric Guitar, +2,eg clean c.wav,Electric Guitar, +2,eg clean adds.wav,Electric Guitar, +2,eg background.wav,Electric Guitar, +2,eg arrangement 02.wav,Electric Guitar, +2,eg arrangement 01.wav,Electric Guitar, +2,eg arr 3.wav,Electric Guitar, +2,eg adds 1.wav,Electric Guitar, +2,eg 9.wav,Electric Guitar, +2,eg 9 + 10.wav,Electric Guitar, +2,eg 7 + 8.wav,Electric Guitar, +2,eg 6 + 7.wav,Electric Guitar, +2,eg 5 left.wav,Electric Guitar, +2,eg 4 left.wav,Electric Guitar, +2,eg 4 + 6.wav,Electric Guitar, +2,eg 4 + 5.wav,Electric Guitar, +2,eg 3 end.wav,Electric Guitar, +2,eg 2 + 3.wav,Electric Guitar, +2,eg 11 + 12.wav,Electric Guitar, +2,e-40.wav,Other, +2,e piano adds.wav,Keyboard,Synth +2,e keys.wav,Keyboard,Synth +2,e guitar riff.wav,Electric Guitar, +2,e guitar rhytmic disto.wav,Electric Guitar, +2,e guitar arragement clean.wav,Electric Guitar, +2,e guitar arragement 2.wav,Electric Guitar, +2,e guitar arragement 1.wav,Electric Guitar, +2,e guitar 6 right.wav,Electric Guitar, +2,e guitar 5 left.wav,Electric Guitar, +2,e guitar 4 right.wav,Electric Guitar, +2,e guitar 3 left.wav,Electric Guitar, +2,drumset.wav,Drums, +2,drums-01.wav,Drums, +2,drums and fx.wav,Drums, +2,drum machine.wav,Drums, +2,drum fx.wav,Drums, +2,dr dre.wav,Voice,Dr. Dre +2,double_bass.wav,Double Bass, +2,distrhythmgtr.wav,Electric Guitar, +2,distogtr1.wav,Electric Guitar, +2,dist.wav,Electric Guitar, +2,dido.wav,Voice, +2,didgeridoo.wav,Other,Didgeridoo +2,descemer bueno.wav,Other, +2,deep bass.wav,Other, +2,dbl bass.wav,Double Bass, +2,danielle.wav,Voice, +2,dance_synth.wav,Keyboard,Synth +2,dance piano.wav,Keyboard,Synth +2,dababy.wav,Voice, +2,cymbals.wav,Percussion,Cymbals +2,crunch_guitar.wav,Electric Guitar, +2,crunch rhythmic eg.wav,Electric Guitar, +2,crowdfx.wav,Other,Crowd FX +2,count.wav,Computer,Count In +2,count off.wav,Computer,Count In +2,continental.wav,Other, +2,coko.wav,Voice, +2,cocotte eg.wav,Voice, +2,clean_guitars.wav,Electric Guitar, +2,clean_guitar.wav,Electric Guitar, +2,clean guits.wav,Electric Guitar, +2,clarinets.wav,Clarinet, +2,ciara-adlib.wav,Voice, +2,chromatic percs.wav,Percussion, +2,chris young.wav,Voice, +2,chorusrhythmgtr.wav,Electric Guitar, +2,chorusgtr.wav,Electric Guitar, +2,choirs.wav,Other, +2,chester bennington.wav,Voice, +2,chelo.wav,Other, +2,charlie wilson.wav,Voice, +2,charles kelley.wav,Voice, +2,chainsmokers.wav,Voice, +2,central cee.wav,Other, +2,centerguitar 1.wav,Electric Guitar, +2,center ag.wav,Acoustic Guitar, +2,celo.wav,Other, +2,cellos.wav,Cello, +2,bvs male.wav,Voice, +2,bv_female.wav,Voice, +2,bv5.wav,Voice, +2,bv3.wav,Voice, +2,bv-female.wav,Voice, +2,bv-adlib.wav,Voice, +2,bv+ld2.wav,Voice, +2,bv fixed.wav,Voice, +2,bv drake.wav,Voice, +2,brass-.wav,Other,Brass +2,brass vst.wav,Other,Brass +2,brass s.wav,Other,Brass +2,brass intro.wav,Other,Brass +2,brad paisley.wav,Voice, +2,bouzouki.wav,Other, +2,bootsy collins.wav,Voice, +2,boom.wav,Other, +2,blocks.wav,Other, +2,blip.wav,Other, +2,blake shelton.wav,Voice, +2,black thought.wav,Voice, +2,billie eilish.wav,Voice, +2,bigsynth.wav,Keyboard,Synth +2,big synth.wav,Keyboard,Synth +2,bg.wav,Voice, +2,bg vocals female.wav,Voice, +2,beep.wav,Other, +2,bass_1.wav,Bass Guitar, +2,bass_01.wav,Bass Guitar, +2,bass.2.wav,Bass Guitar, +2,bass+synth bass.wav,Keyboard,Synth +2,bass slap.wav,Bass Guitar, +2,bass pad.wav,Keyboard,Synth +2,bass mix.wav,Keyboard,Synth +2,bass filter.wav,Keyboard,Synth +2,bass disto.wav,Bass Guitar, +2,bass dist.wav,Bass Guitar, +2,basic synth.wav,Keyboard,Synth +2,bas.wav,Other, +2,bari sax.wav,Saxophone,Baritone +2,banjo-.wav,Banjo, +2,bagpipes.wav,Bagpipes, +2,bagpipe.wav,Bagpipes, +2,back vocal.wav,Voice, +2,avi.wav,Other, +2,atmoguitar.wav,Electric Guitar, +2,astrud gilberto.wav,Voice, +2,art garfunkel.wav,Voice, +2,arrange_electric_guitar_2.wav,Electric Guitar, +2,arrange_electric_guitar_1.wav,Electric Guitar, +2,arpsynth.wav,Keyboard,Synth +2,arps.wav,Keyboard,Synth +2,arpeggiator 2.wav,Keyboard,Synth +2,arpeggiator 1.wav,Keyboard,Synth +2,arp eg.wav,Electric Guitar, +2,arp clean eg.wav,Electric Guitar, +2,arp ag.wav,Acoustic Guitar, +2,arp 2.wav,Other, +2,arp 1.wav,Other, +2,ariana grande.wav,Voice, +2,anne-marie.wav,Voice, +2,andrew taggart.wav,Voice, +2,andrea bocelli.wav,Voice, +2,analog_seq.wav,Keyboard,Synth +2,analog strings.wav,Orchestra,Strings +2,ambient.wav,Keyboard,Synth +2,ambiance pads.wav,Keyboard,Synth +2,alvaro soler.wav,Voice, +2,all synths.wav,Keyboard,Synth +2,all bass.wav,Other, +2,alison krauss.wav,Voice, +2,alicia keys.wav,Voice, +2,alex gaskarth.wav,Voice, +2,akk.wav,Other, +2,agt 2.wav,Acoustic Guitar, +2,agt 1.wav,Acoustic Guitar, +2,agnylon.wav,Acoustic Guitar, +2,ag_l 2.wav,Acoustic Guitar, +2,ag_1.wav,Acoustic Guitar, +2,ag2 right.wav,Acoustic Guitar, +2,ag-notdup.wav,Acoustic Guitar, +2,ag steel l.wav,Acoustic Guitar, +2,ag right.wav,Acoustic Guitar, +2,ag nylon solo.wav,Acoustic Guitar, +2,ag nylon r.wav,Acoustic Guitar, +2,ag c.wav,Acoustic Guitar, +2,ag 4.wav,Acoustic Guitar, +2,ag 3 left.wav,Acoustic Guitar, +2,ag 04.wav,Acoustic Guitar, +2,ag 03 right.wav,Acoustic Guitar, +2,add guit.wav,Other, +2,adam yauch.wav,Voice, +2,ad-rock.wav,Other, +2,ad lib.wav,Voice, +2,acusgtr.wav,Acoustic Guitar, +2,acoustics.wav,Acoustic Guitar, +2,acoustic_guitars.wav,Acoustic Guitar, +2,acoustic guitar-notdups.wav,Acoustic Guitar, +2,acoustic gtr 2.wav,Acoustic Guitar, +2,acoustic gtr 1.wav,Acoustic Guitar, +2,acguitar2.wav,Acoustic Guitar, +2,acc guitar solo.wav,Acoustic Guitar, +2,acc gtr 2.wav,Acoustic Guitar, +2,ac.gtr theme.wav,Acoustic Guitar, +2,ac.gtr arp.wav,Acoustic Guitar, +2,ac guitar rythmic.wav,Acoustic Guitar, +2,ac guitar rhytmic.wav,Acoustic Guitar, +2,ac guitar arrangement.wav,Acoustic Guitar, +2,ac guitar 2.wav,Acoustic Guitar, +2,ac guitar 1.wav,Acoustic Guitar, +2,ac gtrs.wav,Acoustic Guitar, +2,ac gtr2.wav,Acoustic Guitar, +2,ac gtr1.wav,Acoustic Guitar, +2,ac gtr + mando.wav,Acoustic Guitar, +2,a guitar 3.wav,Acoustic Guitar, +2,_drums.wav,Drums, +2,_bass.wav,Bass Guitar, +2,4.wav,Other, +2,2-d.wav,Other, +2,13_lv.wav,Voice,Lead +2,13_clavinet.wav,Keyboard,Clavinet +2,13_bv.wav,Voice,Backing +2,12_lv.wav,Voice,Lead +2,12_bv.wav,Voice,Backing +2,11 lead vocal.wav,Voice,Lead +2,10_strings.wav,Other, +2,10_brasses.wav,Other, +2,10 synth pad.wav,Other, +2,10 strings.wav,Other, +2,10 lead vocal.wav,Other, +2,10 backing vocals.wav,Other, +2,09_eg2 r.wav,Other, +2,09 backing vocals.wav,Other, +2,07_organ.wav,Other, +2,07_ep.wav,Other, +2,07_ac gtr l.wav,Other, +2,07 strings.wav,Other, +2,07 lead vocal.wav,Other, +2,06_piano.wav,Other, +2,06_eg1 l.wav,Other, +2,06_ac piano.wav,Other, +2,05_percu.wav,Other, +2,05 piano.wav,Other, +2,05 lead guitars.wav,Other, +2,05 clean guitar.wav,Other, +2,04_synth bass.wav,Other, +2,04_drums.wav,Other, +2,04 lead guitar.wav,Other, +2,03 rhythm guitars.wav,Other, +1,zoo station u2 wurlitzer.wav,Other, +1,zoo station u2 perc.wav,Other, +1,zoo station u2 pedalsteel.wav,Other, +1,zoo station u2 pad.wav,Other, +1,zoo station u2 organ.wav,Other, +1,zoo station u2 ld.wav,Other, +1,zoo station u2 e guitar 3.wav,Other, +1,zoo station u2 e guitar 2.wav,Other, +1,zoo station u2 e guitar 1.wav,Other, +1,zoo station u2 drums.wav,Other, +1,zoo station u2 bv.wav,Other, +1,zoo station u2 bass.wav,Other, +1,zoo station u2 ambient.wav,Other, +1,zonderling.wav,Other, +1,zion.wav,Other, +1,zara larsson.wav,Other, +1,zacari.wav,Other, +1,yungstar.wav,Other, +1,yungblud.wav,Other, +1,yung gravy.wav,Other, +1,yung berg.wav,Other, +1,yung baby tate.wav,Other, +1,yuki chiba.wav,Other, +1,young thug-adlib.wav,Other, +1,young noble.wav,Other, +1,young jeezy.wav,Other, +1,young buck.wav,Other, +1,young biggie.wav,Other, +1,ynth 2.wav,Other, +1,ympani.wav,Other, +1,xzibit.wav,Other, +1,xylophones.wav,Other, +1,xxxtentacion.wav,Other, +1,xp.wav,Other, +1,wyclef jean.wav,Other, +1,wurly ep.wav,Keyboard,Wurlitzer +1,wurlt.wav,Keyboard,Wurlitzer +1,wurlitzer_ep.wav,Keyboard,Wurlitzer +1,wurlitzer+clavinet.wav,Keyboard,Wurlitzer +1,wurlitzer solo melodies.wav,Keyboard,Wurlitzer +1,wurlitzer ep.wav,Keyboard,Wurlitzer +1,wurlitzer 2.wav,Keyboard,Wurlitzer +1,wurlitzer 2 solo.wav,Keyboard,Wurlitzer +1,wurli+rhod.wav,Keyboard,Wurlitzer +1,wurli wha.wav,Keyboard,Wurlitzer +1,wurli synth.wav,Keyboard,Wurlitzer +1,wurli 200a.wav,Keyboard,Wurlitzer +1,wurli 140b.wav,Keyboard,Wurlitzer +1,wunder_s_synths.wav,Other, +1,wunder_s_piano.wav,Other, +1,wunder_s_guitar_02.wav,Other, +1,wunder_s_guitar_01.wav,Other, +1,wunder_s_drums.wav,Other, +1,wunder_s_bv.wav,Other, +1,wunder_s_bass.wav,Other, +1,wu-tang.wav,Other, +1,world_percussion.wav,Other, +1,world_instruments.wav,Other, +1,world-voices e,Other, +1,wooshfx.wav,Other, +1,woodwings.wav,Other, +1,woodblock.wav,Other, +1,wonder mike.wav,Other, +1,wolftyla.wav,Other, +1,wobble_bass_synth.wav,Other, +1,wisin.wav,Other, +1,wine.wav,Other, +1,winds + pipe.wav,Other, +1,windfx.wav,Other, +1,wind synth.wav,Other, +1,wind section.wav,Other, +1,wind harp.wav,Other, +1,wind fx.wav,Other, +1,willow sage hart.wav,Other, +1,william.wav,Other, +1,will.i.am-adlib.wav,Other, +1,whurli.wav,Other, +1,whistler.wav,Other, +1,whistle 2 end.wav,Other, +1,whistle 1 right.wav,Other, +1,whisper.wav,Other, +1,whilstesynth.wav,Other, +1,whilstemonolead.wav,Other, +1,whagt_l.wav,Other, +1,wha clean.wav,Other, +1,wesley schultz.wav,Other, +1,weird noise.wav,Other, +1,wblock.wav,Other, +1,wawagtr 1.wav,Other, +1,wawa.wav,Other, +1,waterphone.wav,Other, +1,wanya morris.wav,Other, +1,wale.wav,Other, +1,waka flocka flame.wav,Other, +1,wahwah guitar 2.wav,Other, +1,wahwah funk eg.wav,Other, +1,wahwah filter eg.wav,Other, +1,wahsynth.wav,Other, +1,wahgtr.wav,Other, +1,wah guit.wav,Other, +1,vynyl slowdown fx.wav,Other, +1,vynil_noise.wav,Other, +1,vx lead.wav,Other, +1,vx back.wav,Other, +1,vst strings.wav,Other, +1,vst choir.wav,Other, +1,voz.wav,Other, +1,voxsynth12.wav,Keyboard,Synth Vox +1,voxfx.wav,Keyboard,Synth Vox +1,vox_chops.wav,Keyboard,Synth Vox +1,vox-stac.wav,Keyboard,Synth Vox +1,vox shouts.wav,Keyboard,Synth Vox +1,vox shout.wav,Keyboard,Synth Vox +1,vox scream.wav,Keyboard,Synth Vox +1,vox sampler.wav,Keyboard,Synth Vox +1,vox sample loop.wav,Keyboard,Synth Vox +1,vox sample loop bong bong.wav,Keyboard,Synth Vox +1,vox punch.wav,Keyboard,Synth Vox +1,vox pad.wav,Keyboard,Synth Vox +1,vox organ.wav,Keyboard,Synth Vox +1,vox only.wav,Keyboard,Synth Vox +1,vox mellotron.wav,Keyboard,Synth Vox +1,vox leadmaster.wav,Keyboard,Synth Vox +1,vox lead.wav,Keyboard,Synth Vox +1,vox hey.wav,Keyboard,Synth Vox +1,vox cut.wav,Keyboard,Synth Vox +1,vox breath.wav,Keyboard,Synth Vox +1,vox 2.wav,Keyboard,Synth Vox +1,volbeat.wav,Other, +1,voicesynth 1+2.wav,Keyboard,Synth Vox +1,voices.wav,Keyboard,Synth Vox +1,voices glass synth.wav,Keyboard,Synth Vox +1,voicepad+atmo.wav,Keyboard,Synth Vox +1,voicefx.wav,Keyboard,Synth Vox +1,voice.wav,Keyboard,Synth Vox +1,voice fx.wav,Keyboard,Synth Vox +1,voice efx.wav,Keyboard,Synth Vox +1,vocoder synth.wav,Other, +1,voco.wav,Other, +1,vocglitch.wav,Keyboard,Synth Vox +1,vocals_sfx.wav,Keyboard,Synth Vox +1,vocals fx.wav,Keyboard,Synth Vox +1,vocalpad.wav,Keyboard,Synth Vox +1,vocal_sfx.wav,Keyboard,Synth Vox +1,vocal shouts.wav,Keyboard,Synth Vox +1,vocal sample.wav,Keyboard,Synth Vox +1,vocal pad.wav,Keyboard,Synth Vox +1,vocal loop 2.wav,Keyboard,Synth Vox +1,vocal loop 1.wav,Keyboard,Synth Vox +1,vocal choir.wav,Voice, +1,vocal adds.wav,Voice, +1,voc2+3mix.wav,Voice, +1,voc123.wav,Voice, +1,voc12.wav,Voice, +1,voc1+2mix.wav,Voice, +1,voc pads.wav,Voice, +1,voc and 3b.wav,Voice, +1,voc ad lib.wav,Voice, +1,voc 5b.wav,Voice, +1,voc 4b.wav,Voice, +1,voc 2rap.wav,Voice, +1,voc 2b spoken.wav,Voice, +1,voc 2b rap.wav,Voice, +1,voc 2 whisper.wav,Voice, +1,voc 12b.wav,Voice, +1,voc 123.wav,Voice, +1,voc 1+2+3+5mix.wav,Voice, +1,voc 1 rap.wav,Voice, +1,voc 1 2.wav,Other, +1,vln 123.wav,Other, +1,vl ii right.wav,Other, +1,vl i right.wav,Other, +1,vita.wav,Other, +1,violins (real).wav,Violin, +1,violins (cello).wav,Violin, +1,violines.wav,Violin, +1,violin1234567.wav,Violin, +1,violin section.wav,Violin, +1,violin real.wav,Violin, +1,violin loop.wav,Violin, +1,violin 03 pizz.wav,Violin, +1,violas.wav,Viola, +1,violas and cellos.wav,Viola, +1,vinylnoise strings.wav,Other, +1,vinyl_scratches.wav,Other, +1,vinyl_fx.wav,Other, +1,vinyl sfx.wav,Other, +1,vinyl scratch.wav,Other, +1,vinyl noise_01.wav,Other, +1,vinyl noise.wav,Other, +1,vinyl + breath..wav,Other, +1,vin rock.wav,Other, +1,vibrophone.wav,Keyboard,Vibes +1,vibraslap.wav,Keyboard,Vibes +1,vibraphone_2.wav,Keyboard,Vibes +1,vibraphone_1.wav,Keyboard,Vibes +1,vibe.wav,Keyboard,Vibes +1,versesynth.wav,Other, +1,versegtrs.wav,Other, +1,verseacoustic.wav,Other, +1,vee synth.wav,Other, +1,vc left.wav,Other, +1,vanessa carlton.wav,Other, +1,valora.wav,Other, +1,val young.wav,Other, +1,v.wav,Other, +1,urli.wav,Other, +1,uprightbass.wav,Other, +1,upright_piano.wav,Other, +1,upright.wav,Other, +1,uncle charlie wilson.wav,Other, +1,u2.wav,Other, +1,u-god.wav,Other, +1,tzouras.wav,Other, +1,tyler.wav,Other, +1,tyler childers.wav,Other, +1,tyla.wav,Other, +1,tyga.wav,Other, +1,two hearts beat as one u2 ld.wav,Voice,Lead +1,two hearts beat as one u2 e guitar 3.wav,Electric Guitar, +1,two hearts beat as one u2 e guitar 2.wav,Electric Guitar, +1,two hearts beat as one u2 e guitar 1.wav,Electric Guitar, +1,two hearts beat as one u2 drums.wav,Drums, +1,two hearts beat as one u2 bv.wav,Voice,Backing +1,two hearts beat as one u2 bass.wav,Bass Guitar, +1,twang synth.wav,Other, +1,turn table.wav,Other, +1,tuned-percussion.wav,Other, +1,tuned percussion.wav,Other, +1,tulisa.wav,Other, +1,tubulasr.wav,Other, +1,tubular bells_1.wav,Other, +1,tsr.wav,Other, +1,tsmbourine.wav,Other, +1,ts.wav,Other, +1,trumpets vst.wav,Trumpet, +1,trumpets right.wav,Trumpet, +1,trumpets real+vst.wav,Trumpet, +1,trumpets pitch.wav,Trumpet, +1,trumpets left.wav,Trumpet, +1,trumpet_2.wav,Trumpet, +1,trumpet_123.wav,Trumpet, +1,trumpet_1.wav,Trumpet, +1,trumpet and trombone.wav,Trumpet, +1,trumpet 2.wav,Trumpet, +1,trumpet 1.wav,Trumpet, +1,trp solo.wav,Trumpet, +1,troye sivan.wav,Other, +1,trombones vst.wav,Trombone, +1,trombone real.wav,Trombone, +1,trombone 02.wav,Trombone, +1,trombone 01.wav,Trombone, +1,trombon.wav,Trombone, +1,trick daddy.wav,Other, +1,triana.wav,Other, +1,trevor williams.wav,Other, +1,tres.wav,Other, +1,tremologuitar.wav,Other, +1,tremolo guitar 5.wav,Other, +1,trem thing.wav,Other, +1,trem pad.wav,Other, +1,trem gtr.wav,Other, +1,treach.wav,Other, +1,tranceld.wav,Other, +1,tranceextra.wav,Other, +1,trance (bass).wav,Other, +1,tpt2.wav,Other, +1,tpt1.wav,Other, +1,tpt and bone.wav,Other, +1,tp12.wav,Other, +1,tove lo.wav,Other, +1,total.wav,Other, +1,tory lanez.wav,Other, +1,tori kelly.wav,Other, +1,tool synth.wav,Other, +1,tool lv.wav,Other, +1,tool jambi synth pad.wav,Other, +1,tool jambi perc.wav,Other, +1,tool jambi lv.wav,Other, +1,tool jambi guitar 2.wav,Other, +1,tool jambi guitar 1.wav,Other, +1,tool jambi fx.wav,Other, +1,tool jambi drum.wav,Other, +1,tool jambi bv.wav,Other, +1,tool jambi bass 2.wav,Other, +1,tool jambi bass 1.wav,Other, +1,tool guitar 4.wav,Other, +1,tool guitar 3.wav,Other, +1,tool guitar 2.wav,Other, +1,tool guitar 1.wav,Other, +1,tool fx.wav,Other, +1,tool drum.wav,Other, +1,tool bv.wav,Other, +1,tool bass.wav,Other, +1,tony green.wav,Other, +1,tone + synthpad.wav,Other, +1,tonal percussion.wav,Other, +1,toms.wav,Other, +1,toms elec.wav,Other, +1,tom waits.wav,Other, +1,tom mcdonald.wav,Other, +1,tl.wav,Other, +1,tl-adlib.wav,Other, +1,tiple.wav,Other, +1,tink.wav,Other, +1,tinie lead.wav,Other, +1,tin whistle.wav,Other, +1,timps.wav,Other, +1,timp.wav,Other, +1,timp and tamb.wav,Other, +1,timbales fx.wav,Other, +1,timbale.wav,Other, +1,tim mcgraw.wav,Other, +1,thundercat.wav,Other, +1,thomas rhett.wav,Other, +1,third solo eg.wav,Other, +1,themegtr 1.wav,Other, +1,theme.wav,Other, +1,theme synthlead.wav,Other, +1,theme synth arp.wav,Other, +1,theme gtr 3.wav,Other, +1,theme electric guit.wav,Other, +1,the vamps.wav,Other, +1,the struts.wav,Other, +1,the script.wav,Other, +1,the schoolmaster.wav,Other, +1,the notorious b.i.g.-adlib.wav,Other, +1,the judge.wav,Other, +1,the eastside boyz.wav,Other, +1,the chicks travelin soldier perc.wav,Percussion, +1,the chicks travelin soldier mandoline.wav,Mandolin, +1,the chicks travelin soldier lv.wav,Voice,Lead +1,the chicks travelin soldier fiddle 2.wav,Violin,Fiddle 2 +1,the chicks travelin soldier fiddle 1.wav,Violin,Fiddle 1 +1,the chicks travelin soldier drum.wav,Drums, +1,the chicks travelin soldier bass.wav,Bass Guitar, +1,the chicks travelin soldier acordion.wav,Accordion, +1,the chicks travelin soldier acc guitar 4.wav,Acoustic Guitar,Acoustic 4 +1,the chicks travelin soldier acc guitar 3.wav,Acoustic Guitar,Acoustic 3 +1,the chicks travelin soldier acc guitar 2.wav,Acoustic Guitar,Acoustic 2 +1,the chicks travelin soldier acc guitar 1.wav,Acoustic Guitar,Acoustic 1 +1,the chicks traveli soldier bv.wav,Voice,Backing +1,the big money rush synthbass.wav,Keyboard,Synth Bass +1,the big money rush synth gtr.wav,Keyboard,Synth Guitar +1,the big money rush ld.wav,Voice,Lead +1,the big money rush e guitar solo.wav,Electric Guitar,Solo +1,the big money rush e guitar 4.wav,Electric Guitar,Electric 4 +1,the big money rush e guitar 3.wav,Electric Guitar,Electric 3 +1,the big money rush e guitar 2.wav,Electric Guitar,Electric 2 +1,the big money rush e guitar 1.wav,Electric Guitar,Electric 1 +1,the big money rush drums.wav,Drums, +1,the big money rush bv.wav,Voice,Backing +1,the big money rush bass.wav,Bass Guitar, +1,the babys.wav,Other, +1,the 1975 its not living if its not with you vocal synth.wav,Keyboard,Synth Vox +1,the 1975 its not living if its not with you piano.wav,Piano, +1,the 1975 its not living if its not with you lv.wav,Voice,Lead +1,the 1975 its not living if its not with you guitar 7.wav,Electric Guitar,Electric 5 +1,the 1975 its not living if its not with you guitar 4.wav,Electric Guitar,Electric 4 +1,the 1975 its not living if its not with you guitar 3.wav,Electric Guitar,Electric 3 +1,the 1975 its not living if its not with you guitar 2.wav,Electric Guitar,Electric 2 +1,the 1975 its not living if its not with you guitar 1.wav,Electric Guitar,Electric 1 +1,the 1975 its not living if its not with you drum.wav,Drums, +1,the 1975 its not living if its not with you bv.wav,Voice,Backing +1,the 1975 its not living if its not with you bass.wav,Bass Guitar, +1,the 1975 its not living if its not with you acc guitar.wav,Acoustic Guitar, +1,thalia.wav,Other, +1,texture3.wav,Other, +1,texture2.wav,Other, +1,texture1.wav,Other, +1,terry bozzio.wav,Other, +1,terri nunn.wav,Other, +1,tenor sax solo.wav,Other, +1,telle.wav,Other, +1,tbn.wav,Other, +1,tb12.wav,Other, +1,tb.wav,Other, +1,tb 303 bass synth.wav,Other, +1,taylor swift.wav,Other, +1,taurus bass.wav,Other, +1,tate mcrae.wav,Other, +1,tape fx.wav,Other, +1,tanya trotter.wav,Other, +1,tambourines.wav,Percussion,Tambourine +1,tambourine+sfx.wav,Percussion,Tambourine +1,tambourine+jew harp.wav,Percussion,Tambourine +1,tambouirne.wav,Percussion,Tambourine +1,tamborine.wav,Percussion,Tambourine +1,tamborim.wav,Percussion,Tambourine +1,tamb shak cong.wav,Percussion,Tambourine +1,tamb and shak.wav,Percussion,Tambourine +1,tamb and claps.wav,Percussion,Tambourine +1,tamb (quantized).wav,Percussion,Tambourine +1,talkboxgt.wav,Other, +1,talkbox.wav,Other, +1,takeoff-adlib.wav,Other, +1,taj.wav,Other, +1,taikos.wav,Other, +1,taboo.wav,Other, +1,tabla.wav,Other, +1,sytnh2 bells.wav,Keyboard,Synth +1,sytnh guit.wav,Keyboard,Synth +1,sythns.wav,Keyboard,Synth +1,synvox.wav,Keyboard,Synth +1,syntrh.wav,Keyboard,Synth +1,synthvox+synth vocoder.wav,Keyboard,Synth +1,synthvoices.wav,Keyboard,Synth +1,synthvoice2.wav,Keyboard,Synth +1,synthstring with filter.wav,Keyboard,Synth +1,synthsteam.wav,Keyboard,Synth +1,synthstabs.wav,Keyboard,Synth +1,synthsaw.wav,Keyboard,Synth +1,synths2.wav,Keyboard,Synth +1,synths123.wav,Keyboard,Synth +1,synths strings.wav,Keyboard,Synth +1,synths strings+choir.wav,Keyboard,Synth +1,synths plucks.wav,Keyboard,Synth +1,synths mono.wav,Keyboard,Synth +1,synths mixmaster.wav,Keyboard,Synth +1,synths lead+key.wav,Keyboard,Synth +1,synths keys.wav,Keyboard,Synth +1,synths fundations.wav,Keyboard,Synth +1,synths chrom percs.wav,Keyboard,Synth +1,synths and organ.wav,Keyboard,Synth +1,synths and introsynt.wav,Keyboard,Synth +1,synths and fx.wav,Keyboard,Synth +1,synths and bell.wav,Keyboard,Synth +1,synths 5.wav,Keyboard,Synth +1,synths 4.wav,Keyboard,Synth +1,synths 2-.wav,Keyboard,Synth +1,synths 2+3.wav,Keyboard,Synth +1,synths 12 arr.wav,Keyboard,Synth +1,synths 1-.wav,Keyboard,Synth +1,synths 1 dance.wav,Keyboard,Synth +1,synthriser.wav,Keyboard,Synth +1,synthprophetv.wav,Keyboard,Synth +1,synthpolypad.wav,Keyboard,Synth +1,synthpluckvox.wav,Keyboard,Synth +1,synthpianopad.wav,Keyboard,Synth +1,synthpad filtered.wav,Keyboard,Synth +1,synthpad chorus.wav,Keyboard,Synth +1,synthpad ambiance.wav,Keyboard,Synth +1,synthpad 3.wav,Keyboard,Synth +1,synthpad 2.wav,Keyboard,Synth +1,synthpad 1.wav,Keyboard,Synth +1,synthoutro.wav,Keyboard,Synth +1,synthmix1.2.5.6.7.9..wav,Keyboard,Synth +1,synthmix.wav,Keyboard,Synth +1,synthmelody.wav,Keyboard,Synth +1,synthmain.wav,Keyboard,Synth +1,synthleads.wav,Keyboard,Synth +1,synthlead3.wav,Keyboard,Synth +1,synthlead square.wav,Keyboard,Synth +1,synthlead filter.wav,Keyboard,Synth +1,synthlead disto.wav,Keyboard,Synth +1,synthlead 2.wav,Keyboard,Synth +1,synthldvox.wav,Keyboard,Synth +1,synthld.wav,Keyboard,Synth +1,synthld+synthsolo.wav,Keyboard,Synth +1,synthlapsteel.wav,Keyboard,Synth +1,synthlap+synth poly.wav,Keyboard,Synth +1,synthkey filter.wav,Keyboard,Synth +1,synthi.wav,Keyboard,Synth +1,synthharp.wav,Keyboard,Synth +1,synthgtr.wav,Keyboard,Synth +1,synthgt.wav,Keyboard,Synth +1,synthfxhits.wav,Keyboard,Synth +1,synthfx3 disto guit.wav,Keyboard,Synth +1,synthfx2.wav,Keyboard,Synth +1,synthfx + arp.wav,Keyboard,Synth +1,synthfilt.wav,Keyboard,Synth +1,synthfill.wav,Keyboard,Synth +1,synthextras.wav,Keyboard,Synth +1,synthesizer.wav,Keyboard,Synth +1,synthepad.wav,Keyboard,Synth +1,synthe vox.wav,Keyboard,Synth +1,synthe rythmique.wav,Keyboard,Synth +1,synthe pads.wav,Keyboard,Synth +1,synthe cordes.wav,Keyboard,Synth +1,synthe cordes arcos.wav,Keyboard,Synth +1,synthe clavi.wav,Keyboard,Synth +1,synthe brass.wav,Keyboard,Synth +1,synthe bass.wav,Keyboard,Synth +1,synthe bass metal.wav,Keyboard,Synth +1,synthe arp.wav,Keyboard,Synth +1,synthe 02.wav,Keyboard,Synth +1,synthe 01.wav,Keyboard,Synth +1,synthdrone.wav,Keyboard,Synth +1,synthbuzz2.wav,Keyboard,Synth +1,synthbuzz.wav,Keyboard,Synth +1,synthbrass trumpets.wav,Keyboard,Synth +1,synthbell.wav,Keyboard,Synth +1,synthbassoon.wav,Keyboard,Synth +1,synthbasses.wav,Keyboard,Synth +1,synthbass2.wav,Keyboard,Synth +1,synthbass1.wav,Keyboard,Synth +1,synthbass trs sub.wav,Keyboard,Synth +1,synthbass 2 agressive.wav,Keyboard,Synth +1,synthbass 1 soft.wav,Keyboard,Synth +1,synthatmo.wav,Keyboard,Synth +1,syntharr.wav,Keyboard,Synth +1,syntharr and pads.wav,Keyboard,Synth +1,syntharp2.wav,Keyboard,Synth +1,synth_wurli.wav,Keyboard,Synth +1,synth_tone fx arr.wav,Keyboard,Synth +1,synth_the_cars_good_times_roll.wav,Keyboard,Synth +1,synth_tak_piano.wav,Keyboard,Synth +1,synth_supersaw.wav,Keyboard,Synth +1,synth_strings_intro outro.wav,Keyboard,Synth +1,synth_string_lead.wav,Keyboard,Synth +1,synth_string.wav,Keyboard,Synth +1,synth_stab.wav,Keyboard,Synth +1,synth_square.wav,Keyboard,Synth +1,synth_seq.wav,Keyboard,Synth +1,synth_saw.wav,Keyboard,Synth +1,synth_prophet_pad.wav,Keyboard,Synth +1,synth_poly.wav,Keyboard,Synth +1,synth_plucks.wav,Keyboard,Synth +1,synth_plucked.wav,Keyboard,Synth +1,synth_pluck.wav,Keyboard,Synth +1,synth_pianola.wav,Keyboard,Synth +1,synth_pads.wav,Keyboard,Synth +1,synth_oberheim.wav,Keyboard,Synth +1,synth_minimoog.wav,Keyboard,Synth +1,synth_mini_moog_bass.wav,Keyboard,Synth +1,synth_mini_moog_12.wav,Keyboard,Synth +1,synth_mellotron_pluck.wav,Keyboard,Synth +1,synth_mellotron_clarinet.wav,Keyboard,Synth +1,synth_leads.wav,Keyboard,Synth +1,synth_lead_2.wav,Keyboard,Synth +1,synth_lead+2.wav,Keyboard,Synth +1,synth_jupiter.wav,Keyboard,Synth +1,synth_gtr.wav,Keyboard,Synth +1,synth_fm.wav,Keyboard,Synth +1,synth_flute_mellotron 12.wav,Keyboard,Synth +1,synth_diva_sine.wav,Keyboard,Synth +1,synth_dist_lead.wav,Keyboard,Synth +1,synth_clavinet.wav,Keyboard,Synth +1,synth_clavier.wav,Keyboard,Synth +1,synth_brass_pad.wav,Keyboard,Synth +1,synth_brass_1+2.wav,Keyboard,Synth +1,synth_bending.wav,Keyboard,Synth +1,synth_bell.wav,Keyboard,Synth +1,synth_accordion.wav,Keyboard,Synth +1,synth_1 intro three little keys.wav,Keyboard,Synth +1,synth_1 2 3.wav,Keyboard,Synth +1,synth_02.wav,Keyboard,Synth +1,synth_01.wav,Keyboard,Synth +1,synth56.wav,Keyboard,Synth +1,synth4 ringtone style.wav,Keyboard,Synth +1,synth4 bells.wav,Keyboard,Synth +1,synth3low.wav,Keyboard,Synth +1,synth3 organ-style.wav,Keyboard,Synth +1,synth3 boing.wav,Keyboard,Synth +1,synth3 bass.wav,Keyboard,Synth +1,synth3 + voicesynth2.wav,Keyboard,Synth +1,synth24 and vox.wav,Keyboard,Synth +1,synth23.wav,Keyboard,Synth +1,synth2+4+5mix.wav,Keyboard,Synth +1,synth2&3mix.wav,Keyboard,Synth +1,synth2 end.wav,Keyboard,Synth +1,synth2 electronic bips.wav,Keyboard,Synth +1,synth2 bass.wav,Keyboard,Synth +1,synth13.wav,Keyboard,Synth +1,synth12467.wav,Keyboard,Synth +1,synth123 and pad.wav,Keyboard,Synth +1,synth1+2mix.wav,Keyboard,Synth +1,synth1 trance.wav,Keyboard,Synth +1,synth1 pizz.wav,Keyboard,Synth +1,synth1 bells.wav,Keyboard,Synth +1,synth-solo.wav,Keyboard,Synth +1,synth-siren.wav,Keyboard,Synth +1,synth-perc-arpeggiator.wav,Keyboard,Synth +1,synth-other.wav,Keyboard,Synth +1,synth-main.wav,Keyboard,Synth +1,synth-lead-2.wav,Keyboard,Synth +1,synth-lead-1.wav,Keyboard,Synth +1,synth-glide.wav,Keyboard,Synth +1,synth-fx.wav,Keyboard,Synth +1,synth-chorus.wav,Keyboard,Synth +1,synth-chords.wav,Keyboard,Synth +1,synth-choir.wav,Keyboard,Synth +1,synth-brass.wav,Keyboard,Synth +1,synth-bells.wav,Keyboard,Synth +1,synth-bell.wav,Keyboard,Synth +1,synth-bass-2.wav,Keyboard,Synth +1,synth-and-melodyca.wav,Keyboard,Synth +1,synth-7.wav,Keyboard,Synth +1,synth-6.wav,Keyboard,Synth +1,synth-5.wav,Keyboard,Synth +1,synth-12.wav,Keyboard,Synth +1,synth-1 arr fx.wav,Keyboard,Synth +1,synth+fx.wav,Keyboard,Synth +1,synth(saw).wav,Keyboard,Synth +1,synth(poly).wav,Keyboard,Synth +1,synth(plucked).wav,Keyboard,Synth +1,synth wood.wav,Keyboard,Synth +1,synth wha.wav,Keyboard,Synth +1,synth vx.wav,Keyboard,Synth +1,synth vox fx.wav,Keyboard,Synth +1,synth voice.wav,Keyboard,Synth +1,synth vocal eh.wav,Keyboard,Synth +1,synth vintage.wav,Keyboard,Synth +1,synth vibrato lead.wav,Keyboard,Synth +1,synth various.wav,Keyboard,Synth +1,synth uh.wav,Keyboard,Synth +1,synth trumpet.wav,Keyboard,Synth +1,synth trs filter.wav,Keyboard,Synth +1,synth trance.wav,Keyboard,Synth +1,synth trance 2.wav,Keyboard,Synth +1,synth trance 1.wav,Keyboard,Synth +1,synth theme trance.wav,Keyboard,Synth +1,synth swell and extra.wav,Keyboard,Synth +1,synth swell 80s.wav,Keyboard,Synth +1,synth sweep.wav,Keyboard,Synth +1,synth strings arr.wav,Keyboard,Synth +1,synth strings 123 and horns.wav,Keyboard,Synth +1,synth strings 1 + 2.wav,Keyboard,Synth +1,synth stab.wav,Keyboard,Synth +1,synth square 1+2.wav,Keyboard,Synth +1,synth slides.wav,Keyboard,Synth +1,synth siren.wav,Keyboard,Synth +1,synth sequenced.wav,Keyboard,Synth +1,synth saw lead.wav,Keyboard,Synth +1,synth saw 2.wav,Keyboard,Synth +1,synth pluged.wav,Keyboard,Synth +1,synth plucks.wav,Keyboard,Synth +1,synth pluck 2 + synth brass.wav,Keyboard,Synth +1,synth pizzicato.wav,Keyboard,Synth +1,synth percussive.wav,Keyboard,Synth +1,synth perc loop.wav,Keyboard,Synth +1,synth pedal.wav,Keyboard,Synth +1,synth pan flanger.wav,Keyboard,Synth +1,synth pad2.wav,Keyboard,Synth +1,synth pad1.wav,Keyboard,Synth +1,synth pad(fx).wav,Keyboard,Synth +1,synth pad vocals.wav,Keyboard,Synth +1,synth pad lo.wav,Keyboard,Synth +1,synth pad key.wav,Keyboard,Synth +1,synth pad hi.wav,Keyboard,Synth +1,synth pad end.wav,Keyboard,Synth +1,synth pad bright.wav,Keyboard,Synth +1,synth pad 4.wav,Keyboard,Synth +1,synth pad 3.wav,Keyboard,Synth +1,synth pad 123.wav,Keyboard,Synth +1,synth pad 1 2.wav,Keyboard,Synth +1,synth p.wav,Keyboard,Synth +1,synth p + pad + lead synth 1 + 2.wav,Keyboard,Synth +1,synth organ sfx.wav,Keyboard,Synth +1,synth notes.wav,Keyboard,Synth +1,synth noisy + glitch loop + wind pad.wav,Keyboard,Synth +1,synth new.wav,Keyboard,Synth +1,synth moog2+pad.wav,Keyboard,Synth +1,synth moog.wav,Keyboard,Synth +1,synth moog 1.wav,Keyboard,Synth +1,synth mix.wav,Keyboard,Synth +1,synth misc + glitch.wav,Keyboard,Synth +1,synth metal pluck.wav,Keyboard,Synth +1,synth melody.wav,Keyboard,Synth +1,synth melodie.wav,Keyboard,Synth +1,synth melo bells.wav,Keyboard,Synth +1,synth low.wav,Keyboard,Synth +1,synth loop.wav,Keyboard,Synth +1,synth line.wav,Keyboard,Synth +1,synth lfo1.wav,Keyboard,Synth +1,synth lfo 2.wav,Keyboard,Synth +1,synth left.wav,Keyboard,Synth +1,synth leads 2 moog.wav,Keyboard,Synth +1,synth leads 1.wav,Keyboard,Synth +1,synth lead_ok.wav,Keyboard,Synth +1,synth lead+string+synth.wav,Keyboard,Synth +1,synth lead right.wav,Keyboard,Synth +1,synth lead mix.wav,Keyboard,Synth +1,synth lead ep.wav,Keyboard,Synth +1,synth lead disto.wav,Keyboard,Synth +1,synth lead d+synth flute.wav,Keyboard,Synth +1,synth lead c.wav,Keyboard,Synth +1,synth lead bus.wav,Keyboard,Synth +1,synth lead bass.wav,Keyboard,Synth +1,synth lead bass add.wav,Keyboard,Synth +1,synth lead b.wav,Keyboard,Synth +1,synth lead a.wav,Keyboard,Synth +1,synth lead 4.wav,Keyboard,Synth +1,synth lead 2 right.wav,Keyboard,Synth +1,synth lead 2 + 3 + arp.wav,Keyboard,Synth +1,synth lead 1+2.wav,Keyboard,Synth +1,synth lead 1 high.wav,Keyboard,Synth +1,synth lead 1 2 3.wav,Keyboard,Synth +1,synth lead 1 + arr.wav,Keyboard,Synth +1,synth lead 1 + 2.wav,Keyboard,Synth +1,synth keys roland juno.wav,Keyboard,Synth +1,synth keys piano.wav,Keyboard,Synth +1,synth key + choir.wav,Keyboard,Synth +1,synth intro outro.wav,Keyboard,Synth +1,synth horns.wav,Keyboard,Synth +1,synth horn.wav,Keyboard,Synth +1,synth hoover.wav,Keyboard,Synth +1,synth high.wav,Keyboard,Synth +1,synth hi.wav,Keyboard,Synth +1,synth hammond.wav,Keyboard,Synth +1,synth guitary.wav,Keyboard,Synth +1,synth guitar 2.wav,Keyboard,Synth +1,synth guitar 2+3+4+5.wav,Keyboard,Synth +1,synth guitar 1.wav,Keyboard,Synth +1,synth guit dist.wav,Keyboard,Synth +1,synth guit 3 (left).wav,Keyboard,Synth +1,synth guit 2.wav,Keyboard,Synth +1,synth guit 1.wav,Keyboard,Synth +1,synth growl.wav,Keyboard,Synth +1,synth glissando.wav,Keyboard,Synth +1,synth glide.wav,Keyboard,Synth +1,synth giut.wav,Keyboard,Synth +1,synth gated.wav,Keyboard,Synth +1,synth fx loop.wav,Keyboard,Synth +1,synth fx arr.wav,Keyboard,Synth +1,synth fx 2.wav,Keyboard,Synth +1,synth fx 1.wav,Keyboard,Synth +1,synth fix.wav,Keyboard,Synth +1,synth final.wav,Keyboard,Synth +1,synth filter.wav,Keyboard,Synth +1,synth filter and bleeps.wav,Keyboard,Synth +1,synth fill.wav,Keyboard,Synth +1,synth extra.wav,Keyboard,Synth +1,synth ending.wav,Keyboard,Synth +1,synth drone.wav,Keyboard,Synth +1,synth distor2 arr end.wav,Keyboard,Synth +1,synth distor.wav,Keyboard,Synth +1,synth dis + dis2 + gtrs dis.wav,Keyboard,Synth +1,synth d.wav,Keyboard,Synth +1,synth clochettes.wav,Keyboard,Synth +1,synth clavinet.wav,Keyboard,Synth +1,synth chrom perc.wav,Keyboard,Synth +1,synth choruses.wav,Keyboard,Synth +1,synth chords.wav,Keyboard,Synth +1,synth chord.wav,Keyboard,Synth +1,synth choirs.wav,Keyboard,Synth +1,synth center.wav,Keyboard,Synth +1,synth c.wav,Keyboard,Synth +1,synth break.wav,Keyboard,Synth +1,synth brass bass.wav,Keyboard,Synth +1,synth brass 12.wav,Keyboard,Synth +1,synth bending light + mellotron + choir.wav,Keyboard,Synth +1,synth bend.wav,Keyboard,Synth +1,synth bells+flute.wav,Keyboard,Synth +1,synth bells + choir.wav,Keyboard,Synth +1,synth bell+bells+piano+noise.wav,Keyboard,Synth +1,synth bell 2.wav,Keyboard,Synth +1,synth basse.wav,Keyboard,Synth +1,synth bass-1.wav,Keyboard,Synth +1,synth bass riff.wav,Keyboard,Synth +1,synth bass pluck.wav,Keyboard,Synth +1,synth bass mono.wav,Keyboard,Synth +1,synth bass mix.wav,Keyboard,Synth +1,synth bass main 2.wav,Keyboard,Synth +1,synth bass dist.wav,Keyboard,Synth +1,synth bass and bass synth.wav,Keyboard,Synth +1,synth bass 3.wav,Keyboard,Synth +1,synth bass 12.wav,Keyboard,Synth +1,synth bass 1+2.wav,Keyboard,Synth +1,synth bass 1 + 2.wav,Keyboard,Synth +1,synth bass + sound effects.wav,Keyboard,Synth +1,synth bass + outro.wav,Keyboard,Synth +1,synth bass + ep + pads+stabs.wav,Keyboard,Synth +1,synth back2_ok.wav,Keyboard,Synth +1,synth back1_ok.wav,Keyboard,Synth +1,synth b.wav,Keyboard,Synth +1,synth arr+main.wav,Keyboard,Synth +1,synth arr main.wav,Keyboard,Synth +1,synth arps.wav,Keyboard,Synth +1,synth arpeggio.wav,Keyboard,Synth +1,synth arp brass.wav,Keyboard,Synth +1,synth arp 1+2+3.wav,Keyboard,Synth +1,synth and synthfx.wav,Keyboard,Synth +1,synth and strings.wav,Keyboard,Synth +1,synth and pad.wav,Keyboard,Synth +1,synth and lead keys.wav,Keyboard,Synth +1,synth and ep.wav,Keyboard,Synth +1,synth ambiance.wav,Keyboard,Synth +1,synth amb.wav,Keyboard,Synth +1,synth amb mix.wav,Keyboard,Synth +1,synth adds and fx end.wav,Keyboard,Synth +1,synth adds 3.wav,Keyboard,Synth +1,synth adds 1.wav,Keyboard,Synth +1,synth accordion.wav,Keyboard,Synth +1,synth accordion left.wav,Keyboard,Synth +1,synth accordeon.wav,Keyboard,Synth +1,synth 6 arr.wav,Keyboard,Synth +1,synth 56 and resample.wav,Keyboard,Synth +1,synth 5 whistle.wav,Keyboard,Synth +1,synth 5 right.wav,Keyboard,Synth +1,synth 4 solo.wav,Keyboard,Synth +1,synth 4 left.wav,Keyboard,Synth +1,synth 4 bass.wav,Keyboard,Synth +1,synth 4 - pad subtle.wav,Keyboard,Synth +1,synth 3+4.wav,Keyboard,Synth +1,synth 3 solo.wav,Keyboard,Synth +1,synth 3 robot.wav,Keyboard,Synth +1,synth 3 disto end.wav,Keyboard,Synth +1,synth 3 bells.wav,Keyboard,Synth +1,synth 3 bass.wav,Keyboard,Synth +1,synth 2aig.wav,Keyboard,Synth +1,synth 234.wav,Keyboard,Synth +1,synth 2-1.wav,Keyboard,Synth +1,synth 2+3.wav,Keyboard,Synth +1,synth 2 wah.wav,Keyboard,Synth +1,synth 2 stringy.wav,Keyboard,Synth +1,synth 2 square lead.wav,Keyboard,Synth +1,synth 2 sncf.wav,Keyboard,Synth +1,synth 2 minilead end.wav,Keyboard,Synth +1,synth 2 keys reverb right.wav,Keyboard,Synth +1,synth 2 harp.wav,Keyboard,Synth +1,synth 2 bells and synth 4 bells.wav,Keyboard,Synth +1,synth 2 arr.wav,Keyboard,Synth +1,synth 2 aigu.wav,Keyboard,Synth +1,synth 2 4.wav,Keyboard,Synth +1,synth 2 3 4 5.wav,Keyboard,Synth +1,synth 2 + pads.wav,Keyboard,Synth +1,synth 2 + 5.wav,Keyboard,Synth +1,synth 1bas.wav,Keyboard,Synth +1,synth 1234 pad.wav,Keyboard,Synth +1,synth 1-1.wav,Keyboard,Synth +1,synth 1+pad+saw pad.wav,Keyboard,Synth +1,synth 1+4mix.wav,Keyboard,Synth +1,synth 1+3.wav,Keyboard,Synth +1,synth 1+2mix.wav,Keyboard,Synth +1,synth 1+2.wav,Keyboard,Synth +1,synth 1 weird.wav,Keyboard,Synth +1,synth 1 sine.wav,Keyboard,Synth +1,synth 1 rise.wav,Keyboard,Synth +1,synth 1 organ style.wav,Keyboard,Synth +1,synth 1 keys.wav,Keyboard,Synth +1,synth 1 fx.wav,Keyboard,Synth +1,synth 1 2.wav,Keyboard,Synth +1,synth 1 + pad.wav,Keyboard,Synth +1,synth 1 + 2.wav,Keyboard,Synth +1,synth 1 + 2 + 4 + 5 + choir + strings.wav,Keyboard,Synth +1,synth 05 percs.wav,Keyboard,Synth +1,synth 05 arr.wav,Keyboard,Synth +1,synth 03 intro.wav,Keyboard,Synth +1,synth 03 arr.wav,Keyboard,Synth +1,synth 02 siren rise.wav,Keyboard,Synth +1,synth 01 bells.wav,Keyboard,Synth +1,synth 0 1.wav,Keyboard,Synth +1,synth + synthkey.wav,Keyboard,Synth +1,synth + synth strings.wav,Keyboard,Synth +1,synth + synth fx.wav,Keyboard,Synth +1,synth + synth 2.wav,Keyboard,Synth +1,synth + pad.wav,Keyboard,Synth +1,syntch & fx.wav,Keyboard,Synth +1,syntarr and fx.wav,Keyboard,Synth +1,synht bass.wav,Keyboard,Synth +1,synhpad.wav,Keyboard,Synth +1,synhbrass.wav,Keyboard,Synth +1,syn fx.wav,Keyboard,Synth +1,syleena johnson.wav,Other, +1,sx.wav,Other, +1,swizz beatz.wav,Other, +1,swell gtr.wav,Other, +1,sweetie irie.wav,Other, +1,sweeps.wav,Other, +1,sweepfx.wav,Other, +1,sweep pad.wav,Other, +1,swae lee.wav,Other, +1,susan ann sulley.wav,Other, +1,supersawsynth.wav,Other, +1,super fat moog.wav,Other, +1,subtraktor.wav,Other, +1,submarine voice.wav,Other, +1,subbass+synthbass.wav,Other, +1,sub fx.wav,Other, +1,sub drop.wav,Other, +1,sub drive.wav,Other, +1,sub bass drop.wav,Other, +1,su-metal.wav,Other, +1,strummign ag.wav,Other, +1,strum synth.wav,Other, +1,strum guit.wav,Other, +1,strq.wav,Other, +1,stringstheme.wav,Other, +1,stringsreal.wav,Keyboard,Synth Strings +1,stringspadspizzicato.wav,Keyboard,Synth Strings +1,stringsmidi.wav,Keyboard,Synth Strings +1,strings12 choir.wav,Keyboard,Synth Strings +1,strings-sample.wav,Keyboard,Synth Strings +1,strings-01.wav,Keyboard,Synth Strings +1,strings-.wav,Keyboard,Synth Strings +1,strings+pad.wav,Keyboard,Synth Strings +1,strings+flute.wav,Keyboard,Synth Strings +1,strings violin cello harp.wav,Keyboard,Synth Strings +1,strings synths.wav,Keyboard,Synth Strings +1,strings s.wav,Keyboard,Synth Strings +1,strings pizzicato.wav,Keyboard,Synth Strings +1,strings pizz.wav,Keyboard,Synth Strings +1,strings pad and flutes.wav,Keyboard,Synth Strings +1,strings outro.wav,Keyboard,Synth Strings +1,strings keys.wav,Keyboard,Synth Strings +1,strings intro.wav,Keyboard,Synth Strings +1,strings horns.wav,Keyboard,Synth Strings +1,strings hook.wav,Keyboard,Synth Strings +1,strings et violons.wav,Keyboard,Synth Strings +1,strings ensemble.wav,Keyboard,Synth Strings +1,strings ensamble.wav,Keyboard,Synth Strings +1,strings ens.wav,Keyboard,Synth Strings +1,strings chorus.wav,Keyboard,Synth Strings +1,strings choir.wav,Keyboard,Synth Strings +1,strings buzz.wav,Keyboard,Synth Strings +1,strings and tympani.wav,Keyboard,Synth Strings +1,strings and synth6.wav,Keyboard,Synth Strings +1,strings and synth strings.wav,Keyboard,Synth Strings +1,strings and superstrings.wav,Keyboard,Synth Strings +1,strings and glide.wav,Keyboard,Synth Strings +1,strings and brass.wav,Keyboard,Synth Strings +1,strings add.wav,Keyboard,Synth Strings +1,strings 3.wav,Keyboard,Synth Strings +1,strings 2 adds.wav,Keyboard,Synth Strings +1,strings 123.wav,Keyboard,Synth Strings +1,strings 12.wav,Keyboard,Synth Strings +1,strings + pad.wav,Keyboard,Synth Strings +1,strings + lead + synth strings.wav,Keyboard,Synth Strings +1,strings + harp.wav,Keyboard,Synth Strings +1,stringhit.wav,Keyboard,Synth Strings +1,string_pad.wav,Keyboard,Synth Strings +1,string staccato.wav,Keyboard,Synth Strings +1,string sect.wav,Keyboard,Synth Strings +1,string pizzi.wav,Keyboard,Synth Strings +1,string pad.wav,Keyboard,Synth Strings +1,string horn.wav,Keyboard,Synth Strings +1,string ensemble+orchestramix.wav,Keyboard,Synth Strings +1,string ensamble.wav,Keyboard,Synth Strings +1,string dirt.wav,Keyboard,Synth Strings +1,string and pads.wav,Keyboard,Synth Strings +1,string 2.wav,Keyboard,Synth Strings +1,stribgs.wav,Keyboard,Synth Strings +1,stre.wav,Keyboard,Synth Strings +1,str section.wav,Keyboard,Synth Strings +1,str mixmaster.wav,Keyboard,Synth Strings +1,stomps.wav,Other, +1,sticks.wav,Other, +1,steve winwood.wav,Other, +1,stereo eg.wav,Other, +1,stereo eg(treble).wav,Other, +1,steelgt.wav,Other, +1,steelgong.wav,Other, +1,steeldrums + flute.wav,Other, +1,steeldrum.wav,Other, +1,steel-noisegate.wav,Other, +1,steel string.wav,Other, +1,steel drums end.wav,Other, +1,stack synths.wav,Other, +1,staccato dx7.wav,Other, +1,stac synth.wav,Other, +1,stab.wav,Other, +1,sringy.wav,Other, +1,square wave.wav,Other, +1,square synths.wav,Other, +1,square beep.wav,Other, +1,sq wave.wav,Other, +1,spooky.wav,Other, +1,spoken vocals.wav,Other, +1,spoken (chat).wav,Other, +1,spicatto strings.wav,Other, +1,spanishgtr.wav,Acoustic Guitar, +1,spanish guitar left.wav,Acoustic Guitar, +1,spanish guitar 3 left.wav,Acoustic Guitar, +1,spanish guitar 2.wav,Acoustic Guitar, +1,spanish guitar 1.wav,Acoustic Guitar, +1,spanish gtr left(nylon).wav,Acoustic Guitar, +1,span guitar.wav,Acoustic Guitar, +1,space str synth.wav,Other, +1,sp gtr.wav,Acoustic Guitar, +1,soyeon.wav,Other, +1,soundfx crowd live.wav,Other, +1,sound.wav,Other, +1,sound-fx.wav,Other, +1,sound fxs.wav,Other, +1,sound fx train.wav,Other, +1,sound 1.wav,Other, +1,soulja boy.wav,Other, +1,song key.wav,Other, +1,sonar and rotor.wav,Other, +1,solotalkback.wav,Other, +1,solosax.wav,Other, +1,sologtrr.wav,Electric Guitar, +1,sologtrl.wav,Electric Guitar, +1,sologtr2.wav,Electric Guitar, +1,sologtr1.wav,Electric Guitar, +1,sologtr 5.wav,Electric Guitar, +1,solo_guitars.wav,Electric Guitar, +1,solo_electric_guitar_1+2+arr.wav,Electric Guitar, +1,solo_electric_guitar.wav,Electric Guitar, +1,solo synth 2.wav,Other, +1,solo slide.wav,Electric Guitar, +1,solo sax real.wav,Other, +1,solo right.wav,Electric Guitar, +1,solo piano.wav,Other, +1,solo gtr.wav,Electric Guitar, +1,solo gtr 2.wav,Electric Guitar, +1,solo gtr 1.wav,Electric Guitar, +1,solo gt.wav,Electric Guitar, +1,solo eguitar.wav,Electric Guitar, +1,solo eg 2.wav,Electric Guitar, +1,solo eg 1.wav,Electric Guitar, +1,solo disto eg.wav,Electric Guitar, +1,solo clean eg.wav,Electric Guitar, +1,solina_strings_synth.wav,Other, +1,solina_orchestra_synth.wav,Other, +1,solina organ.wav,Other, +1,softstrings.wav,Other, +1,softbells.wav,Other, +1,soft pad + bubble.wav,Other, +1,snoop.wav,Other, +1,snoop dogg-adlib.wav,Other, +1,smotth synth + low.wav,Other, +1,slowdown fx.wav,Other, +1,slow downfx end.wav,Other, +1,slow down.wav,Other, +1,slide4.wav,Other, +1,slide3.wav,Other, +1,slide2.wav,Other, +1,slide1.wav,Other, +1,slide gtr arr.wav,Other, +1,slide eg.wav,Other, +1,slide eg fxs.wav,Other, +1,slide + lapsteel.wav,Other, +1,sleigh bells.wav,Other, +1,sleep token the summoning synth bass.wav,Bass Guitar, +1,sleep token the summoning piano.wav,Piano, +1,sleep token the summoning perc.wav,Percussion, +1,sleep token the summoning guitar 4.wav,Electric Guitar,Electric 4 +1,sleep token the summoning guitar 3.wav,Electric Guitar,Electric 3 +1,sleep token the summoning guitar 2.wav,Electric Guitar,Electric 2 +1,sleep token the summoning guitar 1.wav,Electric Guitar,Electric 1 +1,sleep token the summoning drum.wav,Drums, +1,sleep token the summoning bv.wav,Voice,Backing +1,sleep token the summoning bass.wav,Bass Guitar, +1,sld gtr2.wav,Other, +1,sld gtr1.wav,Other, +1,slap bass.wav,Other, +1,slap bas.wav,Other, +1,skit.wav,Other, +1,skillibeng.wav,Other, +1,skepta.wav,Other, +1,six two.wav,Other, +1,sitarish.wav,Sitar, +1,sitare.wav,Sitar, +1,sitar-01.wav,Sitar, +1,sitar 2.wav,Sitar, +1,sitar 1.wav,Sitar, +1,sirenfx.wav,Other, +1,sinth a.wav,Other, +1,sine wave noise.wav,Other, +1,sine synths.wav,Other, +1,sine pad+synth lead 2.wav,Other, +1,sine lead.wav,Other, +1,sine fx.wav,Other, +1,simple saw.wav,Other, +1,sierra kusterbeck.wav,Other, +1,sidechain_flutes.wav,Other, +1,sia.wav,Other, +1,short tone.wav,Other, +1,short cord.wav,Other, +1,shock g.wav,Other, +1,shneezin.wav,Other, +1,sheila e..wav,Other, +1,shay.wav,Other, +1,shawnna.wav,Other, +1,shawna.wav,Other, +1,shawn stockman.wav,Other, +1,shawn mendes.wav,Other, +1,shawn mendes-adlib.wav,Other, +1,sharon costanzo.wav,Other, +1,shannon hoon.wav,Other, +1,shania twain.wav,Other, +1,shaker_1.wav,Other, +1,shaker+tambourine.wav,Other, +1,shaker congas.wav,Other, +1,shaker castanets congas claps.wav,Other, +1,shaker add.wav,Other, +1,shae.wav,Other, +1,sfxs.wav,Computer,SFX +1,sfxes_ok.wav,Computer,SFX +1,sfx+gt fx.wav,Computer,SFX +1,sfx+applausemix.wav,Computer,SFX +1,sfx wah.wav,Computer,SFX +1,sfx vynil craklings.wav,Computer,SFX +1,sfx vynil cracks.wav,Computer,SFX +1,sfx vocal2.wav,Computer,SFX +1,sfx street cars.wav,Computer,SFX +1,sfx scratch.wav,Computer,SFX +1,sfx lighter.wav,Computer,SFX +1,sfx intro.wav,Computer,SFX +1,sfx gun shot.wav,Computer,SFX +1,sfx distant scream.wav,Computer,SFX +1,sfx crowd.wav,Computer,SFX +1,sfx crowd applause.wav,Computer,SFX +1,sfx children.wav,Computer,SFX +1,sfx arp synth.wav,Computer,SFX +1,sfx and synth 2.wav,Computer,SFX +1,sfx and 2.wav,Computer,SFX +1,sfx addsynth growl granular.wav,Computer,SFX +1,sfx 2 risers.wav,Computer,SFX +1,sfx 2 crowd.wav,Computer,SFX +1,sfx 1 breathing.wav,Computer,SFX +1,sf.wav,Other, +1,sf crowd.wav,Other, +1,serj tankian.wav,Other, +1,sequence.wav,Other, +1,seq synths 2.wav,Other, +1,seq synths 1 disto.wav,Other, +1,seq arp.wav,Other, +1,seq synth.wav,Other, +1,search and destroy the stooges ld.wav,Voice,Lead +1,search and destroy the stooges e guitar lead.wav,Electric Guitar,Lead +1,search and destroy the stooges e guitar fuzz.wav,Electric Guitar,Fuzz +1,search and destroy the stooges e guitar dist.wav,Electric Guitar,Distorted +1,search and destroy the stooges drums.wav,Drums, +1,search and destroy the stooges bass.wav,Bass Guitar, +1,seal.wav,Other, +1,scream.wav,Other, +1,scream sample.wav,Other, +1,scrathces.wav,Other,Scratches +1,scratchfx.wav,Other,Scratches +1,scratches_vinyl.wav,Other,Scratches +1,scratches+clap+fxmix.wav,Other,Scratches +1,scratch12 and fxs.wav,Other,Scratches +1,scratch+fx mix.wav,Other,Scratches +1,scratch vinyl.wav,Other,Scratches +1,scratch fx.wav,Other,Scratches +1,scratch and car fx.wav,Other,Scratches +1,scracth eg.wav,Other, +1,schoolboy.wav,Other, +1,schoolboy q.wav,Other, +1,scartch.wav,Other, +1,saxsolo.wav,Saxophone, +1,saxophones.wav,Saxophone, +1,saxophone bar.wav,Saxophone, +1,saxophone alto.wav,Saxophone, +1,saxo solos.wav,Saxophone, +1,saxaphone.wav,Saxophone, +1,sax_solo.wav,Saxophone, +1,sax_2.wav,Saxophone, +1,sax_1.wav,Saxophone, +1,sax1+2.wav,Saxophone, +1,sax1 + brasses.wav,Saxophone, +1,sax-stan getz.wav,Saxophone, +1,sax(solo).wav,Saxophone, +1,sax tenor + alto.wav,Saxophone, +1,sax s.wav,Saxophone, +1,sax mix.wav,Saxophone, +1,sax fx.wav,Saxophone, +1,sax 4.wav,Saxophone, +1,sax 1+2.wav,Saxophone, +1,sax 02.wav,Saxophone, +1,sax 01.wav,Saxophone, +1,sax + trumpet.wav,Saxophone, +1,sawsynth2.wav,Other, +1,saws ynth.wav,Other, +1,saw wave.wav,Other, +1,saw 2.wav,Other, +1,saw 1.wav,Other, +1,satan.wav,Other, +1,sarah brightman.wav,Other, +1,santur.wav,Other, +1,santoor.wav,Other, +1,sansa.wav,Other, +1,samples.wav,Other, +1,samples+fx.wav,Other, +1,sampleintro.wav,Other, +1,samplee.wav,Other, +1,sampled choir.wav,Other, +1,sample vocals.wav,Other, +1,sample of marvin gaye lets get it on.wav,Other, +1,sample loop.wav,Other, +1,sample guitare-cocot.wav,Other, +1,sample guitare-clean.wav,Other, +1,sample fx.wav,Other, +1,sample fx track.wav,Other, +1,sample 4.wav,Other, +1,sample 3.wav,Other, +1,sample 2.wav,Other, +1,sample 1.wav,Other, +1,sam harris.wav,Other, +1,sakura.wav,Other, +1,sabaton the last stand vocal synth.wav,Keyboard,Synth Vox +1,sabaton the last stand synth 3.wav,Keyboard,Synth 3 +1,sabaton the last stand synth 2.wav,Keyboard,Synth 2 +1,sabaton the last stand synth 1.wav,Keyboard,Synth 1 +1,sabaton the last stand lv.wav,Voice,Lead +1,sabaton the last stand guitar 5.wav,Electric Guitar,Electric 5 +1,sabaton the last stand guitar 4.wav,Electric Guitar,Electric 4 +1,sabaton the last stand guitar 3.wav,Electric Guitar,Electric 3 +1,sabaton the last stand guitar 2.wav,Electric Guitar,Electric 2 +1,sabaton the last stand guitar 1.wav,Electric Guitar,Electric 1 +1,sabaton the last stand fx.wav,Other,FX +1,sabaton the last stand drum.wav,Drums, +1,sabaton the last stand bv.wav,Voice,Backing +1,sabaton the last stand bass.wav,Bass Guitar, +1,s_xylophone.wav,Other, +1,s_woodwind.wav,Other, +1,s_vox_sample.wav,Other, +1,s_vox sample.wav,Other, +1,s_vox fx.wav,Other, +1,s_vocoder.wav,Other, +1,s_vocal sample.wav,Other, +1,s_vocal fx.wav,Other, +1,s_violas.wav,Other, +1,s_vinyl_noise.wav,Other, +1,s_vinyl sample.wav,Other, +1,s_vinyl fx.wav,Other, +1,s_vibraphone_outro.wav,Other, +1,s_upright bass.wav,Other, +1,s_upbass.wav,Other, +1,s_ukelele.wav,Other, +1,s_trb section.wav,Other, +1,s_toms.wav,Other, +1,s_theme.wav,Other, +1,s_tbn.wav,Other, +1,s_tape hiss.wav,Other, +1,s_tambourines.wav,Other, +1,s_synths organ.wav,Keyboard,Synth +1,s_synths intro.wav,Keyboard,Synth +1,s_synths 2.wav,Keyboard,Synth +1,s_synthbass.wav,Keyboard,Synth +1,s_synth_melody.wav,Keyboard,Synth +1,s_synth_lfo.wav,Keyboard,Synth +1,s_synth_lead_filt.wav,Keyboard,Synth +1,s_synth_classic.wav,Keyboard,Synth +1,s_synth_bells.wav,Keyboard,Synth +1,s_synth_arp.wav,Keyboard,Synth +1,s_synth_add.wav,Keyboard,Synth +1,s_synth7 right.wav,Keyboard,Synth +1,s_synth6.wav,Keyboard,Synth +1,s_synth5 right.wav,Keyboard,Synth +1,s_synth3 disto bits.wav,Keyboard,Synth +1,s_synth2 theme.wav,Keyboard,Synth +1,s_synth2 chrom percs.wav,Keyboard,Synth +1,s_synth1 right.wav,Keyboard,Synth +1,s_synth uh vocal.wav,Keyboard,Synth +1,s_synth triangle.wav,Keyboard,Synth +1,s_synth strings 2.wav,Keyboard,Synth +1,s_synth sound effects.wav,Keyboard,Synth +1,s_synth solo.wav,Keyboard,Synth +1,s_synth rave.wav,Keyboard,Synth +1,s_synth pluck.wav,Keyboard,Synth +1,s_synth oh.wav,Keyboard,Synth +1,s_synth harp.wav,Keyboard,Synth +1,s_synth fx.wav,Keyboard,Synth +1,s_synth arpeg.wav,Keyboard,Synth +1,s_synth arp.wav,Keyboard,Synth +1,s_sweeps.wav,Keyboard,Synth +1,s_sweep fx.wav,Keyboard,Synth +1,s_strings_trill.wav,Keyboard,Synth Strings +1,s_strings_outro.wav,Keyboard,Synth Strings +1,s_strings_3.wav,Keyboard,Synth Strings +1,s_strings_2.wav,Keyboard,Synth Strings +1,s_strings_1.wav,Keyboard,Synth Strings +1,s_strings sect.wav,Keyboard,Synth Strings +1,s_strings sampled.wav,Keyboard,Synth Strings +1,s_strings mellotron.wav,Keyboard,Synth Strings +1,s_strings 2.wav,Keyboard,Synth Strings +1,s_string synth.wav,Keyboard,Synth Strings +1,s_string sect.wav,Keyboard,Synth Strings +1,s_string pluck.wav,Keyboard,Synth Strings +1,s_string arpeg.wav,Keyboard,Synth Strings +1,s_steps.wav,Other, +1,s_steel.wav,Other, +1,s_steel gtr.wav,Other, +1,s_steel drums.wav,Other, +1,s_sound effects hits.wav,Other, +1,s_sonar synth.wav,Other, +1,s_snaps.wav,Other, +1,s_slide.wav,Other, +1,s_sitar.wav,Other, +1,s_sine.wav,Other, +1,s_sikus.wav,Other, +1,s_sfx 2.wav,Other, +1,s_screams.wav,Other, +1,s_saxs.wav,Other, +1,s_saxlead.wav,Other, +1,s_saxes.wav,Other, +1,s_samples weird fx.wav,Other, +1,s_sampler.wav,Other, +1,s_sample vox.wav,Other, +1,s_risers.wav,Other, +1,s_riser.wav,Other, +1,s_prekey.wav,Other, +1,s_precount.wav,Other, +1,s_polysynth 2.wav,Other, +1,s_poly.wav,Other, +1,s_pluck2.wav,Other, +1,s_pluck1.wav,Other, +1,s_pluck synth.wav,Other, +1,s_piano_add.wav,Piano, +1,s_piano2.wav,Piano, +1,s_piano-notdups.wav,Piano, +1,s_piano+epiano.wav,Piano, +1,s_piano solo.wav,Piano, +1,s_piano pad.wav,Piano, +1,s_percussion 2.wav,Percussion, +1,s_percu.wav,Percussion, +1,s_percs and loops.wav,Percussion, +1,s_pedal steel 02.wav,Other, +1,s_pedal steel 01.wav,Other, +1,s_pad_melody_2.wav,Keyboard,Synth +1,s_pad_melody_1.wav,Keyboard,Synth +1,s_pad1.wav,Keyboard,Synth +1,s_pad synth.wav,Keyboard,Synth +1,s_pad 3.wav,Keyboard,Synth +1,s_pad 2.wav,Keyboard,Synth +1,s_pad 1.wav,Keyboard,Synth +1,s_organ2.wav,Keyboard,Organ +1,s_organ1.wav,Keyboard,Organ +1,s_organ 2.wav,Keyboard,Organ +1,s_org.wav,Keyboard,Organ +1,s_orch hit+tp+tbn+brass section.wav,Other, +1,s_orc.wav,Other, +1,s_old_drums.wav,Other, +1,s_mono synth.wav,Other, +1,s_melotron.wav,Other, +1,s_melody.wav,Other, +1,s_melodica.wav,Other, +1,s_mandolina.wav,Other, +1,s_mandolin+r+perc.wav,Other, +1,s_mallet.wav,Other, +1,s_main_synth.wav,Other, +1,s_main vocals.wav,Other, +1,s_lv-adlib.wav,Other, +1,s_lv 02.wav,Other, +1,s_lv 01.wav,Other, +1,s_low pad.wav,Other, +1,s_loop eg1.wav,Other, +1,s_leadsquare.wav,Other, +1,s_lead_guitar.wav,Other, +1,s_lead pluck.wav,Other, +1,s_lap steel.wav,Other, +1,s_koto.wav,Other, +1,s_kora.wav,Other, +1,s_kick bomb.wav,Other, +1,s_keys left.wav,Other, +1,s_key.wav,Other, +1,s_jaw harp.wav,Other, +1,s_intro eg.wav,Other, +1,s_horns.wav,Other, +1,s_hit.wav,Other, +1,s_hi perc.wav,Other, +1,s_hey.wav,Other, +1,s_harmonics_gtr.wav,Other, +1,s_hammond.wav,Other, +1,s_guzheng.wav,Other, +1,s_gunshot.wav,Other, +1,s_guitar.wav,Electric Guitar, +1,s_guit_theme.wav,Electric Guitar, +1,s_guit_slide.wav,Electric Guitar, +1,s_guit_sat.wav,Electric Guitar, +1,s_guit_fuzz.wav,Electric Guitar, +1,s_guit_effect.wav,Electric Guitar, +1,s_guit_clean_rythm.wav,Electric Guitar, +1,s_guit_clean_lead.wav,Electric Guitar, +1,s_guit_clean_back.wav,Electric Guitar, +1,s_guit_clean_3.wav,Electric Guitar, +1,s_guit_clean_2.wav,Electric Guitar, +1,s_guit_clean_1.wav,Electric Guitar, +1,s_guit_acoust.wav,Electric Guitar, +1,s_gtrsolo.wav,Electric Guitar, +1,s_gtrright.wav,Electric Guitar, +1,s_gtrl.wav,Electric Guitar, +1,s_gtr12.wav,Electric Guitar, +1,s_gtr1 r.wav,Electric Guitar, +1,s_gtr1 l.wav,Electric Guitar, +1,s_gtr synth.wav,Electric Guitar, +1,s_gtr solo2.wav,Electric Guitar, +1,s_gtr solo1.wav,Electric Guitar, +1,s_gtr perc.wav,Electric Guitar, +1,s_gtr pad.wav,Electric Guitar, +1,s_gtr fuzz.wav,Electric Guitar, +1,s_gtr cln.wav,Electric Guitar, +1,s_gtr c.wav,Electric Guitar, +1,s_glockenspiel.wav,Other, +1,s_fx2.wav,Other, +1,s_fx1.wav,Other, +1,s_fx-1.wav,Other, +1,s_fx slowdown.wav,Other, +1,s_fr horns.wav,Other, +1,s_fr horn section.wav,Other, +1,s_flutes.wav,Other, +1,s_flute_outro.wav,Other, +1,s_flute 2.wav,Other, +1,s_explotion fx.wav,Other, +1,s_ethnic synth.wav,Other, +1,s_electric guitar 2 muted.wav,Electric Guitar, +1,s_electric guitar 1muted.wav,Electric Guitar, +1,s_electric guitar 123.wav,Electric Guitar, +1,s_elec drums.wav,Other, +1,s_egtremolo.wav,Electric Guitar, +1,s_egright.wav,Electric Guitar, +1,s_egmuted.wav,Electric Guitar, +1,s_egleft.wav,Electric Guitar, +1,s_egcrunch.wav,Electric Guitar, +1,s_egbaritone.wav,Electric Guitar, +1,s_eg_rdisto.wav,Electric Guitar, +1,s_eg_ldisto.wav,Electric Guitar, +1,s_eg_lclean.wav,Electric Guitar, +1,s_eg5.wav,Electric Guitar, +1,s_eg3arr.wav,Electric Guitar, +1,s_eg2disto.wav,Electric Guitar, +1,s_eg2arr.wav,Electric Guitar, +1,s_eg2_r.wav,Electric Guitar, +1,s_eg2_l.wav,Electric Guitar, +1,s_eg2_1.wav,Electric Guitar, +1,s_eg1arr.wav,Electric Guitar, +1,s_eg1 r.wav,Electric Guitar, +1,s_eg wah.wav,Electric Guitar, +1,s_eg vibroverb.wav,Electric Guitar, +1,s_eg tremolo lead.wav,Electric Guitar, +1,s_eg tremolo 3.wav,Electric Guitar, +1,s_eg trem l.wav,Electric Guitar, +1,s_eg trem ctr.wav,Electric Guitar, +1,s_eg solo 3.wav,Electric Guitar, +1,s_eg slice.wav,Electric Guitar, +1,s_eg rythmic.wav,Electric Guitar, +1,s_eg rhythm.wav,Electric Guitar, +1,s_eg reverb.wav,Electric Guitar, +1,s_eg r1.wav,Electric Guitar, +1,s_eg pads.wav,Electric Guitar, +1,s_eg ov.wav,Electric Guitar, +1,s_eg od.wav,Electric Guitar, +1,s_eg lider.wav,Electric Guitar, +1,s_eg lead 2.wav,Electric Guitar, +1,s_eg lead 1.wav,Electric Guitar, +1,s_eg l1.wav,Electric Guitar, +1,s_eg fxs.wav,Electric Guitar, +1,s_eg fx.wav,Electric Guitar, +1,s_eg fuzz.wav,Electric Guitar, +1,s_eg effect.wav,Electric Guitar, +1,s_eg disto.wav,Electric Guitar, +1,s_eg dist 2.wav,Electric Guitar, +1,s_eg dist 1.wav,Electric Guitar, +1,s_eg delay.wav,Electric Guitar, +1,s_eg ctr and rev.wav,Electric Guitar, +1,s_eg clean+clean 2+dist.wav,Electric Guitar, +1,s_eg clean 1.wav,Electric Guitar, +1,s_eg cleamn.wav,Electric Guitar, +1,s_eg bass.wav,Electric Guitar, +1,s_eg arrangements.wav,Electric Guitar, +1,s_eg arpeggio.wav,Electric Guitar, +1,s_eg arpeggio chords.wav,Electric Guitar, +1,s_eg arpeg.wav,Electric Guitar, +1,s_eg 2 r.wav,Electric Guitar, +1,s_eg 2 l.wav,Electric Guitar, +1,s_eg 1r.wav,Electric Guitar, +1,s_eg 1l.wav,Electric Guitar, +1,s_eg 06.wav,Electric Guitar, +1,s_edrums.wav,Drums, +1,s_e.piano.wav,Piano, +1,s_e-guitar 2.wav,Electric Guitar, +1,s_e-guitar 1.wav,Electric Guitar, +1,s_e guitar 4.wav,Electric Guitar, +1,s_e guitar 3.wav,Electric Guitar, +1,s_e guitar 2.wav,Electric Guitar, +1,s_e guitar 2 bis.wav,Electric Guitar, +1,s_e guitar 1.wav,Electric Guitar, +1,s_e drums.wav,Other, +1,s_dulcimer.wav,Other, +1,s_drums_1.wav,Other, +1,s_drums2.wav,Other, +1,s_drums1.wav,Other, +1,s_drums real.wav,Other, +1,s_drums intro.wav,Other, +1,s_drum_loop.wav,Other, +1,s_drum loops.wav,Other, +1,s_double_bass_outro.wav,Other, +1,s_double bass.wav,Other, +1,s_dog fx.wav,Other, +1,s_dbl bass.wav,Other, +1,s_dbass.wav,Other, +1,s_cuica.wav,Other, +1,s_crunch guitar 3.wav,Other, +1,s_crunch guitar 2.wav,Other, +1,s_crowd.wav,Other, +1,s_crackle.wav,Other, +1,s_contra bass.wav,Other, +1,s_congas.wav,Other, +1,s_clav synth.wav,Other, +1,s_clarinet.wav,Other, +1,s_chromatic percussion.wav,Other, +1,s_chord.wav,Other, +1,s_chimes.wav,Other, +1,s_children.wav,Other, +1,s_charango 02.wav,Other, +1,s_charango 01.wav,Other, +1,s_cello5.wav,Cello, +1,s_cello4.wav,Cello, +1,s_cello3.wav,Cello, +1,s_cello2.wav,Cello, +1,s_cello1.wav,Cello, +1,s_celeste.wav,Other, +1,s_bv3.wav,Other, +1,s_bright_strings.wav,Other, +1,s_brasses 2.wav,Other, +1,s_brass2.wav,Other, +1,s_brass1.wav,Other, +1,s_brass sampled.wav,Other, +1,s_bass_arp.wav,Other, +1,s_bass_808.wav,Other, +1,s_bass solo.wav,Other, +1,s_bass real.wav,Other, +1,s_bass intro.wav,Other, +1,s_bass fretless.wav,Other, +1,s_bass filter.wav,Other, +1,s_bajo.wav,Other, +1,s_backing vocals.wav,Other, +1,s_b.v choir.wav,Other, +1,s_b.v 2 chant.wav,Other, +1,s_b ass.wav,Other, +1,s_as.wav,Other, +1,s_arpegiator.wav,Other, +1,s_arm.wav,Other, +1,s_ambiance_2.wav,Other, +1,s_ambiance.wav,Other, +1,s_agstrum.wav,Acoustic Guitar, +1,s_agspanish.wav,Acoustic Guitar, +1,s_agr.wav,Acoustic Guitar, +1,s_aglead.wav,Acoustic Guitar, +1,s_ag_l+r+perc.wav,Acoustic Guitar, +1,s_ag4.wav,Acoustic Guitar, +1,s_ag12str.wav,Acoustic Guitar, +1,s_ag12.wav,Acoustic Guitar, +1,s_ag solo 12.wav,Acoustic Guitar, +1,s_ag rythmic.wav,Acoustic Guitar, +1,s_ag rit 12.wav,Acoustic Guitar, +1,s_ag main.wav,Acoustic Guitar, +1,s_ag effect.wav,Acoustic Guitar, +1,s_ag base.wav,Acoustic Guitar, +1,s_ag arpeggios.wav,Acoustic Guitar, +1,s_ag arpeg.wav,Acoustic Guitar, +1,s_ag 4.wav,Acoustic Guitar, +1,s_ag 3.wav,Acoustic Guitar, +1,s_ag 23 left.wav,Acoustic Guitar, +1,s_ag 1 left.wav,Acoustic Guitar, +1,s_acoustic.wav,Acoustic Guitar, +1,s_acoustic guitar3.wav,Acoustic Guitar, +1,s_acoustic guitar r.wav,Acoustic Guitar, +1,s_acoustic guitar nylon.wav,Acoustic Guitar, +1,s_acoustic guitar l.wav,Acoustic Guitar, +1,s_acoustic guitar 12.wav,Acoustic Guitar, +1,s_acoust_rythm.wav,Acoustic Guitar, +1,s_acoust_lead.wav,Acoustic Guitar, +1,s_acoust_add.wav,Acoustic Guitar, +1,s_accordion_1.wav,Other, +1,s_acc.wav,Other, +1,s_acc sctn.wav,Other, +1,s synth.wav,Other, +1,s synth vocals.wav,Other, +1,s piano.wav,Other, +1,s percussion.wav,Other, +1,s mandolin.wav,Other, +1,s mallets.wav,Other, +1,s lv.wav,Other, +1,s eg.wav,Other, +1,s bv.wav,Other, +1,s bass.wav,Other, +1,s ag 02.wav,Other, +1,s ag 01.wav,Other, +1,rythmgtrs.wav,Other, +1,rythmgtr.wav,Other, +1,ryan guldemond.wav,Other, +1,russell hitchcock.wav,Other, +1,russel dickerson.wav,Other, +1,run-d.m.c..wav,Other, +1,rums.wav,Other, +1,rumblebass.wav,Other, +1,rtm synth.wav,Other, +1,rozonda thomas & tionne watkins.wav,Other, +1,rozonda thomas & tionne watkins-adlib.wav,Other, +1,roy orbison.wav,Other, +1,roscoe dash.wav,Other, +1,rosalia.wav,Other, +1,root solo eg.wav,Other, +1,ronnie flex.wav,Other, +1,ronnie flex-adlib.wav,Other, +1,ronnie dunn.wav,Other, +1,ronnie devoe.wav,Other, +1,ronnie devoe-adlib.wav,Other, +1,rohdes.wav,Other, +1,roger waters.wav,Other, +1,roger troutman.wav,Other, +1,robert cray.wav,Other, +1,rita ora.wav,Other, +1,rita ora-adlib.wav,Other, +1,rising synths.wav,Other, +1,rising fx.wav,Other, +1,rise.wav,Other, +1,riley green.wav,Other, +1,rightorgan 2.wav,Other, +1,rightguitar 3.wav,Other, +1,rightgtr 7.wav,Other, +1,right_gtr 6.wav,Other, +1,right_gtr 2.wav,Other, +1,right6gtr 4.wav,Other, +1,right synthlead.wav,Other, +1,right solo classic guitar.wav,Other, +1,right rhytmic eg.wav,Other, +1,right overdrive eg.wav,Other, +1,right mando 2.wav,Other, +1,right in two tool perc.wav,Percussion, +1,right in two tool ld.wav,Voice,Lead +1,right in two tool e guitar dist 4.wav,Electric Guitar,Distorted 4 +1,right in two tool e guitar dist 3.wav,Electric Guitar,Distorted 3 +1,right in two tool e guitar dist 2.wav,Electric Guitar,Distorted 2 +1,right in two tool e guitar dist 1.wav,Electric Guitar,Distorted 1 +1,right in two tool e guitar clean 2.wav,Electric Guitar,Clean 2 +1,right in two tool e guitar clean 1.wav,Electric Guitar,Clean 1 +1,right in two tool drums.wav,Drums, +1,right in two tool bells.wav,Keyboard,Synth Bells +1,right in two tool bass.wav,Bass Guitar,Bass 1 +1,right in two tool bass 2.wav,Bass Guitar,Bass 2 +1,right guitar electro 2.wav,Other, +1,right guitar acoustic 2.wav,Acoustic Guitar, +1,right guitar 3.wav,Electric Guitar, +1,right gtr.wav,Electric Guitar, +1,right gtr-arp2.wav,Electric Guitar, +1,right gtr 5.wav,Electric Guitar, +1,right gtr 3.wav,Electric Guitar, +1,right el gtr 1.wav,Electric Guitar, +1,right eguit 3.wav,Electric Guitar, +1,right eg2.wav,Electric Guitar, +1,right eg1+2.wav,Electric Guitar, +1,right eg 7.wav,Electric Guitar, +1,right eg 2.wav,Electric Guitar, +1,right crunch rhythmic eg.wav,Electric Guitar, +1,right clean eg.wav,Electric Guitar, +1,right chorus eg.wav,Electric Guitar, +1,right arr eg.wav,Electric Guitar, +1,righgtr 2.wav,Electric Guitar, +1,riffguitar.wav,Electric Guitar, +1,ricky munoz.wav,Other, +1,ricky bell.wav,Other, +1,rick james.wav,Other, +1,rick boss.wav,Other, +1,rich the kid.wav,Other, +1,rich homie quan.wav,Other, +1,rhythmic steel guitar.wav,Electric Guitar, +1,rhythmic eg12.wav,Electric Guitar, +1,rhythmic eg1.wav,Electric Guitar, +1,rhythmic classic guitar.wav,Electric Guitar, +1,rhythmgtrs.wav,Electric Guitar, +1,rhythmgtrr.wav,Electric Guitar, +1,rhythm_electric_guitar_left.wav,Electric Guitar, +1,rhythm_electric_guitar_center_2.wav,Electric Guitar, +1,rhythm_electric_guitar_center.wav,Electric Guitar, +1,rhythm_acoustic_guitar.wav,Acoustic Guitar, +1,rhythm guitars 2 - chorus.wav,Electric Guitar, +1,rhythm guitars 1.wav,Electric Guitar, +1,rhythm guitar.wav,Electric Guitar, +1,rhythm gt.wav,Electric Guitar, +1,rhythm electric guitar.wav,Electric Guitar, +1,rhythm eg.wav,Electric Guitar, +1,rhythm acoustic guitar.wav,Acoustic Guitar, +1,rhythgt.wav,Electric Guitar, +1,rhyt gtrs.wav,Electric Guitar, +1,rhyhmic nylon ag.wav,Acoustic Guitar, +1,rhygt2 right.wav,Electric Guitar, +1,rhygt1 left.wav,Electric Guitar, +1,rhodes2.wav,Keyboard,Rhodes +1,rhodes1.wav,Keyboard,Rhodes +1,rhodes-piano.wav,Keyboard,Rhodes +1,rhodes-.wav,Keyboard,Rhodes +1,rhodes+harps+hammond.wav,Keyboard,Rhodes +1,rhodes wah.wav,Keyboard,Rhodes +1,rhodes ep solo.wav,Keyboard,Rhodes +1,rhodes 2+3.wav,Keyboard,Rhodes +1,rhodes 2 right.wav,Keyboard,Rhodes +1,rhodes 12.wav,Keyboard,Rhodes +1,rhodes + clavinet.wav,Keyboard,Rhodes +1,rhode & keys.wav,Keyboard,Rhodes +1,rghtgtr 2.wav,Other, +1,rezz.wav,Other, +1,reversestrings.wav,Other, +1,reverses.wav,Other, +1,reversepiano.wav,Other, +1,reversepad.wav,Other, +1,reversefx + atmo.wav,Other, +1,reversed snare.wav,Other, +1,reversed cymbal.wav,Other, +1,reversecymbal + fx + noise.wav,Other, +1,reversebrass.wav,Other, +1,reverse_fx - copie.wav,Other, +1,reverse.wav,Other, +1,reverse synth.wav,Other, +1,reverse eg.wav,Other, +1,reverse cymbal.wav,Other, +1,reverb guitars.wav,Other, +1,rev synths.wav,Other, +1,rev synth.wav,Other, +1,rev run.wav,Other, +1,rev guits.wav,Other, +1,restsax.wav,Other, +1,reso_pluck_synth.wav,Other, +1,reso synths.wav,Other, +1,reso synth.wav,Other, +1,resample.wav,Other, +1,resample pitch.wav,Other, +1,renee rapp.wav,Other, +1,remo.wav,Other, +1,reminiscing (little river band) trumpet solo.wav,Trumpet, +1,reminiscing (little river band) strings section.wav,Keyboard,Synth Strings +1,reminiscing (little river band) rhodes.wav,Keyboard,Rhodes +1,reminiscing (little river band) perc.wav,Percussion, +1,reminiscing (little river band) ld.wav,Voice,Lead +1,reminiscing (little river band) horns section.wav,Other,Horns +1,reminiscing (little river band) e guitar lead 2.wav,Electric Guitar,Lead 2 +1,reminiscing (little river band) e guitar lead 1.wav,Electric Guitar,Lead 1 +1,reminiscing (little river band) e guitar 2.wav,Electric Guitar,Rhythm 2 +1,reminiscing (little river band) e guitar 1.wav,Electric Guitar,Rhythm 1 +1,reminiscing (little river band) drums.wav,Drums, +1,reminiscing (little river band) clavinet.wav,Keyboard,Clavinet +1,reminiscing (little river band) bv.wav,Voice,Backing +1,reminiscing (little river band) bass.wav,Bass Guitar, +1,reggea bass.wav,Other, +1,reggaepiano.wav,Other, +1,regard.wav,Other, +1,redman.wav,Other, +1,red sector a rush theremin.wav,Theremin, +1,red sector a rush synthstrings.wav,Keyboard,Synth Strings +1,red sector a rush synthkey.wav,Keyboard,Synth Keys +1,red sector a rush polysynth.wav,Keyboard,Polysynth +1,red sector a rush pluck.wav,Keyboard,Pluck +1,red sector a rush perc.wav,Percussion, +1,red sector a rush ld.wav,Voice,Lead +1,red sector a rush e guitar harmonics.wav,Electric Guitar,Harmonics 1 +1,red sector a rush e guitar harmonics 2.wav,Electric Guitar,Harmonics 2 +1,red sector a rush e guitar 2.wav,Electric Guitar,Electric 2 +1,red sector a rush e guitar 1.wav,Electric Guitar,Electric 1 +1,red sector a rush drums.wav,Drums, +1,red sector a rush bass synth.wav,Keyboard,Synth Bass +1,realvlns.wav,Violin, +1,realcellos.wav,Cello, +1,real violin 2.wav,Violin, +1,real violin 1+2+3.wav,Violin, +1,real trumpets.wav,Trumpet, +1,real trumpet 2 left.wav,Trumpet, +1,real trumpet 1 right.wav,Trumpet, +1,real trp 02.wav,Trumpet, +1,real trp 01.wav,Trumpet, +1,real trombone.wav,Trombone, +1,real trombone 3.wav,Trombone, +1,real trombon 2.wav,Trombone, +1,real trombon 1.wav,Trombone, +1,real tenor sax 3 solo.wav,Saxophone, +1,real teanor sax.wav,Saxophone, +1,real strings.wav,Other, +1,real string.wav,Other, +1,real solo sax.wav,Saxophone, +1,real sax tenor.wav,Saxophone, +1,real sax tenor 02.wav,Saxophone, +1,real sax tenor 01.wav,Saxophone, +1,real sax solo.wav,Saxophone, +1,real sax bari.wav,Saxophone, +1,real sax bari 01.wav,Saxophone, +1,real sax alto.wav,Saxophone, +1,real sax 1.wav,Saxophone, +1,real pedal steel solo.wav,Electric Guitar,Pedal Steel +1,real pedal steel r.wav,Electric Guitar,Pedal Steel +1,real pedal steel l.wav,Electric Guitar,Pedal Steel +1,real mandolina.wav,Mandolin, +1,real mandolina solo.wav,Mandolin, +1,real mandolina rhytmic.wav,Mandolin, +1,real mandolin.wav,Mandolin, +1,real lap steel.wav,Electric Guitar,Lap Steel +1,real hermonica.wav,Harmonica, +1,real flute.wav,Flute, +1,real fat.wav,Other, +1,real brass.wav,Other, +1,real bari sax.wav,Other, +1,real banjo 01 right+02.wav,Banjo, +1,real alto sax.wav,Other, +1,ray dalton.wav,Other, +1,ray charles.wav,Other, +1,rauw alexander.wav,Other, +1,rap2.wav,Other, +1,rap1.wav,Other, +1,rap.wav,Other, +1,rap-bvs.wav,Other, +1,rap and sung.wav,Other, +1,randy.wav,Other, +1,random.wav,Other, +1,raiser tone.wav,Other, +1,rain.wav,Other, +1,rag n bone man.wav,Other, +1,radio_voice.wav,Other, +1,radio voice.wav,Other, +1,radio and geiger.wav,Other, +1,r.l. huggar.wav,Other, +1,r.l. huggar-adlib.wav,Other, +1,r. kelly-adlib.wav,Other, +1,r eg.wav,Other, +1,r ag.wav,Other, +1,quite beep.wav,Other, +1,quavo-adlib.wav,Other, +1,pwm.wav,Other, +1,pussycat dolls.wav,Other, +1,pusha t.wav,Other, +1,pulse synth.wav,Other, +1,puff daddy.wav,Other, +1,pseudo mandolin.wav,Other, +1,prosecutor.wav,Other, +1,prophetish.wav,Other, +1,prophet.wav,Other, +1,projector.wav,Other, +1,project pat.wav,Other, +1,princess nokia.wav,Other, +1,prince ital joe.wav,Other, +1,precountkey.wav,Other, +1,precount+key.wav,Other, +1,precount in.wav,Other, +1,preclick.wav,Other, +1,pre.wav,Other, +1,pre-count.wav,Other, +1,power synth.wav,Other, +1,power synth 1+2.wav,Other, +1,power chords.wav,Other, +1,pops.wav,Other, +1,ponderosa twins plus one.wav,Other, +1,polysixperc.wav,Other, +1,polylead r.wav,Other, +1,poly synth 4 fx.wav,Other, +1,poly synth 3.wav,Other, +1,poly synth 2.wav,Other, +1,poly synth 12 piano.wav,Other, +1,polo g.wav,Other, +1,pnpipes.wav,Other, +1,plucked synth arr.wav,Other, +1,plucked strings and keys.wav,Other, +1,plucked high.wav,Other, +1,plucked 1.wav,Other, +1,pluck_synth.wav,Other, +1,pluck synth chrom + synth intro.wav,Other, +1,pluck synth 2.wav,Other, +1,pluck intro synth.wav,Other, +1,pluck inst.wav,Other, +1,pluck gtr + synths.wav,Other, +1,pluck dre arr+saw.wav,Other, +1,pluck chords.wav,Other, +1,pluck arr.wav,Other, +1,plinky.wav,Other, +1,plies.wav,Other, +1,pj harvey.wav,Other, +1,pizzstrings.wav,Other, +1,pizzicatos.wav,Other, +1,pizz violins.wav,Other, +1,pizz 2.wav,Other, +1,pizz 1.wav,Other, +1,pizz + harp.wav,Other, +1,pitchperc.wav,Other, +1,pitchedpercs.wav,Other, +1,pitchedperc.wav,Other, +1,pitched vox.wav,Other, +1,pitched loop.wav,Other, +1,pitch.wav,Other, +1,pitbull & ne-yo.wav,Other, +1,pipeorgan.wav,Other, +1,pipe.wav,Other, +1,pipe organ.wav,Other, +1,pipa.wav,Other, +1,pimp c.wav,Other, +1,pierre bouvier.wav,Other, +1,pierre bouvier-adlib.wav,Other, +1,pier_oh.wav,Other, +1,pickedleadguitar.wav,Other, +1,pick.wav,Other, +1,pianp.wav,Piano, +1,pianostack.wav,Piano, +1,pianomain.wav,Piano, +1,pianolead.wav,Piano, +1,pianola.wav,Piano, +1,piano_ok.wav,Piano, +1,piano_efx.wav,Piano, +1,piano_e.wav,Piano, +1,piano_dist.wav,Piano, +1,piano_01.wav,Piano, +1,piano12.wav,Piano, +1,piano-strings.wav,Piano, +1,piano-bell.wav,Piano, +1,piano-arr synth bells.wav,Piano, +1,piano+piano bell.wav,Piano, +1,piano+intro.wav,Piano, +1,piano+el piano.wav,Piano, +1,piano wurlitzer.wav,Piano, +1,piano with fx.wav,Piano, +1,piano tran.wav,Piano, +1,piano synth.wav,Piano, +1,piano synth koto.wav,Piano, +1,piano space.wav,Piano, +1,piano sample.wav,Piano, +1,piano r.wav,Piano, +1,piano mk.wav,Piano, +1,piano melody.wav,Piano, +1,piano layers theme.wav,Piano, +1,piano l.wav,Piano, +1,piano hi + low.wav,Piano, +1,piano hard.wav,Piano, +1,piano hammond arr.wav,Piano, +1,piano filter.wav,Piano, +1,piano ep pianet.wav,Piano, +1,piano ending.wav,Piano, +1,piano electrique.wav,Piano, +1,piano electric.wav,Piano, +1,piano el_ok.wav,Piano, +1,piano dance.wav,Piano, +1,piano chords.wav,Piano, +1,piano and ep.wav,Piano, +1,piano adds.wav,Piano, +1,piano _01-01 (d).wav,Piano, +1,piano 2 right.wav,Piano, +1,piano 2 intro.wav,Piano, +1,piano 12.wav,Piano, +1,piano 1+2+3.wav,Piano, +1,piano 02.wav,Piano, +1,piano 01.wav,Piano, +1,piano + reverse piano.wav,Piano, +1,piano + cp.wav,Piano, +1,piano (new).wav,Piano, +1,piano (loop).wav,Piano, +1,piack.wav,Other, +1,phish.wav,Other, +1,philippine.wav,Other, +1,philippine lavrey.wav,Other, +1,philip oakey.wav,Other, +1,phaser pad.wav,Other, +1,pharell williams.wav,Other, +1,petra christensen.wav,Other, +1,petey pablo.wav,Other, +1,petey pablo-adlib.wav,Other, +1,peter gabriel.wav,Other, +1,peter cetera.wav,Other, +1,perucssion.wav,Percussion, +1,pertucion.wav,Other, +1,perrie edwards.wav,Other, +1,percussivesynth.wav,Other, +1,percussive synth.wav,Other, +1,percussions+sfx.wav,Percussion, +1,percussions+hits.wav,Percussion, +1,percussion-noises.wav,Percussion, +1,percussion-fx.wav,Percussion, +1,percussion-3.wav,Percussion, +1,percussion+synth perc.wav,Percussion, +1,percussion glockenspiel.wav,Percussion, +1,percussion fix.wav,Percussion, +1,percussion eb 140bpm.wav,Percussion, +1,percussion - weird tube sound.wav,Percussion, +1,percussion - fingersnaps + whip + claps.wav,Percussion, +1,percusiones.wav,Percussion, +1,percuccion.wav,Percussion, +1,percu+mix fxs.wav,Percussion, +1,percu+fx+orch hits.wav,Percussion, +1,percu chrom + hits.wav,Percussion, +1,percu + occhestral percu.wav,Percussion, +1,percshaker.wav,Percussion, +1,percs+scratch+synth2.wav,Percussion, +1,percs chrom.wav,Percussion, +1,percs and revfx.wav,Percussion, +1,percs and chimes.wav,Percussion, +1,percs and 1218_cajon.wav,Percussion, +1,percmixgoo.wav,Percussion, +1,percmix.wav,Percussion, +1,perc_efx.wav,Percussion, +1,perc_claps.wav,Percussion, +1,perc1+2mix.wav,Percussion, +1,perc1+2 mix.wav,Percussion, +1,perc..wav,Percussion, +1,perc-sample.wav,Percussion, +1,perc-mallets.wav,Percussion, +1,perc+synth fx.wav,Percussion, +1,perc+mix fx.wav,Percussion, +1,perc+ guit3 noise.wav,Percussion, +1,perc mix.wav,Percussion, +1,perc metals.wav,Percussion, +1,perc loop.wav,Percussion, +1,perc kick.wav,Percussion, +1,perc gt.wav,Percussion, +1,perc fx.wav,Percussion, +1,perc and timp.wav,Percussion, +1,perc and fx.wav,Percussion, +1,perc and foley.wav,Percussion, +1,perc and claps.wav,Percussion, +1,perc 2 right.wav,Percussion, +1,perc 12.wav,Percussion, +1,perc 1+2 mix.wav,Percussion, +1,perc 1 left.wav,Percussion, +1,perc 1 2.wav,Percussion, +1,perc + vinyl.wav,Percussion, +1,perc + timpani + noise.wav,Percussion, +1,perc + timpani + cymbal.wav,Percussion, +1,perc + noise.wav,Percussion, +1,perc + fx.wav,Percussion, +1,people.wav,Other, +1,pentatonix.wav,Other, +1,pee wee.wav,Other, +1,pedalsteel.wav,Other, +1,pedal_steel_guitar.wav,Other, +1,pedal steel guitar.wav,Other, +1,peaches.wav,Other, +1,pc clic.wav,Other, +1,paulissa moorman.wav,Other, +1,paul.wav,Other, +1,paul mccartney.wav,Other, +1,paolo nutini.wav,Other, +1,pan flute.wav,Other, +1,pam.wav,Other, +1,palmas.wav,Other, +1,paino.wav,Other, +1,padvox.wav,Other, +1,padsynth.wav,Keyboard,Synth Pad +1,padshop-notdups.wav,Keyboard,Synth Pad +1,pads_fxs.wav,Keyboard,Synth Pad +1,pads12 strings riser.wav,Keyboard,Synth Pad +1,pads synths bellsambiance.wav,Keyboard,Synth Pad +1,pads synth.wav,Keyboard,Synth Pad +1,pads strings and synth.wav,Keyboard,Synth Pad +1,pads organ-pad-string-choir.wav,Keyboard,Synth Pad +1,pads mixmaster.wav,Keyboard,Synth Pad +1,pads choir synth2.wav,Keyboard,Synth Pad +1,pads choir strings.wav,Keyboard,Synth Pad +1,pads choir delay wobble.wav,Keyboard,Synth Pad +1,pads and strings and fx.wav,Keyboard,Synth Pad +1,pads and noise.wav,Keyboard,Synth Pad +1,pads and bases.wav,Keyboard,Synth Pad +1,pads 123.wav,Keyboard,Synth Pad +1,pads 12 voice and chorus strings.wav,Keyboard,Synth Pad +1,pads 1 + 2 + 3 + 4.wav,Keyboard,Synth Pad +1,pads + plucked.wav,Keyboard,Synth Pad +1,padmix.wav,Keyboard,Synth Pad +1,padfx.wav,Keyboard,Synth Pad +1,padefx intro.wav,Keyboard,Synth Pad +1,padchoir2.wav,Keyboard,Synth Pad +1,padchoir.wav,Keyboard,Synth Pad +1,pad_synth_2.wav,Keyboard,Synth Pad +1,pad_synth_1.wav,Keyboard,Synth Pad +1,pad_intro_synth.wav,Keyboard,Synth Pad +1,pad_bell.wav,Keyboard,Synth Pad +1,pad_1.wav,Keyboard,Synth Pad +1,pad3.wav,Keyboard,Synth Pad +1,pad123 synth34.wav,Keyboard,Synth Pad +1,pad1.wav,Keyboard,Synth Pad +1,pad-01.wav,Keyboard,Synth Pad +1,pad+voice synth arr.wav,Keyboard,Synth Pad +1,pad+synth+strings.wav,Keyboard,Synth Pad +1,pad+strings.wav,Keyboard,Synth Pad +1,pad+bells.wav,Keyboard,Synth Pad +1,pad voices.wav,Keyboard,Synth Pad +1,pad vocpad strings.wav,Keyboard,Synth Pad +1,pad synth12.wav,Keyboard,Synth Pad +1,pad synth 2.wav,Keyboard,Synth Pad +1,pad synth 1.wav,Keyboard,Synth Pad +1,pad swell.wav,Keyboard,Synth Pad +1,pad sweep.wav,Keyboard,Synth Pad +1,pad strings12 organ.wav,Keyboard,Synth Pad +1,pad strings voicesynth12 synth2.wav,Keyboard,Synth Pad +1,pad string and lead.wav,Keyboard,Synth Pad +1,pad reverse.wav,Keyboard,Synth Pad +1,pad outro.wav,Keyboard,Synth Pad +1,pad loop.wav,Keyboard,Synth Pad +1,pad intro.wav,Keyboard,Synth Pad +1,pad eb 140bpm.wav,Keyboard,Synth Pad +1,pad choirs strings.wav,Keyboard,Synth Pad +1,pad choir.wav,Keyboard,Synth Pad +1,pad choir strings.wav,Keyboard,Synth Pad +1,pad bells.wav,Keyboard,Synth Pad +1,pad and synthstrings.wav,Keyboard,Synth Pad +1,pad and synthbass and string.wav,Keyboard,Synth Pad +1,pad and synth4.wav,Keyboard,Synth Pad +1,pad and sbrass.wav,Keyboard,Synth Pad +1,pad and rhodes.wav,Keyboard,Synth Pad +1,pad and hammond12.wav,Keyboard,Synth Pad +1,pad and choirs.wav,Keyboard,Synth Pad +1,pad and choir vocfx vocsynth.wav,Keyboard,Synth Pad +1,pad ambiant organ.wav,Keyboard,Synth Pad +1,pad 5.wav,Keyboard,Synth Pad +1,pad 123.wav,Keyboard,Synth Pad +1,pad 1+2.wav,Keyboard,Synth Pad +1,pad + whistle + theremin.wav,Keyboard,Synth Pad +1,pad + voicesynth.wav,Keyboard,Synth Pad +1,pad + synth voice.wav,Keyboard,Synth Pad +1,pad + synth strings.wav,Keyboard,Synth Pad +1,pad + padfx.wav,Keyboard,Synth Pad +1,pad + fx.wav,Keyboard,Synth Pad +1,pad + bells + synthfx.wav,Keyboard,Synth Pad +1,pad + bells + arp.wav,Keyboard,Synth Pad +1,p5 r.wav,Other, +1,p5 l.wav,Other, +1,ozuna.wav,Other, +1,overdriven guitar(wah wah).wav,Other, +1,overdriven eg.wav,Other, +1,ovation.wav,Other, +1,outrosynth.wav,Other, +1,outrogtr.wav,Other, +1,outro sound.wav,Other, +1,outkast.wav,Other, +1,other.wav,Other, +1,ostinato synth.wav,Other, +1,orquestra hit.wav,Other, +1,oriental plucked guitar.wav,Other, +1,orgues.wav,Other, +1,orgue.wav,Other, +1,orgue fin.wav,Other, +1,organsynth.wav,Keyboard,Organ +1,organs_1.wav,Keyboard,Organ +1,organs and synth intro lr.wav,Keyboard,Organ +1,organs ambient strings.wav,Keyboard,Organ +1,organpadsynth.wav,Keyboard,Organ +1,organo.wav,Keyboard,Organ +1,organish.wav,Keyboard,Organ +1,organfx arr.wav,Keyboard,Organ +1,organdroite.wav,Keyboard,Organ +1,organ_whitesnake - here i go again.wav,Keyboard,Organ +1,organ_synth.wav,Keyboard,Organ +1,organ_rhodes.wav,Keyboard,Organ +1,organ_hammond_4.wav,Keyboard,Organ +1,organ_hammond_2_clicky.wav,Keyboard,Organ +1,organ12 drone reso saw choirpad.wav,Keyboard,Organ +1,organ1.wav,Keyboard,Organ +1,organ1 pads.wav,Keyboard,Organ +1,organ1 (arpeggio).wav,Keyboard,Organ +1,organ+synths.wav,Keyboard,Organ +1,organ+synth strings.wav,Keyboard,Organ +1,organ+synth lead.wav,Keyboard,Organ +1,organ+pad+choir.wav,Keyboard,Organ +1,organ+ld synth.wav,Keyboard,Organ +1,organ synthchoir.wav,Keyboard,Organ +1,organ synth synthbass.wav,Keyboard,Organ +1,organ synth pad.wav,Keyboard,Organ +1,organ solo.wav,Keyboard,Organ +1,organ pluck2.wav,Keyboard,Organ +1,organ pluck.wav,Keyboard,Organ +1,organ padfx.wav,Keyboard,Organ +1,organ like accordeon.wav,Keyboard,Organ +1,organ intro.wav,Keyboard,Organ +1,organ end.wav,Keyboard,Organ +1,organ dist.wav,Keyboard,Organ +1,organ bass.wav,Keyboard,Organ +1,organ and synth.wav,Keyboard,Organ +1,organ and keys.wav,Keyboard,Organ +1,organ 23.wav,Keyboard,Organ +1,organ 2 solo.wav,Keyboard,Organ +1,organ 2 right.wav,Keyboard,Organ +1,organ 2 pad.wav,Keyboard,Organ +1,organ 123.wav,Keyboard,Organ +1,organ 12.wav,Keyboard,Organ +1,organ 1 arp lead.wav,Keyboard,Organ +1,organ 1 + 2 + 3.wav,Keyboard,Organ +1,organ + synth 80s.wav,Keyboard,Organ +1,organ + pad + strings.wav,Keyboard,Organ +1,organ + harmonium.wav,Keyboard,Organ +1,organ + flute.wav,Keyboard,Organ +1,orgam.wav,Other, +1,orchestral perc.wav,Other, +1,orchestral harp.wav,Other, +1,orchestrahits.wav,Other, +1,orchestra pizz and stabb.wav,Other, +1,orchestra perc fx.wav,Other, +1,orchestra hits.wav,Other, +1,orch.wav,Other, +1,orch stabs.wav,Other, +1,orch sample.wav,Other, +1,orch perc.wav,Other, +1,orch hits.wav,Other, +1,orch drums.wav,Other, +1,orbit station.wav,Other, +1,one single bell.wav,Other, +1,one note synth.wav,Other, +1,omega.wav,Other, +1,omarion.wav,Other, +1,olly murs.wav,Other, +1,olivia.wav,Other, +1,oli sykes.wav,Other, +1,ol dirty bastard.wav,Other, +1,offset-adlib.wav,Other, +1,octobans.wav,Other, +1,octaverhythmgtr.wav,Other, +1,octave saw.wav,Other, +1,ocarina.wav,Other, +1,ocanina_over_the_hills_and_far_away.wav,Other, +1,oboe and piccolo.wav,Other, +1,oboe 1 + 2.wav,Other, +1,oates.wav,Other, +1,o.wav,Other, +1,o hit.wav,Other, +1,nylongtr.wav,Acoustic Guitar, +1,nylongt_r.wav,Acoustic Guitar, +1,nylongt_l.wav,Acoustic Guitar, +1,nylongt.wav,Acoustic Guitar, +1,nylon_solo.wav,Acoustic Guitar, +1,nylon_harmonie_2.wav,Acoustic Guitar, +1,nylon_harmonie_1.wav,Acoustic Guitar, +1,nylon.wav,Acoustic Guitar, +1,nylon guitar vst.wav,Acoustic Guitar, +1,nylon guitar solo.wav,Acoustic Guitar, +1,nylon guitar rhytmic.wav,Acoustic Guitar, +1,nylon guitar rhytmic 2.wav,Acoustic Guitar, +1,nylon guitar intro muted.wav,Acoustic Guitar, +1,nyla.wav,Other, +1,notorious big.wav,Other, +1,notorious b.i.g..wav,Other, +1,notdup-gtr ac.wav,Other, +1,normani.wav,Other, +1,noise vynil crack.wav,Other, +1,noise sfx.wav,Other, +1,noise sea waves.wav,Other, +1,noise and fx.wav,Other, +1,noise + reversed cymb.wav,Other, +1,noir strings.wav,Other, +1,noah cyrus.wav,Other, +1,nle choppa.wav,Other, +1,nk.wav,Other, +1,nivea.wav,Other, +1,nio garcia.wav,Other, +1,nina sky.wav,Other, +1,nico sallach.wav,Other, +1,nicky jam.wav,Other, +1,nicki minaj-adlib.wav,Other, +1,nick jonas-adlib.wav,Other, +1,niall horan.wav,Other, +1,ney.wav,Other, +1,newage ep.wav,Other, +1,new year fx.wav,Other, +1,new drums + perc.wav,Other, +1,new bv.wav,Other, +1,new basse en 440.wav,Other, +1,neunzig_s_synth_04.wav,Other, +1,neunzig_s_synth_03.wav,Other, +1,neunzig_s_synth_02.wav,Other, +1,neunzig_s_synth_01.wav,Other, +1,neunzig_s_lv.wav,Other, +1,neunzig_s_drums.wav,Other, +1,neunzig_s_bv.wav,Other, +1,neunzig_s_bass.wav,Other, +1,nesi.wav,Other, +1,nengo flow.wav,Other, +1,nelly-adlib.wav,Other, +1,nelly furtado and soshy.wav,Other, +1,nbv-notdup-piano.wav,Other, +1,nayer.wav,Other, +1,natti natasha.wav,Other, +1,nathan morris.wav,Other, +1,nate ruess.wav,Other, +1,natasha bedingfield.wav,Other, +1,natalie horler.wav,Other, +1,nancy fletcher.wav,Other, +1,n.o.r.e.wav,Other, +1,n-dubz.wav,Other, +1,n guitar.wav,Other, +1,myrna matthews.wav,Other, +1,muteguitar2.wav,Other, +1,mutedguitar.wav,Other, +1,mutedgtr.wav,Other, +1,muted guitar 1.wav,Other, +1,muted gtr.wav,Other, +1,muted gtr 2.wav,Other, +1,muted + solo.wav,Other, +1,mute.wav,Other, +1,mute trumpet.wav,Other, +1,mute trumpet lead.wav,Other, +1,mute guits.wav,Other, +1,musicbox.wav,Other, +1,ms20.wav,Other, +1,ms. toi.wav,Other, +1,ms. peaches.wav,Other, +1,ms 20.wav,Other, +1,mouth clicks fx.wav,Other, +1,motif synth.wav,Other, +1,motif synth + simply pad.wav,Other, +1,motif hard.wav,Other, +1,morse code.wav,Other, +1,moog syntharp.wav,Other, +1,moog synth.wav,Other, +1,moog bass.wav,Other, +1,monolead.wav,Other, +1,mono synth 1 + 2.wav,Other, +1,molly guldemond.wav,Other, +1,mo.wav,Other, +1,mnek.wav,Other, +1,mlix synth melo+solo.wav,Other, +1,mk-80 rhodes.wav,Other, +1,mixy bit.wav,Other, +1,mixsynth+pad.wav,Other, +1,mixpad+synth6+7.wav,Other, +1,mixlead+bells.wav,Other, +1,mixhorns+clarinet.wav,Other, +1,mixgtr 1+4.wav,Other, +1,mixelectrodrums.wav,Other, +1,mixed bv.wav,Other, +1,mix xylophone1+2+organ3.wav,Other, +1,mix winds.wav,Other, +1,mix winds+oboe.wav,Other, +1,mix warmpad+pad.wav,Other, +1,mix vox fx + bv.wav,Other, +1,mix voilin1+2.wav,Other, +1,mix voice synth+synth3+4+bells.wav,Other, +1,mix voc.wav,Other, +1,mix voc 1 + 2.wav,Other, +1,mix violins.wav,Other, +1,mix trumpet1+2.wav,Other, +1,mix trumpet+trombon+tuba+french horn+flutes.wav,Other, +1,mix trombon1+2.wav,Other, +1,mix trombon 1+2.wav,Other, +1,mix trb1+2.wav,Other, +1,mix tenor sax1+2.wav,Other, +1,mix tambourine+seq+congas+snaps.wav,Other, +1,mix tambourine+handclaps.wav,Other, +1,mix tamb+shaker+cowbell+windchimes.wav,Other, +1,mix synthstrings.wav,Keyboard,Synth +1,mix synths2+3+4+ep.wav,Keyboard,Synth +1,mix synths+piano.wav,Keyboard,Synth +1,mix synths lead.wav,Keyboard,Synth +1,mix synths lead+synthpad+synthfx.wav,Keyboard,Synth +1,mix synths + trance ok.wav,Keyboard,Synth +1,mix synthpas+strings.wav,Keyboard,Synth +1,mix synthpads + reversed piano.wav,Keyboard,Synth +1,mix synthpad+synthvoice.wav,Keyboard,Synth +1,mix synthpad+synthstring.wav,Keyboard,Synth +1,mix synthpad+mystery+synthmallet.wav,Keyboard,Synth +1,mix synthkeys&arp.wav,Keyboard,Synth +1,mix synthguits.wav,Keyboard,Synth +1,mix synthchords.wav,Keyboard,Synth +1,mix synthbrasses.wav,Keyboard,Synth +1,mix synthbell+pad.wav,Keyboard,Synth +1,mix synth6+7.wav,Keyboard,Synth +1,mix synth4+pluck.wav,Keyboard,Synth +1,mix synth4+5.wav,Keyboard,Synth +1,mix synth3+4.wav,Keyboard,Synth +1,mix synth2+strings1.wav,Keyboard,Synth +1,mix synth2+3.wav,Keyboard,Synth +1,mix synth1+2.wav,Keyboard,Synth +1,mix synth1+2+strings+pads.wav,Keyboard,Synth +1,mix synth1+2+saw.wav,Keyboard,Synth +1,mix synth1+2+choir.wav,Keyboard,Synth +1,mix synth1+2+3+synth guitar.wav,Keyboard,Synth +1,mix synth1+2+3+pad1+2+prophet+arpeggiator+trumpet+noise.wav,Keyboard,Synth +1,mix synth1+2+3+mellotron+choir.wav,Keyboard,Synth +1,mix synth1+2+3+hook.wav,Keyboard,Synth +1,mix synth1+2+3+delay.wav,Keyboard,Synth +1,mix synth1+2+3+4+5+bass synth.wav,Keyboard,Synth +1,mix synth+synth strings+strings.wav,Keyboard,Synth +1,mix synth+synth piano.wav,Keyboard,Synth +1,mix synth+synth ld.wav,Keyboard,Synth +1,mix synth+mellotron+sfx.wav,Keyboard,Synth +1,mix synth+clav.wav,Keyboard,Synth +1,mix synth+brass.wav,Keyboard,Synth +1,mix synth strings.wav,Keyboard,Synth +1,mix synth square+synth brass.wav,Keyboard,Synth +1,mix synth sfx.wav,Keyboard,Synth +1,mix synth saw+square1+2+stack.wav,Keyboard,Synth +1,mix synth pad1+2.wav,Keyboard,Synth +1,mix synth pad+pad intro.wav,Keyboard,Synth +1,mix synth pad a+b.wav,Keyboard,Synth +1,mix synth pad 1+2.wav,Keyboard,Synth +1,mix synth pad +choir.wav,Keyboard,Synth +1,mix synth leads.wav,Keyboard,Synth +1,mix synth lead1+2+keys pluck.wav,Keyboard,Synth +1,mix synth lead1+2+3+4.wav,Keyboard,Synth +1,mix synth lead.wav,Keyboard,Synth +1,mix synth lead+pad+choir+pluck+add+mod+piano.wav,Keyboard,Synth +1,mix synth lead minimoog+synth gtr.wav,Keyboard,Synth +1,mix synth lead 3+4 (pluck).wav,Keyboard,Synth +1,mix synth lead + bell.wav,Keyboard,Synth +1,mix synth keys1+2+synth toms.wav,Keyboard,Synth +1,mix synth keys+retro.wav,Keyboard,Synth +1,mix synth keys+arpegiator+brass+harp.wav,Keyboard,Synth +1,mix synth guitar 2+ep.wav,Keyboard,Synth +1,mix synth fx+synth+synth strings.wav,Keyboard,Synth +1,mix synth fx+noise.wav,Keyboard,Synth +1,mix synth dark + horn.wav,Keyboard,Synth +1,mix synth brass+pad.wav,Keyboard,Synth +1,mix synth bass1+2+synth brass.wav,Keyboard,Synth +1,mix synth bass+reso+ambient disto.wav,Keyboard,Synth +1,mix synth arp+chordme.wav,Keyboard,Synth +1,mix synth adds+pad.wav,Keyboard,Synth +1,mix synth 5 + 6.wav,Keyboard,Synth +1,mix synth 5 + 6 + orch hits.wav,Keyboard,Synth +1,mix synth 4+7.wav,Keyboard,Synth +1,mix synth 3 + 4.wav,Keyboard,Synth +1,mix synth 2+3.wav,Keyboard,Synth +1,mix synth 2+3+4.wav,Keyboard,Synth +1,mix synth 2 + 3 + 4.wav,Keyboard,Synth +1,mix synth 1+3.wav,Keyboard,Synth +1,mix synth 1+3+organ.wav,Keyboard,Synth +1,mix synth 1+2.wav,Keyboard,Synth +1,mix synth 1 + 4.wav,Keyboard,Synth +1,mix synth + hi.wav,Keyboard,Synth +1,mix synth + fx.wav,Keyboard,Synth +1,mix synth + flute.wav,Keyboard,Synth +1,mix strings+violin.wav,Keyboard,Synth Strings +1,mix strings+strings reversed.wav,Keyboard,Synth Strings +1,mix strings+organ.wav,Keyboard,Synth Strings +1,mix strings+harp.wav,Keyboard,Synth Strings +1,mix strings+flute.wav,Keyboard,Synth Strings +1,mix strings 1+2.wav,Keyboard,Synth Strings +1,mix strings + synth 3.wav,Keyboard,Synth Strings +1,mix string.wav,Keyboard,Synth Strings +1,mix string+violin.wav,Keyboard,Synth Strings +1,mix stereo egs.wav,Other, +1,mix steel ag1.wav,Other, +1,mix solo nylon ag.wav,Other, +1,mix solo guits.wav,Other, +1,mix solo center eg1+2.wav,Other, +1,mix solo 1c+2c.wav,Other, +1,mix solina + gtr1.wav,Other, +1,mix sfx+sfx synth.wav,Other, +1,mix saxes.wav,Other, +1,mix sax1+2.wav,Other, +1,mix sax section.wav,Other, +1,mix sax baryton 1+2+real.wav,Other, +1,mix rhythmic egs.wav,Other, +1,mix rhythmic eg.wav,Other, +1,mix rhythmic clean eg 1+2.wav,Other, +1,mix rhythmic ags.wav,Other, +1,mix rhyt gtrs.wav,Other, +1,mix real trp1+2+3+4.wav,Other, +1,mix real tenor 1+2.wav,Other, +1,mix real brass+vst brass.wav,Other, +1,mix rap.wav,Other, +1,mix pluck.wav,Other, +1,mix pluck + arpg.wav,Other, +1,mix piano+pianoreverse.wav,Other, +1,mix piano 1+2.wav,Other, +1,mix piano 1 + 2.wav,Other, +1,mix phaser crunch egs.wav,Other, +1,mix percus+sfx.wav,Other, +1,mix percs+sfx.wav,Other, +1,mix percs+noise.wav,Other, +1,mix percs+fx.wav,Other, +1,mix percs+fx+noise.wav,Other, +1,mix percs&fxs.wav,Other, +1,mix percs fxs.wav,Other, +1,mix perc1+2.wav,Other, +1,mix perc.wav,Other, +1,mix perc+drummachine.wav,Other, +1,mix pedal steel+lead.wav,Other, +1,mix pd+efx.wav,Other, +1,mix pads+bell.wav,Keyboard,Synth Pad +1,mix pads + fx.wav,Keyboard,Synth Pad +1,mix pads (pad strings brass).wav,Keyboard,Synth Pad +1,mix pad.wav,Keyboard,Synth Pad +1,mix pad+vocal synth.wav,Keyboard,Synth Pad +1,mix pad+synth+organ.wav,Keyboard,Synth Pad +1,mix pad+synth strings.wav,Keyboard,Synth Pad +1,mix pad synth1+2+strings synth+piano pad.wav,Keyboard,Synth Pad +1,mix pad synth 1+2+3+synth strings.wav,Keyboard,Synth Pad +1,mix pad synth + brass synth1+sfx1.wav,Keyboard,Synth Pad +1,mix pad 1+2+voice pad synth.wav,Keyboard,Synth Pad +1,mix pad 1 + 2.wav,Keyboard,Synth Pad +1,mix pad + strings ok.wav,Keyboard,Synth Pad +1,mix pad + atmo + synth.wav,Keyboard,Synth Pad +1,mix organs.wav,Keyboard,Organ +1,mix organs+pad.wav,Keyboard,Organ +1,mix organ2+4.wav,Keyboard,Organ +1,mix organ2+3.wav,Keyboard,Organ +1,mix organ1+3.wav,Keyboard,Organ +1,mix organ1+2+pad.wav,Keyboard,Organ +1,mix organ1+2+3.wav,Keyboard,Organ +1,mix organ+synthpad+synthstring.wav,Keyboard,Organ +1,mix organ+synth pad.wav,Keyboard,Organ +1,mix organ+pads.wav,Keyboard,Organ +1,mix organ 2+3.wav,Keyboard,Organ +1,mix organ + pad.wav,Keyboard,Organ +1,mix orchestra.wav,Other, +1,mix orchestra inst.wav,Other, +1,mix nylon ags.wav,Other, +1,mix noise+percufx.wav,Other, +1,mix mutesynths1+2+arp.wav,Other, +1,mix muted eg 1+2+3.wav,Other, +1,mix mild+nice+pro bass.wav,Other, +1,mix metal bars.wav,Other, +1,mix mellotron.wav,Other, +1,mix mellotron winds.wav,Other, +1,mix mellotron strings.wav,Other, +1,mix mandonlines.wav,Other, +1,mix mandoline 1+2.wav,Other, +1,mix mallet.wav,Other, +1,mix lv1+2+lv phone.wav,Voice, +1,mix lv+lv2+lvspoken.wav,Voice, +1,mix lv+db.wav,Voice, +1,mix loop+claps.wav,Other, +1,mix leads+pad.wav,Other, +1,mix lead vocal.wav,Voice, +1,mix lead synth1+2.wav,Other, +1,mix ld+ld adds.wav,Voice, +1,mix ld+double.wav,Voice, +1,mix ld+addlib.wav,Voice, +1,mix ld+add.wav,Voice, +1,mix lclean+rclean+clean+cruncharr.wav,Other, +1,mix l+r.wav,Other, +1,mix l+r rhythmic egs.wav,Other, +1,mix l+r rhythmic ags.wav,Other, +1,mix l+r intro ag.wav,Other, +1,mix l+r egs.wav,Other, +1,mix l+r clean intro eg.wav,Other, +1,mix l+r arr egs.wav,Other, +1,mix l+r ac gtr 2+4.wav,Other, +1,mix l+c+r eg 3+4+5.wav,Other, +1,mix keys+synth2.wav,Other, +1,mix keys 1 + 2.wav,Other, +1,mix key1+2.wav,Other, +1,mix key+key2.wav,Other, +1,mix idiophones.wav,Other, +1,mix harp+acoustic guitar.wav,Other, +1,mix harmonica + trumpet.wav,Other, +1,mix hammond+synth square.wav,Other, +1,mix guitar2+6.wav,Electric Guitar, +1,mix guitar2+3.wav,Electric Guitar, +1,mix guitar1+5+7.wav,Electric Guitar, +1,mix guitar rigg+solo1.wav,Electric Guitar, +1,mix guitar lead+disto.wav,Electric Guitar, +1,mix guitar 1+2.wav,Electric Guitar, +1,mix guitar 1+2+4+6+7.wav,Electric Guitar, +1,mix guit solo + lead1.wav,Electric Guitar, +1,mix guit lead3 + harmo.wav,Electric Guitar, +1,mix guit ac 1 + 2.wav,Acoustic Guitar, +1,mix guit 7 + 9.wav,Electric Guitar, +1,mix guit 5 + 8.wav,Electric Guitar, +1,mix guit 4 + 9.wav,Electric Guitar, +1,mix guit 2 + 3.wav,Electric Guitar, +1,mix gtrs clean+left.wav,Electric Guitar, +1,mix gtrs 1+2.wav,Electric Guitar, +1,mix gtrs (palm mute).wav,Electric Guitar, +1,mix gtrs (palm muet+stac).wav,Electric Guitar, +1,mix gtrs (disto+delay).wav,Electric Guitar, +1,mix gtrs (clean).wav,Electric Guitar, +1,mix gtr3+slide.wav,Electric Guitar, +1,mix gtr3+5.wav,Electric Guitar, +1,mix gtr3+4+5+7+8+9+10+11.wav,Electric Guitar, +1,mix gtr1+7.wav,Electric Guitar, +1,mix gtr1+4.wav,Electric Guitar, +1,mix gtr1+3.wav,Electric Guitar, +1,mix gtr1+2.wav,Electric Guitar, +1,mix gtr.wav,Electric Guitar, +1,mix gtr solo.wav,Electric Guitar, +1,mix gtr rhythm.wav,Electric Guitar, +1,mix gtr lead 1+2+3+whas.wav,Electric Guitar, +1,mix gtr fx+gtr ld.wav,Electric Guitar, +1,mix gtr arr.wav,Electric Guitar, +1,mix gtr arp.wav,Electric Guitar, +1,mix gtr 5+6.wav,Electric Guitar, +1,mix gtr 1+3.wav,Electric Guitar, +1,mix fx+fx2+pad+pad02+synth add.wav,Other, +1,mix fx + steel drum ok.wav,Other, +1,mix fx + noise.wav,Other, +1,mix fx + fx synth.wav,Other, +1,mix full orchestra.wav,Other, +1,mix flutes+clari+oboe.wav,Other, +1,mix ep+organ.wav,Other, +1,mix ep l+r.wav,Other, +1,mix elgtr lead wahwah.wav,Electric Guitar, +1,mix elgtr arr.wav,Electric Guitar, +1,mix elegtr2+distogtr2.wav,Electric Guitar, +1,mix electric guitars 5+7+8.wav,Electric Guitar, +1,mix electric guitars 2+3+6.wav,Electric Guitar, +1,mix electric guitar 123.wav,Electric Guitar, +1,mix elect fill gtr+1+2+3+harmonics.wav.wav,Electric Guitar, +1,mix el.piano.wav,Other, +1,mix el.gtrs rhythm.wav,Electric Guitar, +1,mix el.gtrs lead.wav,Electric Guitar, +1,mix el.gtrs l+r.wav,Electric Guitar, +1,mix el.gtrs crunch+final2+arr.wav,Electric Guitar, +1,mix el.gtrs clean.wav,Electric Guitar, +1,mix el.gtrs arr.wav,Electric Guitar, +1,mix el.gtrs arr 3+4+8.wav,Electric Guitar, +1,mix el.gtrs arr 1+2.wav,Electric Guitar, +1,mix el.gtrs arp.wav,Electric Guitar, +1,mix el.gtrs 6+7+8+10.wav,Electric Guitar, +1,mix el.gtrs 3+4.wav,Electric Guitar, +1,mix el.gtrs (palm mute).wav,Electric Guitar, +1,mix el.gtr.wav,Electric Guitar, +1,mix el.gtr main 1+2+3+4+5.wav,Electric Guitar, +1,mix el.gtr fx.wav,Electric Guitar, +1,mix el.gtr fx 5+6.wav,Electric Guitar, +1,mix el.gtr arr 4+5.wav,Electric Guitar, +1,mix el.gtr arr (slide).wav,Electric Guitar, +1,mix el.gtr 7+8 (high).wav,Electric Guitar, +1,mix el.gtr 5+6+9+10 (low).wav,Electric Guitar, +1,mix el.gtr 3+4 (high).wav,Electric Guitar, +1,mix el.gtr 1+arr.wav,Electric Guitar, +1,mix el.gtr 1+2+3 (main).wav,Electric Guitar, +1,mix el.gtr 1+2 (low).wav,Electric Guitar, +1,mix el.gtr (tremolo).wav,Electric Guitar, +1,mix el.gtr (fx).wav,Electric Guitar, +1,mix el.drums1+2.wav,Other, +1,mix el piano+el piano outro.wav,Other, +1,mix eguitar2r+3r+4r.wav,Electric Guitar, +1,mix eguitar solo1+2+3.wav,Electric Guitar, +1,mix eguitar 2l+3l.wav,Electric Guitar, +1,mix eguit3+4.wav,Electric Guitar, +1,mix eguit1+2+5.wav,Electric Guitar, +1,mix eguit solo+3.wav,Electric Guitar, +1,mix eguit clean+fx guitar.wav,Electric Guitar, +1,mix eguit clean 1+2+3+4+5+6+7.wav,Electric Guitar, +1,mix eguit 6+7+11+12+14+15.wav,Electric Guitar, +1,mix eguit 4+5+8+13.wav,Electric Guitar, +1,mix eguit 1+2.wav,Electric Guitar, +1,mix eguit 1+2+9+10.wav,Electric Guitar, +1,mix eguit 1+2+3+4+5.wav,Electric Guitar, +1,mix egl1+l2.wav,Electric Guitar, +1,mix egchorus+crunch.wav,Electric Guitar, +1,mix eg_muted.wav,Electric Guitar, +1,mix eg9+10+11+12.wav,Electric Guitar, +1,mix eg8+9.wav,Electric Guitar, +1,mix eg8+9+10+11+12.wav,Electric Guitar, +1,mix eg6+7+8.wav,Electric Guitar, +1,mix eg6+4r.wav,Electric Guitar, +1,mix eg5+dist.wav,Electric Guitar, +1,mix eg5+7.wav,Electric Guitar, +1,mix eg4+7.wav,Electric Guitar, +1,mix eg4+6.wav,Electric Guitar, +1,mix eg4+5.wav,Electric Guitar, +1,mix eg4+5+6.wav,Electric Guitar, +1,mix eg3+ac gtr.wav,Electric Guitar, +1,mix eg3+5+7.wav,Electric Guitar, +1,mix eg3+4.wav,Electric Guitar, +1,mix eg2+3+8.wav,Electric Guitar, +1,mix eg1+8.wav,Electric Guitar, +1,mix eg1+7.wav,Electric Guitar, +1,mix eg1+5.wav,Electric Guitar, +1,mix eg1+3.wav,Electric Guitar, +1,mix eg1+2.wav,Electric Guitar, +1,mix eg1+2+synth guitar1.wav,Electric Guitar, +1,mix eg1+2+7.wav,Electric Guitar, +1,mix eg1+2+3+6.wav,Electric Guitar, +1,mix eg tremolo 5+6.wav,Electric Guitar, +1,mix eg tremolo 4+7.wav,Electric Guitar, +1,mix eg tremolo 1+2.wav,Electric Guitar, +1,mix eg trem+clean l +clean adds 3.wav,Electric Guitar, +1,mix eg solo+break.wav,Electric Guitar, +1,mix eg solo 2 + fx.wav,Electric Guitar, +1,mix eg riff+tonic.wav,Electric Guitar, +1,mix eg rhythm+3.wav,Electric Guitar, +1,mix eg r1+r2.wav,Electric Guitar, +1,mix eg pwr chords+eg end.wav,Electric Guitar, +1,mix eg lead1+2+rhythmic1+2+5+6.wav,Electric Guitar, +1,mix eg lead+eg 2.wav,Electric Guitar, +1,mix eg lead l+r.wav,Electric Guitar, +1,mix eg ldel+harmo.wav,Electric Guitar, +1,mix eg l+r+crucnh+rcrunch.wav,Electric Guitar, +1,mix eg l+r+arr.wav,Electric Guitar, +1,mix eg intro + solo + dist 2.wav,Electric Guitar, +1,mix eg disto l+r.wav,Electric Guitar, +1,mix eg dist9+10+11.wav,Electric Guitar, +1,mix eg dist 6+7+8.wav,Electric Guitar, +1,mix eg dist 2+5.wav,Electric Guitar, +1,mix eg dist 1+4+6.wav,Electric Guitar, +1,mix eg dist 1+2+3.wav,Electric Guitar, +1,mix eg clean2+3.wav,Electric Guitar, +1,mix eg clean.wav,Electric Guitar, +1,mix eg clean+tremolo+lead.wav,Electric Guitar, +1,mix eg clean 4+5+6.wav,Electric Guitar, +1,mix eg clean 2+3.wav,Electric Guitar, +1,mix eg chords+support for chorus.wav,Electric Guitar, +1,mix eg b2+c2.wav,Electric Guitar, +1,mix eg arrl+r.wav,Electric Guitar, +1,mix eg arr r 2+3.wav,Electric Guitar, +1,mix eg adds 1+2.wav,Electric Guitar, +1,mix eg a+c1+d.wav,Electric Guitar, +1,mix eg 6+7.wav,Electric Guitar, +1,mix eg 6 + 7 (fx).wav,Electric Guitar, +1,mix eg 5+7.wav,Electric Guitar, +1,mix eg 4+6.wav,Electric Guitar, +1,mix eg 2+3.wav,Electric Guitar, +1,mix eg 1+7.wav,Electric Guitar, +1,mix eg 1 + 8.wav,Electric Guitar, +1,mix eg 1 + 2.wav,Electric Guitar, +1,mix e.gtrs.wav,Electric Guitar, +1,mix e.gtr disto 1+2.wav,Electric Guitar, +1,mix e piano 1+2.wav,Other, +1,mix e guitar 3+4l.wav,Electric Guitar, +1,mix dulcimmer+mallet+bells.wav,Other, +1,mix drumss&fx.wav,Drums, +1,mix drums+ssfx.wav,Drums, +1,mix drums+percs.wav,Drums, +1,mix drums+percs+fx.wav,Drums, +1,mix drums+perc.wav,Drums, +1,mix drums+noise.wav,Drums, +1,mix drums+electronic drums.wav,Drums, +1,mix drums+drums outro.wav,Drums, +1,mix drums+claps.wav,Drums, +1,mix drums&shaker.wav,Drums, +1,mix drums + handclaps.wav,Drums, +1,mix drumkit & percs.wav,Drums, +1,mix dobros.wav,Dobro, +1,mix dobro 1+2.wav,Dobro, +1,mix distos egs.wav,Other, +1,mix disto gtrs.wav,Other, +1,mix disto gtrs 1+2.wav,Other, +1,mix disto eg 5+6+13.wav,Other, +1,mix digitalpiano+fm piano.wav,Other, +1,mix cln+chorslide gtr.wav,Other, +1,mix clean2c+3c.wav,Other, +1,mix clean+l+r.wav,Other, +1,mix clean eg 4+7+11.wav,Other, +1,mix clean 3 + 4 + 5.wav,Other, +1,mix clean 1 + 2.wav,Other, +1,mix clean + harmonics.wav,Other, +1,mix claps.wav,Other, +1,mix center eg.wav,Other, +1,mix cellos.wav,Other, +1,mix cello+strings.wav,Other, +1,mix celesta+vibraphone.wav,Other, +1,mix bvtravis scott+future.wav,Other, +1,mix bv+ld5.wav,Other, +1,mix bv+crowd+adls.wav,Other, +1,mix bv+bv2.wav,Other, +1,mix bv+bv fx.wav,Other, +1,mix bv+adelibs.wav,Other, +1,mix bv+addliibs.wav,Other, +1,mix bv males.wav,Other, +1,mix bv glorilla+bv megan thee stallion.wav,Other, +1,mix bv females.wav,Other, +1,mix bv female + vox pitch.wav,Other, +1,mix brvst+sax+tpt.wav,Other, +1,mix brass+trumpet.wav,Other, +1,mix brass+synth1.wav,Other, +1,mix brass+strings.wav,Other, +1,mix brass+pad+organ.wav,Other, +1,mix brass+flute.wav,Other, +1,mix bips + dist ok.wav,Other, +1,mix bells+synths.wav,Other, +1,mix bells+pluck synths+seq synths 1.wav,Other, +1,mix bass_synth 1+2.wav,Other, +1,mix bass1+2.wav,Other, +1,mix bass+synthbass.wav,Other, +1,mix bass+seq synths 2.wav,Other, +1,mix bass 1+2.wav,Other, +1,mix banjos.wav,Other, +1,mix banjo+r+mandolin+l.wav,Other, +1,mix banjo 1+2.wav,Other, +1,mix arr ags.wav,Other, +1,mix arp1+2.wav,Other, +1,mix arp synths.wav,Other, +1,mix arp synth1+2.wav,Other, +1,mix arp left eg.wav,Other, +1,mix all keyx.wav,Other, +1,mix all bv.wav,Other, +1,mix agl+r+larr.wav,Acoustic Guitar, +1,mix agl+ag2.wav,Acoustic Guitar, +1,mix ag4+5+12.wav,Acoustic Guitar, +1,mix ag3+4.wav,Acoustic Guitar, +1,mix ag2+3.wav,Acoustic Guitar, +1,mix ag1+2+3+4.wav,Acoustic Guitar, +1,mix ag+ag perc.wav,Acoustic Guitar, +1,mix ag steel 1+2.wav,Acoustic Guitar, +1,mix ag rhythmic1+2+3+4.wav,Acoustic Guitar, +1,mix ag 3+4.wav,Acoustic Guitar, +1,mix ag 1+4.wav,Acoustic Guitar, +1,mix ag 1+2.wav,Acoustic Guitar, +1,mix ag 1+2+3+4.wav,Acoustic Guitar, +1,mix acgtrs.wav,Acoustic Guitar, +1,mix acgtrs arp.wav,Acoustic Guitar, +1,mix accordeon 1+2+3.wav,Other, +1,mix acc gtrs.wav,Acoustic Guitar, +1,mix ac.gtrs arr.wav,Acoustic Guitar, +1,mix ac.gtrs 1+2.wav,Acoustic Guitar, +1,mix ac.gtrs 1+2+3+nylon.wav,Acoustic Guitar, +1,mix ac.gtr main+lead.wav,Acoustic Guitar, +1,mix ac.gtr arr l+r.wav,Acoustic Guitar, +1,mix ac l + r2.wav,Acoustic Guitar, +1,mix ac gtrs.wav,Acoustic Guitar, +1,mix ac gtr1+2.wav,Acoustic Guitar, +1,mix ac gtr 1+3.wav,Acoustic Guitar, +1,mix a.gtr left+right.wav,Acoustic Guitar, +1,mix a l+r.wav,Acoustic Guitar, +1,miucha.wav,Other, +1,misc synths.wav,Other, +1,misc keys.wav,Other, +1,mini.wav,Other, +1,mike.wav,Other, +1,mike trotter.wav,Other, +1,mike jones.wav,Other, +1,miguel-adlib.wav,Other, +1,mieyion.wav,Other, +1,midistrings.wav,Other, +1,middleeightsynth.wav,Other, +1,middle.wav,Other, +1,middle mix.wav,Other, +1,mick jagger.wav,Other, +1,michael trotter jr.wav,Other, +1,michael bivins.wav,Other, +1,miami lead.wav,Other, +1,metals.wav,Other, +1,metal piano.wav,Other, +1,merle haggard.wav,Other, +1,melody synth choruses + synth arp.wav,Other, +1,melodicperc.wav,Other, +1,melodic synth.wav,Other, +1,melo synth + synth.wav,Other, +1,mellotronstrings.wav,Other, +1,mellotrons+flute.wav,Other, +1,mellotronflutes.wav,Other, +1,mellotroncellos.wav,Other, +1,mellotronbrass.wav,Other, +1,mellotron+theremin.wav,Other, +1,mellotron violin violinfx.wav,Other, +1,mellotron strings 1234.wav,Other, +1,mellotron choir.wav,Other, +1,mellotron basoon.wav,Other, +1,mellotron 1 + 2 + strings.wav,Other, +1,mello synths.wav,Other, +1,melllotron.wav,Other, +1,melle mel.wav,Other, +1,megasynth.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox synth vocals.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox perc.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 5.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 4.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 3.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 2.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 1.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox e bass.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox drum.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox bv.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox bass.wav,Other, +1,megafat.wav,Other, +1,meek mill.wav,Other, +1,mc ren.wav,Other, +1,mc eiht.wav,Other, +1,mc bin laden.wav,Other, +1,matt.wav,Other, +1,matt sallee.wav,Other, +1,master gee.wav,Other, +1,mary lambert.wav,Other, +1,mary j blige.wav,Other, +1,marshmello.wav,Other, +1,maroon 5.wav,Other, +1,marina and the diamonds.wav,Other, +1,marina and the diamonds-adlib.wav,Other, +1,marianne lee stitt.wav,Other, +1,maria brink.wav,Other, +1,marca.wav,Other, +1,marc costanzo.wav,Other, +1,maracas.wav,Other, +1,mandoline 2 right.wav,Mandolin, +1,mandoline 1 left.wav,Mandolin, +1,mandolinas.wav,Mandolin, +1,mandolina-.wav,Mandolin, +1,mandolin_l.wav,Mandolin, +1,mandolin solo.wav,Mandolin, +1,mandolin 3.wav,Mandolin, +1,mandolin 2 right.wav,Mandolin, +1,mandolin 1.wav,Mandolin, +1,mandolin 1 left.wav,Mandolin, +1,mando 2 left.wav,Mandolin, +1,mando 1.wav,Mandolin, +1,malletsynth.wav,Other, +1,mallet synth.wav,Other, +1,male_bv.wav,Other, +1,male-bv.wav,Other, +1,male vocal.wav,Other, +1,male bv.wav,Other, +1,mako.wav,Other, +1,maindrums.wav,Other, +1,main_synth_12.wav,Other, +1,main synths.wav,Other, +1,main pad.wav,Other, +1,main organ.wav,Other, +1,main guits.wav,Other, +1,main guitar.wav,Other, +1,madonna.wav,Other, +1,madison beer.wav,Other, +1,mad.wav,Other, +1,mackenzie porter.wav,Other, +1,mack 10.wav,Other, +1,m1 piano.wav,Other, +1,m. shadows.wav,Other, +1,lyle lovett.wav,Other, +1,lvox.wav,Voice,Lead +1,lvdbl.wav,Voice,Lead +1,lv_rap.wav,Voice,Lead +1,lv_ok.wav,Voice,Lead +1,lv_chester.wav,Voice,Lead +1,lv12.wav,Voice,Lead +1,lv1+2.wav,Voice,Lead +1,lv-rap.wav,Voice,Lead +1,lv-fem.wav,Voice,Lead +1,lv-ad-lib.wav,Voice,Lead +1,lv-2.wav,Voice,Lead +1,lv-1.wav,Voice,Lead +1,lv-01.wav,Voice,Lead +1,lv vocoder.wav,Voice,Lead +1,lv soulja boy.wav,Voice,Lead +1,lv sexyy red.wav,Voice,Lead +1,lv scream.wav,Voice,Lead +1,lv sanz.wav,Voice,Lead +1,lv russ.wav,Voice,Lead +1,lv nas.wav,Voice,Lead +1,lv m.wav,Voice,Lead +1,lv latto.wav,Voice,Lead +1,lv ice spice.wav,Voice,Lead +1,lv glass animals.wav,Voice,Lead +1,lv future.wav,Voice,Lead +1,lv fixed.wav,Voice,Lead +1,lv duplicate.wav,Voice,Lead +1,lv double and adds.wav,Voice,Lead +1,lv dlay.wav,Voice,Lead +1,lv clean.wav,Voice,Lead +1,lv choir gangsta gangsta.wav,Voice,Lead +1,lv and lv2.wav,Voice,Lead +1,lv and ld scream.wav,Voice,Lead +1,lv and double and adds.wav,Voice,Lead +1,lv and adds and double.wav,Voice,Lead +1,lv african.wav,Voice,Lead +1,lv add.wav,Voice,Lead +1,lv ad-lib.wav,Voice,Lead +1,lv 1+2.wav,Voice,Lead +1,lv + db.wav,Voice,Lead +1,lv + ad lib.wav,Voice,Lead +1,luther vandross.wav,Other, +1,lupe fiasco.wav,Other, +1,luis fonsi.wav,Other, +1,ludacris ad libs.wav,Other, +1,lu kala.wav,Other, +1,lowsynth.wav,Other, +1,lowpads softpads pads sublow synthfx.wav,Other, +1,lowfat pad choir diva.wav,Other, +1,low synth.wav,Other, +1,low synth+2+3+4+5+6.wav,Other, +1,love will find a way yes string section.wav,Other, +1,love will find a way yes perc.wav,Other, +1,love will find a way yes harmonica.wav,Other, +1,love will find a way yes e guitar rhythm.wav,Other, +1,love will find a way yes e guitar lead.wav,Other, +1,love will find a way yes drums.wav,Other, +1,love will find a way yes bv.wav,Other, +1,love will find a way yes bass.wav,Other, +1,lost frequencies.wav,Other, +1,loretta lynn.wav,Other, +1,lord infamous.wav,Other, +1,lord huron.wav,Other, +1,loop2.wav,Other, +1,loop1.wav,Other, +1,loop vocal.wav,Other, +1,loop mellotron.wav,Other, +1,loop intro.wav,Other, +1,loop filters.wav,Other, +1,loop + percu.wav,Other, +1,logic-adlib.wav,Other, +1,lofivinyl_1.wav,Other, +1,lloyd banks.wav,Other, +1,ll cool j-adlib.wav,Other, +1,lisa lopes.wav,Other, +1,lisa hannigan.wav,Other, +1,lisa coleman.wav,Other, +1,linda ronstadt.wav,Other, +1,limp bizkit faith lv.wav,Other, +1,limp bizkit faith guitar 5.wav,Other, +1,limp bizkit faith guitar 4.wav,Other, +1,limp bizkit faith guitar 3.wav,Other, +1,limp bizkit faith guitar 2.wav,Other, +1,limp bizkit faith guitar 1.wav,Other, +1,limp bizkit faith fx scratch.wav,Other, +1,limp bizkit faith drum.wav,Other, +1,limp bizkit faith bass.wav,Other, +1,lily allen.wav,Other, +1,lil wyte.wav,Other, +1,lil will.wav,Other, +1,lil uzi vert.wav,Other, +1,lil troy.wav,Other, +1,lil romeo.wav,Other, +1,lil peep-adlib.wav,Other, +1,lil mo.wav,Other, +1,lil cease.wav,Other, +1,like piano.wav,Other, +1,like marimba 2.wav,Other, +1,like marimba 1.wav,Other, +1,like harp.wav,Other, +1,liam payne.wav,Other, +1,liam payne-adlib.wav,Other, +1,li saumet.wav,Other, +1,letfgtr 1.wav,Other, +1,let piano.wav,Other, +1,let perc.wav,Other, +1,let organ.wav,Other, +1,let organ lead.wav,Other, +1,let ld.wav,Other, +1,let e guitar lead.wav,Other, +1,let drums.wav,Other, +1,let bv.wav,Other, +1,let bass.wav,Other, +1,leshaun.wav,Other, +1,leshaun-adlib.wav,Other, +1,les claypool.wav,Other, +1,leon bridges.wav,Other, +1,lennox.wav,Other, +1,lennon stella.wav,Other, +1,leigh-anne pinnock.wav,Other, +1,leftorgan 1.wav,Other, +1,leftguitar 2.wav,Other, +1,leftgtr 8.wav,Other, +1,left_gtr 5.wav,Other, +1,left_gtr 1.wav,Other, +1,left6gtr 3.wav,Other, +1,left tremolo eg.wav,Other, +1,left theme ag.wav,Other, +1,left synthbrass.wav,Other, +1,left solo classic guitar.wav,Other, +1,left overdrive eg.wav,Other, +1,left mandolin 1.wav,Other, +1,left mandolin 1+2 mix.wav,Other, +1,left mando 1.wav,Other, +1,left guitar electro 1.wav,Other, +1,left guitar acoustic 1.wav,Other, +1,left guitar 1.wav,Other, +1,left gtr.wav,Other, +1,left gtr-arp.wav,Other, +1,left gtr 4.wav,Other, +1,left gtr 1+4 mix.wav,Other, +1,left gtr 2.wav,Other, +1,left eye.wav,Other, +1,left el piano 1.wav,Other, +1,left el gtr 2.wav,Other, +1,left eguit 2.wav,Other, +1,left eg1+2.wav,Other, +1,left eg 6.wav,Other, +1,left eg 1.wav,Other, +1,left crunch rhythmic eg.wav,Other, +1,left chorus eg.wav,Other, +1,left arr eg.wav,Other, +1,lee brice.wav,Other, +1,leadvocal.wav,Other, +1,leadorgan.wav,Other, +1,leadgt left.wav,Other, +1,leadgt 2 right.wav,Other, +1,leadgt 2 left.wav,Other, +1,lead_vocals-adlib.wav,Other, +1,lead_synth_2.wav,Other, +1,lead_solo.wav,Other, +1,lead_orig.wav,Other, +1,lead_melody.wav,Other, +1,lead_electric_guitar.wav,Other, +1,lead234 and bells.wav,Other, +1,lead.2.wav,Other, +1,lead-adlib.wav,Other, +1,lead(square).wav,Other, +1,lead(chiff).wav,Other, +1,lead vox-1.wav,Other, +1,lead vox only.wav,Other, +1,lead vox 1 rap.wav,Other, +1,lead vocal2 ad lib.wav,Other, +1,lead vocal-adlib.wav,Other, +1,lead vocal male.wav,Other, +1,lead vocal female.wav,Other, +1,lead vocal 3.wav,Other, +1,lead vocal 2.wav,Other, +1,lead vocal 2 ad libs.wav,Other, +1,lead vocal 12.wav,Other, +1,lead v ox.wav,Other, +1,lead theme.wav,Other, +1,lead synth filter.wav,Other, +1,lead synth 2.wav,Other, +1,lead synth 1.wav,Other, +1,lead sax.wav,Other, +1,lead reso.wav,Other, +1,lead overlap.wav,Other, +1,lead mid.wav,Other, +1,lead low.wav,Other, +1,lead high.wav,Other, +1,lead gyui.wav,Other, +1,lead guitar r.wav,Other, +1,lead guitar pixies style.wav,Other, +1,lead guitar l.wav,Other, +1,lead gtrs.wav,Other, +1,lead gtr+synth.wav,Other, +1,lead gtr (third).wav,Other, +1,lead electric guitar.wav,Other, +1,lead and rap.wav,Other, +1,lead acoustic guitar.wav,Other, +1,lead 1.wav,Other, +1,ldsynth.wav,Other, +1,ldmale.wav,Other, +1,ldgtrr.wav,Other, +1,ldgauch.wav,Other, +1,ldfemale.wav,Other, +1,lddoite.wav,Other, +1,ldacgtr.wav,Other, +1,ld12-adlib.wav,Voice,Lead +1,ld.wav.wav,Voice,Lead +1,ld-rp.wav,Voice,Lead +1,ld-rihanna.wav,Voice,Lead +1,ld-rap.wav,Voice,Lead +1,ld-joao gilberto.wav,Voice,Lead +1,ld-j. cole.wav,Voice,Lead +1,ld-drake.wav,Voice,Lead +1,ld-astrud gilberto.wav,Voice,Lead +1,ld-ad.wav,Voice,Lead +1,ld-ad-lib.wav,Voice,Lead +1,ld-1.wav.wav,Voice,Lead +1,ld-01.wav,Voice,Lead +1,ld+double.wav,Voice,Lead +1,ld+adds.wav,Voice,Lead +1,ld voc 4.wav,Voice,Lead +1,ld v2.wav,Voice,Lead +1,ld tyler the creator.wav,Voice,Lead +1,ld third.wav,Voice,Lead +1,ld talk.wav,Voice,Lead +1,ld root.wav,Voice,Lead +1,ld masc.wav,Voice,Lead +1,ld kehlani 2.wav,Voice,Lead +1,ld jerry.wav,Voice,Lead +1,ld fixed.wav,Voice,Lead +1,ld fe.wav,Voice,Lead +1,ld double.wav,Voice,Lead +1,ld double adds.wav,Voice,Lead +1,ld cardi b.wav,Voice,Lead +1,ld and dv.wav,Voice,Lead +1,ld and double and adds.wav,Voice,Lead +1,ld and bv2mix.wav,Voice,Lead +1,ld addlib.wav,Voice,Lead +1,ld ad libs.wav,Voice,Lead +1,ld 1234.wav,Voice,Lead +1,ld 123 and adds.wav,Voice,Lead +1,ld 1-adlib.wav,Voice,Lead +1,ld 1 + 2.wav,Voice,Lead +1,ld + adds.wav,Voice,Lead +1,layzie.wav,Other, +1,layer sine pad.wav,Other, +1,lauryn hill.wav,Other, +1,lauren alaina.wav,Other, +1,lauren alaina-adlib.wav,Other, +1,latto_ad.wav,Other, +1,laser.wav,Other, +1,lapsteelguitar.wav,Electric Guitar,Lap Steel +1,laps steel guitar.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar_right.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar_left.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar.wav,Electric Guitar,Lap Steel +1,lap steele.wav,Electric Guitar,Lap Steel +1,lap steel guitar-noisegate.wav,Electric Guitar,Lap Steel +1,lap steel 1 + 2.wav,Electric Guitar,Lap Steel +1,lap steel 01.wav,Electric Guitar,Lap Steel +1,lany.wav,Other, +1,lana del rey.wav,Other, +1,lainey wilson.wav,Other, +1,la india.wav,Other, +1,l.wav,Other, +1,l+r.wav,Other, +1,l+r electric solo guit.wav,Other, +1,kylie minogue.wav,Other, +1,kyla.wav,Other, +1,ktlyn.wav,Other, +1,kristie.wav,Other, +1,krayzie.wav,Other, +1,kora arr.wav,Other, +1,koko taylor.wav,Other, +1,kodak black.wav,Other, +1,kirstie.wav,Other, +1,kim chae-won.wav,Other, +1,kiko el crazy.wav,Other, +1,kidd kidd.wav,Other, +1,kid laroi.wav,Other, +1,kid ink.wav,Other, +1,kick drum.wav,Other, +1,khocks.wav,Other, +1,kg.wav,Other, +1,keysrhodes.wav,Other, +1,keyshia cole.wav,Other, +1,keyshia cole-adlib.wav,Other, +1,keys_1.wav,Keyboard,Synth +1,keys+pluck.wav,Keyboard,Synth +1,keys warm.wav,Keyboard,Synth +1,keys strings.wav,Keyboard,Synth +1,keys mixmaster.wav,Keyboard,Synth +1,keys fx mixmaster.wav,Keyboard,Synth +1,keys bells.wav,Keyboard,Synth +1,keys arr.wav,Keyboard,Synth +1,keys arp.wav,Keyboard,Synth +1,keys + synth.wav,Keyboard,Synth +1,keyrhodes _02.wav,Keyboard,Synth +1,keyboard synths.wav,Keyboard,Synth +1,key_synth_1+2.wav,Keyboard,Synth +1,key_bass.wav,Keyboard,Synth +1,key3.wav,Keyboard,Synth +1,key2.wav,Keyboard,Synth +1,key1.wav,Keyboard,Synth +1,key-sample.wav,Keyboard,Synth +1,key+countin.wav,Keyboard,Synth +1,key synth 1.wav,Keyboard,Synth +1,key reference.wav,Keyboard,Synth +1,key melo.wav,Keyboard,Synth +1,key lead.wav,Keyboard,Synth +1,key harmonics.wav,Keyboard,Synth +1,key harmonics 2.wav,Keyboard,Synth +1,key delay.wav,Keyboard,Synth +1,key 3 organ.wav,Keyboard,Synth +1,key 2 bells.wav,Keyboard,Synth +1,key 1.wav,Keyboard,Synth +1,key 1 pads.wav,Keyboard,Synth +1,kevin ratajczak.wav,Other, +1,kerys.wav,Other, +1,kenny rogers.wav,Other, +1,kenny chesney.wav,Other, +1,kelly rowland-adlib.wav,Other, +1,keisha.wav,Other, +1,kehlani.wav,Other, +1,kazuha.wav,Other, +1,kazoo.wav,Other, +1,katy perry.wav,Other, +1,kate bush.wav,Other, +1,kastro.wav,Other, +1,kanye west bv.wav,Other, +1,kaine.wav,Other, +1,kadafi.wav,Other, +1,kacey musgraves.wav,Other, +1,k.wav,Other, +1,k-ci.wav,Other, +1,k naan.wav,Other, +1,justin timberlake-adlib.wav,Other, +1,justin bieber-adlib.wav,Other, +1,just be held casting crowns strings section.wav,Other, +1,just be held casting crowns sonar fx.wav,Other, +1,just be held casting crowns piano.wav,Other, +1,just be held casting crowns pad.wav,Other, +1,just be held casting crowns e guitar 3.wav,Other, +1,just be held casting crowns e guitar 2.wav,Other, +1,just be held casting crowns e guitar 1.wav,Other, +1,just be held casting crowns drums.wav,Other, +1,just be held casting crowns bv.wav,Other, +1,just be held casting crowns bass.wav,Other, +1,juno60.wav,Other, +1,juno-ep.wav,Other, +1,junior.wav,Other, +1,julio iglesias.wav,Other, +1,julio alberto fernandez.wav,Other, +1,juliette commagere.wav,Other, +1,julieta venegas.wav,Other, +1,juliet simms.wav,Other, +1,julia michaels-adlib.wav,Other, +1,juicy j.wav,Other, +1,jp8 unison saw.wav,Other, +1,jp8 squarehaed.wav,Other, +1,jp cooper.wav,Other, +1,jowel.wav,Other, +1,journey escape lv.wav,Other, +1,journey escape bv.wav,Other, +1,joss stone.wav,Other, +1,joss stone-adlib.wav,Other, +1,joseph simmons.wav,Other, +1,jordin sparks.wav,Other, +1,jon pardi.wav,Other, +1,jojo.wav,Other, +1,johnny cash.wav,Other, +1,johnny blue skies.wav,Other, +1,john.wav,Other, +1,john ryan.wav,Other, +1,john prine.wav,Other, +1,john mayer.wav,Other, +1,john legend-adlib.wav,Other, +1,john legend conversations in the dark strings.wav,Other, +1,john legend conversations in the dark piano.wav,Other, +1,john legend conversations in the dark organ.wav,Other, +1,john legend conversations in the dark guitar 3.wav,Other, +1,john legend conversations in the dark guitar 2.wav,Other, +1,john legend conversations in the dark guitar 1.wav,Other, +1,john legend conversations in the dark drum perc.wav,Other, +1,john legend conversations in the dark bv.wav,Other, +1,john legend conversations in the dark bass.wav,Other, +1,john legend conversations in the dark bass synth.wav,Other, +1,john legend conversations in the dark acc guitar.wav,Other, +1,john crawford.wav,Other, +1,johan olsen.wav,Other, +1,joe perc.wav,Other, +1,joe organ.wav,Other, +1,joe lv.wav,Other, +1,joe jonas.wav,Other, +1,joe guitar 4.wav,Other, +1,joe guitar 3.wav,Other, +1,joe guitar 2.wav,Other, +1,joe guitar 1.wav,Other, +1,joe drum.wav,Other, +1,joe bv.wav,Other, +1,joe bonamassa give me one reason wurlitzer.wav,Other, +1,joe bonamassa give me one reason organ.wav,Other, +1,joe bonamassa give me one reason guitar 3.wav,Other, +1,joe bonamassa give me one reason guitar 2.wav,Other, +1,joe bonamassa give me one reason guitar 1.wav,Other, +1,joe bonamassa give me one reason drum.wav,Other, +1,joe bonamassa give me one reason bass.wav,Other, +1,joe bass.wav,Other, +1,joe acc guitar.wav,Other, +1,joe acc guitar perc.wav,Other, +1,jin.wav,Other, +1,jimin.wav,Other, +1,jhene aiko.wav,Other, +1,jhay cortez.wav,Other, +1,jewell.wav,Other, +1,jessy wilson.wav,Other, +1,jessica domingo.wav,Other, +1,jess glynne.wav,Other, +1,jermaine dupri.wav,Other, +1,jennifer lopez-adlib.wav,Other, +1,jennifer hudson.wav,Other, +1,jelly roll.wav,Other, +1,jc chasez.wav,Other, +1,jb.wav,Other, +1,jazze pha.wav,Other, +1,jazze pha-adlib.wav,Other, +1,jazz bass.wav,Other, +1,jazmine sullivan.wav,Other, +1,jay-z part ii on the run synth 5.wav,Other, +1,jay-z part ii on the run synth 2.wav,Other, +1,jay-z part ii on the run synth 1.wav,Other, +1,jay-z part ii on the run piano.wav,Other, +1,jay-z part ii on the run perc.wav,Other, +1,jay-z part ii on the run flute.wav,Other, +1,jay-z part ii on the run drum.wav,Other, +1,jay-z part ii on the run bv.wav,Other, +1,jay-z part ii on the run bass.wav,Other, +1,jay tee.wav,Other, +1,jay rock.wav,Other, +1,jawharp.wav,Other, +1,jaw_harp.wav,Other, +1,jason derulo-adlib.wav,Other, +1,jasmine veillette.wav,Other, +1,janet jackson.wav,Other, +1,janelle monae.wav,Other, +1,jamie foxx.wav,Other, +1,jake scott.wav,Other, +1,jade thirlwall.wav,Other, +1,jade macrae.wav,Other, +1,jack harlow-adlib.wav,Other, +1,j.wav,Other, +1,j.i.d.wav,Other, +1,j-dog.wav,Other, +1,irish whstle.wav,Other, +1,iris dement.wav,Other, +1,iolins.wav,Other, +1,intropiano.wav,Other, +1,introkeys.wav,Other, +1,introgtr.wav,Other, +1,introfx.wav,Other, +1,introfx sub synth pluck strings.wav,Other, +1,intro-beat.wav,Other, +1,intro(click).wav,Other, +1,intro synth 01.wav,Other, +1,intro sample.wav,Other, +1,intro piano.wav,Other, +1,intro pad synth1 synthchoir.wav,Other, +1,intro keys.wav,Other, +1,intro eg.wav,Other, +1,intro count.wav,Other, +1,intro bass.wav,Other, +1,intro arp.wav,Other, +1,intro ag.wav,Other, +1,indrusrialfx.wav,Other, +1,india arie.wav,Other, +1,in this moment black wedding synth bass 2.wav,Other, +1,in this moment black wedding synth bass 1.wav,Other, +1,in this moment black wedding synth 5.wav,Other, +1,in this moment black wedding synth 4.wav,Other, +1,in this moment black wedding synth 3.wav,Other, +1,in this moment black wedding piano.wav,Other, +1,in this moment black wedding perc fx.wav,Other, +1,in this moment black wedding guitar.wav,Other, +1,in this moment black wedding drum.wav,Other, +1,in this moment black wedding bv.wav,Other, +1,in this moment black wedding bass.wav,Other, +1,ilovemakonnen.wav,Other, +1,ighgtr 6.wav,Other, +1,ice spice-adlib.wav,Other, +1,iann dior.wav,Other, +1,i and love and you the avett brothers synthpad.wav,Other, +1,i and love and you the avett brothers strings section.wav,Other, +1,i and love and you the avett brothers piano.wav,Other, +1,i and love and you the avett brothers perc.wav,Other, +1,i and love and you the avett brothers organ.wav,Other, +1,i and love and you the avett brothers ld.wav,Other, +1,i and love and you the avett brothers drums.wav,Other, +1,i and love and you the avett brothers bv.wav,Other, +1,i and love and you the avett brothers bass.wav,Other, +1,i and love and you (the avett brothers) padglass.wav,Other, +1,hyerin.wav,Other, +1,hyein.wav,Other, +1,hussein fatal.wav,Other, +1,huh yun-jin.wav,Other, +1,hozier.wav,Other, +1,howie dorough & nick carter.wav,Other, +1,horns+wind.wav,Other, +1,horns synth.wav,Other, +1,horns and fr horns.wav,Other, +1,horns 2.wav,Other, +1,horns 1.wav,Other, +1,horn-sample.wav,Other, +1,horn trombone strings.wav,Other, +1,horn section.wav,Other, +1,hopsin.wav,Other, +1,hooksynth.wav,Other, +1,hook n sling.wav,Other, +1,honky tonk piano.wav,Other, +1,hong eun-chae.wav,Other, +1,hold on yes synthvox.wav,Other, +1,hold on yes synthstrings.wav,Other, +1,hold on yes synthstrings 2.wav,Other, +1,hold on yes organ.wav,Other, +1,hold on yes e guitar lead.wav,Other, +1,hold on yes e guitar clean.wav,Other, +1,hold on yes e guitar 2.wav,Other, +1,hold on yes e guitar 1.wav,Other, +1,hold on yes drums.wav,Other, +1,hold on yes bv.wav,Other, +1,hold on yes bellkey.wav,Other, +1,hold on yes bass.wav,Other, +1,hittman.wav,Other, +1,hits+timpani.wav,Other, +1,hits orchestre.wav,Other, +1,hits orch.wav,Other, +1,hits 1.wav,Other, +1,hit synth.wav,Other, +1,hit orchestra.wav,Other, +1,hit fx.wav,Other, +1,hit 1.wav,Other, +1,hit 1 2.wav,Other, +1,highsynth.wav,Other, +1,high synth.wav,Other, +1,high pad.wav,Other, +1,hi synth.wav,Other, +1,hi q.wav,Other, +1,hi q beeps.wav,Other, +1,hh.wav,Other, +1,hh seq.wav,Other, +1,hey.wav,Other, +1,hey vox fx.wav,Other, +1,herbie hancock.wav,Other, +1,herb.wav,Other, +1,heavy guitar.wav,Other, +1,heartbeat.wav,Other, +1,harspichord.wav,Keyboard,Harpsichord +1,harsh_lead.wav,Other, +1,harpsychord.wav,Keyboard,Harpsichord +1,harpsicord_over_the_hills_and_far_away.wav,Keyboard,Harpsichord +1,harpsi.wav,Keyboard,Harpsichord +1,harpschicord.wav,Keyboard,Harpsichord +1,harps.wav,Other, +1,harpischord.wav,Keyboard,Harpsichord +1,harpis.wav,Keyboard,Harpsichord +1,harpi.wav,Keyboard,Harpsichord +1,harpe.wav,Other, +1,harp12.wav,Other, +1,harp+music box.wav,Other, +1,harp st.wav,Other, +1,harp 2.wav,Other, +1,harp 1.wav,Other, +1,harp + violin + strings staccato + strings.wav,Other, +1,harp + sitar.wav,Other, +1,harmony vocal.wav,Other, +1,harmony voc.wav,Other, +1,harmonio.wav,Other, +1,harmonika.wav,Other, +1,harmonies and adds.wav,Other, +1,harmonics eg.wav,Other, +1,harmonica-acordian.wav,Other, +1,harmon.wav,Other, +1,harm.wav,Other, +1,handclaps.wav,Other, +1,hand claps.wav,Other, +1,hammonds 1 and 2.wav,Keyboard,Hammond +1,hammond_organ_4.wav,Keyboard,Hammond +1,hammond_organ_3.wav,Keyboard,Hammond +1,hammond_organ_12.wav,Keyboard,Hammond +1,hammond_fuzz_organ.wav,Keyboard,Hammond +1,hammond+pad.wav,Keyboard,Hammond +1,hammond organ intro.wav,Keyboard,Hammond +1,hammond organ bass.wav,Keyboard,Hammond +1,hammond organ 2.wav,Keyboard,Hammond +1,hammond lead.wav,Keyboard,Hammond +1,hammond fx.wav,Keyboard,Hammond +1,hammond eg.wav,Keyboard,Hammond +1,hammond 12.wav,Keyboard,Hammond +1,hammond 1+2.wav,Keyboard,Hammond +1,hammond + bells.wav,Keyboard,Hammond +1,hammer.wav,Other, +1,hammd.wav,Other, +1,hamallet.wav,Other, +1,hall.wav,Other, +1,ha.wav,Other, +1,h.wav,Other, +1,h.e.r.-adlib.wav,Other, +1,h.a.w.k..wav,Other, +1,gza.wav,Other, +1,gutar 3.wav,Other, +1,gunshot.wav,Other, +1,gunna.wav,Other, +1,gun shots fx.wav,Other, +1,guitarsarr.wav,Electric Guitar, +1,guitars solo.wav,Electric Guitar, +1,guitars melodies.wav,Electric Guitar, +1,guitars fx.wav,Electric Guitar, +1,guitars clean.wav,Electric Guitar, +1,guitars 5 and 6 - distortion rhythm (stereo).wav,Electric Guitar, +1,guitars 2 3 and 4 - clean (stereo).wav,Electric Guitar, +1,guitarr.wav,Electric Guitar, +1,guitarperc.wav,Electric Guitar, +1,guitarlele 2.wav,Electric Guitar, +1,guitarlele 1.wav,Electric Guitar, +1,guitarleft2.wav,Electric Guitar, +1,guitarleft1.wav,Electric Guitar, +1,guitarleft.wav,Electric Guitar, +1,guitarl.wav,Electric Guitar, +1,guitarheavy.wav,Electric Guitar, +1,guitarfeedback.wav,Electric Guitar, +1,guitarenew.wav,Electric Guitar, +1,guitare_solo_the_cars_good_times_roll.wav,Electric Guitar, +1,guitare_solo_2_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_solo_1_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_electrique_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_acoustique_2 left.wav,Acoustic Guitar, +1,guitare_acoustique_1 intro.wav,Acoustic Guitar, +1,guitare_3_the_cars_good_times_roll.wav,Electric Guitar, +1,guitare_3_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_2_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_2.wav,Electric Guitar, +1,guitare_2 left.wav,Electric Guitar, +1,guitare_1_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_1.wav,Electric Guitar, +1,guitare_1 right.wav,Electric Guitar, +1,guitare.wav,Electric Guitar, +1,guitare-talkbox.wav,Electric Guitar, +1,guitare-jazz.wav,Electric Guitar, +1,guitare-fx.wav,Electric Guitar, +1,guitare solo.wav,Electric Guitar, +1,guitare distors.wav,Electric Guitar, +1,guitare 2.wav,Electric Guitar, +1,guitare 1.wav,Electric Guitar, +1,guitar_solo.wav,Electric Guitar, +1,guitar_rhytme.wav,Electric Guitar, +1,guitar_reverb.wav,Electric Guitar, +1,guitar_r.wav,Electric Guitar, +1,guitar_l.wav,Electric Guitar, +1,guitar_fx.wav,Electric Guitar, +1,guitar_dist.wav,Electric Guitar, +1,guitar_add.wav,Electric Guitar, +1,guitar_4.wav,Electric Guitar, +1,guitar_3 right.wav,Electric Guitar, +1,guitar_2 left.wav,Electric Guitar, +1,guitar_03.wav,Electric Guitar, +1,guitar_02.wav,Electric Guitar, +1,guitar_01.wav,Electric Guitar, +1,guitar5.wav,Electric Guitar, +1,guitar4.wav,Electric Guitar, +1,guitar4 tremolo.wav,Electric Guitar, +1,guitar2 muted left.wav,Electric Guitar, +1,guitar-tremolo.wav,Electric Guitar, +1,guitar-lead.wav,Electric Guitar, +1,guitar-fxed.wav,Electric Guitar, +1,guitar-fx.wav,Electric Guitar, +1,guitar-fuzz.wav,Electric Guitar, +1,guitar-electro.wav,Electric Guitar, +1,guitar-and-synth-reverse.wav,Electric Guitar, +1,guitar-4.wav,Electric Guitar, +1,guitar-1-2.wav,Electric Guitar, +1,guitar-1-1.wav,Electric Guitar, +1,guitar-1 muted.wav,Electric Guitar, +1,guitar synth.wav,Electric Guitar, +1,guitar sinth 12 intro.wav,Electric Guitar, +1,guitar right.wav,Electric Guitar, +1,guitar riff_ok.wav,Electric Guitar, +1,guitar riff arpeggios chord.wav,Electric Guitar, +1,guitar rhythm.wav,Electric Guitar, +1,guitar rhythm 2 disto.wav,Electric Guitar, +1,guitar rhythm 1 disto.wav,Electric Guitar, +1,guitar reverse.wav,Electric Guitar, +1,guitar plucked_ok.wav,Electric Guitar, +1,guitar pad.wav,Electric Guitar, +1,guitar melo.wav,Electric Guitar, +1,guitar melo 2.wav,Electric Guitar, +1,guitar hits.wav,Electric Guitar, +1,guitar hit_ok.wav,Electric Guitar, +1,guitar harmonic.wav,Electric Guitar, +1,guitar filter.wav,Electric Guitar, +1,guitar feedback.wav,Electric Guitar, +1,guitar ensemble.wav,Electric Guitar, +1,guitar ensemble - crunch.wav,Electric Guitar, +1,guitar electro 3.wav,Electric Guitar, +1,guitar electric.wav,Electric Guitar, +1,guitar ebow + noises.wav,Electric Guitar, +1,guitar dist.wav,Electric Guitar, +1,guitar arp.wav,Electric Guitar, +1,guitar adds.wav,Electric Guitar, +1,guitar acc.wav,Other, +1,guitar 7.wav,Electric Guitar, +1,guitar 6 end.wav,Electric Guitar, +1,guitar 5 theme.wav,Electric Guitar, +1,guitar 5 solo.wav,Electric Guitar, +1,guitar 5 right.wav,Electric Guitar, +1,guitar 5 left.wav,Electric Guitar, +1,guitar 4 plus.wav,Electric Guitar, +1,guitar 4 fx.wav,Electric Guitar, +1,guitar 3 solo.wav,Electric Guitar, +1,guitar 3 riff.wav,Electric Guitar, +1,guitar 3 r.wav,Electric Guitar, +1,guitar 3 fx.wav,Electric Guitar, +1,guitar 3 arr.wav,Electric Guitar, +1,guitar 2 l.wav,Electric Guitar, +1,guitar 2 intro.wav,Electric Guitar, +1,guitar 2 fuzz.wav,Electric Guitar, +1,guitar 2 end.wav,Electric Guitar, +1,guitar 2 disto.wav,Electric Guitar, +1,guitar 1 intro.wav,Electric Guitar, +1,guitar 1 fx.wav,Electric Guitar, +1,guitar 1 clean.wav,Electric Guitar, +1,guitar 1 - lead.wav,Electric Guitar, +1,guitar 1 + 3.wav,Electric Guitar, +1,guitar 02.wav,Electric Guitar, +1,guitar 01.wav,Electric Guitar, +1,guit_solo_2 left.wav,Electric Guitar, +1,guit_solo_1 right.wav,Electric Guitar, +1,guit_solo.wav,Electric Guitar, +1,guit_room.wav,Electric Guitar, +1,guit_3 4.wav,Electric Guitar, +1,guit_1 2.wav,Electric Guitar, +1,guit4gauch.wav,Electric Guitar, +1,guit sample.wav,Electric Guitar, +1,guit rhyhm rere.wav,Electric Guitar, +1,guit disto.wav,Electric Guitar, +1,guit disto l + r.wav,Electric Guitar, +1,guit delay + drone + solo.wav,Electric Guitar, +1,guit chorus ld + perc.wav,Electric Guitar, +1,guit arrgt.wav,Electric Guitar, +1,guit arrgt 2.wav,Electric Guitar, +1,guit 6 + 7.wav,Electric Guitar, +1,guit 3.wav,Electric Guitar, +1,guit 3 + 4.wav,Electric Guitar, +1,guit 245.wav,Electric Guitar, +1,guit 2 + 6 + 7.wav,Electric Guitar, +1,guit 2 + 3.wav,Electric Guitar, +1,guit 1 left.wav,Electric Guitar, +1,guit 1 + 2 +5.wav,Electric Guitar, +1,guit 1 + 2 + 3.wav,Electric Guitar, +1,guit + guit 3.wav,Electric Guitar, +1,guide_vocale.wav,Other, +1,guide_vocal_the_cars_good_times_roll.wav,Other, +1,guide_vocal_stone_temple_pilots_dead_and_bloated.wav,Other, +1,guide_vocal_over_the_hills_and_far_away.wav,Other, +1,guide_vocal.wav,Other, +1,guiar 1.wav,Other, +1,gtrwah.wav,Electric Guitar, +1,gtrstac.wav,Electric Guitar, +1,gtrsolo2.wav,Electric Guitar, +1,gtrslead.wav,Electric Guitar, +1,gtrsbridgeleft.wav,Electric Guitar, +1,gtrs-.wav,Electric Guitar, +1,gtrs ld.wav,Electric Guitar, +1,gtrs disto stereo.wav,Electric Guitar, +1,gtrs arr.wav,Electric Guitar, +1,gtrs 3.wav,Electric Guitar, +1,gtrs 1.wav,Electric Guitar, +1,gtrs 1 muted right.wav,Electric Guitar, +1,gtrrythm.wav,Electric Guitar, +1,gtrpluck.wav,Electric Guitar, +1,gtropen.wav,Electric Guitar, +1,gtrmix6&7.wav,Electric Guitar, +1,gtrmix5&8.wav,Electric Guitar, +1,gtrlead.wav,Electric Guitar, +1,gtrelec3.wav,Electric Guitar, +1,gtrelec2.wav,Electric Guitar, +1,gtrelec2 right.wav,Electric Guitar, +1,gtrelec1.wav,Electric Guitar, +1,gtrelec1 left.wav,Electric Guitar, +1,gtrdisto.wav,Electric Guitar, +1,gtrdist.wav,Electric Guitar, +1,gtrcrunch.wav,Electric Guitar, +1,gtrcln.wav,Electric Guitar, +1,gtrclean.wav,Electric Guitar, +1,gtrc.wav,Electric Guitar, +1,gtrbasedisto.wav,Electric Guitar, +1,gtrbase.wav,Electric Guitar, +1,gtrb.wav,Electric Guitar, +1,gtrarr.wav,Electric Guitar, +1,gtracousticopen.wav,Acoustic Guitar, +1,gtracousticarp.wav,Acoustic Guitar, +1,gtra.wav,Electric Guitar, +1,gtr_elec.wav,Electric Guitar, +1,gtr_arp.wav,Electric Guitar, +1,gtr_acst.wav,Electric Guitar, +1,gtr8.wav,Electric Guitar, +1,gtr7solo.wav,Electric Guitar, +1,gtr6triggered.wav,Electric Guitar, +1,gtr6solo.wav,Electric Guitar, +1,gtr5 right.wav,Electric Guitar, +1,gtr5 end.wav,Electric Guitar, +1,gtr4solointro.wav,Electric Guitar, +1,gtr4 right.wav,Electric Guitar, +1,gtr3 right.wav,Electric Guitar, +1,gtr3 harmo.wav,Electric Guitar, +1,gtr2right.wav,Electric Guitar, +1,gtr2hits2.wav,Electric Guitar, +1,gtr2disto.wav,Electric Guitar, +1,gtr2cleanright.wav,Electric Guitar, +1,gtr2+4.wav,Electric Guitar, +1,gtr2+3.wav,Electric Guitar, +1,gtr2 left.wav,Electric Guitar, +1,gtr2 clean right.wav,Electric Guitar, +1,gtr1center.wav,Electric Guitar, +1,gtr1ac.wav,Electric Guitar, +1,gtr1+2mix.wav,Electric Guitar, +1,gtr1+2.wav,Electric Guitar, +1,gtr1 right.wav,Electric Guitar, +1,gtr1 left.wav,Electric Guitar, +1,gtr1 clean left.wav,Electric Guitar, +1,gtr-staccatto.wav,Electric Guitar, +1,gtr-slide2.wav,Electric Guitar, +1,gtr-slide1.wav,Electric Guitar, +1,gtr-slide.wav,Electric Guitar, +1,gtr-rythm.wav,Electric Guitar, +1,gtr-rtm right.wav,Electric Guitar, +1,gtr-piano sample fx.wav,Electric Guitar, +1,gtr-melo.wav,Electric Guitar, +1,gtr-lick.wav,Electric Guitar, +1,gtr-lead1.wav,Electric Guitar, +1,gtr-lead.wav,Electric Guitar, +1,gtr-fuzzr.wav,Electric Guitar, +1,gtr-fuzzl.wav,Electric Guitar, +1,gtr-fuzzc.wav,Electric Guitar, +1,gtr-ebow.wav,Electric Guitar, +1,gtr-clean2.wav,Electric Guitar, +1,gtr-arp.wav,Electric Guitar, +1,gtr weird effects.wav,Electric Guitar, +1,gtr trem.wav,Electric Guitar, +1,gtr synth 3.wav,Electric Guitar, +1,gtr synth 1.wav,Electric Guitar, +1,gtr swell 12.wav,Electric Guitar, +1,gtr solo r ch.wav,Electric Guitar, +1,gtr solo part c.wav,Electric Guitar, +1,gtr solo l ch.wav,Electric Guitar, +1,gtr solo 5 (tierce).wav,Electric Guitar, +1,gtr rhythm.wav,Electric Guitar, +1,gtr rhyt.wav,Electric Guitar, +1,gtr rhy.wav,Electric Guitar, +1,gtr rhy 2 left.wav,Electric Guitar, +1,gtr rhy 1 right.wav,Electric Guitar, +1,gtr nylon.wav,Acoustic Guitar, +1,gtr nylon strum.wav,Acoustic Guitar, +1,gtr nylon ritmica.wav,Acoustic Guitar, +1,gtr nylon lead.wav,Acoustic Guitar, +1,gtr nylon arreglos.wav,Acoustic Guitar, +1,gtr muted.wav,Electric Guitar, +1,gtr mute.wav,Electric Guitar, +1,gtr mixmaster.wav,Electric Guitar, +1,gtr melody.wav,Electric Guitar, +1,gtr lead 4.wav,Electric Guitar, +1,gtr lead 3.wav,Electric Guitar, +1,gtr lead 2.wav,Electric Guitar, +1,gtr lead 1.wav,Electric Guitar, +1,gtr ld3.wav,Electric Guitar, +1,gtr ld2.wav,Electric Guitar, +1,gtr lap.wav,Electric Guitar, +1,gtr intro.wav,Electric Guitar, +1,gtr harm.wav,Electric Guitar, +1,gtr gr5.wav,Electric Guitar, +1,gtr gr4.wav,Electric Guitar, +1,gtr gr3.wav,Electric Guitar, +1,gtr gr2.wav,Electric Guitar, +1,gtr gr1.wav,Electric Guitar, +1,gtr glide.wav,Electric Guitar, +1,gtr fx intro.wav,Electric Guitar, +1,gtr fx 3.wav,Electric Guitar, +1,gtr fx 2.wav,Electric Guitar, +1,gtr fx 1.wav,Electric Guitar, +1,gtr funk.wav,Electric Guitar, +1,gtr esp.wav,Electric Guitar, +1,gtr esp 3+4.wav,Electric Guitar, +1,gtr esp 2.wav,Electric Guitar, +1,gtr el 5 right.wav,Electric Guitar, +1,gtr el 4.wav,Electric Guitar, +1,gtr el 4 right.wav,Electric Guitar, +1,gtr el 4 left.wav,Electric Guitar, +1,gtr el 3.wav,Electric Guitar, +1,gtr el 2 muted.wav,Electric Guitar, +1,gtr el 2 end.wav,Electric Guitar, +1,gtr el 1.wav,Electric Guitar, +1,gtr el 1 muted.wav,Electric Guitar, +1,gtr distor.wav,Electric Guitar, +1,gtr dist 4.wav,Electric Guitar, +1,gtr dist 2+3.wav,Electric Guitar, +1,gtr dist 1.wav,Electric Guitar, +1,gtr clean delay.wav,Electric Guitar, +1,gtr clean and disto.wav,Electric Guitar, +1,gtr clav.wav,Electric Guitar, +1,gtr center.wav,Electric Guitar, +1,gtr arr crunch.wav,Electric Guitar, +1,gtr arr clean.wav,Electric Guitar, +1,gtr add.wav,Electric Guitar, +1,gtr ac strum.wav,Acoustic Guitar, +1,gtr ac strum open.wav,Acoustic Guitar, +1,gtr ac 7.wav,Acoustic Guitar, +1,gtr ac 3 left.wav,Acoustic Guitar, +1,gtr ac 2 right.wav,Acoustic Guitar, +1,gtr ac 2 right end.wav,Acoustic Guitar, +1,gtr ac 2 left.wav,Acoustic Guitar, +1,gtr ac 2 end.wav,Acoustic Guitar, +1,gtr ac 1-.wav,Acoustic Guitar, +1,gtr ac 1 left.wav,Acoustic Guitar, +1,gtr ac 1 intro.wav,Acoustic Guitar, +1,gtr 9 left.wav,Electric Guitar, +1,gtr 8centre.wav,Electric Guitar, +1,gtr 8 fx.wav,Electric Guitar, +1,gtr 7droite.wav,Electric Guitar, +1,gtr 7+8.wav,Electric Guitar, +1,gtr 7 left.wav,Electric Guitar, +1,gtr 7 fx.wav,Electric Guitar, +1,gtr 7 + 9.wav,Electric Guitar, +1,gtr 6gauche.wav,Electric Guitar, +1,gtr 5droi.wav,Electric Guitar, +1,gtr 5+6.wav,Electric Guitar, +1,gtr 5 arp.wav,Electric Guitar, +1,gtr 4droite.wav,Electric Guitar, +1,gtr 4driote.wav,Electric Guitar, +1,gtr 4center.wav,Electric Guitar, +1,gtr 4-.wav,Electric Guitar, +1,gtr 4 muted.wav,Electric Guitar, +1,gtr 4 fx.wav,Electric Guitar, +1,gtr 4 clean.wav,Electric Guitar, +1,gtr 4 + 5 + 8.wav,Electric Guitar, +1,gtr 3droite.wav,Electric Guitar, +1,gtr 3and4.wav,Electric Guitar, +1,gtr 3-.wav,Electric Guitar, +1,gtr 3+6.wav,Electric Guitar, +1,gtr 3 intro.wav,Electric Guitar, +1,gtr 3 chorus.wav,Electric Guitar, +1,gtr 3 + 6.wav,Electric Guitar, +1,gtr 2right.wav,Electric Guitar, +1,gtr 2gauche.wav,Electric Guitar, +1,gtr 2enter.wav,Electric Guitar, +1,gtr 2droite.wav,Electric Guitar, +1,gtr 2centre.wav,Electric Guitar, +1,gtr 2-noisegate.wav,Electric Guitar, +1,gtr 2-.wav,Electric Guitar, +1,gtr 2+4.wav,Electric Guitar, +1,gtr 2+3+4.wav,Electric Guitar, +1,gtr 2 wha.wav,Electric Guitar, +1,gtr 2 slide.wav,Electric Guitar, +1,gtr 2 muted right+5.wav,Electric Guitar, +1,gtr 2 intro.wav,Electric Guitar, +1,gtr 2 intro right.wav,Electric Guitar, +1,gtr 2 fx.wav,Electric Guitar, +1,gtr 2 chorus.wav,Electric Guitar, +1,gtr 2 + 8.wav,Electric Guitar, +1,gtr 2 + 3.wav,Electric Guitar, +1,gtr 2 (muted).wav,Electric Guitar, +1,gtr 1left.wav,Electric Guitar, +1,gtr 1g.wav,Electric Guitar, +1,gtr 1dr.wav,Electric Guitar, +1,gtr 12.wav,Electric Guitar, +1,gtr 12 cuerdas 2.wav,Electric Guitar, +1,gtr 12 cuerdas 1.wav,Electric Guitar, +1,gtr 10.wav,Electric Guitar, +1,gtr 1-.wav,Electric Guitar, +1,gtr 1+7.wav,Electric Guitar, +1,gtr 1 muted.wav,Electric Guitar, +1,gtr 1 intro.wav,Electric Guitar, +1,gtr 1 fx.wav,Electric Guitar, +1,gtr 1 clean.wav,Electric Guitar, +1,gtr 1 centre.wav,Electric Guitar, +1,gtr 1 5.wav,Electric Guitar, +1,gtr 1 + 4.wav,Electric Guitar, +1,gtr wah.wav,Electric Guitar, +1,gtel.wav,Electric Guitar, +1,gtac.wav,Electric Guitar, +1,gt_3.wav,Electric Guitar, +1,gt_2.wav,Electric Guitar, +1,gt_1.wav,Electric Guitar, +1,gt2.wav,Electric Guitar, +1,gt1.wav,Electric Guitar, +1,gt sitar.wav,Electric Guitar, +1,gt rit.wav,Electric Guitar, +1,gt r.wav,Electric Guitar, +1,gt melo.wav,Electric Guitar, +1,gt lead.wav,Electric Guitar, +1,gt lead c.wav,Electric Guitar, +1,gt l cm.wav,Electric Guitar, +1,gt harm.wav,Electric Guitar, +1,gt dist l.wav,Electric Guitar, +1,gt chorus.wav,Electric Guitar, +1,gt chords.wav,Electric Guitar, +1,gt axe.wav,Electric Guitar, +1,gt arr.wav,Electric Guitar, +1,gt ac.wav,Acoustic Guitar, +1,gt ac + gt e.wav,Acoustic Guitar, +1,gt 3.wav,Electric Guitar, +1,gt 2 right.wav,Electric Guitar, +1,gt 1 left.wav,Electric Guitar, +1,grt2.wav,Electric Guitar, +1,grt1.wav,Electric Guitar, +1,grt 2.wav,Electric Guitar, +1,group.wav,Other, +1,groove.wav,Other, +1,grelots.wav,Other, +1,gregory porter.wav,Other, +1,greg nice.wav,Other, +1,grateful dead shakedown street rhodes.wav,Keyboard,Rhodes +1,grateful dead shakedown street perc.wav,Percussion, +1,grateful dead shakedown street lv.wav,Voice,Lead +1,grateful dead shakedown street hamm.wav,Other, +1,grateful dead shakedown street guitar 3.wav,Electric Guitar,Electric 3 +1,grateful dead shakedown street guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead shakedown street guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead shakedown street drum.wav,Drums, +1,grateful dead shakedown street clavi.wav,Keyboard,Clavinet +1,grateful dead shakedown street bv.wav,Voice,Backing +1,grateful dead shakedown street bass.wav,Bass Guitar, +1,grateful dead i know you rider live in paris piano.wav,Piano, +1,grateful dead i know you rider live in paris ld.wav,Voice,Lead +1,grateful dead i know you rider live in paris e guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead i know you rider live in paris e guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead i know you rider live in paris drums.wav,Drums, +1,grateful dead i know you rider live in paris bv.wav,Voice,Backing +1,grateful dead i know you rider live in paris bass.wav,Bass Guitar, +1,grateful dead althea rhodes.wav,Keyboard,Rhodes +1,grateful dead althea perc.wav,Percussion, +1,grateful dead althea organ.wav,Keyboard,Organ +1,grateful dead althea lv.wav,Voice,Lead +1,grateful dead althea guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead althea guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead althea drum.wav,Drums, +1,grateful dead althea clavi.wav,Keyboard,Clavinet +1,grateful dead althea bass.wav,Bass Guitar, +1,granpiano.wav,Piano, +1,graham russell.wav,Other, +1,gorillaz.wav,Other, +1,gojira silvera synth vocal.wav,Other, +1,gojira silvera lv.wav,Other, +1,gojira silvera guitar 4.wav,Other, +1,gojira silvera guitar 3.wav,Other, +1,gojira silvera guitar 2.wav,Other, +1,gojira silvera guitar 1.wav,Other, +1,gojira silvera fx.wav,Other, +1,gojira silvera drum.wav,Other, +1,gojira silvera bv.wav,Other, +1,gojira silvera bass.wav,Other, +1,gloken.wav,Other, +1,glockflute.wav,Other, +1,glock and tububells.wav,Other, +1,gliss.wav,Other, +1,glideravesynth.wav,Other, +1,glide synth.wav,Other, +1,glass.wav,Other, +1,glad sample.wav,Other, +1,giveon.wav,Other, +1,giut.wav,Other, +1,giorgia.wav,Other, +1,ghostsynth.wav,Other, +1,ghostface killah.wav,Other, +1,getting in tune the who piano.wav,Other, +1,getting in tune the who ld.wav,Other, +1,getting in tune the who e guitar.wav,Other, +1,getting in tune the who drums.wav,Other, +1,getting in tune the who bv.wav,Other, +1,getting in tune the who bass.wav,Other, +1,getting in tune the who a guitar.wav,Other, +1,george harrison.wav,Other, +1,george ezra paradise piano.wav,Other, +1,george ezra paradise perc.wav,Other, +1,gavin james.wav,Other, +1,gaucheguit.wav,Other, +1,gauchegtr 1.wav,Other, +1,gated bass.wav,Other, +1,gate rhodes.wav,Other, +1,gangsta dresta.wav,Other, +1,gang bg vocals.wav,Other, +1,gamelan.wav,Other, +1,galantis.wav,Other, +1,gaga.wav,Other, +1,g fx.wav,Computer,FX +1,g crunch.wav,Computer,FX +1,fxx scratchs.wav,Computer,FX +1,fxwoodwinds.wav,Computer,FX +1,fxs synt2 3 5.wav,Computer,FX +1,fxs seagulls.wav,Computer,FX +1,fxs scratch.wav,Computer,FX +1,fxs reverse and scream.wav,Computer,FX +1,fxs pad sbells.wav,Computer,FX +1,fxs bassdrop.wav,Computer,FX +1,fxs and drop.wav,Computer,FX +1,fxnoise.wav,Computer,FX +1,fxgtr.wav,Computer,FX +1,fxed-percussion.wav,Computer,FX +1,fx2 sample bass.wav,Computer,FX +1,fx-noise.wav,Computer,FX +1,fx+whistle.wav,Computer,FX +1,fx+reverse cymbal+noise.wav,Computer,FX +1,fx+noise+synthfx.wav,Computer,FX +1,fx wooosh.wav,Computer,FX +1,fx winds.wav,Computer,FX +1,fx wind.wav,Computer,FX +1,fx vox.wav,Computer,FX +1,fx voice.wav,Computer,FX +1,fx vocals.wav,Computer,FX +1,fx vinyls.wav,Computer,FX +1,fx synthfal.wav,Computer,FX +1,fx synth 1.wav,Computer,FX +1,fx subs.wav,Computer,FX +1,fx scrath.wav,Computer,FX +1,fx sample.wav,Computer,FX +1,fx rverse.wav,Computer,FX +1,fx pitch.wav,Computer,FX +1,fx percussion.wav,Computer,FX +1,fx panther.wav,Computer,FX +1,fx pad choir voxsynth.wav,Computer,FX +1,fx orgasm.wav,Computer,FX +1,fx noises 12 and sub.wav,Computer,FX +1,fx noise voicesynth3.wav,Computer,FX +1,fx night.wav,Computer,FX +1,fx motor.wav,Computer,FX +1,fx mix.wav,Computer,FX +1,fx intro wave beach.wav,Computer,FX +1,fx guitars.wav,Computer,FX +1,fx gtrs.wav,Computer,FX +1,fx glasses.wav,Computer,FX +1,fx flange and trance.wav,Computer,FX +1,fx cutoffsynth.wav,Computer,FX +1,fx comp squarelead.wav,Computer,FX +1,fx car.wav,Computer,FX +1,fx birds+ocean.wav,Computer,FX +1,fx background.wav,Computer,FX +1,fx and vynil.wav,Computer,FX +1,fx and vocfx.wav,Computer,FX +1,fx and telephone.wav,Computer,FX +1,fx and synthfx.wav,Computer,FX +1,fx and strings.wav,Computer,FX +1,fx and scratching.wav,Computer,FX +1,fx and riser.wav,Computer,FX +1,fx and pitch.wav,Computer,FX +1,fx and noise.wav,Computer,FX +1,fx and laser.wav,Computer,FX +1,fx and kik hit.wav,Computer,FX +1,fx and gliss.wav,Computer,FX +1,fx and bips.wav,Computer,FX +1,fx and beep9.wav,Computer,FX +1,fx ambient crowd.wav,Computer,FX +1,fx amb.wav,Computer,FX +1,fx 3.wav,Computer,FX +1,fx 12.wav,Computer,FX +1,fx 1 scratch.wav,Computer,FX +1,fx + tape noise.wav,Computer,FX +1,fx & scratches.wav,Computer,FX +1,fuzz.wav,Other, +1,fuzz guitar.wav,Other, +1,futuristic.wav,Other, +1,fuse odg.wav,Other, +1,funky.wav,Other, +1,funky gtrr.wav,Other, +1,funkgtr.wav,Other, +1,funk loop.wav,Other, +1,funk lead.wav,Other, +1,fundisha.wav,Other, +1,fun.wav,Other, +1,frenchhorn.wav,Other, +1,french_horns.wav,Other, +1,french horns and flute.wav,Other, +1,french horn (vst).wav,Other, +1,fred schneider.wav,Other, +1,frank zappa and joe.wav,Other, +1,frank ocean.wav,Other, +1,frank ocean-adlib.wav,Other, +1,franck ocean.wav,Other, +1,fr horn 3.wav,Other, +1,fr horn 2.wav,Other, +1,fr horn 1.wav,Other, +1,foule stade.wav,Other, +1,fmsynth.wav,Other, +1,fm.wav,Other, +1,fm synthbrass.wav,Other, +1,fm rhodes.wav,Other, +1,fm power perk.wav,Other, +1,fm piano.wav,Other, +1,fm clav.wav,Other, +1,fm bell.wav,Other, +1,flutesynth.wav,Flute, +1,flutes andvibes.wav,Flute, +1,flute transverse.wav,Flute, +1,flute solo.wav,Flute, +1,flute real.wav,Flute, +1,flute lo _01-01.wav,Flute, +1,flute 3.wav,Flute, +1,flute 2 right.wav,Flute, +1,flute 1.wav,Flute, +1,flute 1 left.wav,Flute, +1,flute 02.wav,Flute, +1,flute 01.wav,Flute, +1,fluguel horn.wav,Other, +1,florida georgia line.wav,Other, +1,fleurie.wav,Other, +1,flange.wav,Other, +1,five finger death punch.wav,Other, +1,finger snaps.wav,Other, +1,finger cymbals.wav,Other, +1,final claps.wav,Other, +1,filtersynth.wav,Other, +1,filters.wav,Other, +1,filterbass.wav,Other, +1,filter.wav,Other, +1,filter vox.wav,Other, +1,filter passage.wav,Other, +1,filter bits.wav,Other, +1,filter bass.wav,Other, +1,fills1+2mix.wav,Other, +1,fiddles.wav,Violin,Fiddle +1,fiddle 3.wav,Violin,Fiddle +1,fiddle 3 right.wav,Violin,Fiddle +1,fiddle 2-noisegate.wav,Violin,Fiddle +1,fiddle 1-noisegate.wav,Violin,Fiddle +1,fergie+refrains.wav,Other, +1,females vox.wav,Other, +1,female_bv.wav,Other, +1,female-bv.wav,Other, +1,female-adlib.wav,Other, +1,female ld 2.wav,Other, +1,female ld 1.wav,Other, +1,female bv.wav,Other, +1,feid.wav,Other, +1,feedback pad.wav,Other, +1,feedback fx.wav,Other, +1,fatman scoop.wav,Other, +1,fatman scoop-adlib.wav,Other, +1,fatbass.wav,Other, +1,fat.wav,Other, +1,fat pat.wav,Other, +1,farfisapad.wav,Other, +1,farfisaorgan3.wav,Other, +1,farfisaorgan2.wav,Other, +1,farfisaorgan.wav,Other, +1,farfisachoir.wav,Other, +1,fantasy and synth 1.wav,Other, +1,fall.wav,Other, +1,fall out boy.wav,Other, +1,faithless.wav,Other, +1,faith hill.wav,Other, +1,fade synths.wav,Other, +1,fabolous.wav,Other, +1,f.wav,Other, +1,extra.wav,Other, +1,extra snare.wav,Other, +1,exs.wav,Other, +1,even perc.wav,Other, +1,even moog.wav,Other, +1,even ld.wav,Other, +1,even e guitar lead 2.wav,Other, +1,even e guitar lead 1.wav,Other, +1,even e guitar 4.wav,Other, +1,even e guitar 3.wav,Other, +1,even e guitar 2.wav,Other, +1,even e guitar 1.wav,Other, +1,even drums.wav,Other, +1,even bv.wav,Other, +1,even bass.wav,Other, +1,even ambient.wav,Other, +1,eve.wav,Other, +1,eve jihan cooper.wav,Other, +1,eva simons.wav,Other, +1,eufonium.wav,Other, +1,ethno.wav,Other, +1,ethno vox sample.wav,Other, +1,ethinc voice.wav,Other, +1,esperant.wav,Other, +1,esp.wav,Other, +1,esp gtr12.wav,Other, +1,esp gtr 1 + 2 + ac gtr 3.wav,Other, +1,esp bass.wav,Other, +1,es2 dist.wav,Other, +1,erykah badu.wav,Other, +1,ernest.wav,Other, +1,eric vanlerberghe.wav,Other, +1,eric nally.wav,Other, +1,epianosynth.wav,Keyboard,Electric Piano +1,epianopluck.wav,Keyboard,Electric Piano +1,epiano3.wav,Keyboard,Electric Piano +1,epiano2.wav,Keyboard,Electric Piano +1,epiano1 left.wav,Keyboard,Electric Piano +1,epchorus.wav,Keyboard,Electric Piano +1,ep2.wav,Keyboard,Electric Piano +1,ep1.wav,Keyboard,Electric Piano +1,ep+ep2.wav,Keyboard,Electric Piano +1,ep right.wav,Keyboard,Electric Piano +1,ep pad.wav,Keyboard,Electric Piano +1,ep organ synth.wav,Keyboard,Electric Piano +1,ep left.wav,Keyboard,Electric Piano +1,ep arr and rhodes.wav,Keyboard,Electric Piano +1,ep adds.wav,Keyboard,Electric Piano +1,ep 2.wav,Keyboard,Electric Piano +1,ep 2 left.wav,Keyboard,Electric Piano +1,ep 1 + 2.wav,Keyboard,Electric Piano +1,ep 1 + 2 + 3.wav,Keyboard,Electric Piano +1,ep + synth rhodes + harpi.wav,Keyboard,Electric Piano +1,ep + synth pad.wav,Keyboard,Electric Piano +1,ep + pad + fx.wav,Keyboard,Electric Piano +1,ep + ep arp.wav,Keyboard,Electric Piano +1,ep + clavinet + hammond.wav,Keyboard,Electric Piano +1,envsynth.wav,Other, +1,enrique iglesias-adlib.wav,Other, +1,english horn.wav,Other, +1,endinglowbass.wav,Other, +1,ending.wav,Other, +1,ending synth.wav,Other, +1,eminem-adlib.wav,Other, +1,emily warren.wav,Other, +1,emily armstrong.wav,Other, +1,elton john.wav,Other, +1,elpianorhodeswahwah.wav,Keyboard,Electric Piano +1,elpiano_rhodes.wav,Keyboard,Electric Piano +1,ellie goulding-adlib.wav,Other, +1,elle king.wav,Other, +1,ella langley.wav,Other, +1,elguitsolo.wav,Electric Guitar, +1,elguitdisto.wav,Electric Guitar, +1,elguitarr.wav,Electric Guitar, +1,elguitarcleanmono.wav,Electric Guitar, +1,elguitar_solo.wav,Electric Guitar, +1,elguitar2.wav,Electric Guitar, +1,elguitar1.wav,Electric Guitar, +1,elguit dirty.wav,Electric Guitar, +1,elgtr5r.wav,Electric Guitar, +1,elgtr5+6.wav,Electric Guitar, +1,elgtr4cfx.wav,Electric Guitar, +1,elgtr3l.wav,Electric Guitar, +1,elgtr10+11.wav,Electric Guitar, +1,elgtr1+2+3+4+9.wav,Electric Guitar, +1,elgtr1 right.wav,Electric Guitar, +1,elgtr-notdups.wav,Electric Guitar, +1,elgtr solo.wav,Electric Guitar, +1,elgtr main.wav,Electric Guitar, +1,elgtr lead end 1+2+3+4.wav,Electric Guitar, +1,elgtr disto.wav,Electric Guitar, +1,elgtr dist.wav,Electric Guitar, +1,elgtr clean.wav,Electric Guitar, +1,elgtr arr.wav,Electric Guitar, +1,elgtr arr 2.wav,Electric Guitar, +1,elgtr arr 1.wav,Electric Guitar, +1,elgtr 2.wav,Electric Guitar, +1,elgtr 1.wav,Electric Guitar, +1,eletric_guitar_2.wav,Electric Guitar, +1,eletric_guitar_1.wav,Electric Guitar, +1,eletric_guitar.wav,Electric Guitar, +1,elena rose.wav,Other, +1,elegtrsolo.wav,Electric Guitar, +1,elegtrs1.wav,Electric Guitar, +1,elegtrfx.wav,Electric Guitar, +1,elegtr1 clean.wav,Electric Guitar, +1,elegtr 2.wav,Electric Guitar, +1,elegtr 1.wav,Electric Guitar, +1,electronic drumkit.wav,Other, +1,electro-piano.wav,Other, +1,electro-piano-pad.wav,Other, +1,electro acoustic gtr6.wav,Other, +1,electrique solo.wav,Other, +1,electrique rythmique.wav,Other, +1,electrique r.wav,Other, +1,electrique melodique.wav,Other, +1,electrique l.wav,Other, +1,electrique disto.wav,Other, +1,electrique claire gauche.wav,Other, +1,electrique claire droite.wav,Other, +1,electrique claire centre.wav,Other, +1,electricguitar2.wav,Electric Guitar, +1,electric_solo_guitar_2.wav,Electric Guitar, +1,electric_solo_guitar_1.wav,Electric Guitar, +1,electric_slide_guitar.wav,Electric Guitar, +1,electric_rhythm_guitars.wav,Electric Guitar, +1,electric_rhythm_guitar_right_2.wav,Electric Guitar, +1,electric_rhythm_guitar_right_1.wav,Electric Guitar, +1,electric_rhythm_guitar_palm_muted.wav,Electric Guitar, +1,electric_rhythm_guitar_intro.wav,Electric Guitar, +1,electric_rhythm_guitar_distortion_2.wav,Electric Guitar, +1,electric_rhythm_guitar_distortion_1.wav,Electric Guitar, +1,electric_rhythm_guitar_crunch_right.wav,Electric Guitar, +1,electric_rhythm_guitar_crunch_left.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_center.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_2.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_1.wav,Electric Guitar, +1,electric_rhythm_crunch_guitars.wav,Electric Guitar, +1,electric_rhodes_piano.wav,Other, +1,electric_piano_wurlitzer.wav,Other, +1,electric_piano_rhodes_2.wav,Other, +1,electric_piano_rhodes_2 left.wav,Other, +1,electric_lead_guitar_right.wav,Electric Guitar, +1,electric_lead_guitar_low.wav,Electric Guitar, +1,electric_lead_guitar_center.wav,Electric Guitar, +1,electric_lead_guitar_2 right.wav,Electric Guitar, +1,electric_lead_guitar_1 left.wav,Electric Guitar, +1,electric_hammond_organ.wav,Other, +1,electric_guitar_tremolo_right.wav,Electric Guitar, +1,electric_guitar_tremolo_final.wav,Electric Guitar, +1,electric_guitar_tremolo.wav,Electric Guitar, +1,electric_guitar_solo_higain.wav,Electric Guitar, +1,electric_guitar_solo_crunch.wav,Electric Guitar, +1,electric_guitar_ryhthm_fuzz.wav,Electric Guitar, +1,electric_guitar_ryhthm_clean_octave.wav,Electric Guitar, +1,electric_guitar_ryhthm_clean.wav,Electric Guitar, +1,electric_guitar_rhythm_prechorus_arrangement_2+mix.wav,Electric Guitar, +1,electric_guitar_rhythm_prechorus_arrangement+final.wav,Electric Guitar, +1,electric_guitar_rhythm_overdrive.wav,Electric Guitar, +1,electric_guitar_rhythm_final.wav,Electric Guitar, +1,electric_guitar_rhythm_distortion.wav,Electric Guitar, +1,electric_guitar_rhythm_dist.wav,Electric Guitar, +1,electric_guitar_rhythm_crunch.wav,Electric Guitar, +1,electric_guitar_rhythm_2.wav,Electric Guitar, +1,electric_guitar_rhythm_1.wav,Electric Guitar, +1,electric_guitar_rhythm+mix.wav,Electric Guitar, +1,electric_guitar_rhythm right.wav,Electric Guitar, +1,electric_guitar_rhythm left.wav,Electric Guitar, +1,electric_guitar_rhythm center.wav,Electric Guitar, +1,electric_guitar_prechorus_rhythm_octave+overdrive.wav,Electric Guitar, +1,electric_guitar_prechorus_rhythm_high+mid+mix.wav,Electric Guitar, +1,electric_guitar_pad.wav,Electric Guitar, +1,electric_guitar_main.wav,Electric Guitar, +1,electric_guitar_lead_adds_2.wav,Electric Guitar, +1,electric_guitar_lead_adds_1.wav,Electric Guitar, +1,electric_guitar_lead_2.wav,Electric Guitar, +1,electric_guitar_lead_1.wav,Electric Guitar, +1,electric_guitar_harmonics.wav,Electric Guitar, +1,electric_guitar_fx_intro.wav,Electric Guitar, +1,electric_guitar_fuzz_right.wav,Electric Guitar, +1,electric_guitar_fuzz_center_3.wav,Electric Guitar, +1,electric_guitar_fuzz_center_2.wav,Electric Guitar, +1,electric_guitar_fuzz_center_1.wav,Electric Guitar, +1,electric_guitar_final_adds.wav,Electric Guitar, +1,electric_guitar_distortion_1.wav,Electric Guitar, +1,electric_guitar_distortion.wav,Electric Guitar, +1,electric_guitar_disto_left.wav,Electric Guitar, +1,electric_guitar_disto.wav,Electric Guitar, +1,electric_guitar_crunch_right.wav,Electric Guitar, +1,electric_guitar_crunch_left.wav,Electric Guitar, +1,electric_guitar_crunch_center.wav,Electric Guitar, +1,electric_guitar_crunch.wav,Electric Guitar, +1,electric_guitar_cruch_right.wav,Electric Guitar, +1,electric_guitar_clean_arrangement.wav,Electric Guitar, +1,electric_guitar_clean_1+prechorus rhythm.wav,Electric Guitar, +1,electric_guitar_chunch_2.wav,Electric Guitar, +1,electric_guitar_chunch_1.wav,Electric Guitar, +1,electric_guitar_center_overdrive.wav,Electric Guitar, +1,electric_guitar_arr.wav,Electric Guitar, +1,electric_guitar_adds_2.wav,Electric Guitar, +1,electric_guitar_adds_1.wav,Electric Guitar, +1,electric_guitar_adds.wav,Electric Guitar, +1,electric_guitar_add.wav,Electric Guitar, +1,electric_fx_guitar.wav,Other, +1,electric_drums.wav,Other, +1,electric_distorted_guitar.wav,Electric Guitar, +1,electric_crunch_guitar.wav,Electric Guitar, +1,electric_clean_guitar_right.wav,Electric Guitar, +1,electric_clean_guitar_arr_2.wav,Electric Guitar, +1,electric_clean_guitar_arr_1.wav,Electric Guitar, +1,electric_clean_guitar_2.wav,Electric Guitar, +1,electric_clean_guitar_1.wav,Electric Guitar, +1,electric_arrangement_lap_steel_2.wav,Electric Guitar, +1,electric_arrangement_lap_steel_1.wav,Electric Guitar, +1,electric_arrangement_guitar_right_1.wav,Electric Guitar, +1,electric_arrangement_guitar_overdrive.wav,Electric Guitar, +1,electric_arrangement_guitar_harmonic.wav,Electric Guitar, +1,electric_arrangement_guitar_flanger.wav,Electric Guitar, +1,electric_arrangement_guitar_clean_2.wav,Electric Guitar, +1,electric_arrangement_guitar_clean_1.wav,Electric Guitar, +1,electric_arrangement_guitar_center.wav,Electric Guitar, +1,electric_arrangement_guitar_456_final.wav,Electric Guitar, +1,electric_arrangement_guitar_3_clean.wav,Electric Guitar, +1,electric_arrangement_guitar_2_intro.wav,Electric Guitar, +1,electric_arrangement_guitar_2_clean.wav,Electric Guitar, +1,electric_arrangement_guitar_1_intro.wav,Electric Guitar, +1,electric_arrangement_guitar_1_clean.wav,Electric Guitar, +1,electric_arrange_guitar.wav,Electric Guitar, +1,electric.wav,Electric Guitar, +1,electric solo guitar.wav,Electric Guitar, +1,electric rhythm guitar.wav,Electric Guitar, +1,electric rhythm gtr.wav,Electric Guitar, +1,electric piano&celesta.wav,Other, +1,electric piano 2.wav,Other, +1,electric piano 2 right.wav,Other, +1,electric guitars 2 arpeggio.wav,Electric Guitar, +1,electric guitars 1 melodic.wav,Electric Guitar, +1,electric guitars - rhythm.wav,Electric Guitar, +1,electric guitar5.wav,Electric Guitar, +1,electric guitar4.wav,Electric Guitar, +1,electric guitar1.wav,Electric Guitar, +1,electric guitar(tremolo).wav,Electric Guitar, +1,electric guitar(rythm).wav,Electric Guitar, +1,electric guitar(mute).wav,Electric Guitar, +1,electric guitar right.wav,Electric Guitar, +1,electric guitar rhythm.wav,Electric Guitar, +1,electric guitar overdrive 2.wav,Electric Guitar, +1,electric guitar overdrive 1.wav,Electric Guitar, +1,electric guitar noise fx.wav,Electric Guitar, +1,electric guitar mute.wav,Electric Guitar, +1,electric guitar main.wav,Electric Guitar, +1,electric guitar left.wav,Electric Guitar, +1,electric guitar lead1+arr.wav,Electric Guitar, +1,electric guitar lead.wav,Electric Guitar, +1,electric guitar insert.wav,Electric Guitar, +1,electric guitar harmonics.wav,Electric Guitar, +1,electric guitar ghythmm.wav,Electric Guitar, +1,electric guitar flanger.wav,Electric Guitar, +1,electric guitar clean+sitar.wav,Electric Guitar, +1,electric guitar 7.wav,Electric Guitar, +1,electric guitar 5 left.wav,Electric Guitar, +1,electric guitar 4 fixed.wav,Electric Guitar, +1,electric guitar 4 chorus.wav,Electric Guitar, +1,electric guitar 3 right.wav,Electric Guitar, +1,electric guitar 3 right end.wav,Electric Guitar, +1,electric guitar 3 fixed.wav,Electric Guitar, +1,electric guitar 3 distorted.wav,Electric Guitar, +1,electric guitar 3 - funky.wav,Electric Guitar, +1,electric guitar 2 solo.wav,Electric Guitar, +1,electric guitar 2 right.wav,Electric Guitar, +1,electric guitar 2 lead.wav,Electric Guitar, +1,electric guitar 2 fixed.wav,Electric Guitar, +1,electric guitar 1+2+3+4+6.wav,Electric Guitar, +1,electric guitar 1 right.wav,Electric Guitar, +1,electric guitar 1 muted.wav,Electric Guitar, +1,electric guitar 1 fixed.wav,Electric Guitar, +1,electric guitar - reverbey.wav,Electric Guitar, +1,electric guitar - muted.wav,Electric Guitar, +1,electric gtrs.wav,Electric Guitar, +1,electric gtr 2.wav,Electric Guitar, +1,electric gt.wav,Electric Guitar, +1,electric grand.wav,Other, +1,electo_guitar_fuzz.wav,Electric Guitar, +1,electo_guitar.wav,Electric Guitar, +1,elect gtr 4 disto rythm.wav,Electric Guitar, +1,elect gtr 3 arr.wav,Electric Guitar, +1,elect gtr 2 arr.wav,Electric Guitar, +1,elect gtr 1.wav,Electric Guitar, +1,elect gtr 1 muted.wav,Electric Guitar, +1,elecrhythmgtr.wav,Electric Guitar, +1,elecpickrhythm.wav,Electric Guitar, +1,elecpiano.wav,Other, +1,eleckeys.wav,Other, +1,elecgtr right.wav,Electric Guitar, +1,elecgt.wav,Electric Guitar, +1,elecg2.wav,Electric Guitar, +1,elecg1.wav,Electric Guitar, +1,elec-piano.wav,Other, +1,elec-piano-lead.wav,Other, +1,elec perc.wav,Other, +1,elec guitar 2.wav,Electric Guitar, +1,elec guitar 1 right.wav,Electric Guitar, +1,elec guit solo 2.wav,Electric Guitar, +1,elec guit solo 2 ok.wav,Electric Guitar, +1,elec gtr solo.wav,Electric Guitar, +1,elec gt 6.wav,Electric Guitar, +1,elec gt 5.wav,Electric Guitar, +1,elec gt 4.wav,Electric Guitar, +1,elec gt 3.wav,Electric Guitar, +1,elec drums.wav,Other, +1,elec and lead.wav,Electric Guitar, +1,elec 3 tremolo.wav,Electric Guitar, +1,elec 2 rythm.wav,Electric Guitar, +1,elec 2 left.wav,Electric Guitar, +1,elec 1 right.wav,Electric Guitar, +1,elec 1 arr.wav,Electric Guitar, +1,eldrums.wav,Other, +1,elctric_guitar_treble.wav,Electric Guitar, +1,elctric_guitar_crunch.wav,Electric Guitar, +1,elctric_guitar_clean.wav,Electric Guitar, +1,elctric_guitar_arr.wav,Electric Guitar, +1,elbow swell.wav,Other, +1,el.toms.wav,Other, +1,el.piano.wav,Other, +1,el.gtrs.wav,Electric Guitar, +1,el.gtr solo 3.wav,Electric Guitar, +1,el.gtr solo 2.wav,Electric Guitar, +1,el.gtr solo 1.wav,Electric Guitar, +1,el.gtr slide.wav,Electric Guitar, +1,el.gtr riff.wav,Electric Guitar, +1,el.gtr palm muted right.wav,Electric Guitar, +1,el.gtr palm mute.wav,Electric Guitar, +1,el.gtr lead.wav,Electric Guitar, +1,el.gtr lead fx.wav,Electric Guitar, +1,el.gtr lead 3.wav,Electric Guitar, +1,el.gtr lead 2.wav,Electric Guitar, +1,el.gtr lead 1.wav,Electric Guitar, +1,el.gtr lead (right).wav,Electric Guitar, +1,el.gtr lead (left).wav,Electric Guitar, +1,el.gtr crunch.wav,Electric Guitar, +1,el.gtr clean2.wav,Electric Guitar, +1,el.gtr clean rhythm+tremolo.wav,Electric Guitar, +1,el.gtr arr palm mute.wav,Electric Guitar, +1,el.gtr arr lead.wav,Electric Guitar, +1,el.gtr arr lead r.wav,Electric Guitar, +1,el.gtr arr l.wav,Electric Guitar, +1,el.gtr arr disto.wav,Electric Guitar, +1,el.gtr arr 4.wav,Electric Guitar, +1,el.gtr arr 2.wav,Electric Guitar, +1,el.gtr arr 1.wav,Electric Guitar, +1,el.gtr arr 1 (delay).wav,Electric Guitar, +1,el.gtr add 3.wav,Electric Guitar, +1,el.gtr add 2.wav,Electric Guitar, +1,el.gtr add 1.wav,Electric Guitar, +1,el.gtr 9 disto.wav,Electric Guitar, +1,el.gtr 7+8 (palm mute).wav,Electric Guitar, +1,el.gtr 3+4+5.wav,Electric Guitar, +1,el.gtr 2+6.wav,Electric Guitar, +1,el.gtr 03.wav,Electric Guitar, +1,el.gtr 02.wav,Electric Guitar, +1,el.gtr 01.wav,Electric Guitar, +1,el.gtr (right).wav,Electric Guitar, +1,el.gtr (palm mute).wav,Electric Guitar, +1,el.gtr (left).wav,Electric Guitar, +1,el.gtr (disto).wav,Electric Guitar, +1,el rhythm gtr lr.wav,Electric Guitar, +1,el pianodroite.wav,Other, +1,el piano1+2mix.wav,Other, +1,el piano+organ.wav,Other, +1,el key.wav,Other, +1,el guitars.wav,Electric Guitar, +1,el guitars 3.wav,Electric Guitar, +1,el guitars 2.wav,Electric Guitar, +1,el guitars 1.wav,Electric Guitar, +1,el guitar slide.wav,Electric Guitar, +1,el guitar right.wav,Electric Guitar, +1,el guitar r.wav,Electric Guitar, +1,el guitar overdrive.wav,Electric Guitar, +1,el guitar overdrive left.wav,Electric Guitar, +1,el guitar ovdr.wav,Electric Guitar, +1,el guitar od2.wav,Electric Guitar, +1,el guitar od1.wav,Electric Guitar, +1,el guitar muted.wav,Electric Guitar, +1,el guitar left.wav,Electric Guitar, +1,el guitar lead add.wav,Electric Guitar, +1,el guitar l.wav,Electric Guitar, +1,el guitar fx.wav,Electric Guitar, +1,el guitar disto left.wav,Electric Guitar, +1,el guitar chorus.wav,Electric Guitar, +1,el guitar center.wav,Electric Guitar, +1,el guitar arr.wav,Electric Guitar, +1,el guitar 4.wav,Electric Guitar, +1,el guitar 2 right.wav,Electric Guitar, +1,el guitar 1 left.wav,Electric Guitar, +1,el guitar 03.wav,Electric Guitar, +1,el guitar 02.wav,Electric Guitar, +1,el guitar 01 muted.wav,Electric Guitar, +1,el guit clean.wav,Electric Guitar, +1,el gtrs.wav,Electric Guitar, +1,el gtr5+7.wav,Electric Guitar, +1,el gtr4.wav,Electric Guitar, +1,el gtr4+6.wav,Electric Guitar, +1,el gtr3 left.wav,Electric Guitar, +1,el gtr25.wav,Electric Guitar, +1,el gtr2+3.wav,Electric Guitar, +1,el gtr2 right.wav,Electric Guitar, +1,el gtr13.wav,Electric Guitar, +1,el gtr lead.wav,Electric Guitar, +1,el gtr intro.wav,Electric Guitar, +1,el gtr fx.wav,Electric Guitar, +1,el gtr crunch.wav,Electric Guitar, +1,el gtr add.wav,Electric Guitar, +1,el gtr 4 r end.wav,Electric Guitar, +1,el gtr 4 + 6.wav,Electric Guitar, +1,el gtr 3 right.wav,Electric Guitar, +1,el gtr 3 l end.wav,Electric Guitar, +1,el gtr 3 + 5.wav,Electric Guitar, +1,el gtr 2 r.wav,Electric Guitar, +1,el gtr 2 left.wav,Electric Guitar, +1,el gtr 2 end.wav,Electric Guitar, +1,el gtr 1 l.wav,Electric Guitar, +1,el gtr 1 + 3 + 5.wav,Electric Guitar, +1,el gtr 1 + 2.wav,Electric Guitar, +1,el bass.wav,Other, +1,egwha.wav,Electric Guitar, +1,egverse.wav,Electric Guitar, +1,eguitd + eguit2.wav,Electric Guitar, +1,eguitarlead2.wav,Electric Guitar, +1,eguitarlead1.wav,Electric Guitar, +1,eguitardistrhythm.wav,Electric Guitar, +1,eguitarcleanrhythm.wav,Electric Guitar, +1,eguitar solo r.wav,Electric Guitar, +1,eguitar solo l.wav,Electric Guitar, +1,eguitar solo 1.wav,Electric Guitar, +1,eguitar solo 1 c.wav,Electric Guitar, +1,eguitar slide 05.wav,Electric Guitar, +1,eguitar slide 04.wav,Electric Guitar, +1,eguitar slide 03.wav,Electric Guitar, +1,eguitar slide 02.wav,Electric Guitar, +1,eguitar slide 01.wav,Electric Guitar, +1,eguitar rythm.wav,Electric Guitar, +1,eguitar rythm dist 2 l+r.wav,Electric Guitar, +1,eguitar rythm dist 2 c+3 c+c.wav,Electric Guitar, +1,eguitar rythm dist 1 l+r.wav,Electric Guitar, +1,eguitar rythm dist 02 r.wav,Electric Guitar, +1,eguitar rythm dist 01 l.wav,Electric Guitar, +1,eguitar rythm arr 78 lr end.wav,Electric Guitar, +1,eguitar rythm arr 56 lr.wav,Electric Guitar, +1,eguitar rythm arr 04.wav,Electric Guitar, +1,eguitar rythm arr 03.wav,Electric Guitar, +1,eguitar rythm arr 02.wav,Electric Guitar, +1,eguitar rythm arr 01 main lead.wav,Electric Guitar, +1,eguitar rythm 02.wav,Electric Guitar, +1,eguitar rythm 01.wav,Electric Guitar, +1,eguitar rhythmic.wav,Electric Guitar, +1,eguitar mute r.wav,Electric Guitar, +1,eguitar fx filter.wav,Electric Guitar, +1,eguitar fuzz.wav,Electric Guitar, +1,eguitar disto solo l.wav,Electric Guitar, +1,eguitar disto solo c.wav,Electric Guitar, +1,eguitar disto left.wav,Electric Guitar, +1,eguitar disto disto.wav,Electric Guitar, +1,eguitar disto 2.wav,Electric Guitar, +1,eguitar disto 1r.wav,Electric Guitar, +1,eguitar disto 1l.wav,Electric Guitar, +1,eguitar disto 1c.wav,Electric Guitar, +1,eguitar disto 1.wav,Electric Guitar, +1,eguitar clean l+r.wav,Electric Guitar, +1,eguitar clean c3.wav,Electric Guitar, +1,eguitar clean c2.wav,Electric Guitar, +1,eguitar clean c1.wav,Electric Guitar, +1,eguitar arregement clean 02.wav,Electric Guitar, +1,eguitar arregement clean 01.wav,Electric Guitar, +1,eguitar arrangement 1+2.wav,Electric Guitar, +1,eguitar arr dist.wav,Electric Guitar, +1,eguitar arr 02.wav,Electric Guitar, +1,eguitar arr 01.wav,Electric Guitar, +1,eguitar arp.wav,Electric Guitar, +1,eguitar 03.wav,Electric Guitar, +1,eguitar 02.wav,Electric Guitar, +1,eguitar 01.wav,Electric Guitar, +1,eguit9.wav,Electric Guitar, +1,eguit4 right.wav,Electric Guitar, +1,eguit3 left.wav,Electric Guitar, +1,eguit2 right.wav,Electric Guitar, +1,eguit2 left.wav,Electric Guitar, +1,eguit10.wav,Electric Guitar, +1,eguit1 right.wav,Electric Guitar, +1,eguit1 left.wav,Electric Guitar, +1,eguit1 (wah wah).wav,Electric Guitar, +1,eguit steve vai 2.wav,Electric Guitar, +1,eguit steve vai 1.wav,Electric Guitar, +1,eguit solos 5.wav,Electric Guitar, +1,eguit solos 4.wav,Electric Guitar, +1,eguit solos 3.wav,Electric Guitar, +1,eguit satriani.wav,Electric Guitar, +1,eguit satriani 2.wav,Electric Guitar, +1,eguit rhytmic.wav,Electric Guitar, +1,eguit rhytmic 3.wav,Electric Guitar, +1,eguit r.wav,Electric Guitar, +1,eguit left.wav,Electric Guitar, +1,eguit l.wav,Electric Guitar, +1,eguit intro.wav,Electric Guitar, +1,eguit fx.wav,Electric Guitar, +1,eguit fuzz.wav,Electric Guitar, +1,eguit feedback fx.wav,Electric Guitar, +1,eguit d st.wav,Electric Guitar, +1,eguit clean 2.wav,Electric Guitar, +1,eguit clean 1.wav,Electric Guitar, +1,eguit chorus.wav,Electric Guitar, +1,eguit center.wav,Electric Guitar, +1,eguit c.wav,Electric Guitar, +1,eguit base.wav,Electric Guitar, +1,eguit auto pan.wav,Electric Guitar, +1,eguit 9.wav,Electric Guitar, +1,eguit 8.wav,Electric Guitar, +1,eguit 5 ambiance.wav,Electric Guitar, +1,eguit 3 right.wav,Electric Guitar, +1,eguit 2 delay.wav,Electric Guitar, +1,eguit 2 chorus.wav,Electric Guitar, +1,eguit 1 disto.wav,Electric Guitar, +1,eguit + eguit1.wav,Electric Guitar, +1,eguit (right).wav,Electric Guitar, +1,eguit (muted).wav,Electric Guitar, +1,eguit (left).wav,Electric Guitar, +1,eguit (feft).wav,Electric Guitar, +1,egui solos.wav,Electric Guitar, +1,egtrslides.wav,Electric Guitar, +1,egtr4 clean right.wav,Electric Guitar, +1,egtr4 (delay).wav,Electric Guitar, +1,egtr3 right.wav,Electric Guitar, +1,egtr3 left.wav,Electric Guitar, +1,egtr3 delay.wav,Electric Guitar, +1,egtr2+6 (palm muted).wav,Electric Guitar, +1,egtr1+3.wav,Electric Guitar, +1,egtr1 muted.wav,Electric Guitar, +1,egtr fx.wav,Electric Guitar, +1,egt 4.wav,Electric Guitar, +1,egsolo2.wav,Electric Guitar, +1,egsolo right.wav,Electric Guitar, +1,egsolo + disto2.wav,Electric Guitar, +1,egslidesolo.wav,Electric Guitar, +1,egslide+egtreble.wav,Electric Guitar, +1,egsdisto.wav,Electric Guitar, +1,egscrunch.wav,Electric Guitar, +1,egrotary.wav,Electric Guitar, +1,egriffs.wav,Electric Guitar, +1,egriff.wav,Electric Guitar, +1,egrhythm.wav,Electric Guitar, +1,egreverse.wav,Electric Guitar, +1,egr.wav,Electric Guitar, +1,egplucked.wav,Electric Guitar, +1,egoctave.wav,Electric Guitar, +1,egmute2 left.wav,Electric Guitar, +1,egmute+wah.wav,Electric Guitar, +1,eglick.wav,Electric Guitar, +1,eglead+arr.wav,Electric Guitar, +1,eglc.wav,Electric Guitar, +1,eghamonics.wav,Electric Guitar, +1,egdistortion2.wav,Electric Guitar, +1,egdistorted.wav,Electric Guitar, +1,egdisto_treble.wav,Electric Guitar, +1,egcleanplucked r.wav,Electric Guitar, +1,egcleanhigh.wav,Electric Guitar, +1,egclean_treble.wav,Electric Guitar, +1,egclean3.wav,Electric Guitar, +1,egclean2 right.wav,Electric Guitar, +1,egclean l.wav,Electric Guitar, +1,egchorus4.wav,Electric Guitar, +1,egchorus3 left.wav,Electric Guitar, +1,egchorus1 right.wav,Electric Guitar, +1,egchords.wav,Electric Guitar, +1,egatmo2.wav,Electric Guitar, +1,egarr.wav,Electric Guitar, +1,egambient.wav,Electric Guitar, +1,eg_wha.wav,Electric Guitar, +1,eg_tremolo.wav,Electric Guitar, +1,eg_trebleclean.wav,Electric Guitar, +1,eg_talkbox.wav,Electric Guitar, +1,eg_rwha.wav,Electric Guitar, +1,eg_rslide.wav,Electric Guitar, +1,eg_raddcrunch.wav,Electric Guitar, +1,eg_r2.wav,Electric Guitar, +1,eg_r(wha).wav,Electric Guitar, +1,eg_r(harmo).wav,Electric Guitar, +1,eg_r(clean).wav,Electric Guitar, +1,eg_lwha.wav,Electric Guitar, +1,eg_laddcrunch.wav,Electric Guitar, +1,eg_l_rlead.wav,Electric Guitar, +1,eg_l2clean.wav,Electric Guitar, +1,eg_l2.wav,Electric Guitar, +1,eg_l+r.wav,Electric Guitar, +1,eg_l(wha).wav,Electric Guitar, +1,eg_l(rotary).wav,Electric Guitar, +1,eg_l(clean).wav,Electric Guitar, +1,eg_1.wav,Electric Guitar, +1,eg_(solo).wav,Electric Guitar, +1,eg9.wav,Electric Guitar, +1,eg8.wav,Electric Guitar, +1,eg7 left.wav,Electric Guitar, +1,eg6 solos.wav,Electric Guitar, +1,eg5 melo.wav,Electric Guitar, +1,eg5 left.wav,Electric Guitar, +1,eg5 c.wav,Electric Guitar, +1,eg4 right.wav,Electric Guitar, +1,eg4 r.wav,Electric Guitar, +1,eg4 melo.wav,Electric Guitar, +1,eg4 c solo.wav,Electric Guitar, +1,eg3lead.wav,Electric Guitar, +1,eg3 l.wav,Electric Guitar, +1,eg3 intro effect right.wav,Electric Guitar, +1,eg3 c clean.wav,Electric Guitar, +1,eg2disto.wav,Electric Guitar, +1,eg2+3.wav,Electric Guitar, +1,eg2 r.wav,Electric Guitar, +1,eg2 muted.wav,Electric Guitar, +1,eg2 left.wav,Electric Guitar, +1,eg2 l base 1.wav,Electric Guitar, +1,eg2 intro effect left.wav,Electric Guitar, +1,eg2 + eg6.wav,Electric Guitar, +1,eg10.wav,Electric Guitar, +1,eg1+adds.wav,Electric Guitar, +1,eg1+2.wav,Electric Guitar, +1,eg1 intro effect.wav,Electric Guitar, +1,eg1 clean.wav,Electric Guitar, +1,eg1 c.wav,Electric Guitar, +1,eg1 c base 2.wav,Electric Guitar, +1,eg1 c base 1.wav,Electric Guitar, +1,eg1 c arreglo.wav,Electric Guitar, +1,eg1 bright.wav,Electric Guitar, +1,eg02.wav,Electric Guitar, +1,eg01.wav,Electric Guitar, +1,eg-.wav,Electric Guitar, +1,eg+treble.wav,Electric Guitar, +1,eg(whammy).wav,Electric Guitar, +1,eg(temolo).wav,Electric Guitar, +1,eg(solo) 2.wav,Electric Guitar, +1,eg(solo) 1.wav,Electric Guitar, +1,eg(slide).wav,Electric Guitar, +1,eg(rotary).wav,Electric Guitar, +1,eg(rhy).wav,Electric Guitar, +1,eg(perc).wav,Electric Guitar, +1,eg(lead)add.wav,Electric Guitar, +1,eg(lead)).wav,Electric Guitar, +1,eg(lead) 1.wav,Electric Guitar, +1,eg(lead) 1 left.wav,Electric Guitar, +1,eg(filter).wav,Electric Guitar, +1,eg(drive).wav,Electric Guitar, +1,eg(disto)_r.wav,Electric Guitar, +1,eg(disto)_l.wav,Electric Guitar, +1,eg(clean)_2.wav,Electric Guitar, +1,eg(baritone).wav,Electric Guitar, +1,eg(addsolo).wav,Electric Guitar, +1,eg wha.wav,Electric Guitar, +1,eg wah-wah.wav,Electric Guitar, +1,eg wah wah.wav,Electric Guitar, +1,eg vynil.wav,Electric Guitar, +1,eg trs cocotte.wav,Electric Guitar, +1,eg trem + fx.wav,Electric Guitar, +1,eg theme.wav,Electric Guitar, +1,eg synth.wav,Electric Guitar, +1,eg strum.wav,Electric Guitar, +1,eg solos.wav,Electric Guitar, +1,eg solo 3.wav,Electric Guitar, +1,eg solo 1+2.wav,Electric Guitar, +1,eg solo 1 + 2.wav,Electric Guitar, +1,eg slide solo.wav,Electric Guitar, +1,eg slide + fx + 11 + 4 + clean + 14 + 3.wav,Electric Guitar, +1,eg slade.wav,Electric Guitar, +1,eg rythm 02.wav,Electric Guitar, +1,eg rythm 01.wav,Electric Guitar, +1,eg riff 1 + 2.wav,Electric Guitar, +1,eg rhythmic.wav,Electric Guitar, +1,eg rhythmic 04.wav,Electric Guitar, +1,eg rhythmic 02.wav,Electric Guitar, +1,eg rhythmic 01.wav,Electric Guitar, +1,eg rhythm l + r.wav,Electric Guitar, +1,eg rhythm + adds.wav,Electric Guitar, +1,eg reverse l + r.wav,Electric Guitar, +1,eg reverb.wav,Electric Guitar, +1,eg r 2 fx.wav,Electric Guitar, +1,eg powerchords.wav,Electric Guitar, +1,eg pick theme.wav,Electric Guitar, +1,eg phaser 1 + 2.wav,Electric Guitar, +1,eg pedal.wav,Electric Guitar, +1,eg overdub.wav,Electric Guitar, +1,eg od 01.wav,Electric Guitar, +1,eg muted + solo.wav,Electric Guitar, +1,eg mute + chords 1.wav,Electric Guitar, +1,eg mix chorus 1 + 2.wav,Electric Guitar, +1,eg melody.wav,Electric Guitar, +1,eg main rhythms.wav,Electric Guitar, +1,eg main 1+eg stereo.wav,Electric Guitar, +1,eg licks.wav,Electric Guitar, +1,eg leads.wav,Electric Guitar, +1,eg lead l + r.wav,Electric Guitar, +1,eg lead 2 right.wav,Electric Guitar, +1,eg lead 1 left.wav,Electric Guitar, +1,eg lead 03.wav,Electric Guitar, +1,eg lead 03 end.wav,Electric Guitar, +1,eg l arr.wav,Electric Guitar, +1,eg l + r.wav,Electric Guitar, +1,eg intro + verses.wav,Electric Guitar, +1,eg harmonics.wav,Electric Guitar, +1,eg fx ambiance.wav,Electric Guitar, +1,eg fx + atmo + mute.wav,Electric Guitar, +1,eg fuzz.wav,Electric Guitar, +1,eg fuzz right.wav,Electric Guitar, +1,eg fuzz left.wav,Electric Guitar, +1,eg flanger.wav,Electric Guitar, +1,eg fb.wav,Electric Guitar, +1,eg est.wav,Electric Guitar, +1,eg end right + solo left.wav,Electric Guitar, +1,eg end left + harm.wav,Electric Guitar, +1,eg eg.wav,Electric Guitar, +1,eg dly.wav,Electric Guitar, +1,eg dist low.wav,Electric Guitar, +1,eg dist base.wav,Electric Guitar, +1,eg dist arr.wav,Electric Guitar, +1,eg dist adds.wav,Electric Guitar, +1,eg dist adds 2.wav,Electric Guitar, +1,eg dist adds 1.wav,Electric Guitar, +1,eg dist 4+5.wav,Electric Guitar, +1,eg dist 2.wav,Electric Guitar, +1,eg dist 1.wav,Electric Guitar, +1,eg dist 1+2+3.wav,Electric Guitar, +1,eg dist 1 + 2.wav,Electric Guitar, +1,eg dist 09 solo.wav,Electric Guitar, +1,eg dist 04+05.wav,Electric Guitar, +1,eg dist 04 solo.wav,Electric Guitar, +1,eg dist 03 right.wav,Electric Guitar, +1,eg dist 03 arr.wav,Electric Guitar, +1,eg dist 03 (right).wav,Electric Guitar, +1,eg dist 02 (left).wav,Electric Guitar, +1,eg dist 01+02+03.wav,Electric Guitar, +1,eg dist 01 right.wav,Electric Guitar, +1,eg dist 01 left.wav,Electric Guitar, +1,eg dis rhythm 2.wav,Electric Guitar, +1,eg dis rhythm 1.wav,Electric Guitar, +1,eg dis c.wav,Electric Guitar, +1,eg dis arr.wav,Electric Guitar, +1,eg dis 2.wav,Electric Guitar, +1,eg delay.wav,Electric Guitar, +1,eg delay fx 1+2.wav,Electric Guitar, +1,eg d.wav,Electric Guitar, +1,eg d right.wav,Electric Guitar, +1,eg crunch r.wav,Electric Guitar, +1,eg crunch left.wav,Electric Guitar, +1,eg crunch l.wav,Electric Guitar, +1,eg crunch l+r.wav,Electric Guitar, +1,eg crunch guitar + reverse guit center + rhythm 2.wav,Electric Guitar, +1,eg crunch arr.wav,Electric Guitar, +1,eg crunch 02 end.wav,Electric Guitar, +1,eg crunch + solo.wav,Electric Guitar, +1,eg crunch + l.wav,Electric Guitar, +1,eg crunch + ctr.wav,Electric Guitar, +1,eg crazy.wav,Electric Guitar, +1,eg clean right + left + delay right + fx left.wav,Electric Guitar, +1,eg clean right + add 3.wav,Electric Guitar, +1,eg clean rhythm left + clean rhythm right.wav,Electric Guitar, +1,eg clean l+r.wav,Electric Guitar, +1,eg clean intro.wav,Electric Guitar, +1,eg clean delay l+r.wav,Electric Guitar, +1,eg clean chorus.wav,Electric Guitar, +1,eg clean center + rhythm center.wav,Electric Guitar, +1,eg clean 4 + 5.wav,Electric Guitar, +1,eg clean 2+3+4.wav,Electric Guitar, +1,eg clean 2 l+r.wav,Electric Guitar, +1,eg clean 10.wav,Electric Guitar, +1,eg clean 1+2.wav,Electric Guitar, +1,eg clean 1 l+r.wav,Electric Guitar, +1,eg clean 1 + 2.wav,Electric Guitar, +1,eg clean 09.wav,Electric Guitar, +1,eg clean 09+dist 06.wav,Electric Guitar, +1,eg clean 08.wav,Electric Guitar, +1,eg clean 07.wav,Electric Guitar, +1,eg clean 07+08.wav,Electric Guitar, +1,eg clean 05.wav,Electric Guitar, +1,eg clean 04.wav,Electric Guitar, +1,eg clean 04+05.wav,Electric Guitar, +1,eg clean 03+06.wav,Electric Guitar, +1,eg clean 02 intro.wav,Electric Guitar, +1,eg clean 01+02.wav,Electric Guitar, +1,eg clean 01 left.wav,Electric Guitar, +1,eg clean + theme.wav,Electric Guitar, +1,eg cl 2.wav,Electric Guitar, +1,eg cl 1.wav,Electric Guitar, +1,eg chorus 2.wav,Electric Guitar, +1,eg chorus 1.wav,Electric Guitar, +1,eg chords 2.wav,Electric Guitar, +1,eg chord.wav,Electric Guitar, +1,eg cho.wav,Electric Guitar, +1,eg center.wav,Electric Guitar, +1,eg c fuzz.wav,Electric Guitar, +1,eg c 2.wav,Electric Guitar, +1,eg base.wav,Electric Guitar, +1,eg b 1.wav,Electric Guitar, +1,eg arrangement.wav,Electric Guitar, +1,eg arrangement 03.wav,Electric Guitar, +1,eg arr 4.wav,Electric Guitar, +1,eg arr 2 right.wav,Electric Guitar, +1,eg arr 12.wav,Electric Guitar, +1,eg arr 02.wav,Electric Guitar, +1,eg arr 01.wav,Electric Guitar, +1,eg arp.wav,Electric Guitar, +1,eg ambient chords.wav,Electric Guitar, +1,eg adds r.wav,Electric Guitar, +1,eg adds l.wav,Electric Guitar, +1,eg adds glitch.wav,Electric Guitar, +1,eg adds 2 l.wav,Electric Guitar, +1,eg adds 1 r.wav,Electric Guitar, +1,eg addlib.wav,Electric Guitar, +1,eg add.wav,Electric Guitar, +1,eg add ab.wav,Electric Guitar, +1,eg add 2.wav,Electric Guitar, +1,eg add 1.wav,Electric Guitar, +1,eg add 1 + arr l.wav,Electric Guitar, +1,eg add + arr 4.wav,Electric Guitar, +1,eg 9 right.wav,Electric Guitar, +1,eg 8+9+11+12+13.wav,Electric Guitar, +1,eg 8 left.wav,Electric Guitar, +1,eg 8 - 9.wav,Electric Guitar, +1,eg 8 + 9 + 10.wav,Electric Guitar, +1,eg 7+14+15.wav,Electric Guitar, +1,eg 7 reverb.wav,Electric Guitar, +1,eg 7 left.wav,Electric Guitar, +1,eg 6 right.wav,Electric Guitar, +1,eg 6 muted.wav,Electric Guitar, +1,eg 6 left.wav,Electric Guitar, +1,eg 6 end.wav,Electric Guitar, +1,eg 6 arr.wav,Electric Guitar, +1,eg 6 + 8.wav,Electric Guitar, +1,eg 567.wav,Electric Guitar, +1,eg 5+6.wav,Electric Guitar, +1,eg 5+6+8+9+10.wav,Electric Guitar, +1,eg 5+6+7.wav,Electric Guitar, +1,eg 5 center.wav,Electric Guitar, +1,eg 5 add arp.wav,Electric Guitar, +1,eg 5 + 9 + 10 + 11.wav,Electric Guitar, +1,eg 5 + 8.wav,Electric Guitar, +1,eg 5 + 8 disto + solo.wav,Electric Guitar, +1,eg 5 + 6 + 7.wav,Electric Guitar, +1,eg 5 (chords).wav,Electric Guitar, +1,eg 46.wav,Electric Guitar, +1,eg 4+9.wav,Electric Guitar, +1,eg 4+7.wav,Electric Guitar, +1,eg 4+5.wav,Electric Guitar, +1,eg 4 l+r.wav,Electric Guitar, +1,eg 4 + solo.wav,Electric Guitar, +1,eg 4 + 7 (clean right).wav,Electric Guitar, +1,eg 3+8+11+14.wav,Electric Guitar, +1,eg 3+4.wav,Electric Guitar, +1,eg 3+10.wav,Electric Guitar, +1,eg 3 solos.wav,Electric Guitar, +1,eg 3 right end.wav,Electric Guitar, +1,eg 3 muted right.wav,Electric Guitar, +1,eg 3 left rythm.wav,Electric Guitar, +1,eg 3 l.wav,Electric Guitar, +1,eg 3 arr.wav,Electric Guitar, +1,eg 3 + 5 + 8.wav,Electric Guitar, +1,eg 3 + 4 + 7.wav,Electric Guitar, +1,eg 3 + 10 + 11.wav,Electric Guitar, +1,eg 3 (r).wav,Electric Guitar, +1,eg 2lead.wav,Electric Guitar, +1,eg 2+wahwah.wav,Electric Guitar, +1,eg 2+5.wav,Electric Guitar, +1,eg 2 whawha.wav,Electric Guitar, +1,eg 2 r.wav,Electric Guitar, +1,eg 2 muted.wav,Electric Guitar, +1,eg 2 muted right.wav,Electric Guitar, +1,eg 2 muted left.wav,Electric Guitar, +1,eg 2 left end.wav,Electric Guitar, +1,eg 2 l.wav,Electric Guitar, +1,eg 2 intro.wav,Electric Guitar, +1,eg 2 intro r.wav,Electric Guitar, +1,eg 2 disto + eg lead 1 + eg lead 2.wav,Electric Guitar, +1,eg 2 dis.wav,Electric Guitar, +1,eg 2 delay right.wav,Electric Guitar, +1,eg 2 delay end.wav,Electric Guitar, +1,eg 2 background.wav,Electric Guitar, +1,eg 2 + 6 + 7 + 8.wav,Electric Guitar, +1,eg 2 + 3 + 4 + 9.wav,Electric Guitar, +1,eg 2 (l).wav,Electric Guitar, +1,eg 13.wav,Electric Guitar, +1,eg 12+13+15.wav,Electric Guitar, +1,eg 12 + 13.wav,Electric Guitar, +1,eg 10.wav,Electric Guitar, +1,eg 1+2+6.wav,Electric Guitar, +1,eg 1+2+6+7+10.wav,Electric Guitar, +1,eg 1+2 lr.wav,Electric Guitar, +1,eg 1 tremolo.wav,Electric Guitar, +1,eg 1 r.wav,Electric Guitar, +1,eg 1 muted left.wav,Electric Guitar, +1,eg 1 left phaser.wav,Electric Guitar, +1,eg 1 l.wav,Electric Guitar, +1,eg 1 intro.wav,Electric Guitar, +1,eg 1 fx.wav,Electric Guitar, +1,eg 1 end.wav,Electric Guitar, +1,eg 1 + eg 3fx.wav,Electric Guitar, +1,eg 1 + 5 +10.wav,Electric Guitar, +1,eg 1 + 4.wav,Electric Guitar, +1,eg 1 + 2 muted.wav,Electric Guitar, +1,eg 1 + 2 + slide.wav,Electric Guitar, +1,eg 1 + 2 + 5.wav,Electric Guitar, +1,eg 1 + 2 (theme).wav,Electric Guitar, +1,eg 08.wav,Electric Guitar, +1,eg 07.wav,Electric Guitar, +1,eg 06+03.wav,Electric Guitar, +1,eg 04 solo.wav,Electric Guitar, +1,eg 04 left+right.wav,Electric Guitar, +1,eg 03 right.wav,Electric Guitar, +1,eg 03 left.wav,Electric Guitar, +1,eg 03 intro.wav,Electric Guitar, +1,eg 02 muted.wav,Electric Guitar, +1,eg 01 left.wav,Electric Guitar, +1,eg 01 left+right.wav,Electric Guitar, +1,eg 01 crunch.wav,Electric Guitar, +1,eg 01 ambiance.wav,Electric Guitar, +1,eg (palm mute) 2.wav,Electric Guitar, +1,eg (palm mute) 1.wav,Electric Guitar, +1,efxgt.wav,Other, +1,efx_perc.wav,Other, +1,efx(rain).wav,Other, +1,efx(crowd).wav,Other, +1,efx intro.wav,Other, +1,efx drop.wav,Other, +1,efx birds.wav,Other, +1,effet synthe.wav,Other, +1,effectguitar 3.wav,Other, +1,effectgtr 3.wav,Other, +1,effect.wav,Other, +1,edrums and shak.wav,Other, +1,edroite.wav,Other, +1,ed fletcher.wav,Other, +1,e.wav,Other, +1,e.piano.wav,Other, +1,e.gtr.wav,Other, +1,e.d.i. mean.wav,Other, +1,e-git lead.wav,Other, +1,e-drums.wav,Other, +1,e-drums&percs.wav,Other, +1,e-40-adlib.wav,Other, +1,e piano-1.wav,Other, +1,e piano solo.wav,Other, +1,e piano arr.wav,Other, +1,e keys 2.wav,Other, +1,e guitars.wav,Electric Guitar, +1,e guitar solo 2.wav,Electric Guitar, +1,e guitar solo 1.wav,Electric Guitar, +1,e guitar solo 1 r.wav,Electric Guitar, +1,e guitar solo 1 l.wav,Electric Guitar, +1,e guitar right.wav,Electric Guitar, +1,e guitar rhytmic.wav,Electric Guitar, +1,e guitar rhytmic disto 3.wav,Electric Guitar, +1,e guitar rhytmic disto 2.wav,Electric Guitar, +1,e guitar rhytmic disto 1.wav,Electric Guitar, +1,e guitar rhytmic crunch.wav,Electric Guitar, +1,e guitar open.wav,Electric Guitar, +1,e guitar muted.wav,Electric Guitar, +1,e guitar left.wav,Electric Guitar, +1,e guitar fx.wav,Electric Guitar, +1,e guitar fuzz.wav,Electric Guitar, +1,e guitar disto 3 r.wav,Electric Guitar, +1,e guitar disto 3 l.wav,Electric Guitar, +1,e guitar disto 2 r.wav,Electric Guitar, +1,e guitar disto 2 l.wav,Electric Guitar, +1,e guitar disto 1 r.wav,Electric Guitar, +1,e guitar disto 1 l.wav,Electric Guitar, +1,e guitar clean.wav,Electric Guitar, +1,e guitar c.wav,Electric Guitar, +1,e guitar arragement clean 2.wav,Electric Guitar, +1,e guitar arragement 3.wav,Electric Guitar, +1,e guitar 6.wav,Electric Guitar, +1,e guitar 5.wav,Electric Guitar, +1,e guitar 4r.wav,Electric Guitar, +1,e guitar 4 chords.wav,Electric Guitar, +1,e guitar 3 r.wav,Electric Guitar, +1,e guitar 3 l.wav,Electric Guitar, +1,e guitar 2 muted.wav,Electric Guitar, +1,e guitar 2 l.wav,Electric Guitar, +1,e guitar 2 c.wav,Electric Guitar, +1,e guitar 1 r.wav,Electric Guitar, +1,e guitar 04.wav,Electric Guitar, +1,e guitar 03 c.wav,Electric Guitar, +1,e guitar 02 r.wav,Electric Guitar, +1,e guitar 01 l.wav,Electric Guitar, +1,e guit 3.wav,Electric Guitar, +1,e guit 2.wav,Electric Guitar, +1,e guit 1.wav,Electric Guitar, +1,e gtr2.wav,Electric Guitar, +1,e gtr clean.wav,Electric Guitar, +1,e gtr 3.wav,Electric Guitar, +1,e gtr 2 right.wav,Electric Guitar, +1,e gtr 1 left.wav,Electric Guitar, +1,dx piano.wav,Other, +1,dwele.wav,Other, +1,dv2.wav,Other, +1,dv and adds.wav,Other, +1,dustin lynch.wav,Other, +1,dums.wav,Other, +1,dukcimer.wav,Other, +1,ducked basses.wav,Other, +1,dubstep.wav,Other, +1,dub synth.wav,Other, +1,dub synth-new-full.wav,Other, +1,dub bass.wav,Other, +1,drumsperc.wav,Drums, +1,drumsbass.wav,Drums, +1,drums_ok.wav,Drums, +1,drums_electric.wav,Drums, +1,drums2.wav,Drums, +1,drums1+2.wav,Drums, +1,drums.cm.wav,Drums, +1,drums-toms.wav,Drums, +1,drums+tambourinemix.wav,Drums, +1,drums+perc.wav,Drums, +1,drums+fx street.wav,Drums, +1,drums+edrums.wav,Drums, +1,drums+claps.wav,Drums, +1,drums(el.kit).wav,Drums, +1,drums(ac.kit).wav,Drums, +1,drums without clap.wav,Drums, +1,drums percs fx.wav,Drums, +1,drums perc.wav,Drums, +1,drums mixmaster.wav,Drums, +1,drums loop.wav,Drums, +1,drums loop+percs+fx.wav,Drums, +1,drums kick.wav,Drums, +1,drums electronic.wav,Drums, +1,drums elec mixmaster.wav,Drums, +1,drums eb 140bpm.wav,Drums, +1,drums and toms.wav,Drums, +1,drums and tambourine.wav,Drums, +1,drums and percs.wav,Drums, +1,drums and perc.wav,Drums, +1,drums and loop end.wav,Drums, +1,drums and eurodance.wav,Drums, +1,drums and cymb.wav,Drums, +1,drums 102bpm.wav,Drums, +1,drums 1 + 2.wav,Drums, +1,drums (loop).wav,Drums, +1,drums & percs.wav,Drums, +1,drum&perc.wav,Drums, +1,drum set 2 left.wav,Drums, +1,drum set 1 right.wav,Drums, +1,drum kit 2.wav,Drums, +1,drum kit 1.wav,Drums, +1,drum and dradds.wav,Drums, +1,drum (loop).wav,Drums, +1,drop_synth.wav,Other, +1,droiteguitar.wav,Other, +1,drivegt 2.wav,Other, +1,drive by.wav,Other, +1,drievgt 3.wav,Other, +1,drievgt 2.wav,Other, +1,drel.wav,Other, +1,dre synth.wav,Other, +1,drama_synth_1.wav,Other, +1,dragonball_s_synth_leads.wav,Other, +1,dragonball_s_orch_strings.wav,Other, +1,dragonball_s_orch_percussion_timpanis.wav,Other, +1,dragonball_s_orch_percussion_edit.wav,Other, +1,dragonball_s_orch_harp.wav,Other, +1,dragonball_s_lv.wav,Other, +1,dragonball_s_guitars_rhythm.wav,Other, +1,dragonball_s_guitars_lead.wav,Other, +1,dragonball_s_guitar_dub_02.wav,Other, +1,dragonball_s_guitar_dub_01.wav,Other, +1,dragonball_s_drums.wav,Other, +1,dragonball_s_bv.wav,Other, +1,dragonball_s_bass.wav,Other, +1,dr. dre-adlib.wav,Other, +1,dove cameron.wav,Other, +1,doubleblass.wav,Other, +1,doublebass pizzicato.wav,Other, +1,dobro slide.wav,Other, +1,dnce.wav,Other, +1,dnce-adlib.wav,Other, +1,dnb bass.wav,Other, +1,dmx.wav,Other, +1,dmc.wav,Other, +1,dlygtr.wav,Other, +1,djembe.wav,Other, +1,dj.wav,Other, +1,dj trick + woosh + moog.wav,Other, +1,dj khalid.wav,Other, +1,dj kay gee.wav,Other, +1,dj kane.wav,Other, +1,dj fx.wav,Other, +1,dj ez.wav,Other, +1,dizzee rascal.wav,Other, +1,distosynth.wav,Other, +1,distortion gtr.wav,Electric Guitar, +1,distortedguitar.wav,Electric Guitar, +1,distorted guitar.wav,Electric Guitar, +1,distorsion guitar solo.wav,Electric Guitar, +1,distoguitar 4.wav,Electric Guitar, +1,distoguitar 1.wav,Electric Guitar, +1,distogtrs1.wav,Electric Guitar, +1,distogtr23 lr.wav,Electric Guitar, +1,distogtr2.wav,Electric Guitar, +1,distogtr.wav,Electric Guitar, +1,distoelguitarstereolow.wav,Electric Guitar, +1,distoelguitarstereohigh.wav,Electric Guitar, +1,distobass and sinebass.wav,Electric Guitar, +1,disto.wav,Electric Guitar, +1,disto solo eg.wav,Electric Guitar, +1,disto right gtr 4.wav,Electric Guitar, +1,disto right gtr 2.wav,Electric Guitar, +1,disto right eg.wav,Electric Guitar, +1,disto mono center eg.wav,Electric Guitar, +1,disto left gtr 3.wav,Electric Guitar, +1,disto left gtr 1.wav,Electric Guitar, +1,disto left eg.wav,Electric Guitar, +1,disto guitar.wav,Electric Guitar, +1,disto guit.wav,Electric Guitar, +1,disto gtrs.wav,Electric Guitar, +1,disto gtr2.wav,Electric Guitar, +1,disto eg2.wav,Electric Guitar, +1,disto ass lead.wav,Electric Guitar, +1,distleadguitar.wav,Electric Guitar, +1,distguitardelay.wav,Electric Guitar, +1,distguitar.wav,Electric Guitar, +1,distgtrs.wav,Electric Guitar, +1,dist_guitars.wav,Electric Guitar, +1,dist. guitar.wav,Electric Guitar, +1,dist guitar.wav,Electric Guitar, +1,dis right.wav,Electric Guitar, +1,dirty hypersaw resosub wooble.wav,Electric Guitar, +1,dirty guits.wav,Electric Guitar, +1,dinco d.wav,Other, +1,digital_piano.wav,Other, +1,digital.wav,Other, +1,digital-piano.wav,Other, +1,digital comp.wav,Other, +1,digeridoo.wav,Other, +1,dig piano.wav,Other, +1,dierks bentley.wav,Other, +1,didg.wav,Other, +1,diamante.wav,Other, +1,di_guitar.wav,Other, +1,dgtr 1.wav,Other, +1,dgauche.wav,Other, +1,devin dawson.wav,Other, +1,deuce.wav,Other, +1,delaysynth.wav,Other, +1,delayguitar.wav,Other, +1,delay guit.wav,Other, +1,del the funky homosapien.wav,Other, +1,def.wav,Other, +1,decompte.wav,Other, +1,decks.wav,Other, +1,decay.wav,Other, +1,dblbass.wav,Other, +1,daw.wav,Other, +1,david guetta.wav,Other, +1,david gilmour.wav,Other, +1,david bowie.wav,Other, +1,david archuleta.wav,Other, +1,dave matthews.wav,Other, +1,dave hollister.wav,Other, +1,dave haywood.wav,Other, +1,darryl mcdaniels.wav,Other, +1,daron malakian.wav,Other, +1,dark strings.wav,Other, +1,darell.wav,Other, +1,danny worsnop.wav,Other, +1,danny worsnop-adlib.wav,Other, +1,danny boy.wav,Other, +1,daniel caesar-adlib.wav,Other, +1,dance groove.wav,Other, +1,dance basic.wav,Other, +1,dan.wav,Other, +1,dan reynolds.wav,Other, +1,dan caplen.wav,Other, +1,damon albarn.wav,Other, +1,damon albarn-adlib.wav,Other, +1,damien rice.wav,Other, +1,daddy yankee.wav,Other, +1,dacus.wav,Other, +1,da kurlzz.wav,Other, +1,d50.wav,Other, +1,d50 staccato heaven.wav,Other, +1,d.o.e..wav,Other, +1,d-roc.wav,Other, +1,cymbs.wav,Other, +1,cymbalum.wav,Other, +1,cymbal.wav,Other, +1,curtis harding.wav,Other, +1,cuivres.wav,Other, +1,cuica.wav,Other, +1,cuatro.wav,Other, +1,cuatro-.wav,Other, +1,crystal rhodes.wav,Other, +1,crush decay.wav,Other, +1,crunchy black.wav,Other, +1,crunchgtr.wav,Other, +1,crunchgt.wav,Other, +1,crunch wahwah eg.wav,Other, +1,crunch strumming eg.wav,Other, +1,crunch right eg.wav,Other, +1,crunch arpeggio eg.wav,Other, +1,crunch left eg.wav,Other, +1,crowd voices.wav,Other, +1,cris pad.wav,Other, +1,crickets.wav,Other, +1,crescendo.wav,Other, +1,crash.wav,Other, +1,crack.wav,Other, +1,cp rhodes.wav,Other, +1,cp piano.wav,Other, +1,cp 80.wav,Other, +1,courtney laplante.wav,Other, +1,countoff.wav,Other, +1,counting crows.wav,Other, +1,counter gtr.wav,Other, +1,countdown.wav,Other, +1,count_&_fx.wav,Other, +1,corona.wav,Other, +1,conway twitty.wav,Other, +1,contrebasse.wav,Other, +1,compusaw.wav,Other, +1,colter wall.wav,Other, +1,collective soul - shine - lv.wav,Other, +1,collective soul - shine - guitar 3.wav,Other, +1,collective soul - shine - guitar 2.wav,Other, +1,collective soul - shine - guitar 1.wav,Other, +1,collective soul - shine - drum.wav,Other, +1,collective soul - shine - bv.wav,Other, +1,collective soul - shine - bass.wav,Other, +1,collective soul - shine - acc guitar.wav,Other, +1,coldplay.wav,Other, +1,cody wise.wav,Other, +1,cody chesnutt.wav,Other, +1,cloud_shimmer.wav,Other, +1,clock.wav,Other, +1,cloches.wav,Other, +1,clngtrs.wav,Other, +1,clicks.wav,Other, +1,click2.wav,Other, +1,clic.wav,Other, +1,cleanguitardelay.wav,Electric Guitar, +1,cleanguitar 3.wav,Electric Guitar, +1,cleanguitar 2.wav,Electric Guitar, +1,cleangtr.wav,Electric Guitar, +1,cleangt left.wav,Electric Guitar, +1,cleangt 3.wav,Electric Guitar, +1,cleangt 2 right.wav,Electric Guitar, +1,clean wahwha eg.wav,Electric Guitar, +1,clean right eggtr 2.wav,Electric Guitar, +1,clean right eg.wav,Electric Guitar, +1,clean mute.wav,Electric Guitar, +1,clean left eg.wav,Electric Guitar, +1,clean left eg.wav,Electric Guitar, +1,clean guitars.wav,Electric Guitar, +1,clean guitar 2.wav,Electric Guitar, +1,clean guit.wav,Electric Guitar, +1,clean guit delay.wav,Electric Guitar, +1,clean gtrs.wav,Electric Guitar, +1,clean gtr1.wav,Electric Guitar, +1,clean gtr 2.wav,Electric Guitar, +1,clean gtr 1.wav,Electric Guitar, +1,clean gt.wav,Electric Guitar, +1,clean gt 2.wav,Electric Guitar, +1,clean funk eg.wav,Electric Guitar, +1,clean electric gtr.wav,Electric Guitar, +1,clean e.guitar.wav,Electric Guitar, +1,clean center eg.wav,Electric Guitar, +1,clean arr eg.wav,Electric Guitar, +1,clean arp right eg.wav,Electric Guitar, +1,clavinets.wav,Keyboard,Clavinet +1,clavinet+glock.wav,Keyboard,Clavinet +1,clavinet synth.wav,Keyboard,Clavinet +1,clavinet ep.wav,Keyboard,Clavinet +1,clavinet 1.wav,Keyboard,Clavinet +1,clavinet 1 left.wav,Keyboard,Clavinet +1,clavier and lead.wav,Keyboard,Clavinet +1,clavi piano.wav,Keyboard,Clavinet +1,claves.wav,Keyboard,Clavinet +1,clav synths.wav,Keyboard,Clavinet +1,clav synth.wav,Keyboard,Clavinet +1,classical solo guitar right.wav,Other, +1,classical solo guitar left.wav,Other, +1,classical rhythm guitarwav.wav,Other, +1,classic guitar.wav,Other, +1,clarnet.wav,Other, +1,clarinet 2.wav,Other, +1,clarinet 1.wav,Other, +1,claps-01.wav,Other,Claps +1,claps+sfx.wav,Other,Claps +1,claps+rise.wav,Other,Claps +1,claps and snaps.wav,Other,Claps +1,claps & hats.wav,Other,Claps +1,clapp.wav,Other,Claps +1,clap fx.wav,Other,Claps +1,clap crowd.wav,Other,Claps +1,cl.wav,Other, +1,city girls.wav,Other, +1,cindy wilson.wav,Other, +1,cicus.wav,Other, +1,chuggtrdelay.wav,Other, +1,chrome.wav,Other, +1,chrom perc+bells.wav,Other, +1,chris stapleton.wav,Other, +1,chris martin.wav,Other, +1,chris brown-adlib.wav,Other, +1,chorusldguitar.wav,Other, +1,choruslayersynth.wav,Other, +1,chorusgtr+filtered.wav,Other, +1,chorusdistguitar.wav,Other, +1,chorusacoustic2.wav,Other, +1,chorusacoustic.wav,Other, +1,chorus guitar.wav,Other, +1,chorld.wav,Other, +1,chordsynth.wav,Other, +1,chord synth.wav,Other, +1,choirsynth.wav,Other, +1,choir_strings_synth.wav,Other, +1,choir vst.wav,Other, +1,choir synth.wav,Other, +1,choir synth mixmaster.wav,Other, +1,choir pad 12.wav,Other, +1,choir bv.wav,Other, +1,choir ahhs.wav,Other, +1,choeurs_the_cars_good_times_roll.wav,Other, +1,choeurs_stone_temple_pilots_dead_and_bloated.wav,Other, +1,chiquis rivera.wav,Other, +1,chior.wav,Other, +1,chimes timbales.wav,Other, +1,chilli.wav,Other, +1,child_voice.wav,Other, +1,chicago sufjan stevens wurlitzer right.wav,Other, +1,chicago sufjan stevens wurlitzer 2 left.wav,Other, +1,chicago sufjan stevens vibraphone.wav,Other, +1,chicago sufjan stevens trumpet.wav,Other, +1,chicago sufjan stevens strings section.wav,Other, +1,chicago sufjan stevens rhodes.wav,Other, +1,chicago sufjan stevens perc.wav,Other, +1,chicago sufjan stevens ld.wav,Other, +1,chicago sufjan stevens drums.wav,Other, +1,chicago sufjan stevens bv.wav,Other, +1,chicago sufjan stevens bass.wav,Other, +1,chicago sufjan stevens a guitar 2.wav,Other, +1,chicago sufjan stevens a guitar 1.wav,Other, +1,cher lloyd.wav,Other, +1,chencho corleone.wav,Other, +1,cheesey synth.wav,Other, +1,chat vox crowd.wav,Other, +1,charlie chaplin sample.wav,Other, +1,charlie brown.wav,Other, +1,charli xcx.wav,Other, +1,charlez aznavour.wav,Other, +1,chantolina.wav,Other, +1,chant.wav,Other, +1,centergtr 6.wav,Electric Guitar, +1,centergtr 5.wav,Electric Guitar, +1,centergtr 4.wav,Electric Guitar, +1,centergtr 2.wav,Electric Guitar, +1,centergtr 1.wav,Electric Guitar, +1,center gtr 5.wav,Electric Guitar, +1,center gtr 3.wav,Electric Guitar, +1,center gtr 1.wav,Electric Guitar, +1,center gtr 3.wav,Electric Guitar, +1,center clean rhythmic eg.wav,Electric Guitar, +1,cello lead.wav,Cello, +1,cello 02.wav,Cello, +1,cello 01.wav,Cello, +1,celli.wav,Cello, +1,celine dion.wav,Other, +1,celine dion-adlib.wav,Other, +1,celesta_1.wav,Other, +1,cav.wav,Other, +1,casting synth 3.wav,Other, +1,casting synth 2.wav,Other, +1,casting synth 1.wav,Other, +1,casting strings.wav,Other, +1,casting piano.wav,Other, +1,casting lv.wav,Other, +1,casting guitar 3.wav,Other, +1,casting guitar 2.wav,Other, +1,casting guitar 1.wav,Other, +1,casting drum.wav,Other, +1,casting crowns.wav,Other, +1,casting crowns-adlib.wav,Other, +1,casting bv.wav,Other, +1,casting brass.wav,Other, +1,casting bass.wav,Other, +1,casting acc guitar.wav,Other, +1,castaznets.wav,Other, +1,castanets.wav,Other, +1,cassadee pope.wav,Other, +1,casper.wav,Other, +1,carter beauford.wav,Other, +1,carly pearce.wav,Other, +1,carlprit.wav,Other, +1,carlos vives.wav,Other, +1,cardi b bv.wav,Other, +1,car fx_synth.wav,Other, +1,calvin harris.wav,Other, +1,calliope.wav,Other, +1,cajon flamenco.wav,Other, +1,cabasa.wav,Other, +1,c.wav,Other, +1,c gtr.wav,Other, +1,bvs speak and fx.wav,Voice,Backing +1,bvs female.wav,Voice,Backing +1,bvs and fx bvs.wav,Voice,Backing +1,bvs and adds.wav,Voice,Backing +1,bvox only-1.wav,Voice,Backing +1,bvox ok.wav,Voice,Backing +1,bvnew.wav,Voice,Backing +1,bvmix.wav,Voice,Backing +1,bvgr.wav,Voice,Backing +1,bv_weeknd.wav,Voice,Backing +1,bv_rap.wav,Voice,Backing +1,bv_ok.wav,Voice,Backing +1,bv_male.wav,Voice,Backing +1,bv_male mix.wav,Voice,Backing +1,bv_male 3.wav,Voice,Backing +1,bv_male 2.wav,Voice,Backing +1,bv_male 1.wav,Voice,Backing +1,bv_madonna.wav,Voice,Backing +1,bv_fem.wav,Voice,Backing +1,bv_fame.wav,Voice,Backing +1,bv_chorus.wav,Voice,Backing +1,bv_chester.wav,Voice,Backing +1,bv_anglais.wav,Voice,Backing +1,bv_2.wav,Voice,Backing +1,bv4.wav,Voice,Backing +1,bv2+3mix.wav,Voice,Backing +1,bv2 fx watchawant.wav,Voice,Backing +1,bv1 spoken oxy cotton.wav,Voice,Backing +1,bv.2.wav,Voice,Backing +1,bv..wav,Voice,Backing +1,bv-voc1+2+3mix.wav,Voice,Backing +1,bv-talkbox.wav,Voice,Backing +1,bv-male.wav,Voice,Backing +1,bv-m.a.a.d city.wav,Voice,Backing +1,bv-lyrics.wav,Voice,Backing +1,bv-girls.wav,Voice,Backing +1,bv-gimme&ahhs.wav,Voice,Backing +1,bv-boys.wav,Voice,Backing +1,bv-adds2.wav,Voice,Backing +1,bv-adds1.wav,Voice,Backing +1,bv-3.wav,Voice,Backing +1,bv-2+3mix.wav,Voice,Backing +1,bv-1 right.wav,Voice,Backing +1,bv+voc1.wav,Voice,Backing +1,bv+voc1+2bmix.wav,Voice,Backing +1,bv+voc1+1b+2bmix.wav,Voice,Backing +1,bv+ldbouble.wav,Voice,Backing +1,bv+breath.wav,Voice,Backing +1,bv+add.wav,Voice,Backing +1,bv(vocoder).wav,Voice,Backing +1,bv(solo).wav,Voice,Backing +1,bv(scream).wav,Voice,Backing +1,bv will.wav,Voice,Backing +1,bv vox.wav,Voice,Backing +1,bv vocoder.wav,Voice,Backing +1,bv stereo.wav,Voice,Backing +1,bv rap.wav,Voice,Backing +1,bv philippine.wav,Voice,Backing +1,bv ok.wav,Voice,Backing +1,bv oh.wav,Voice,Backing +1,bv nicky.wav,Voice,Backing +1,bv mix.wav,Voice,Backing +1,bv kristie 1+2.wav,Voice,Backing +1,bv intro.wav,Voice,Backing +1,bv him.wav,Voice,Backing +1,bv gospel.wav,Voice,Backing +1,bv fx.wav,Voice,Backing +1,bv fem + male.wav,Voice,Backing +1,bv eb 140bpm.wav,Voice,Backing +1,bv dv adds.wav,Voice,Backing +1,bv choir.wav,Voice,Backing +1,bv bob.wav,Voice,Backing +1,bv bass.wav,Voice,Backing +1,bv and speach.wav,Voice,Backing +1,bv and scream.wav,Voice,Backing +1,bv and sampler.wav,Voice,Backing +1,bv and da kurlzz.wav,Voice,Backing +1,bv and crowd.wav,Voice,Backing +1,bv and bv scream.wav,Voice,Backing +1,bv adds and wistling.wav,Voice,Backing +1,bv add.wav,Voice,Backing +1,bv 5.wav,Voice,Backing +1,bv 4.wav,Voice,Backing +1,bv 3.wav,Voice,Backing +1,bv 3 fx.wav,Voice,Backing +1,bv 2 r.wav,Voice,Backing +1,bv 2 megan.wav,Voice,Backing +1,bv 1+2.wav,Voice,Backing +1,bv 1 renee.wav,Voice,Backing +1,bv 1 light it up.wav,Voice,Backing +1,bv 1 l.wav,Voice,Backing +1,bv + whistle.wav,Voice,Backing +1,bv + breathing.wav,Voice,Backing +1,bv (3).wav,Voice,Backing +1,burna boy.wav,Other, +1,bun b.wav,Other, +1,bugle.wav,Other, +1,buena vista social club.wav,Other, +1,buddy guy.wav,Other, +1,bts.wav,Other, +1,bryson tiller.wav,Other, +1,brush kit.wav,Other, +1,brittni jessie.wav,Other, +1,bright synth.wav,Other, +1,bright square synth.wav,Other, +1,bright pad.wav,Other, +1,bright fuzz.wav,Other, +1,bridgers.wav,Other, +1,bridgeacoustic.wav,Other, +1,bridge synth.wav,Other, +1,brian burkheiser.wav,Other, +1,brenda russell.wav,Other, +1,brenda lee.wav,Other, +1,breland.wav,Other, +1,breaking benjamin.wav,Other, +1,brasssynth.wav,Other,Brass +1,brasshit.wav,Other,Brass +1,brasses ensemble.wav,Other,Brass +1,brass_sect.wav,Other,Brass +1,brass2 left.wav,Other,Brass +1,brass-stabs.wav,Other,Brass +1,brass,Other,Brass +1,brass+flute.wav,Other,Brass +1,brass v3.wav,Other,Brass +1,brass synths.wav,Other,Brass +1,brass strings.wav,Other,Brass +1,brass strings wind.wav,Other,Brass +1,brass solo.wav,Other,Brass +1,brass ensemble.wav,Other,Brass +1,brass end.wav,Other,Brass +1,brass emsemble.wav,Other,Brass +1,brass arr.wav,Other,Brass +1,brass and trumpet.wav,Other,Brass +1,brass 2.wav,Other,Brass +1,brass 1.wav,Other,Brass +1,brass + woodwind.wav,Other,Brass +1,brass + trombone.wav,Other,Brass +1,brases.wav,Other, +1,bras vst.wav,Other, +1,boyz ii men.wav,Other, +1,bowl.wav,Other, +1,bounce.wav,Other, +1,both pads.wav,Other, +1,boop synth.wav,Other, +1,boomfx.wav,Other, +1,boomers.wav,Other, +1,boom bass drop.wav,Other, +1,bono.wav,Other, +1,bongo.wav,Other, +1,bones.wav,Other, +1,boef.wav,Other, +1,bobby valentino.wav,Other, +1,blurgrass banjo.wav,Other, +1,blueface.wav,Other, +1,blow.wav,Other, +1,blip_synth.wav,Other, +1,blip synth.wav,Other, +1,bling bling.wav,Other, +1,blake shelton-adlib.wav,Other, +1,black eyed peas.wav,Other, +1,bkq.wav,Other, +1,bkgnds2lyrics.wav,Other, +1,bkgnds1ahhs.wav,Other, +1,bkgnds1+2mix.wav,Other, +1,bkgnds and voc 1b.wav,Other, +1,bkgnds 3.wav,Other, +1,bkgnds 2 bass.wav,Other, +1,bkgnds 123.wav,Other, +1,bkgnds 1+2.wav,Other, +1,bkgnds 1 bass.wav,Other, +1,bkgnds 1 2.wav,Other, +1,bit crush.wav,Other, +1,bit chrush synth.wav,Other, +1,birds.wav,Other, +1,billy strings.wav,Other, +1,billy ray cyrus.wav,Other, +1,billy ray cyrus-adlib.wav,Other, +1,bill champlin.wav,Other, +1,big trance.wav,Other, +1,big skye.wav,Other, +1,big sean-adlib.wav,Other, +1,big hawk.wav,Other, +1,big bank hank.wav,Other, +1,bgv maluma.wav,Other, +1,bgv becky.wav,Other, +1,bg vocals 12.wav,Other, +1,bg vocal 1.wav,Other, +1,bg knocc out.wav,Other, +1,bg female.wav,Other, +1,bg 4.wav,Other, +1,bg 3effect.wav,Other, +1,bg 2.wav,Other, +1,beyonce-adlib.wav,Other, +1,berimbau.wav,Other, +1,benson boone.wav,Other, +1,bender.wav,Other, +1,bend synth.wav,Other, +1,ben shapiro.wav,Other, +1,ben bruce.wav,Other, +1,belltree.wav,Other, +1,bellsynth.wav,Keyboard,Synth Bells +1,bellssynth and vibes.wav,Keyboard,Synth Bells +1,bells with fx.wav,Keyboard,Synth Bells +1,bells synth.wav,Keyboard,Synth Bells +1,bells and synthbells.wav,Keyboard,Synth Bells +1,bells and key.wav,Keyboard,Synth Bells +1,bells 2.wav,Keyboard,Synth Bells +1,bell_tuned.wav,Keyboard,Synth Bells +1,bell_synth.wav,Keyboard,Synth Bells +1,bell synths+harp synth.wav,Keyboard,Synth Bells +1,bell pad.wav,Keyboard,Synth Bells +1,bell fx.wav,Keyboard,Synth Bells +1,bell and keys.wav,Keyboard,Synth Bells +1,bell and arr.wav,Keyboard,Synth Bells +1,beep synth.wav,Other, +1,beenie man.wav,Other, +1,bee.wav,Other, +1,bebe rexha.wav,Other, +1,beautilful precount.wav,Other, +1,beats piano.wav,Other, +1,beats drums.wav,Other, +1,beats bass.wav,Other, +1,beatbox perc.wav,Other, +1,beat box 1 + 2.wav,Other, +1,beat box + synth2.wav,Other, +1,bea miller.wav,Other, +1,bd sub + claps.wav,Other, +1,bbox.wav,Other, +1,bazzi.wav,Other, +1,bazzi-adlib.wav,Other, +1,batterie_the_cars_good_times_roll.wav,Other, +1,batterie_stone_temple_pilots_dead_and_bloated.wav,Other, +1,batterie_over_the_hills_and_far_away.wav,Other, +1,baterie.wav,Other, +1,bata.wav,Other, +1,bassslap.wav,Bass Guitar, +1,bassoons.wav,Other, +1,bassgtr.wav,Bass Guitar, +1,bassfx2.wav,Bass Guitar, +1,bassfx.wav,Other, +1,basses.wav,Bass Guitar, +1,basse_the_cars_good_times_roll.wav,Bass Guitar, +1,basse_stone_temple_pilots_dead_and_bloated.wav,Bass Guitar, +1,basse_over_the_hills_and_far_away.wav,Bass Guitar, +1,basse synth.wav,Other, +1,basse synth soft.wav,Other, +1,basse electrique.wav,Bass Guitar, +1,basse crunch.wav,Bass Guitar, +1,bassboom.wav,Other, +1,bass_sub.wav,Other, +1,bass_pad.wav,Other, +1,bass_gliss.wav,Bass Guitar, +1,bass_bus.wav,Other, +1,bass_attack.wav,Bass Guitar, +1,bass_as_kick_function.wav,Other, +1,bass_arrangement.wav,Bass Guitar, +1,bass_add.wav,Bass Guitar, +1,bass1 synth4.wav,Other, +1,bass.wav.wav,Bass Guitar, +1,bass-sample.wav,Bass Guitar, +1,bass-gtr.wav,Bass Guitar, +1,bass-2.wav,Bass Guitar, +1,bass-02.wav,Bass Guitar, +1,bass+synthbass.wav,Bass Guitar, +1,bass+low pad.wav,Bass Guitar, +1,bass(synth).wav,Bass Guitar, +1,bass(solo).wav,Bass Guitar, +1,bass(lead).wav,Bass Guitar, +1,bass(arp).wav,Bass Guitar, +1,bass vox.wav,Other, +1,bass vocal.wav,Other, +1,bass upright.wav,Other, +1,bass taurus pedal.wav,Bass Guitar, +1,bass synths.wav,Other, +1,bass synth_ok.wav,Other, +1,bass synth and sub bass.wav,Other, +1,bass sub.wav,Other, +1,bass slide.wav,Bass Guitar, +1,bass slap + bass.wav,Bass Guitar, +1,bass sample.wav,Bass Guitar, +1,bass organ.wav,Other, +1,bass ok.wav,Other, +1,bass mixmaster.wav,Bass Guitar, +1,bass keys.wav,Other, +1,bass intro.wav,Bass Guitar, +1,bass gtr.wav,Bass Guitar, +1,bass growl.wav,Bass Guitar, +1,bass fx.wav,Bass Guitar, +1,bass funk and slide.wav,Bass Guitar, +1,bass fretless.wav,Bass Guitar, +1,bass ells.wav,Bass Guitar, +1,bass el_ok.wav,Bass Guitar, +1,bass eb 140bpm.wav,Bass Guitar, +1,bass drum.wav,Other, +1,bass drop.wav,Bass Guitar, +1,bass clean 02.wav,Bass Guitar, +1,bass clean 01.wav,Bass Guitar, +1,bass bus.wav,Bass Guitar, +1,bass brass.wav,Other, +1,bass bell.wav,Other, +1,bass arp.wav,Other, +1,bass and sub.wav,Bass Guitar, +1,bass and fx.wav,Bass Guitar, +1,bass and double.wav,Bass Guitar, +1,bass _01.wav,Bass Guitar, +1,bass 3.wav,Bass Guitar, +1,bass 2 right.wav,Bass Guitar, +1,bass 2 disto.wav,Bass Guitar, +1,bass 1+2+4.wav,Bass Guitar, +1,bass 1 and solo.wav,Bass Guitar, +1,bass + synth bass.wav,Other, +1,bass + synth 3.wav,Other, +1,bass (loop).wav,Other, +1,basoon.wav,Other, +1,basic synth 2.wav,Other, +1,barry manilow looks like we made it synth.wav,Other, +1,barry manilow looks like we made it strings.wav,Other, +1,barry manilow looks like we made it piano.wav,Other, +1,barry manilow looks like we made it lv.wav,Other, +1,barry manilow looks like we made it horns.wav,Other, +1,barry manilow looks like we made it harp.wav,Other, +1,barry manilow looks like we made it guitar 2.wav,Other, +1,barry manilow looks like we made it guitar 1.wav,Other, +1,barry manilow looks like we made it flugel 2.wav,Other, +1,barry manilow looks like we made it flugel 1.wav,Other, +1,barry manilow looks like we made it drum.wav,Other, +1,barry manilow looks like we made it bv.wav,Other, +1,barry manilow looks like we made it bass.wav,Other, +1,bark fx.wav,Other, +1,baritonesax.wav,Saxophone,Baritone +1,baritone saxophone.wav,Saxophone,Baritone +1,bari.wav,Saxophone,Baritone +1,bar.wav,Other, +1,banjos.wav,Banjo, +1,banjomandolinbouzouki.wav,Banjo, +1,banjo extra.wav,Banjo, +1,banjo 2.wav,Banjo, +1,banjo 1.wav,Banjo, +1,bang.wav,Other, +1,bakermat.wav,Other, +1,baker.wav,Other, +1,bajo.wav,Other, +1,bad wolves.wav,Other, +1,bad bunny-adlib.wav,Other, +1,backwardsgtr.wav,Other, +1,backstreet xilophone.wav,Other, +1,backstreet synth 2.wav,Other, +1,backstreet synth 1.wav,Other, +1,backstreet piano.wav,Other, +1,backstreet perc.wav,Other, +1,backstreet drum.wav,Other, +1,backstreet bv.wav,Other, +1,backstreet bass.wav,Other, +1,backstreet acc guitar 2.wav,Other, +1,backstreet acc guitar 1.wav,Other, +1,backing vox.wav,Other, +1,backing vocals (male).wav,Other, +1,backing vocals (female).wav,Other, +1,backin_vocals.wav,Other, +1,background.wav,Other, +1,babyfx.wav,Other, +1,baby ranks.wav,Other, +1,baa.wav,Other, +1,b.v. (talking).wav,Other, +1,b.b. king-adlib.wav,Other, +1,b vox.wav,Other, +1,b vox only fx.wav,Other, +1,b vox onl.wav,Other, +1,b vox only.wav,Other, +1,ayliva.wav,Other, +1,axl rose.wav,Other, +1,avi kaplan.wav,Other, +1,audio fxs.wav,Other, +1,atmoguitar2.wav,Other, +1,atmo + lead.wav,Other, +1,atmo + pad.wav,Other, +1,astrid s.wav,Other, +1,ashanti.wav,Other, +1,arrow benjamin.wav,Other, +1,arrange_guitars.wav,Other, +1,arrange_electric_guitar_3.wav,Other, +1,arr synth.wav,Other, +1,arr gt.wav,Other, +1,arr eg trs delay.wav,Other, +1,arr eg 4.wav,Other, +1,arr disto guits.wav,Other, +1,arr crunch eg.wav,Other, +1,arr analog strings.wav,Other, +1,arps lr.wav,Other, +1,arppegiator.wav,Keyboard,Synth Arpeggios +1,arpfx and cr-78 loop.wav,Keyboard,Synth Arpeggios +1,arpegio_lead_synth.wav,Keyboard,Synth Arpeggios +1,arpegio.wav,Keyboard,Synth Arpeggios +1,arpegiator.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth4.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth3.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth2.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth1.wav,Keyboard,Synth Arpeggios +1,arpeggiators.wav,Keyboard,Synth Arpeggios +1,arpeggiator synth 2.wav,Keyboard,Synth Arpeggios +1,arpeggiator synth 1.wav,Keyboard,Synth Arpeggios +1,arpeggiator 4.wav,Keyboard,Synth Arpeggios +1,arpeggiator 3.wav,Keyboard,Synth Arpeggios +1,arpeggiatedsynth.wav,Keyboard,Synth Arpeggios +1,arpeges.wav,Keyboard,Synth Arpeggios +1,arpeg.wav,Keyboard,Synth Arpeggios +1,arpacougt.wav,Keyboard,Synth Arpeggios +1,arp pluck.wav,Keyboard,Synth Arpeggios +1,arp mix.wav,Keyboard,Synth Arpeggios +1,arp gtr.wav,Other, +1,arp bass.wav,Other, +1,arp bass synth.wav,Other, +1,arp and synth1.wav,Other, +1,armonica.wav,Other, +1,armonic sinth intro.wav,Other, +1,arm.wav,Other, +1,ariana grande-adlib.wav,Other, +1,arco bass.wav,Other, +1,apocalyptica not strong enough violin 2.wav,Other, +1,apocalyptica not strong enough violin 1.wav,Other, +1,apocalyptica not strong enough synth 1.wav,Other, +1,apocalyptica not strong enough strings.wav,Other, +1,apocalyptica not strong enough string 2.wav,Other, +1,apocalyptica not strong enough perc.wav,Other, +1,apocalyptica not strong enough lv.wav,Other, +1,apocalyptica not strong enough guitar 3.wav,Other, +1,apocalyptica not strong enough guitar 2.wav,Other, +1,apocalyptica not strong enough guitar 1.wav,Other, +1,apocalyptica not strong enough drum.wav,Other, +1,apocalyptica not strong enough bv.wav,Other, +1,apocalyptica not strong enough bass.wav,Other, +1,apocalyptica i dot care bass.wav,Other, +1,apocalyptica i dont care violin.wav,Other, +1,apocalyptica i dont care strings.wav,Other, +1,apocalyptica i dont care piano.wav,Other, +1,apocalyptica i dont care perc.wav,Other, +1,apocalyptica i dont care lv.wav,Other, +1,apocalyptica i dont care guitar 2.wav,Other, +1,apocalyptica i dont care guitar 1.wav,Other, +1,apocalyptica i dont care drum.wav,Other, +1,apocalyptica i dont care cello 4.wav,Other, +1,apocalyptica i dont care cello 3.wav,Other, +1,apocalyptica i dont care cello 2.wav,Other, +1,apocalyptica i dont care cello 1.wav,Other, +1,apocalyptica i dont care bv.wav,Other, +1,aple.de.ap.wav,Other, +1,apaheart_s_synth_03.wav,Other, +1,apaheart_s_synth_02.wav,Other, +1,apaheart_s_synth_01.wav,Other, +1,apaheart_s_perc_&_fx.wav,Other, +1,apaheart_s_lv.wav,Other, +1,apaheart_s_guitar.wav,Other, +1,apaheart_s_drums.wav,Other, +1,apaheart_s_bv.wav,Other, +1,apaheart_s_bass_01.wav,Other, +1,apache 207.wav,Other, +1,anthony hamilton.wav,Other, +1,anthony hamilton-adlib.wav,Other, +1,annoying synth voice.wav,Other, +1,annoying backing vocal.wav,Other, +1,anne-marie-adlib.wav,Other, +1,anna wise.wav,Other, +1,ann peebles.wav,Other, +1,andy partridge.wav,Other, +1,andrew taggart-adlib.wav,Other, +1,analogleadsynth.wav,Other, +1,analog synth.wav,Other, +1,analog drums.wav,Other, +1,analog bass.wav,Other, +1,anaconda.wav,Other, +1,amythyst kiah.wav,Other, +1,amy grant.wav,Other, +1,amorfoda piano.wav,Other, +1,amorfoda ld.wav,Other, +1,amorfoda fx.wav,Other, +1,amorfoda bv.wav,Other, +1,amil.wav,Other, +1,ambtalk.wav,Other, +1,ambientsynth.wav,Other, +1,ambient sfx.wav,Other, +1,ambience.wav,Other, +1,ambience-fx.wav,Other, +1,ambience v2.wav,Other, +1,ambiantgtr + fx.wav,Other, +1,ambiance.wav,Other, +1,ambiance pads fx.wav,Other, +1,ambi stack.wav,Other, +1,amb.wav,Other, +1,amb pads.wav,Other, +1,alto saxophone.wav,Other, +1,altmclaran.wav,Other, +1,allison ponthier.wav,Other, +1,allison krauss.wav,Other, +1,all pads.wav,Other, +1,all lv.wav,Other, +1,all keys.wav,Other, +1,all keys and synths.wav,Other, +1,all fxs.wav,Other, +1,all drums.wav,Other, +1,all bvs and adds.wav,Other, +1,all brass.wav,Other, +1,all bgv.wav,Other, +1,alicia keys-adlib.wav,Other, +1,alice in chains rotten apple synth pad.wav,Other, +1,alice in chains rotten apple lv.wav,Other, +1,alice in chains rotten apple guitar 4.wav,Other, +1,alice in chains rotten apple guitar 3.wav,Other, +1,alice in chains rotten apple guitar 2.wav,Other, +1,alice in chains rotten apple guitar 1.wav,Other, +1,alice in chains rotten apple drum.wav,Other, +1,alice in chains rotten apple bv.wav,Other, +1,alice in chains rotten apple bass.wav,Other, +1,alice in chains rotten apple acc guitar.wav,Other, +1,ali tamposi.wav,Other, +1,alexa goddard.wav,Other, +1,alex clare.wav,Other, +1,alessiacara.wav,Other, +1,alessia cara.wav,Other, +1,alejandro sanz cuando nadie me ve violin 3.wav,Other, +1,alejandro sanz cuando nadie me ve violin 2.wav,Other, +1,alejandro sanz cuando nadie me ve violin 1.wav,Other, +1,alejandro sanz cuando nadie me ve synth pad.wav,Other, +1,alejandro sanz cuando nadie me ve strings.wav,Other, +1,alejandro sanz cuando nadie me ve perc.wav,Other, +1,alejandro sanz cuando nadie me ve nylon guitar.wav,Other, +1,alejandro sanz cuando nadie me ve lv.wav,Other, +1,alejandro sanz cuando nadie me ve e piano 2.wav,Other, +1,alejandro sanz cuando nadie me ve e piano 1.wav,Other, +1,alejandro sanz cuando nadie me ve drum.wav,Other, +1,alejandro sanz cuando nadie me ve bass.wav,Other, +1,alejandro sanz cuando nadie me ve acc guitar 1.wav,Other, +1,alejandro fernandez.wav,Other, +1,alejandro fernandez no vihuela.wav,Other, +1,alejandro fernandez no tp 2.wav,Other, +1,alejandro fernandez no tp 1.wav,Other, +1,alejandro fernandez no strings.wav,Other, +1,alejandro fernandez no piano.wav,Other, +1,alejandro fernandez no perc.wav,Other, +1,alejandro fernandez no metalophone.wav,Other, +1,alejandro fernandez no lv.wav,Other, +1,alejandro fernandez no drum.wav,Other, +1,alejandro fernandez no brasses.wav,Other, +1,alejandro fernandez no bass.wav,Other, +1,alecbenjamin.wav,Other, +1,alecbenjamin-adlib.wav,Other, +1,alarm fx.wav,Other, +1,alan walker.wav,Other, +1,al green.wav,Other, +1,akkr.wav,Other, +1,akkl.wav,Other, +1,aj mclean & brian littrell.wav,Other, +1,air supply - lost in love - synth vocals.wav,Other, +1,air supply - lost in love - synth brass.wav,Other, +1,air supply - lost in love - synth 3.wav,Other, +1,air supply - lost in love - synth 1.wav,Other, +1,air supply - lost in love - piano.wav,Other, +1,air supply - lost in love - organ.wav,Other, +1,air supply - lost in love - harp.wav,Other, +1,air supply - lost in love - drum.wav,Other, +1,air supply - lost in love - bv.wav,Other, +1,air supply - lost in love - bass.wav,Other, +1,air supply - lost in love - acc guitar.wav,Other, +1,air pad + pad + warm + choir + flute 1 + 2.wav,Other, +1,ahh synth.wav,Other, +1,aguitars.wav,Acoustic Guitar, +1,aguitar.wav,Acoustic Guitar, +1,agtr 4 + 5 + 6.wav,Acoustic Guitar, +1,agtr 1 + 2 + 3.wav,Acoustic Guitar, +1,agt 4.wav,Acoustic Guitar, +1,agt 3.wav,Acoustic Guitar, +1,agslide.wav,Acoustic Guitar, +1,ags.wav,Acoustic Guitar, +1,agny.wav,Acoustic Guitar, +1,agmute2.wav,Acoustic Guitar, +1,agmelody.wav,Acoustic Guitar, +1,aglead.wav,Acoustic Guitar, +1,aggtr.wav,Acoustic Guitar, +1,agfx.wav,Acoustic Guitar, +1,agdrums.wav,Acoustic Guitar, +1,agdistortion2.wav,Acoustic Guitar, +1,agdistortion.wav,Acoustic Guitar, +1,agchords.wav,Acoustic Guitar, +1,ag_r(low).wav,Acoustic Guitar, +1,ag_r(12str).wav,Acoustic Guitar, +1,ag_r 2.wav,Acoustic Guitar, +1,ag_nylon.wav,Acoustic Guitar, +1,ag_l2.wav,Acoustic Guitar, +1,ag_l(low).wav,Acoustic Guitar, +1,ag_l(di).wav,Acoustic Guitar, +1,ag_l(12str).wav,Acoustic Guitar, +1,ag4.wav,Acoustic Guitar, +1,ag12strings.wav,Acoustic Guitar, +1,ag12str.wav,Acoustic Guitar, +1,ag1 left.wav,Acoustic Guitar, +1,ag(perc).wav,Acoustic Guitar, +1,ag twelve strings.wav,Acoustic Guitar, +1,ag trem.wav,Acoustic Guitar, +1,ag stereo.wav,Acoustic Guitar, +1,ag steel.wav,Acoustic Guitar, +1,ag rythm r (piezo).wav,Acoustic Guitar, +1,ag rythm r (mic).wav,Acoustic Guitar, +1,ag rythm l (piezo).wav,Acoustic Guitar, +1,ag rythm l (piezo) 2.wav,Acoustic Guitar, +1,ag rythm l (mic).wav,Acoustic Guitar, +1,ag rhythmic.wav,Acoustic Guitar, +1,ag rhythmic 3.wav,Acoustic Guitar, +1,ag rhythmic 2.wav,Acoustic Guitar, +1,ag rhythmic 1.wav,Acoustic Guitar, +1,ag rhythm.wav,Acoustic Guitar, +1,ag nylon mix.wav,Acoustic Guitar, +1,ag nylon main+fxs.wav,Acoustic Guitar, +1,ag n.wav,Acoustic Guitar, +1,ag n-notdups.wav,Acoustic Guitar, +1,ag muted.wav,Acoustic Guitar, +1,ag mute.wav,Acoustic Guitar, +1,ag left.wav,Acoustic Guitar, +1,ag left + right.wav,Acoustic Guitar, +1,ag ld.wav,Acoustic Guitar, +1,ag l r.wav,Acoustic Guitar, +1,ag gtr.wav,Acoustic Guitar, +1,ag center.wav,Acoustic Guitar, +1,ag arregements.wav,Acoustic Guitar, +1,ag arr 2 left.wav,Acoustic Guitar, +1,ag arr 1 right.wav,Acoustic Guitar, +1,ag arp.wav,Acoustic Guitar, +1,ag 6.wav,Acoustic Guitar, +1,ag 5.wav,Acoustic Guitar, +1,ag 5 right.wav,Acoustic Guitar, +1,ag 5 + 6.wav,Acoustic Guitar, +1,ag 4 muted.wav,Acoustic Guitar, +1,ag 3 mute.wav,Acoustic Guitar, +1,ag 3 fx.wav,Acoustic Guitar, +1,ag 3 end.wav,Acoustic Guitar, +1,ag 3 end right.wav,Acoustic Guitar, +1,ag 3 + 4.wav,Acoustic Guitar, +1,ag 2+spanish guitar.wav,Acoustic Guitar, +1,ag 2 right end.wav,Acoustic Guitar, +1,ag 2 arr.wav,Acoustic Guitar, +1,ag 2 + filter.wav,Acoustic Guitar, +1,ag 2 + 3 + 4 + 5.wav,Acoustic Guitar, +1,ag 13.wav,Acoustic Guitar, +1,ag 12 str.wav,Acoustic Guitar, +1,ag 12 str left.wav,Acoustic Guitar, +1,ag 12 lr.wav,Acoustic Guitar, +1,ag 1+2.wav,Acoustic Guitar, +1,ag 1+2+3.wav,Acoustic Guitar, +1,ag 1 muted.wav,Acoustic Guitar, +1,ag 1 2.wav,Acoustic Guitar, +1,ag 1 + 3.wav,Acoustic Guitar, +1,ag 1 + 2 + 3.wav,Acoustic Guitar, +1,ag 1 + 2 + 3 + 4.wav,Acoustic Guitar, +1,ag 02 r.wav,Acoustic Guitar, +1,ag 02 muted.wav,Acoustic Guitar, +1,ag 02 left.wav,Acoustic Guitar, +1,ag 01 right.wav,Acoustic Guitar, +1,ag 01 left+right 1+2.wav,Acoustic Guitar, +1,ag 01 l.wav,Acoustic Guitar, +1,ag 2 + eg.wav,Acoustic Guitar, +1,adeleye omotayo.wav,Other, +1,adele.wav,Other, +1,addsynthgt.wav,Other, +1,addsynth.wav,Other, +1,adds vocs.wav,Other, +1,adds voc mixmaster.wav,Other, +1,adds uhh.wav,Other, +1,adds synth.wav,Other, +1,adds 1+2.wav,Other, +1,addpad.wav,Other, +1,addlib.wav,Other, +1,additional-synth.wav,Other, +1,additional-instruments.wav,Other, +1,addgt_r.wav,Other, +1,addgt_l.wav,Other, +1,adddrivegt_r.wav,Other, +1,adddrivegt_l.wav,Other, +1,adddrivegt.wav,Other, +1,addclean.wav,Other, +1,addacougt.wav,Other, +1,add_synth.wav,Other, +1,add_nylongt.wav,Other, +1,add2 + solo.wav,Other, +1,add vox fx.wav,Other, +1,add synth.wav,Other, +1,add guitar.wav,Other, +1,add guitar feedback.wav,Other, +1,add fx.wav,Other, +1,adblib voc 2.wav,Other, +1,adam levine.wav,Other, +1,adam levine-adlib.wav,Other, +1,ad_lib.wav,Other, +1,ad-lib.wav,Other, +1,ad lib vocals.wav,Other, +1,ad lib vocal.wav,Other, +1,acst-gtr-notdups.wav,Acoustic Guitar, +1,acoustique.wav,Acoustic Guitar, +1,acoustique r.wav,Acoustic Guitar, +1,acoustique l.wav,Acoustic Guitar, +1,acoustique centre.wav,Acoustic Guitar, +1,acousticgtrr.wav,Acoustic Guitar, +1,acousticgtrc.wav,Acoustic Guitar, +1,acousticgtr r.wav,Acoustic Guitar, +1,acousticgtr l.wav,Acoustic Guitar, +1,acoustic_steel_guitar_2.wav,Acoustic Guitar, +1,acoustic_steel_guitar_1.wav,Acoustic Guitar, +1,acoustic_steel_guitar.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_steel_left.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_steel.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_2.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_1.wav,Acoustic Guitar, +1,acoustic_lead_guitar_steel.wav,Acoustic Guitar, +1,acoustic_guitar_tremolo.wav,Acoustic Guitar, +1,acoustic_guitar_treble.wav,Acoustic Guitar, +1,acoustic_guitar_steel_rhythm_right.wav,Acoustic Guitar, +1,acoustic_guitar_steel_rhythm_left.wav,Acoustic Guitar, +1,acoustic_guitar_steel_center+right.wav,Acoustic Guitar, +1,acoustic_guitar_steel_arrangement lr.wav,Acoustic Guitar, +1,acoustic_guitar_steel_adds.wav,Acoustic Guitar, +1,acoustic_guitar_steel_5.wav,Acoustic Guitar, +1,acoustic_guitar_steel_2.wav,Acoustic Guitar, +1,acoustic_guitar_steel_1.wav,Acoustic Guitar, +1,acoustic_guitar_steel-notdup.wav,Acoustic Guitar, +1,acoustic_guitar_perc.wav,Acoustic Guitar, +1,acoustic_guitar_low.wav,Acoustic Guitar, +1,acoustic_guitar_lead.wav,Acoustic Guitar, +1,acoustic_guitar_arr.wav,Acoustic Guitar, +1,acoustic_guitar_2.wav,Acoustic Guitar, +1,acoustic_guitar_1.wav,Acoustic Guitar, +1,acoustic rhythm.wav,Acoustic Guitar, +1,acoustic nylon guitar.wav,Acoustic Guitar, +1,acoustic line.wav,Acoustic Guitar, +1,acoustic guitarstrumming.wav,Acoustic Guitar, +1,acoustic guitars rhythm.wav,Acoustic Guitar, +1,acoustic guitars bass notes.wav,Acoustic Guitar, +1,acoustic guitars 3 & 4 - rhythm.wav,Acoustic Guitar, +1,acoustic guitars 2.wav,Acoustic Guitar, +1,acoustic guitars 1.wav,Acoustic Guitar, +1,acoustic guitars 1 & 2 - lead.wav,Acoustic Guitar, +1,acoustic guitars - rhythm.wav,Acoustic Guitar, +1,acoustic guitarright.wav,Acoustic Guitar, +1,acoustic guitarleft.wav,Acoustic Guitar, +1,acoustic guitar(strumming) right.wav,Acoustic Guitar, +1,acoustic guitar r.wav,Acoustic Guitar, +1,acoustic guitar mute.wav,Acoustic Guitar, +1,acoustic guitar left.wav,Acoustic Guitar, +1,acoustic guitar lead.wav,Acoustic Guitar, +1,acoustic guitar l.wav,Acoustic Guitar, +1,acoustic guitar arpp.wav,Acoustic Guitar, +1,acoustic guitar 2 - r.wav,Acoustic Guitar, +1,acoustic guitar 1 - l.wav,Acoustic Guitar, +1,acoustic guitar - lead.wav,Acoustic Guitar, +1,acoustic guit.wav,Acoustic Guitar, +1,acoustic gtr fx.wav,Acoustic Guitar, +1,acoustic gtr - all.wav,Acoustic Guitar, +1,acoustic gt.wav,Acoustic Guitar, +1,acoustic fx.wav,Other, +1,acoustic drums.wav,Other, +1,acoustic drum.wav,Other, +1,acoustic drum kit.wav,Other, +1,acoustic arpeg.wav,Other, +1,acoust-guitar-solo.wav,Other, +1,acoust-guitar-percussion.wav,Other, +1,acoust-guitar-fx.wav,Other, +1,acoust-guitar-1.wav,Other, +1,acouleadgt.wav,Other, +1,acouguitr.wav,Other, +1,acouguitl.wav,Other, +1,acordion.wav,Other, +1,acordeons.wav,Other, +1,acordeon-.wav,Other, +1,acmute.wav,Other, +1,acmain.wav,Other, +1,acid.wav,Other, +1,acid attack.wav,Other, +1,acguitsolo.wav,Acoustic Guitar, +1,acguits.wav,Acoustic Guitar, +1,acguitright.wav,Acoustic Guitar, +1,acguitrhythm.wav,Acoustic Guitar, +1,acguitarrhythm.wav,Acoustic Guitar, +1,acguitarlead.wav,Acoustic Guitar, +1,acguit1et2.wav,Acoustic Guitar, +1,acgtrs2.wav,Acoustic Guitar, +1,acgtrs1.wav,Acoustic Guitar, +1,acgtrs1+2.wav,Acoustic Guitar, +1,acgtr_solo.wav,Acoustic Guitar, +1,acgtr3.wav,Acoustic Guitar, +1,acgtr2r.wav,Acoustic Guitar, +1,acgtr2 right.wav,Acoustic Guitar, +1,acgtr1l.wav,Acoustic Guitar, +1,acgtr1 left.wav,Acoustic Guitar, +1,acgtr03.wav,Acoustic Guitar, +1,acgtr02.wav,Acoustic Guitar, +1,acgtr01.wav,Acoustic Guitar, +1,acgtr r.wav,Acoustic Guitar, +1,acgtr main.wav,Acoustic Guitar, +1,acgtr main 12 strings.wav,Acoustic Guitar, +1,acgtr l.wav,Acoustic Guitar, +1,acgtleft.wav,Acoustic Guitar, +1,accoustic_guitar_steel.wav,Other, +1,accoridon.wav,Accordion, +1,accordion fx.wav,Accordion, +1,accordion and pads.wav,Accordion, +1,accord.wav,Accordion, +1,acc guitar muted.wav,Acoustic Guitar, +1,acc guitar fx.wav,Acoustic Guitar, +1,acc guitar 2 right.wav,Acoustic Guitar, +1,acc guitar 1 left.wav,Acoustic Guitar, +1,acc gtr 3.wav,Acoustic Guitar, +1,acc gtr 2 right.wav,Acoustic Guitar, +1,ac_guitar.wav,Acoustic Guitar, +1,ac_guitar 2.wav,Acoustic Guitar, +1,ac_guitar 1.wav,Acoustic Guitar, +1,ac_fade_out.wav,Acoustic Guitar, +1,ac_6_cordes_right.wav,Acoustic Guitar, +1,ac_2.wav,Acoustic Guitar, +1,ac_12_cordes_left.wav,Acoustic Guitar, +1,ac_1.wav,Acoustic Guitar, +1,ac.wav,Acoustic Guitar, +1,ac.gtrs rhythm.wav,Acoustic Guitar, +1,ac.gtr solo.wav,Acoustic Guitar, +1,ac.gtr rhythm.wav,Acoustic Guitar, +1,ac.gtr r.wav,Acoustic Guitar, +1,ac.gtr l.wav,Acoustic Guitar, +1,ac.gtr 1.wav,Acoustic Guitar, +1,ac rhythmic 2.wav,Acoustic Guitar, +1,ac rhythmic 1.wav,Acoustic Guitar, +1,ac l + r.wav,Acoustic Guitar, +1,ac guitare.wav,Acoustic Guitar, +1,ac guitar vst.wav,Acoustic Guitar, +1,ac guitar rhytmic l&r.wav,Acoustic Guitar, +1,ac guitar rhytmic 2.wav,Acoustic Guitar, +1,ac guitar rhytmic 1.wav,Acoustic Guitar, +1,ac guitar rhitmic 2.wav,Acoustic Guitar, +1,ac guitar rhitmic 1.wav,Acoustic Guitar, +1,ac guitar jerry.wav,Acoustic Guitar, +1,ac guitar bob.wav,Acoustic Guitar, +1,ac guitar arragement.wav,Acoustic Guitar, +1,ac guitar 4.wav,Acoustic Guitar, +1,ac guitar 3.wav,Acoustic Guitar, +1,ac guitar 03.wav,Acoustic Guitar, +1,ac guitar 02.wav,Acoustic Guitar, +1,ac guitar 01.wav,Acoustic Guitar, +1,ac guit bright.wav,Acoustic Guitar, +1,ac guit add.wav,Acoustic Guitar, +1,ac guit 1 + 3 right.wav,Acoustic Guitar, +1,ac guit 1 + 2.wav,Acoustic Guitar, +1,ac gtr1+classic gtr.wav,Acoustic Guitar, +1,ac gtr 6.wav,Acoustic Guitar, +1,ac gtr 5.wav,Acoustic Guitar, +1,ac gtr 4.wav,Acoustic Guitar, +1,ac gtr 3 right.wav,Acoustic Guitar, +1,ac gtr 3 left.wav,Acoustic Guitar, +1,ac gtr 12.wav,Acoustic Guitar, +1,ac gtr 1 left.wav,Acoustic Guitar, +1,ac gt r.wav,Acoustic Guitar, +1,ac gt l.wav,Acoustic Guitar, +1,ac gt arp melo.wav,Acoustic Guitar, +1,ac gt 3.wav,Acoustic Guitar, +1,ac gt 2.wav,Acoustic Guitar, +1,ac gt 1.wav,Acoustic Guitar, +1,ac git.wav,Acoustic Guitar, +1,ac git lead.wav,Acoustic Guitar, +1,ac 4.wav,Acoustic Guitar, +1,ac 3.wav,Acoustic Guitar, +1,ac 2.wav,Acoustic Guitar, +1,ac 1.wav,Acoustic Guitar, +1,abraxas.wav,Other, +1,aaron neville.wav,Other, +1,aaa samples.wav,Other, +1,a.gtr.wav,Acoustic Guitar, +1,a.b. quintanilla.wav,Other, +1,a nylon guit 2.wav,Acoustic Guitar, +1,a nylon guit 1.wav,Acoustic Guitar, +1,a guitar st.wav,Acoustic Guitar, +1,a guitar r.wav,Acoustic Guitar, +1,a guitar l.wav,Acoustic Guitar, +1,a guitar 2 right.wav,Acoustic Guitar, +1,a guitar 2 eb 140bpm.wav,Acoustic Guitar, +1,a guitar 1 left.wav,Acoustic Guitar, +1,a guitar 1 eb 140bpm.wav,Acoustic Guitar, +1,a great big world.wav,Other, +1,a day to remember.wav,Other, +1,a day to remember all signs point to lauderdale strings.wav,Other, +1,a day to remember all signs point to lauderdale precount.wav,Other, +1,a day to remember all signs point to lauderdale perc.wav,Other, +1,a day to remember all signs point to lauderdale lv.wav,Other, +1,a day to remember all signs point to lauderdale guitar 3.wav,Other, +1,a day to remember all signs point to lauderdale guitar 2.wav,Other, +1,a day to remember all signs point to lauderdale guitar 1.wav,Other, +1,a day to remember all signs point to lauderdale drum.wav,Other, +1,a day to remember all signs point to lauderdale bv.wav,Other, +1,a day to remember all signs point to lauderdale bass.wav,Other, +1,a day to remember all signs point to lauderdale acordeon.wav,Other, +1,_voix.wav,Other, +1,_piano.wav,Other, +1,_pad.wav,Other, +1,_bv.wav,Other, +1,_arr clean eg.wav,Other, +1,9200 lead vocal.wav,Other, +1,9100 backing vocals.wav,Other, +1,9 synth pad.wav,Other, +1,808 sub bass.wav,Other, +1,8 eg solo.wav,Other, +1,7 eg b right.wav,Other, +1,6-str.wav,Other, +1,6 eg a left.wav,Other, +1,5th piano.wav,Other, +1,50 cent-adlib.wav,Other, +1,5 ag.wav,Other, +1,4530 synth choir.wav,Other, +1,4520 synth strings.wav,Other, +1,4510 synth pad.wav,Other, +1,4 bass.wav,Other, +1,3300 electric guitar fx.wav,Other, +1,3200 electric guitar.wav,Other, +1,3100 acoustic guitar.wav,Other, +1,3 fx.wav,Other, +1,2pac-adlib.wav,Other, +1,2d.wav,Other, +1,28_bv.wav,Other, +1,27_lv.wav,Other, +1,24kgoldn.wav,Other, +1,24kgoldn-adlib.wav,Other, +1,24_bv.wav,Other, +1,2200 electric bass.wav,Other, +1,21_ld 1+2.wav,Other, +1,2 timbal.wav,Other, +1,2 chainz lead.wav,Other, +1,19_strings.wav,Other, +1,19_bv.wav,Other, +1,1999 synth 2.wav,Other, +1,1999 precount.wav,Other, +1,1999 perc.wav,Other, +1,1999 guitar 3.wav,Other, +1,1999 guitar 2.wav,Other, +1,1999 guitar 1.wav,Other, +1,1999 fx synth.wav,Other, +1,1999 drum.wav,Other, +1,1999 bv.wav,Other, +1,1999 bass.wav,Other, +1,1999 bass synth.wav,Other, +1,17_vox pads.wav,Other, +1,17_lv.wav,Other, +1,17_bv.wav,Other, +1,16_flute.wav,Other, +1,15_synth.wav,Other, +1,15_saxos vst.wav,Other, +1,15_lv.wav,Other, +1,15_dance synth.wav,Other, +1,15_bv2.wav,Other, +1,15 bv.wav,Other, +1,14_synths str.wav,Other, +1,14_sax solos.wav,Other, +1,14_ep.wav,Other, +1,14_eg4 r.wav,Other, +1,14_bv1.wav,Other, +1,13_vocal adds.wav,Other, +1,13_synth melo.wav,Other, +1,13_pulsar synths.wav,Other, +1,13_lv adds.wav,Other, +1,13_eg3 l.wav,Other, +1,13 lead vocal.wav,Other, +1,12_synth saw.wav,Other, +1,12_synth lead.wav,Other, +1,12_synth brasses.wav,Other, +1,12_pads.wav,Other, +1,12_gtr fx amp.wav,Other, +1,12_ep.wav,Other, +1,12_eg3.wav,Other, +1,12_eg2.wav,Other, +1,12_cordes_2_over_the_hills_and_far_away.wav,Other, +1,12_cordes_1 right.wav,Other, +1,1200_mix loop+percs.wav,Other, +1,12-str.wav,Other, +1,12 strings.wav,Other, +1,12 organ.wav,Other, +1,12 lead vocal.wav,Other, +1,12 choir female.wav,Other, +1,12 backing vocals.wav,Other, +1,11_violin.wav,Other, +1,11_synth flute.wav,Other, +1,11_synth bell.wav,Other, +1,11_strings.wav,Other, +1,11_space piano.wav,Other, +1,11_plucked arp.wav,Other, +1,11_pads.wav,Other, +1,11_mallet.wav,Other, +1,11_lv.wav,Other, +1,11_low pad.wav,Other, +1,11_ld.wav,Other, +1,11_egfx.wav,Other, +1,11_eg3 r.wav,Other, +1,11_eg1 solo.wav,Other, +1,11_bv.wav,Other, +1,11_belly arp.wav,Other, +1,11_ac piano.wav,Other, +1,1110 acoustic drums.wav,Other, +1,11 synth voice.wav,Other, +1,11 piano.wav,Other, +1,11 choir male.wav,Other, +1,11 backing vocals.wav,Other, +1,10_vocal pads.wav,Other, +1,10_synth choir.wav,Other, +1,10_synth 80s.wav,Other, +1,10_sax.wav,Other, +1,10_saw2.wav,Other, +1,10_pads.wav,Other, +1,10_ld.wav,Other, +1,10_hammond.wav,Other, +1,10_eg6r.wav,Other, +1,10_eg5 r.wav,Other, +1,10_eg3 r.wav,Other, +1,10_eg3 l.wav,Other, +1,10_eg1.wav,Other, +1,10_eg r.wav,Other, +1,10_eg l.wav,Other, +1,10_bv.wav,Other, +1,1-adlib.wav,Other, +1,1 drums.wav,Other, +1,0percussion.wav,Other, +1,0drums.wav,Other, +1,09_violas intro.wav,Other, +1,09_synths.wav,Other, +1,09_synth bells.wav,Other, +1,09_synth bell.wav,Other, +1,09_organ.wav,Other, +1,09_lv.wav,Other, +1,09_hammond.wav,Other, +1,09_gtr rev.wav,Other, +1,09_end pad.wav,Other, +1,09_eg5l.wav,Other, +1,09_eg4 right.wav,Other, +1,09_eg r.wav,Other, +1,09_eg l.wav,Other, +1,09_eg adds c.wav,Other, +1,09_choir.wav,Other, +1,09_brasses.wav,Other, +1,09_bells.wav,Other, +1,09 synth lead.wav,Other, +1,09 strings.wav,Other, +1,09 harp.wav,Other, +1,09 hammond.wav,Other, +1,09 choir.wav,Other, +1,08_solo hammond.wav,Other, +1,08_seq saw.wav,Other, +1,08_rhodes.wav,Other, +1,08_mallets.wav,Other, +1,08_hi synth.wav,Other, +1,08_ep mk.wav,Other, +1,08_eg4r.wav,Other, +1,08_eg3 arp r.wav,Other, +1,08_eg2.wav,Other, +1,08_eg2 l.wav,Other, +1,08_eg1 l.wav,Other, +1,08_eg intro.wav,Other, +1,08_eg funky.wav,Other, +1,08_clavi r.wav,Other, +1,08_brasses.wav,Other, +1,08_ac gtr r.wav,Other, +1,08 tubular bells.wav,Other, +1,08 synth voice.wav,Other, +1,08 synth bass.wav,Other, +1,08 pipe organ.wav,Other, +1,08 choir.wav,Other, +1,08 brass.wav,Other, +1,08 banjo.wav,Other, +1,07_xylophone.wav,Other, +1,07_saw uni keys.wav,Other, +1,07_polysynth l.wav,Other, +1,07_marimba.wav,Other, +1,07_hammond low.wav,Other, +1,07_eg3l.wav,Other, +1,07_eg3 r.wav,Other, +1,07_eg2 melo.wav,Other, +1,07_eg2 l.wav,Other, +1,07_eg1.wav,Other, +1,07_eg1 r.wav,Other, +1,07_eg crunch r.wav,Other, +1,07_clavi c.wav,Other, +1,07_bass 3.wav,Other, +1,070 shake.wav,Other, +1,07 synths.wav,Other, +1,07 synth pad.wav,Other, +1,07 synth lead.wav,Other, +1,07 sfx.wav,Other, +1,07 piano.wav,Other, +1,07 organ.wav,Other, +1,07 hammond.wav,Other, +1,07 el guitar vox.wav,Other, +1,06_synth bass.wav,Other, +1,06_hammond no filt.wav,Other, +1,06_gtr synth.wav,Other, +1,06_eg2r.wav,Other, +1,06_eg2 r.wav,Other, +1,06_eg2 l.wav,Other, +1,06_eg1 left.wav,Other, +1,06_eg solo.wav,Other, +1,06_eg disto.wav,Other, +1,06_eg clean c.wav,Other, +1,06_clavi l.wav,Other, +1,06_bass.wav,Other, +1,06_ac gtr2.wav,Other, +1,06_ac gtr.wav,Other, +1,06 synths.wav,Other, +1,06 synth bass.wav,Other, +1,06 piano.wav,Other, +1,06 lead guitar r.wav,Other, +1,06 lead guitar 2.wav,Other, +1,06 hammond.wav,Other, +1,06 el guitar fender.wav,Other, +1,06 e piano.wav,Other, +1,06 backing vocals.wav,Other, +1,05_plucked square.wav,Other, +1,05_piano r.wav,Other, +1,05_hammond filt.wav,Other, +1,05_eg1l.wav,Other, +1,05_eg1 l.wav,Other, +1,05_eg.wav,Other, +1,05_eg solo.wav,Other, +1,05_eg rhy.wav,Other, +1,05_eg r.wav,Other, +1,05_eg l.wav,Other, +1,05_ac gtr1.wav,Other, +1,05_ac gtr.wav,Other, +1,05_ac gtr l.wav,Other, +1,05 synths.wav,Other, +1,05 lead guitar.wav,Other, +1,05 lead guitar l.wav,Other, +1,05 lead guitar 1.wav,Other, +1,05 hi gain guitar.wav,Other, +1,05 electric guitar.wav,Other, +1,05 el guitar marshall.wav,Other, +1,04_slap bass.wav,Other, +1,04_sfx.wav,Other, +1,04_eg1 l.wav,Other, +1,04_eg l.wav,Other, +1,04_bass 2.wav,Other, +1,04 rhythm guitar.wav,Other, +1,04 rhythm guitar r.wav,Other, +1,04 rhythm guitar 2.wav,Other, +1,04 rhodes.wav,Other, +1,04 lead guitars.wav,Other, +1,04 electric guitar.wav,Other, +1,03_bass 1.wav,Other, +1,03_ac bass.wav,Other, +1,03 timpani.wav,Other, +1,03 synth.wav,Other, +1,03 sfx.wav,Other, +1,03 rhythm guitar l.wav,Other, +1,03 rhythm guitar 1.wav,Other, +1,03 percussion.wav,Other, +1,03 electric guitar.wav,Other, +1,02_percu.wav,Other, +1,02 electronic drums.wav,Other, +1,02 clap.wav,Other, +1,02 bass guitar.wav,Other, +1,01_drums.wav,Other, +1,01 acoustic drums.wav,Other, diff --git a/lambda/jamtrack-importer/lambdas/unzipper/metadata.csv b/lambda/jamtrack-importer/lambdas/unzipper/metadata.csv new file mode 100644 index 000000000..da27c4ad9 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/metadata.csv @@ -0,0 +1,8818 @@ +Artist,Song,Source,Override Artist,Override Song,Skip,DisableExisting,tency_id,NoMatch +'Til Tuesday,Voices Carry,new,,,,,55335,FALSE +'Til Tuesday,What About Love,new,,,,,80094,FALSE +"10,000 Maniacs",Because the Night,new,,,,,11395,FALSE +"10,000 Maniacs",Like the Weather,new,,,,,9984,FALSE +"10,000 Maniacs",These Are Days,new,,,,,62799,FALSE +"10,000 Maniacs",Trouble Me,new,,,,,73264,FALSE +10 Years,Fix Me,new,,,,,74351,FALSE +10 Years,Through The Iris,new,,,,,14826,FALSE +10cc,I'm Not In Love,existing,,,,,,FALSE +2 Chainz,Birthday Song,new,,,,,58358,FALSE +2 Chainz,Feds Watching,new,,,,,45174,FALSE +2 Chainz,I'm Different,new,,,,,65901,FALSE +2 Chainz,We Own It (Fast & Furious),new,,,,,44085,FALSE +24kGoldn,Mood,new,,,,,62601,FALSE +24kGoldn,More Than Friends,new,,,,,67954,FALSE +257ers,Holz,new,,,,,51889,FALSE +257ers,Ti Amo,new,,,,,65103,FALSE +2Pac,2 of Amerikaz Most Wanted,new,,,,,68770,FALSE +2Pac,All Eyez on Me,new,,,,,81694,FALSE +2Pac,Ambitionz Az a Ridah,new,,,,,82242,FALSE +2Pac,California Love (Remix),new,,,,,12691,FALSE +2Pac,California Love,new,,,,,35574,FALSE +2Pac,Changes,new,,,,,34615,FALSE +2Pac,Dear Mama,new,,,,,35778,FALSE +2Pac,Do for Love,new,,,,,34989,FALSE +2Pac,Hail Mary,new,,,,,77452,FALSE +2Pac,Hit 'Em Up,new,,,,,69398,FALSE +2Pac,How Do U Want It,new,,,,,41111,FALSE +2Pac,I Ain't Mad at Cha,new,,,,,74521,FALSE +2Pac,I Get Around,new,,,,,29046,FALSE +2Pac,Keep Ya Head Up,new,,,,,28003,FALSE +2Pac,So Many Tears,new,,,,,68169,FALSE +2Pac,Thugz Mansion,new,,,,,60425,FALSE +2Pac,To Live and Die in L.A.,new,,,,,74394,FALSE +2Pac,Until the End of Time,new,,,,,73054,FALSE +30 Seconds to Mars,A Beautiful Lie,new,,,,,67314,FALSE +30 Seconds to Mars,Closer to the Edge,new,,,,,37132,FALSE +30 Seconds to Mars,Hurricane,new,,,,,66848,FALSE +30 Seconds to Mars,Kings and Queens,new,,,,,59022,FALSE +30 Seconds to Mars,Stay,new,,,,,83512,FALSE +30 Seconds to Mars,The Kill (live),new,,,,,80081,FALSE +30 Seconds to Mars,The Kill,new,,,,,14674,FALSE +30 Seconds to Mars,This Is War,new,,,,,75132,FALSE +30 Seconds to Mars,Up in the Air,new,,,,,43708,FALSE +30 Seconds to Mars,Walk on Water,new,,,,,54051,FALSE +311,All Mixed Up,new,,,,,49571,FALSE +311,Amber,new,,,,,29602,FALSE +311,Beautiful Disaster,new,,,,,70009,FALSE +311,Beyond The Gray Sky,new,,,,,25858,FALSE +311,Creatures (For a While),new,,,,,29033,FALSE +311,Down,new,,,,,62846,FALSE +311,I'll Be Here Awhile,new,,,,,30762,FALSE +311,Love Song,new,,,,,42501,FALSE +311,You Wouldn't Believe,new,,,,,5814,FALSE +38 Special,Back Where You Belong,new,,,,,35938,FALSE +38 Special,Caught Up In You,new,,,,,14834,FALSE +38 Special,Fantasy Girl,new,,,,,69211,FALSE +38 Special,Hold On Loosely,new,,,,,52786,FALSE +38 Special,If I'd Been the One,new,,,,,62931,FALSE +38 Special,Rockin into the Night,new,,,,,65638,FALSE +38 Special,Second Chance,new,,,,,10893,FALSE +38 Special,Somebody Like You,new,,,,,70326,FALSE +38 Special,"Teacher, Teacher",new,,,,,71067,FALSE +38 Special,Wild-Eyed Southern Boys,new,,,,,70352,FALSE +4 Non Blondes,What's Up,existing,,,,,,FALSE +42nd Street Musical,Forty Second Street (A Cappella),existing,,,,,,FALSE +5 Seconds of Summer,Amnesia,new,,,,,47402,FALSE +5 Seconds of Summer,Complete Mess,new,,,,,47773,FALSE +5 Seconds of Summer,Don't Stop,new,,,,,47095,FALSE +5 Seconds of Summer,Easier,new,,,,,58526,FALSE +5 Seconds of Summer,Ghost of You,new,,,,,56017,FALSE +5 Seconds of Summer,Girls Talk Boys,new,,,,,51608,FALSE +5 Seconds of Summer,Good Girls,new,,,,,47035,FALSE +5 Seconds of Summer,Hey Everybody!,new,,,,,50556,FALSE +5 Seconds of Summer,She Looks So Perfect,new,,,,,46805,FALSE +5 Seconds of Summer,She's Kinda Hot,new,,,,,72561,FALSE +5 Seconds of Summer,Teeth,new,,,,,59300,FALSE +5 Seconds of Summer,Want You Back,new,,,,,55771,FALSE +5 Seconds of Summer,What I like About You,new,,,,,50428,FALSE +5 Seconds of Summer,Youngblood,new,,,,,55596,FALSE +50 Cent,21 Questions,new,,,,,14847,FALSE +50 Cent,Baby By Me,new,,,,,25939,FALSE +50 Cent,Candy Shop,new,,,,,12409,FALSE +50 Cent,Disco Inferno,new,,,,,14839,FALSE +50 Cent,Hate It Or Love It,new,,,,,26858,FALSE +50 Cent,In Da Club,existing,,,,,,FALSE +50 Cent,Many Men (Wish Death),new,,,,,73057,FALSE +50 Cent,Outta Control,new,,,,,14844,FALSE +50 Cent,P.I.M.P. (remix),new,,,,,14848,FALSE +50 Cent,P.I.M.P.,new,,,,,75459,FALSE +50 Cent,Patiently Waiting,new,,,,,62672,FALSE +50 Cent,Wanksta,new,,,,,82808,FALSE +A Day to Remember,2nd Sucks,new,,,,,81121,FALSE +A Day to Remember,All I Want,new,,,,,38737,FALSE +A Day to Remember,All Signs Point to Lauderdale,new,,,,,8571,FALSE +A Day to Remember,Have Faith in Me,new,,,,,73073,FALSE +A Day to Remember,"I'm Made of Wax, Larry, What Are You Made Of",new,,,,,74844,FALSE +A Day to Remember,If It Means a Lot to You,new,,,,,68670,FALSE +A Day to Remember,Mr. Highway's Thinking About the End,new,,,,,81407,FALSE +A Day to Remember,Over My Head (Cable Car),new,,,,,74735,FALSE +A Day to Remember,Since U Been Gone,new,,,,,70451,FALSE +A Day to Remember,The Downfall of Us All,new,,,,,27803,FALSE +A Flock Of Seagulls,I Ran So Far Away,existing,,,,,,FALSE +A Flock of Seagulls,Space Age Love Song,new,A Flock Of Seagulls,,,,61457,FALSE +A Flock of Seagulls,Wishing (If I Had a Photograph of You),new,A Flock Of Seagulls,,,,52972,FALSE +A Great Big World,Already Home,new,,,,,46454,FALSE +A Great Big World,Hold Each Other,new,,,,,49863,FALSE +A Great Big World,I Really Want It,new,,,,,46510,FALSE +A Great Big World,Rockstar,new,,,,,46550,FALSE +A Great Big World,Say Something,existing,,,,,,FALSE +A Great Big World,You'll Be Okay,new,,,,,47189,FALSE +A Star is Born,Alibi,new,A Star Is Born,,,,56549,FALSE +A Star is Born,Always Remember Us This Way,new,A Star Is Born,,,,56466,FALSE +A Star is Born,Before I Cry,new,A Star Is Born,,,,56541,FALSE +A Star is Born,Black Eyes,new,A Star Is Born,,,,56539,FALSE +A Star is Born,Diggin' My Grave,new,A Star Is Born,,,,56578,FALSE +A Star is Born,Hair Body Face,new,A Star Is Born,,,,56900,FALSE +A Star is Born,Heal Me,new,A Star Is Born,,,,56607,FALSE +A Star is Born,I Don't Know What Love Is,new,A Star Is Born,,,,56543,FALSE +A Star is Born,I'll Never Love Again,new,A Star Is Born,,,,56478,FALSE +A Star is Born,Is That Alright,new,A Star Is Born,,,,56469,FALSE +A Star is Born,La vie en rose,new,A Star Is Born,,,,56738,FALSE +A Star is Born,Look What I Found,new,A Star Is Born,,,,56512,FALSE +A Star is Born,Maybe It's Time,new,A Star Is Born,,,,56540,FALSE +A Star is Born,Music to My Eyes,new,A Star Is Born,,,,56545,FALSE +A Star is Born,Shallow (Nesco Remix),new,A Star Is Born,,,,57997,FALSE +A Star is Born,Shallow,new,A Star Is Born,,,,56442,FALSE +A Star is Born,Too Far Gone (Bradley Cooper),new,A Star Is Born,,,,56616,FALSE +A Star is Born,Why Did You Do That,new,A Star Is Born,,,,56623,FALSE +A Taste of Honey,Boogie Oogie Oogie,new,,,,,8652,FALSE +A Tribe Called Quest,Can I Kick It ?,existing,,,,,,FALSE +A Tribe Called Quest,Can I Kick It,new,,,,,31163,FALSE +A Tribe Called Quest,Check the Rhime,new,,,,,80262,FALSE +A Tribe Called Quest,Electric Relaxation,new,,,,,79987,FALSE +A Tribe Called Quest,Scenario,new,,,,,70195,FALSE +A-Ha,Take On Me,existing,,,,,,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Azucar,new,,,,,80631,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Baila esta kumbia,new,,,,,70239,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Fuiste mala,new,,,,,81691,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Na Na Na (Dulce Nina),new,,,,,73696,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Sabes a chocolate,new,,,,,73516,FALSE +ABBA,Dancing Queen,existing,,,,,,FALSE +ABBA,Mamma Mia,existing,,,,,,FALSE +ABBA,Take A Chance On Me,existing,,,,,,FALSE +ABBA,The Winner Takes It All,existing,,,,,,FALSE +ABC,Be Near Me,new,,,,,23826,FALSE +ABC,Poison Arrow,new,,,,,21071,FALSE +ABC,When Smokey Sings,new,,,,,27958,FALSE +AC/DC,Back In Black,existing,,,,,,FALSE +AC/DC,Dirty Deeds Done Dirt Cheap,existing,,,,,,FALSE +AC/DC,For Those About To Rock,existing,,,,,,FALSE +AC/DC,Hells Bells,existing,,,,,,FALSE +AC/DC,Highway To Hell,existing,,,,,,FALSE +AC/DC,Rock And Roll Ain't Noise Pollution,existing,,,,,,FALSE +AC/DC,Shoot To Thrill,existing,,,,,,FALSE +AC/DC,T.N.T.,existing,,,,,,FALSE +AC/DC,Thunderstruck,existing,,,,,,FALSE +AC/DC,Whole Lotta Rosie,existing,,,,,,FALSE +AC/DC,You Shook Me All Night Long,existing,,,,,,FALSE +AJR,100 Bad Days,new,,,,,72805,FALSE +AJR,Bang!,new,,,,,62629,FALSE +AJR,Burn the House Down,new,,,,,70406,FALSE +AJR,I'm Not Famous,new,,,,,82168,FALSE +AJR,I'm Ready,new,,,,,47744,FALSE +AJR,Inertia,new,,,,,79717,FALSE +AJR,Karma,new,,,,,82119,FALSE +AJR,Sober Up,new,,,,,55860,FALSE +AJR,Steve's Going to London,new,,,,,78984,FALSE +AJR,The Dumb Song,new,,,,,75748,FALSE +AJR,Way Less Sad,new,,,,,70725,FALSE +AJR,Weak,new,,,,,69147,FALSE +AJR,World's Smallest Violin,new,,,,,70788,FALSE +AJR,Yes I'm a Mess,new,,,,,50604,FALSE +ALX,Runnin',existing,,,,,,FALSE +ASAP Rocky,Fuckin' Problems,new,,,,,43246,FALSE +ASAP Rocky,Praise the Lord (Da Shine),new,,,,,76038,FALSE +ASAP Rocky,Wild For The Night,new,,,,,43188,FALSE +Abba,Angel Eyes,existing,ABBA,,,,,FALSE +Abba,Chiquitita,existing,ABBA,,,,,FALSE +Abba,Does Your Mother Know ?,existing,ABBA,,,,,FALSE +Abba,Fernando,existing,ABBA,,,,,FALSE +Abba,Gimme Gimme Gimme,existing,ABBA,,,,,FALSE +Abba,Hole In Your Soul - Live,existing,ABBA,,,,,FALSE +Abba,Honey Honey,existing,ABBA,,,,,FALSE +Abba,I Do,existing,ABBA,,,,,FALSE +Abba,I Have a Dream,existing,ABBA,,,,,FALSE +Abba,Knowing Me Knowing You,existing,ABBA,,,,,FALSE +Abba,Lay All Your Love On Me,existing,ABBA,,,,,FALSE +Abba,Money,existing,ABBA,,,,,FALSE +Abba,Name of the Game,existing,ABBA,,,,,FALSE +Abba,One of Us,existing,ABBA,,,,,FALSE +Abba,Our Last Summer,existing,ABBA,,,,,FALSE +Abba,Ring Ring,existing,ABBA,,,,,FALSE +Abba,S.O.S.,existing,ABBA,,,,,FALSE +Abba,Summer Night City,existing,ABBA,,,,,FALSE +Abba,Super Trouper,existing,ABBA,,,,,FALSE +Abba,Thank You for the Music,existing,ABBA,,,,,FALSE +Abba,Voulez Vous,existing,ABBA,,,,,FALSE +Abba,Waterloo,existing,ABBA,,,,,FALSE +Abc,Look of Love,existing,ABC,,,,,FALSE +Ace of Base,All That She Wants,new,,,,,7115,FALSE +Ace of Base,The Sign,new,,,,,10111,FALSE +Adam & The Ants,Prince Charming,existing,,,,,,FALSE +Adam & The Ants,Stand & Deliver,existing,,,,,,FALSE +Adam Ant,Goody Two Shoes,new,,,,,10914,FALSE +Adam Ant,Strip,new,,,,,36907,FALSE +Adam Lambert,For Your Entertainment,new,,,,,26530,FALSE +Adam Lambert,Ghost Town,new,,,,,49229,FALSE +Adam Lambert,If I Had You,new,,,,,28969,FALSE +Adam Lambert,Whataya Want From Me,existing,,,,,,FALSE +Adele,Chasing Pavements,existing,,,,,,FALSE +Adele,Cold Shoulder,existing,,,,,,FALSE +Adele,Easy On Me (with Chris Stapleton),new,,,,,67387,FALSE +Adele,Easy on Me,new,,,,,66627,FALSE +Adele,Hello,new,,,,,50052,FALSE +Adele,Make You Feel My Love,existing,,,,,,FALSE +Adele,One & Only,existing,,,,,,FALSE +Adele,Rolling In The Deep,existing,,,,,,FALSE +Adele,Set Fire To The Rain,existing,,,,,,FALSE +Adele,Skyfall,existing,,,,,,FALSE +Adele,Someone Like You,existing,,,,,,FALSE +Adele,When We Were Young,new,,,,,50191,FALSE +Aerosmith,Amazing,existing,,,,,,FALSE +Aerosmith,Dream On,existing,,,,,,FALSE +Aerosmith,I Don't Want To Miss A Thing,existing,,,,,,FALSE +Aerosmith,Janie's Got A Gun,existing,,,,,,FALSE +Aerosmith,Love In An Elevator,existing,,,,,,FALSE +Aerosmith,Same Old Song and Dance,new,,,,,16805,FALSE +Aerosmith,Sweet Emotion,existing,,,,,,FALSE +Aerosmith,Walk This Way,existing,,,,,,FALSE +Aerosmith,What It Takes,existing,,,,,,FALSE +African-American Spiritual,Joshua Fit The Battle of Jericho (A Cappella),existing,,,,,,FALSE +Afrojack,As Your Friend,new,,,,,43709,FALSE +Afrojack,Hey,new,,,,,51302,FALSE +Afrojack,Take Over Control,new,,,,,35757,FALSE +Afrojack,Ten Feet Tall,new,,,,,47048,FALSE +Afrojack,The Spark,new,,,,,45824,FALSE +Air Supply,All Out of Love,new,,,,,10286,FALSE +Air Supply,Even the Nights Are Better,new,,,,,14878,FALSE +Air Supply,Lost in Love,new,,,,,6111,FALSE +Air Supply,Making Love Out of Nothing at All,new,,,,,20934,FALSE +Air Supply,Without You,new,,,,,75266,FALSE +Akon,Angel,new,,,,,36091,FALSE +Akon,Belly Dancer (Bananza),new,,,,,83618,FALSE +Akon,Don't Matter,new,,,,,11781,FALSE +Akon,I Wanna Love You,new,,,,,78615,FALSE +Akon,Locked Up,new,,,,,14880,FALSE +Akon,Lonely,new,,,,,14881,FALSE +Akon,Oh Africa,new,,,,,28932,FALSE +Akon,Right Now (Na Na Na),new,,,,,21231,FALSE +Akon,Smack That,new,,,,,59765,FALSE +Akon,"Sorry, Blame It on Me",new,,,,,12506,FALSE +Al Green,Here I Am (Come And Take Me),new,,,,,34044,FALSE +Al Green,I'm Still In Love With You,new,,,,,16814,FALSE +Al Green,Let's Stay Together,existing,,,,,,FALSE +Al Green,Love And Happiness,existing,,,,,,FALSE +Al Green,Tired Of Being Alone,new,,,,,16812,FALSE +Al Martino,Speak Softly Love,existing,,,,,,FALSE +Al Stewart,Time Passages,new,,,,,67244,FALSE +Al Stewart,Year of the Cat,new,,,,,37428,FALSE +Alabama,Born Country,new,,,,,6630,FALSE +Alabama,Dixieland Delight,new,,,,,30054,FALSE +Alabama,I'm in a Hurry (And Don't Know Why),new,,,,,6753,FALSE +Alabama,If You're Gonna Play in Texas (You Gotta Have a Fiddle in the Band),new,,,,,14890,FALSE +Alabama,Mountain Music,new,,,,,14895,FALSE +Alabama,Song of the South,new,,,,,14889,FALSE +Alabama Shakes,Don't Wanna Fight,new,,,,,51409,FALSE +Alabama Shakes,Hold On,existing,,,,,,FALSE +Alan Jackson,Chasin' That Neon Rainbow,new,,,,,6704,FALSE +Alan Jackson,Chattahoochee,new,,,,,6423,FALSE +Alan Jackson,Don't Rock the Jukebox,new,,,,,6583,FALSE +Alan Jackson,Drive (For Daddy Gene),new,,,,,8140,FALSE +Alan Jackson,Gone Country,new,,,,,9501,FALSE +Alan Jackson,Good Time,new,,,,,19880,FALSE +Alan Jackson,It's Five O'Clock Somewhere,existing,,,,,,FALSE +Alan Jackson,Little Bitty,new,,,,,10623,FALSE +Alan Jackson,Livin' on Love,new,,,,,9493,FALSE +Alan Jackson,Remember When,existing,,,,,,FALSE +Alan Walker,All Falls Down,new,,,,,81051,FALSE +Alan Walker,Alone,new,,,,,52622,FALSE +Alan Walker,"Alone, Pt. II",new,,,,,76738,FALSE +Alan Walker,Darkside,new,,,,,56639,FALSE +Alan Walker,Diamond Heart,new,,,,,56967,FALSE +Alan Walker,Faded,new,,,,,50790,FALSE +Alan Walker,Lily,new,,,,,74969,FALSE +Alan Walker,Sing Me to Sleep,new,,,,,52064,FALSE +Alan Walker,The Spectre,new,,,,,78224,FALSE +Alanis Morissette,Hand in My Pocket,new,,,,,14440,FALSE +Alanis Morissette,Head over Feet,new,,,,,14527,FALSE +Alanis Morissette,Ironic,new,,,,,14441,FALSE +Alanis Morissette,Thank U,new,,,,,9267,FALSE +Alanis Morissette,You Learn,new,,,,,10839,FALSE +Alanis Morissette,You Oughta Know,existing,,,,,,FALSE +Alannah Myles,Black Velvet,existing,,,,,,FALSE +Albert Hammond,It Never Rains In Southern California,existing,,,,,,FALSE +Albert King,Born Under a Bad Sign,new,,,,,55885,FALSE +Albert King,I'll Play the Blues for You,new,,,,,53248,FALSE +Albert King,Killing Floor,new,,,,,67495,FALSE +Alec Benjamin,Devil Doesn't Bargain,new,,,,,73283,FALSE +Alec Benjamin,I Built a Friend,new,,,,,83219,FALSE +Alec Benjamin,If I Killed Someone for You,new,,,,,78577,FALSE +Alec Benjamin,If We Had Each Other,new,,,,,75206,FALSE +Alec Benjamin,Let Me Down Slowly (feat. Alessia Cara),new,,,,,57354,FALSE +Alec Benjamin,Let Me Down Slowly,new,,,,,57353,FALSE +Alec Benjamin,Oh my God,new,,,,,61755,FALSE +Alec Benjamin,Outrunning Karma,new,,,,,80772,FALSE +Alejandro Fernandez,Caballero,new,,,,,76237,FALSE +Alejandro Fernandez,Canta corazon,new,,,,,27117,FALSE +Alejandro Fernandez,Como quien pierde una estrella,new,,,,,60828,FALSE +Alejandro Fernandez,Eres,new,,,,,22335,FALSE +Alejandro Fernandez,Hoy tengo ganas de ti,new,,,,,69844,FALSE +Alejandro Fernandez,Las mananitas,new,,,,,60496,FALSE +Alejandro Fernandez,Matalas,new,,,,,59682,FALSE +Alejandro Fernandez,Me dedique a perderte,new,,,,,14316,FALSE +Alejandro Fernandez,Me estoy enamorando,new,,,,,27075,FALSE +Alejandro Fernandez,No,new,,,,,77564,FALSE +Alejandro Fernandez,Nube Viajera,new,,,,,76136,FALSE +Alejandro Fernandez,Se me va la voz,new,,,,,36098,FALSE +Alejandro Fernandez,Tantita pena,new,,,,,16064,FALSE +Alejandro Fernandez,Te voy a perder,new,,,,,22336,FALSE +Alejandro Sanz,Amiga mia,new,,,,,63777,FALSE +Alejandro Sanz,Aprendiz,new,,,,,6786,FALSE +Alejandro Sanz,Corazon Partio,existing,,,,,,FALSE +Alejandro Sanz,Cuando nadie me ve,new,,,,,74896,FALSE +Alejandro Sanz,Deja que te bese,new,,,,,52147,FALSE +Alejandro Sanz,Desde cuando,new,,,,,36071,FALSE +Alejandro Sanz,Looking for Paradise,new,,,,,25929,FALSE +Alejandro Sanz,Mi persona favorita,new,,,,,80568,FALSE +Alejandro Sanz,Mi soledad y yo,new,,,,,76943,FALSE +Alejandro Sanz,No es lo mismo,new,,,,,20659,FALSE +Alejandro Sanz,No me compares,new,,,,,41905,FALSE +Alejandro Sanz,"Te lo agradezco, pero no",new,,,,,16582,FALSE +Alejandro Sanz,"Y, Si fuera ella",new,,,,,71574,FALSE +Alesha Dixon,Boy Does Nothing,existing,,,,,,FALSE +Alessia Cara,Here,new,,,,,49814,FALSE +Alessia Cara,I Choose,new,,,,,62219,FALSE +Alessia Cara,Out of Love,new,,,,,58978,FALSE +Alessia Cara,River of Tears,new,,,,,52846,FALSE +Alessia Cara,Scars to Your Beautiful,new,,,,,51263,FALSE +Alessia Cara,Wild Things,new,,,,,50911,FALSE +Alesso,Heroes (We Could Be),new,,,,,48356,FALSE +Alesso,The End,new,,,,,62732,FALSE +Alesso,When I'm Gone,new,,,,,67800,FALSE +Alexander O'neal,Criticise,existing,,,,,,FALSE +Alexandra Burke,Bad Boys,existing,,,,,,FALSE +Alexandra Burke,Hallelujah,existing,,,,,,FALSE +Alexandra Stan,Mr Saxobeat,existing,,,,,,FALSE +Alice Cooper,Feed My Frankenstein,new,,,,,51466,FALSE +Alice Cooper,I'm Eighteen,existing,,,,,,FALSE +Alice Cooper,No More Mister Nice Guy,new,,,,,26418,FALSE +Alice Cooper,Poison,new,,,,,13025,FALSE +Alice Cooper,School's Out,existing,,,,,,FALSE +Alice In Chains,Rooster,existing,,,,,,FALSE +Alice in Chains,Check My Brain,new,Alice In Chains,,,,70361,FALSE +Alice in Chains,Down in a Hole,new,Alice In Chains,,,,65815,FALSE +Alice in Chains,Man in the Box,new,Alice In Chains,,,,38603,FALSE +Alice in Chains,No Excuses,new,Alice In Chains,,,,44076,FALSE +Alice in Chains,Nutshell (unplugged),new,Alice In Chains,,,,74283,FALSE +Alice in Chains,Nutshell,new,Alice In Chains,,,,36455,FALSE +Alice in Chains,Rotten Apple,new,Alice In Chains,,,,70302,FALSE +Alice in Chains,Them Bones,new,Alice In Chains,,,,63879,FALSE +Alice in Chains,Would,new,Alice In Chains,,,,40750,FALSE +Alicia Keys,Empire State of Mind - Part 2,existing,,,,,,FALSE +Alicia Keys,Fallin' - Live Arragnement,existing,,,,,,FALSE +Alicia Keys,Fallin',new,,,,,5487,FALSE +Alicia Keys,Girl On Fire,existing,,,,,,FALSE +Alicia Keys,If I Ain't Got You,existing,,,,,,FALSE +Alicia Keys,No One,new,,,,,13212,FALSE +Alicia Keys,Un-Thinkable (I'm Ready),new,,,,,29598,FALSE +Alicia Keys,You Don't Know My Name,new,,,,,13455,FALSE +Alien Ant Farm,Smooth Criminal,new,,,,,7992,FALSE +Alison Krauss,Baby Now That I've Found You,existing,,,,,,FALSE +Alison Krauss,Down To The River To Pray,existing,,,,,,FALSE +Alison Krauss,I'll Fly Away,existing,,,,,,FALSE +Alison Krauss,Oh Atlanta,new,,,,,79002,FALSE +Alison Krauss And Union Station,When You Say Nothing At All,existing,,,,,,FALSE +Alison Moyet,All Cried Out,existing,,,,,,FALSE +Alison Moyet,That Ole Devil Called Love,existing,,,,,,FALSE +All Time Low,"Dear Maria, Count Me in",new,,,,,66893,FALSE +All Time Low,I Feel Like Dancin',new,,,,,37302,FALSE +All Time Low,Monsters,new,,,,,70518,FALSE +All Time Low,Remembering Sunday,new,,,,,31263,FALSE +All Time Low,Therapy,new,,,,,77459,FALSE +All Time Low,Weightless,new,,,,,74243,FALSE +Alle Farben,Little Hollywood,new,,,,,53594,FALSE +Alle Farben,Supergirl,new,,,,,49310,FALSE +Alligatoah,Du bist schon,new,,,,,31297,FALSE +Alligatoah,Willst du,new,,,,,66244,FALSE +Aloe Blacc,I Need a Dollar,existing,,,,,,FALSE +Aloe Blacc,The Man,new,,,,,46338,FALSE +Aloe Blacc,Wake Me Up (acoustic),new,,,,,45267,FALSE +Alok,Deep Down,new,,,,,73878,FALSE +Alok,Hear Me Now,new,,,,,53062,FALSE +Alok,Wherever You Go,new,,,,,67189,FALSE +Alok,Work with My Love,new,,,,,74895,FALSE +Alt-J,Breezeblocks,new,,,,,55868,FALSE +Alt-J,Left Hand Free,new,,,,,73097,FALSE +Alt-J,Tessellate,new,,,,,80492,FALSE +Alvaro Soler,El mismo sol (feat. Jennifer Lopez),new,,,,,63050,FALSE +Alvaro Soler,La Cintura,new,,,,,55396,FALSE +Alvaro Soler,Manila,new,,,,,68163,FALSE +Alvaro Soler,Sofia,new,,,,,51106,FALSE +Alvin Lee,Bluest Blues,existing,,,,,,FALSE +Alvin Stardust,My Coo Ca Choo,existing,,,,,,FALSE +Alvin Stardust,Pretend,existing,,,,,,FALSE +Ambrosia,Biggest Part Of Me,new,,,,,16837,FALSE +Ambrosia,Holdin' On to Yesterday,new,,,,,63429,FALSE +Ambrosia,How Much I Feel,new,,,,,53046,FALSE +Ambrosia,You're the Only Woman (You & I),new,,,,,63625,FALSE +Amelia Lily,You Bring Me Joy,existing,,,,,,FALSE +Amen Corner,(If Paradise Is) Half as Nice,existing,,,,,,FALSE +Amen Corner,Bend Me Shape Me,existing,,,,,,FALSE +America,A Horse With No Name,existing,,,,,,FALSE +America,All My Life,new,,,,,8429,FALSE +America,I Need You,new,,,,,8419,FALSE +America,Lonely People,new,,,,,8425,FALSE +America,Sister Golden Hair,new,,,,,8426,FALSE +America,Tin Man,new,,,,,8424,FALSE +America,Ventura Highway,existing,,,,,,FALSE +America,You Can Do Magic,existing,,,,,,FALSE +American Authors,Best Day of My Life,existing,,,,,,FALSE +Amii Stewart,Knock On Wood,existing,,,,,,FALSE +Amy Grant,A Christmas to Remember,new,,,,,59406,FALSE +Amy Grant,Baby Baby,new,,,,,6091,FALSE +Amy Grant,"Baby, It's Christmas",new,,,,,45365,FALSE +Amy Grant,Believe (Theme from Three Wishes),new,,,,,14939,FALSE +Amy Grant,Better than a Hallelujah,new,,,,,78918,FALSE +Amy Grant,Big Yellow Taxi,new,,,,,10788,FALSE +Amy Grant,Breath Of Heaven (Mary's Song),new,,,,,35565,FALSE +Amy Grant,Christmas Can't Be Very Far Away,new,,,,,56487,FALSE +Amy Grant,El Shaddai,new,,,,,6448,FALSE +Amy Grant,Every Heartbeat,new,,,,,6099,FALSE +Amy Grant,Good for Me,new,,,,,16911,FALSE +Amy Grant,Grown-Up Christmas List,new,,,,,62124,FALSE +Amy Grant,House of Love,new,,,,,10086,FALSE +Amy Grant,I Will Be Your Friend,new,,,,,9197,FALSE +Amy Grant,I Will Remember You,new,,,,,6795,FALSE +Amy Grant,I'll Be Home for Christmas,new,,,,,14940,FALSE +Amy Grant,It Is Well with My Soul The River's Gonna Keep on Rolling,new,,,,,81418,FALSE +Amy Grant,It's the Most Wonderful Time of the Year,new,,,,,56435,FALSE +Amy Grant,Jingle Bell Rock,new,,,,,50093,FALSE +Amy Grant,Lucky One,new,,,,,11460,FALSE +Amy Grant,Rockin' Around the Christmas Tree,new,,,,,50079,FALSE +Amy Grant,Sing Your Praise to the Lord,new,,,,,61206,FALSE +Amy Grant,Sleigh Ride,new,,,,,56429,FALSE +Amy Grant,Takes A Little Time,new,,,,,9563,FALSE +Amy Grant,Tennessee Christmas,new,,,,,14937,FALSE +Amy Grant,That's What Love is For,new,,,,,16910,FALSE +Amy Grant,Winter Wonderland,new,,,,,7542,FALSE +Amy Mcdonald,Mr Rock & Roll,existing,,,,,,FALSE +Amy Mcdonald,This Is the Life,existing,,,,,,FALSE +Amy Winehouse,Back To Black,existing,,,,,,FALSE +Amy Winehouse,Love Is a Losing Game,existing,,,,,,FALSE +Amy Winehouse,Our Day Will Come,existing,,,,,,FALSE +Amy Winehouse,Rehab,existing,,,,,,FALSE +Amy Winehouse,Tears Dry On Their Own,existing,,,,,,FALSE +Amy Winehouse,Valerie,existing,,,,,,FALSE +Amy Winehouse,Will You Still Love Me Tomorrow,existing,,,,,,FALSE +Amy Winehouse,You Know I'm No Good,existing,,,,,,FALSE +Anastacia,I'm Outta Love,existing,,,,,,FALSE +Anastacia,Left Outside Alone,existing,,,,,,FALSE +Anastacia,Sick and Tired,new,,,,,5421,FALSE +Anderson .Paak,Am I Wrong,new,,,,,78523,FALSE +Anderson .Paak,Come Down,new,,,,,64556,FALSE +Anderson .Paak,Make It Better,new,,,,,59538,FALSE +Andrea Bocelli,Con te partiro,new,,,,,5976,FALSE +Andrea Bocelli,Time to Say Goodbye,new,,,,,14578,FALSE +Andrea Bocelli,Vivo per lei,new,,,,,70608,FALSE +Andrew Gold,Never Let Her Slip Away,existing,,,,,,FALSE +Andrews Sisters,Boogie Woogie Bugle Boy (A Cappella),existing,The Andrews Sisters,,,,,FALSE +Andy Gibb,I Just Want To Be Your Everything,new,,,,,14952,FALSE +Andy Gibb,Shadow Dancing,new,,,,,14951,FALSE +Andy Williams,Butterfly,existing,,,,,,FALSE +Andy Williams,Can't Take My Eyes off You,existing,,,,,,FALSE +Andy Williams,It's the Most Wonderful Time of the Year,existing,,,,,,FALSE +Animal Magnet,Welcome To the Monkey House,existing,,,,,,FALSE +Anne Murray,I Just Fall In Love Again,new,,,,,10284,FALSE +Anne Murray,Just Another Woman In Love,new,,,,,16923,FALSE +Anne Murray,You Needed Me,new,,,,,17559,FALSE +Anne-Marie,2002 (acoustic),new,,,,,56252,FALSE +Anne-Marie,Ciao Adios,new,,,,,52868,FALSE +Anne-Marie,Friends,new,,,,,55256,FALSE +Anne-Marie,Unhealthy,new,,,,,75207,FALSE +Annie Lennox,I Put a Spell on You,new,,,,,48790,FALSE +Annie Lennox,No More I Love You's,new,,,,,7156,FALSE +Annie Lennox,Walking on Broken Glass,new,,,,,6433,FALSE +Anthony Hamilton,Best of Me,new,,,,,55358,FALSE +Anthony Hamilton,Charlene,new,,,,,55045,FALSE +Anthrax,Bring the Noise,new,,,,,31947,FALSE +Anthrax,Caught in a Mosh,new,,,,,77651,FALSE +Anthrax,I'm the Man,new,,,,,78018,FALSE +Anthrax,Indians,new,,,,,83544,FALSE +Anthrax,Only,new,,,,,76251,FALSE +Antonio Carlos Jobim,A felicidade,new,,,,,38731,FALSE +Antonio Carlos Jobim,Brazil (Aquarela do Brasil),new,,,,,73744,FALSE +Antonio Carlos Jobim,Eu sei que vou te amar,new,,,,,62963,FALSE +Antonio Carlos Jobim,Luiza,new,,,,,73496,FALSE +Antonio Carlos Jobim,Passarim,new,,,,,75518,FALSE +Antonio Carlos Jobim,The Girl From Ipanema,existing,,,,,,FALSE +Antonio Carlos Jobim,The Girl from Ipanema,new,,,,,35603,FALSE +Apache 207,Breaking Your Heart,new,,,,,74679,FALSE +Apache 207,Neunzig,new,,,,,75320,FALSE +Apache 207,Roller,new,,,,,60492,FALSE +Apache 207,Wunder,new,,,,,82292,FALSE +Apocalyptica,I Don't Care,new,,,,,72555,FALSE +Apocalyptica,I'm Not Jesus,new,,,,,74899,FALSE +Apocalyptica,Not Strong Enough,new,,,,,70568,FALSE +April Wine,Just Between You and Me,new,,,,,64724,FALSE +April Wine,Roller,new,,,,,65203,FALSE +April Wine,Sign Of The Gypsy Queen,existing,,,,,,FALSE +April Wine,You Could Have Been a Lady,new,,,,,25997,FALSE +Arcade Fire,Everything Now,new,,,,,54143,FALSE +Arcade Fire,Intervention,new,,,,,12413,FALSE +Arcade Fire,Wake Up,new,,,,,40150,FALSE +Arcade Fire,We Used to Wait,new,,,,,45720,FALSE +Archie Bell & The Drells,Here I Go Again,existing,,,,,,FALSE +Arctic Monkeys,505,new,,,,,69656,FALSE +Arctic Monkeys,Do I Wanna Know,existing,,,,,,FALSE +Arctic Monkeys,Fluorescent Adolescents,existing,,,,,,FALSE +Arctic Monkeys,I Bet You Look Good On the Dancefloor,existing,,,,,,FALSE +Arctic Monkeys,I Wanna Be Yours,new,,,,,71897,FALSE +Arctic Monkeys,R U Mine,existing,,,,,,FALSE +Arctic Monkeys,Snap Out of It,new,,,,,47249,FALSE +Arctic Monkeys,Why'd You Only Call Me When You're High,new,,,,,58052,FALSE +Aretha Franklin,A Change Is Gonna Come,new,,,,,75117,FALSE +Aretha Franklin,Chain of Fools,new,,,,,14976,FALSE +Aretha Franklin,"Do Right Woman, Do Right Man",new,,,,,35601,FALSE +Aretha Franklin,I Never Loved A Man (The Way I Loved You),existing,,,,,,FALSE +Aretha Franklin,I Say A Little Prayer,existing,,,,,,FALSE +Aretha Franklin,Natural Woman,existing,,,,,,FALSE +Aretha Franklin,Respect,existing,,,,,,FALSE +Aretha Franklin,Rock Steady,existing,,,,,,FALSE +Aretha Franklin,Think,existing,,,,,,FALSE +Aretha Franklin,Until You Come Back to Me,new,,,,,24106,FALSE +Ariana Grande,7 Rings,new,,,,,57318,FALSE +Ariana Grande,Bang Bang,existing,,,,,,FALSE +Ariana Grande,Break Free,existing,,,,,,FALSE +Ariana Grande,Dangerous Woman,new,,,,,50943,FALSE +Ariana Grande,Into You,new,,,,,51326,FALSE +Ariana Grande,Intro (End of the World),new,,,,,80958,FALSE +Ariana Grande,One Last Time,existing,,,,,,FALSE +Ariana Grande,Problem,existing,,,,,,FALSE +Ariana Grande,The Boy Is Mine,new,,,,,80322,FALSE +Ariana Grande,We Can't Be Friends (Wait for Your Love),new,,,,,80253,FALSE +Ariana Grande,"Yes, And",new,,,,,79178,FALSE +Arlo Guthrie,Alice's Restaurant,new,,,,,10573,FALSE +Arlo Guthrie,City of New Orleans,new,,,,,58867,FALSE +Arlo Guthrie,Coming into Los Angeles,new,,,,,76911,FALSE +Arlo Guthrie,The Motorcycle Song,new,,,,,80208,FALSE +Armin Van Buuren,Another You,new,,,,,49240,FALSE +Armin Van Buuren,Beautiful Life,new,,,,,45674,FALSE +Armin Van Buuren,Blah Blah Blah,new,,,,,79872,FALSE +Armin Van Buuren,Heading Up High,new,,,,,50734,FALSE +Armin Van Buuren,In and Out of Love,new,,,,,40328,FALSE +Armin Van Buuren,Saturday Night,new,,,,,40819,FALSE +Armin Van Buuren,Sunny Days,new,,,,,54041,FALSE +Armin Van Buuren,This Is What It Feels Like,new,,,,,43524,FALSE +Arrested Development,Mr. Wendal,existing,,,,,,FALSE +Arrow,Hot Hot Hot,existing,,,,,,FALSE +Art of Noise,Kiss,new,,,,,25950,FALSE +Arthur Conley,Sweet Soul Music,existing,,,,,,FALSE +Ashanti,Don't Leave Me Alone,existing,,,,,,FALSE +Ashlee Simpson,L-O-V-E,existing,,,,,,FALSE +Ashley McBryde,Light on in the Kitchen,new,,,,,74144,FALSE +Ashley McBryde,One Night Standards,new,,,,,57471,FALSE +Ashnikko,Daisy,new,,,,,65764,FALSE +Ashnikko,Deal with It,new,,,,,80428,FALSE +Ashnikko,"Hi, It's Me",new,,,,,78860,FALSE +Ashnikko,Panic Attacks in Paradise,new,,,,,72660,FALSE +Ashnikko,Slumber Party,new,,,,,65587,FALSE +Ashnikko,Stupid,new,,,,,73429,FALSE +Ashnikko,Working Bitch,new,,,,,74536,FALSE +Asking Alexandria,A Prophecy,new,,,,,38807,FALSE +Asking Alexandria,Alone in a Room (acoustic),new,,,,,81435,FALSE +Asking Alexandria,Alone in a Room,new,,,,,75312,FALSE +Asking Alexandria,Moving On,new,,,,,74562,FALSE +Asking Alexandria,Not The American Average,new,,,,,80743,FALSE +Asleep At The Wheel,Miles And Miles Of Texas,existing,,,,,,FALSE +Asleep At The Wheel,Route 66,existing,,,,,,FALSE +Astrud Gilberto,A Certain Sadness,new,,,,,64167,FALSE +Astrud Gilberto,Agua de Beber,new,,,,,19320,FALSE +Astrud Gilberto,Berimbau,new,,,,,67386,FALSE +Astrud Gilberto,Corcovado (Quiet Nights of Quiet Stars),new,,,,,33487,FALSE +Astrud Gilberto,Dindi,new,,,,,83353,FALSE +Astrud Gilberto,Fly Me to the Moon,new,,,,,42282,FALSE +Astrud Gilberto,Goodbye Sadness (Tristeza),new,,,,,65637,FALSE +Astrud Gilberto,Here's That Rainy Day,new,,,,,65047,FALSE +Astrud Gilberto,Light My Fire,new,,,,,63808,FALSE +Astrud Gilberto,Manha de Carnaval,new,,,,,39680,FALSE +Astrud Gilberto,Meditation,new,,,,,74343,FALSE +Astrud Gilberto,So Nice (Summer Samba),new,,,,,64687,FALSE +Astrud Gilberto,Take It Easy My Brother Charlie,new,,,,,64887,FALSE +Astrud Gilberto,The Girl from Ipanema,new,,,,,13584,FALSE +Astrud Gilberto,The Shadow of Your Smile,new,,,,,36889,FALSE +Astrud Gilberto & Stan Getz,The Girl From Ipanema (A Cappella),existing,Astrud Gilberto,,,,,FALSE +Aswad,Don't Turn Around,existing,,,,,,FALSE +Atlanta Rhythm Section,Imaginary Lover,new,,,,,16930,FALSE +Atlanta Rhythm Section,So Into You,existing,,,,,,FALSE +Atlanta Rhythm Section,Spooky,existing,,,,,,FALSE +Atomic Kitten,Eternal Flame,existing,,,,,,FALSE +Audioslave,Be Yourself,new,,,,,15012,FALSE +Audioslave,Cochise,new,,,,,15008,FALSE +Audioslave,Doesn't Remind Me,new,,,,,15014,FALSE +Audioslave,Gasoline,new,,,,,50904,FALSE +Audioslave,I Am the Highway,new,,,,,15010,FALSE +Audioslave,Like A Stone,existing,,,,,,FALSE +Audioslave,Show Me How to Live,new,,,,,15009,FALSE +Australian Crawl,Reckless,existing,,,,,,FALSE +Autograph,Turn Up the Radio,new,,,,,56712,FALSE +Ava Max,Kings & Queens,new,,,,,61054,FALSE +Ava Max,My Head & My Heart,new,,,,,63298,FALSE +Ava Max,Sweet But Psycho,new,,,,,56789,FALSE +Avenged Sevenfold,A Little Piece of Heaven,new,,,,,35247,FALSE +Avenged Sevenfold,Afterlife,existing,,,,,,FALSE +Avenged Sevenfold,Bat Country,new,,,,,70694,FALSE +Avenged Sevenfold,Dear God,new,,,,,65920,FALSE +Avenged Sevenfold,Hail to the King,new,,,,,69172,FALSE +Avenged Sevenfold,Nightmare,new,,,,,59798,FALSE +Avenged Sevenfold,Shepherd of Fire,new,,,,,70537,FALSE +Avenged Sevenfold,So Far Away,new,,,,,57130,FALSE +Average White Band,Let's Go Round Again,existing,,,,,,FALSE +Average White Band,Pick Up The Pieces,existing,,,,,,FALSE +Avicii,Addicted to You,new,,,,,45491,FALSE +Avicii,Hey Brother,existing,,,,,,FALSE +Avicii,I Could Be the One,new,,,,,42665,FALSE +Avicii,Levels,new,,,,,39101,FALSE +Avicii,S.O.S.,new,,,,,58112,FALSE +Avicii,The Nights,new,,,,,48559,FALSE +Avicii,Waiting For Love,new,,,,,49425,FALSE +Avicii,Wake Me Up,existing,,,,,,FALSE +Avicii,Without You,new,,,,,54096,FALSE +Avril Lavigne,Complicated,existing,,,,,,FALSE +Avril Lavigne,Girlfriend,new,,,,,11882,FALSE +Avril Lavigne,Here's To Never Growing Up,existing,,,,,,FALSE +Avril Lavigne,I'm With You,new,,,,,7201,FALSE +Avril Lavigne,Sk8er Boi,new,,,,,6946,FALSE +Avril Lavigne,What The Hell,existing,,,,,,FALSE +Awolnation,Sail,existing,,,,,,FALSE +Axe,Rock N Roll Party In The Streets,existing,,,,,,FALSE +B.B. King,3 O'Clock Blues,new,,,,,75073,FALSE +B.B. King,Blues Man,new,,,,,69071,FALSE +B.B. King,Bring It Home to Me,new,,,,,66021,FALSE +B.B. King,Caldonia,existing,,,,,,FALSE +B.B. King,Choo Choo Ch'Boogie,existing,,,,,,FALSE +B.B. King,Come Rain Or Come Shine,existing,,,,,,FALSE +B.B. King,Don't Answer The Door,existing,,,,,,FALSE +B.B. King,Every Day I Have the Blues,new,,,,,75436,FALSE +B.B. King,How Blue Can You Get,new,,,,,59238,FALSE +B.B. King,Hummingbird,new,,,,,80368,FALSE +B.B. King,I'll Survive,new,,,,,8537,FALSE +B.B. King,Let The Good Times Roll,existing,,,,,,FALSE +B.B. King,"Merry Christmas, Baby",new,,,,,71545,FALSE +B.B. King,Never Make a Move Too Soon,new,,,,,71600,FALSE +B.B. King,Night Life,new,,,,,73024,FALSE +B.B. King,Please Send Me Someone To Love,existing,,,,,,FALSE +B.B. King,Rock Me Baby,existing,,,,,,FALSE +B.B. King,Something You Got,new,,,,,78282,FALSE +B.B. King,Sweet Sixteen,new,,,,,72617,FALSE +B.B. King,The Thrill Is Gone,existing,,,,,,FALSE +B.B. King,Why I Sing the Blues (live),new,,,,,78113,FALSE +B.J. Thomas,Another Somebody Done Somebody Wrong Song,existing,,,,,,FALSE +B.J. Thomas,Raindrops Keep Fallin On My Head,existing,,,,,,FALSE +B.o.B.,Airplanes,existing,,,,,,FALSE +B.o.B.,Nothin On You,existing,,,,,,FALSE +B.o.B.,So Good,existing,,,,,,FALSE +BTS (),"Blood, Sweat & Tears ( )",new,BTS,,,,56921,FALSE +BTS (),Boy With Luv ( ),new,BTS,,,,58943,FALSE +BTS (),Butter,new,BTS,,,,65079,FALSE +BTS (),DNA,new,BTS,,,,62806,FALSE +BTS (),Dynamite (acoustic remix),new,BTS,,,,62303,FALSE +BTS (),Dynamite,new,BTS,,,,62268,FALSE +BTS (),Epiphany,new,BTS,,,,67000,FALSE +BTS (),Euphoria,new,BTS,,,,65939,FALSE +BTS (),Fake Love ( ),new,BTS,,,,56353,FALSE +BTS (),Go Go,new,BTS,,,,62407,FALSE +BTS (),I Need U,new,BTS,,,,69296,FALSE +BTS (),Idol,new,BTS,,,,56956,FALSE +BTS (),Life Goes On,new,BTS,,,,63866,FALSE +BTS (),MIC Drop (Steve Aoki remix),new,BTS,,,,70962,FALSE +BTS (),Mikrokosmos (),new,BTS,,,,65902,FALSE +BTS (),Permission to Dance,new,BTS,,,,65636,FALSE +BTS (),Run BTS ( ),new,BTS,,,,71477,FALSE +BTS (),Save Me,new,BTS,,,,74568,FALSE +BTS (),Serendipity ( ),new,BTS,,,,38685,FALSE +BTS (),Spring Day (),new,BTS,,,,62636,FALSE +BTS (),Stay Gold,new,BTS,,,,64905,FALSE +BTS (),The Truth Untold ( ),new,BTS,,,,73195,FALSE +Baccara,Yes Sir I Can Boogie,existing,,,,,,FALSE +Bachman Turner Overdrive,Takin' Care Of Business,existing,Bachman-Turner Overdrive,,,,,FALSE +Bachman Turner Overdrive (BTO),You Ain't Seen Nothing Yet,existing,Bachman-Turner Overdrive,,,,,FALSE +Bachman-Turner Overdrive,Let It Ride,new,,,,,15036,FALSE +Backstreet Boys,As Long as You Love Me,new,,,,,9704,FALSE +Backstreet Boys,Everybody (Backstreet's Back),existing,,,,,,FALSE +Backstreet Boys,I Want It That Way,new,,,,,8530,FALSE +Backstreet Boys,Quit Playing Games (With My Heart),new,,,,,10301,FALSE +Backstreet Boys,Shape of My Heart,new,,,,,7588,FALSE +Bad Bunny,Amorfoda,new,,,,,49096,FALSE +Bad Bunny,Booker T,new,,,,,67575,FALSE +Bad Bunny,Callaita,new,,,,,59399,FALSE +Bad Bunny,Dakiti,new,,,,,62875,FALSE +Bad Bunny,Despues de la playa,new,,,,,69942,FALSE +Bad Bunny,Efecto,new,,,,,70390,FALSE +Bad Bunny,La noche de anoche,new,,,,,63402,FALSE +Bad Bunny,Lo Siento BB,new,,,,,67005,FALSE +Bad Bunny,Me porto bonito,new,,,,,70071,FALSE +Bad Bunny,Mia,new,,,,,57077,FALSE +Bad Bunny,Mojabi Ghost,new,,,,,76396,FALSE +Bad Bunny,Monaco,new,,,,,78581,FALSE +Bad Bunny,Moscow Mule,new,,,,,70065,FALSE +Bad Bunny,Neverita,new,,,,,31287,FALSE +Bad Bunny,Ojitos lindos,new,,,,,70139,FALSE +Bad Bunny,Party,new,,,,,69573,FALSE +Bad Bunny,Perro negro,new,,,,,78539,FALSE +Bad Bunny,Safaera,new,,,,,72490,FALSE +Bad Bunny,Si veo a tu mama,new,,,,,27928,FALSE +Bad Bunny,Te bote (remix),new,,,,,55709,FALSE +Bad Bunny,Titi me pregunto,new,,,,,69801,FALSE +Bad Bunny,Yo no soy celoso,new,,,,,70885,FALSE +Bad Bunny,Yo perreo sola,new,,,,,64199,FALSE +Bad Bunny,Yonaguni,new,,,,,26361,FALSE +Bad Company,Bad Company,existing,,,,,,FALSE +Bad Company,Can't Get Enough,existing,,,,,,FALSE +Bad Company,Feel Like Makin Love,existing,,,,,,FALSE +Bad Company,Good Lovin' Gone Bad,new,,,,,47140,FALSE +Bad Company,Movin On,existing,,,,,,FALSE +Bad Company,Ready For Love,existing,,,,,,FALSE +Bad Company,Rock 'n' Roll Fantasy,new,,,,,55105,FALSE +Bad Company,Rock Steady,existing,,,,,,FALSE +Bad Company,Shooting Star,existing,,,,,,FALSE +Bad English,When I See You Smile,existing,,,,,,FALSE +Bad Manners,Lip Up Fatty,existing,,,,,,FALSE +Bad Manners,My Girl Lollipop,existing,,,,,,FALSE +Bad Manners,Special Brew,existing,,,,,,FALSE +Bad Manners,Woolly Bully,existing,,,,,,FALSE +Bad Omens,Artificial Suicide,new,,,,,82461,FALSE +Bad Omens,Just Pretend,new,,,,,73617,FALSE +Bad Omens,Like a Villain,new,,,,,75183,FALSE +Bad Omens,The Death of Peace of Mind,new,,,,,75234,FALSE +Bad Omens,V.A.N,new,,,,,81924,FALSE +Bad Religion,21st Century (Digital Boy),new,,,,,32583,FALSE +Bad Religion,American Jesus,new,,,,,75268,FALSE +Bad Wolves,Hear Me Now,new,,,,,56283,FALSE +Bad Wolves,Sober,new,,,,,81807,FALSE +Bad Wolves,Zombie,new,,,,,55295,FALSE +Badfinger,Baby Blue,existing,,,,,,FALSE +Badfinger,Day After Day,existing,,,,,,FALSE +Badfinger,No Matter What,existing,,,,,,FALSE +Bailey Zimmerman,Fall in Love,new,,,,,23199,FALSE +Bailey Zimmerman,Religiously,new,,,,,74636,FALSE +Bailey Zimmerman,Rock and a Hard Place,new,,,,,70245,FALSE +Bailey Zimmerman,Where It Ends,new,,,,,71930,FALSE +Bakermat,Ain't Nobody,new,,,,,65718,FALSE +Bakermat,Baby,new,,,,,53745,FALSE +Bakermat,Baiana,new,,,,,65194,FALSE +Bakermat,Living,new,,,,,52969,FALSE +Bakermat,One Day (Vandaag),new,,,,,47449,FALSE +Bakermat,Temptation,new,,,,,68990,FALSE +Ballroom Orchestra,Country Waltz,existing,,,,,,FALSE +Ballroom Orchestra,Foxtrot Groove,existing,,,,,,FALSE +Ballroom Orchestra,Hustle Groove,existing,,,,,,FALSE +Ballroom Orchestra,Merengue Groove,existing,,,,,,FALSE +Ballroom Orchestra,On The Beach Samba,existing,,,,,,FALSE +Ballroom Orchestra,Paso Doble (Original),existing,,,,,,FALSE +Ballroom Orchestra,Paso Doble,existing,,,,,,FALSE +Ballroom Orchestra,Rhumba Groove,existing,,,,,,FALSE +Ballroom Orchestra,Salsa Groove,existing,,,,,,FALSE +Ballroom Orchestra,Samba Groove,existing,,,,,,FALSE +Ballroom Orchestra,Swing Groove,existing,,,,,,FALSE +Ballroom Orchestra,Waltz Groove,existing,,,,,,FALSE +Bananarama,Cruel Summer,new,,,,,11413,FALSE +Bananarama,Venus,existing,,,,,,FALSE +Band Aid,Do They Know It's Christmas ?,existing,,,,,,FALSE +Band of Horses,Funeral,new,Band Of Horses,,,,74780,FALSE +Band of Horses,No One's Gonna Love You,new,Band Of Horses,,,,60510,FALSE +Barbershop Polecat,Down Our Way (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Heart Of My Heart (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Honey-Little 'Lize Medley (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Sweet And Lovely (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Sweet,existing,,,,,,FALSE +Barbra Streisand,As If We Never Said Goodbye,existing,,,,,,FALSE +Barbra Streisand,Can't Help Lovin' That Man Of Mine (A Cappella),existing,,,,,,FALSE +Barbra Streisand,Don't Rain On My Parade,existing,,,,,,FALSE +Barbra Streisand,The Way We Were (A Cappella),existing,,,,,,FALSE +Barbra Streisand,Woman In Love,existing,,,,,,FALSE +Barbra Streisand & Neil Diamond,You Don't Bring Me Flowers,existing,,,,,,FALSE +Barenaked Ladies,If I Had 1000000 dollars,new,,,,,15055,FALSE +Barenaked Ladies,It's All Been Done,new,,,,,9304,FALSE +Barenaked Ladies,One Week,new,,,,,13051,FALSE +Barrett Strong,Money (That's What I Want),existing,,,,,,FALSE +Barry Manilow,Can't Smile Without You,new,,,,,12221,FALSE +Barry Manilow,Copacabana,existing,,,,,,FALSE +Barry Manilow,Even Now - Live At the O2 Arena,existing,,,,,,FALSE +Barry Manilow,I Made It Through the Rain,existing,,,,,,FALSE +Barry Manilow,I Write The Songs,new,,,,,12222,FALSE +Barry Manilow,Looks Like We Made It,new,,,,,17070,FALSE +Barry Manilow,Mandy,new,,,,,12220,FALSE +Barry Mcguire,Eve of Destruction,existing,,,,,,FALSE +Barry Ryan,Eloise,existing,,,,,,FALSE +Barry White,Can't Get Enough Of Your Love Babe,existing,,,,,,FALSE +Barry White,I'm Gonna Love You Just a Little Bit More Babe,existing,,,,,,FALSE +Barry White,Just the Way You Are,existing,,,,,,FALSE +Barry White,Never Never Gonna Give You Up,existing,,,,,,FALSE +Barry White,You're The First The Last My Everything,existing,,,,,,FALSE +Bastille,Good Grief,new,,,,,51676,FALSE +Bastille,Of the Night,new,,,,,45826,FALSE +Bastille,Pompeii,existing,,,,,,FALSE +Bastille,Things We Lost In The Fire,new,,,,,45861,FALSE +Battle Of The Choirs,Robbie Williams Medley,existing,,,,,,FALSE +Bauhaus,Bela Lugosi's Dead,new,,,,,75303,FALSE +Bauhaus,Ziggy Stardust,new,,,,,75386,FALSE +Bay City Rollers,Bye Bye Baby,existing,,,,,,FALSE +Bay City Rollers,Saturday Night,new,,,,,31030,FALSE +Bay City Rollers,Shang-A-Lang,existing,,,,,,FALSE +Bea Miller,Fire N Gold,new,,,,,49639,FALSE +Bea Miller,S.L.U.T.,new,,,,,75755,FALSE +Bea Miller,That Bitch,new,,,,,80625,FALSE +Beach Boys,Good Vibrations (A Cappella),existing,The Beach Boys,,,,,FALSE +Beach Boys,Little Saint Nick (A Cappella),existing,The Beach Boys,,,,,FALSE +Beach Bunny,Cloud 9,new,,,,,82833,FALSE +Beach Bunny,Prom Queen,new,,,,,73390,FALSE +Beach Bunny,Sports,new,,,,,83742,FALSE +Beastie Boys,(You Gotta) Fight For Your Right (To Party),existing,,,,,,FALSE +Beastie Boys,Brass Monkey,new,,,,,55214,FALSE +Beastie Boys,Girls,existing,,,,,,FALSE +Beastie Boys,Intergalactic,new,,,,,55287,FALSE +Beastie Boys,No Sleep Til Brooklyn,existing,,,,,,FALSE +Beastie Boys,Sabotage,new,,,,,55031,FALSE +Beastie Boys,So What'cha Want,new,,,,,56259,FALSE +Beatles,Because (A Cappella),existing,The Beatles,,,,,FALSE +Beats International,Dub Be Good To Me,existing,,,,,,FALSE +Beautiful South,Don't Marry Her Have Me,existing,,,,,,FALSE +Beautiful South,I Need a Little Time,existing,,,,,,FALSE +Beautiful South,Song for Whoever,existing,,,,,,FALSE +Beck,Debra,new,,,,,72335,FALSE +Beck,E-Pro,new,,,,,15066,FALSE +Beck,Girl,new,,,,,15067,FALSE +Beck,Loser,existing,,,,,,FALSE +Beck,Lost Cause,new,,,,,74561,FALSE +Beck,Sexx Laws,new,,,,,8907,FALSE +Beck,Where It's At,new,,,,,70310,FALSE +Becky G,Arranca,new,,,,,74367,FALSE +Becky G,Baila asi,new,,,,,67978,FALSE +Becky G,Baile con mi ex,new,,,,,70416,FALSE +Becky G,Chanel,new,,,,,75451,FALSE +Becky G,Fulanito,new,,,,,65796,FALSE +Becky G,La respuesta,new,,,,,58156,FALSE +Becky G,Mala Santa,new,,,,,60767,FALSE +Becky G,Mayores,new,,,,,53988,FALSE +Becky G,Play It Again,new,,,,,44437,FALSE +Becky G,Shower,new,,,,,47269,FALSE +Becky G,Sin Pijama,new,,,,,55492,FALSE +Becky Hill,Caution To The Wind,new,,,,,48190,FALSE +Becky Hill,Disconnect,new,,,,,76353,FALSE +Becky Hill,False Alarm,new,,,,,69083,FALSE +Becky Hill,Forever Young,new,,,,,63600,FALSE +Becky Hill,Gecko (Overdrive),new,,,,,47196,FALSE +Becky Hill,Losing,new,,,,,47887,FALSE +Becky Hill,My Heart Goes (La Di Da),new,,,,,66821,FALSE +Becky Hill,Never Be Alone,new,,,,,80085,FALSE +Becky Hill,Outside of Love,new,,,,,81306,FALSE +Becky Hill,Remember,new,,,,,66033,FALSE +Becky Hill,Run,new,,,,,68778,FALSE +Becky Hill,Side Effects,new,,,,,76154,FALSE +Bee Gees,How Can You Mend a Broken Heart,new,The Bee Gees,,,,22340,FALSE +Bee Gees,How Deep Is Your Love,new,The Bee Gees,,,,9771,FALSE +Bee Gees,If I Can't Have You,new,The Bee Gees,,,,67476,FALSE +Bee Gees,Jive Talkin',new,The Bee Gees,,,,7521,FALSE +Bee Gees,More Than a Woman,new,The Bee Gees,,,,13864,FALSE +Bee Gees,Night Fever,new,The Bee Gees,,,,8648,FALSE +Bee Gees,Nights On Broadway,new,The Bee Gees,,,,31986,FALSE +Bee Gees,Stayin' Alive,new,The Bee Gees,,,,5447,FALSE +Bee Gees,To Love Somebody,new,The Bee Gees,,,,17091,FALSE +Bee Gees,Too Much Heaven,new,The Bee Gees,,,,13863,FALSE +Bee Gees,You Should Be Dancing,new,The Bee Gees,,,,7536,FALSE +Belinda Carlisle,Heaven Is a Place On Earth,existing,,,,,,FALSE +Bell Biv DeVoe,Poison,new,,,,,43953,FALSE +Ben E. King,Stand By Me (A Cappella),existing,,,,,,FALSE +Ben E. King,Stand By Me,existing,,,,,,FALSE +Ben Folds,You Don't Know Me,existing,,,,,,FALSE +Ben Folds Five,Brick,new,,,,,9930,FALSE +Ben Harper,Burn One Down,new,,,,,78870,FALSE +Ben Harper,Diamonds On The Inside,new,,,,,32594,FALSE +Ben Harper,Sexual Healing (live),new,,,,,75323,FALSE +Ben Harper,Steal My Kisses,new,,,,,7501,FALSE +Ben Harper,Waiting on an Angel,new,,,,,64249,FALSE +Benny Golson,Killer Joe,existing,,,,,,FALSE +Benson Boone,Be Someone,new,,,,,82439,FALSE +Benson Boone,Beautiful Things (acoustic),new,,,,,80411,FALSE +Benson Boone,Beautiful Things,new,,,,,79443,FALSE +Benson Boone,Before You,new,,,,,73697,FALSE +Benson Boone,Cry,new,,,,,80813,FALSE +Benson Boone,Drunk in My Mind,new,,,,,80979,FALSE +Benson Boone,Ghost Town,new,,,,,66895,FALSE +Benson Boone,In the Stars (french version),new,,,,,74522,FALSE +Benson Boone,In the Stars,new,,,,,27929,FALSE +Benson Boone,Pretty Slowly,new,,,,,83368,FALSE +Benson Boone,Slow It Down,new,,,,,80590,FALSE +Benson Boone,To Love Someone,new,,,,,79242,FALSE +Berlin,Masquerade,new,,,,,83349,FALSE +Berlin,No More Words,new,,,,,62032,FALSE +Berlin,Sex (I'm A...),new,,,,,70045,FALSE +Berlin,The Metro,new,,,,,59344,FALSE +Bette Midler,From a Distance,existing,,,,,,FALSE +Bette Midler,Wind Beneath My Wings,existing,,,,,,FALSE +Better Than Ezra,A Lifetime,new,,,,,15077,FALSE +Better Than Ezra,At the Stars,new,,,,,9343,FALSE +Better Than Ezra,Desperately Wanting,new,,,,,74824,FALSE +Better Than Ezra,Good,new,,,,,55907,FALSE +Betty Wright,Clean Up Woman,existing,,,,,,FALSE +Beverley Knight,Piece of My Heart,existing,,,,,,FALSE +Beyonce,7:11,existing,,,,,,FALSE +Beyonce,Baby Boy,new,,,,,5776,FALSE +Beyonce,Beautiful Liar,new,,,,,11928,FALSE +Beyonce,Crazy In Love,existing,,,,,,FALSE +Beyonce,Cuff It,new,,,,,71318,FALSE +Beyonce,Drunk In Love,existing,,,,,,FALSE +Beyonce,Halo,existing,,,,,,FALSE +Beyonce,If I Were a Boy,new,,,,,21309,FALSE +Beyonce,Irreplaceable,new,,,,,12431,FALSE +Beyonce,Love On Top,new,,,,,37791,FALSE +Beyonce,Single Ladies (Put A Ring On It),existing,,,,,,FALSE +Beyonce,Texas Hold 'Em,new,,,,,79703,FALSE +Beyonc√©,Ave Maria,existing,Beyonce,,,,,FALSE +Beyonc√©,Listen,existing,Beyonce,,,,,FALSE +Biffy Clyro,Many of Horror,existing,,,,,,FALSE +Big And Rich,Save A Horse (Ride A Cowboy),existing,,,,,,FALSE +Big Country,Fields of Fire (400 Miles),existing,,,,,,FALSE +Big Country,In A Big Country,existing,,,,,,FALSE +Big Data,Dangerous,new,,,,,70476,FALSE +Big Head Todd and the Monsters,Bittersweet,new,,,,,72678,FALSE +Big Mountain,Baby I Love Your Way,existing,,,,,,FALSE +Big Sean,Beware,new,,,,,80180,FALSE +Big Sean,Dance (ASS) (remix),new,,,,,35244,FALSE +Big Sean,I Don't Fuck with You,new,,,,,66797,FALSE +Bill Haley And His Comets,Rock Around The Clock,existing,,,,,,FALSE +Bill Haley And His Comets,Shake Rattle And Roll,existing,,,,,,FALSE +Bill Medley & Jennifer Warnes,Time of My Life,existing,,,,,,FALSE +Bill Monroe,Blue Moon of Kentucky,new,,,,,15088,FALSE +Bill Monroe,In the Pines,new,,,,,82208,FALSE +Bill Withers,Ain't No Sunshine,existing,,,,,,FALSE +Bill Withers,Just The Two Of Us,existing,,,,,,FALSE +Bill Withers,Lean On Me,existing,,,,,,FALSE +Bill Withers,Lovely Day,existing,,,,,,FALSE +Bill Withers,Use Me,existing,,,,,,FALSE +Billie Eilish,Birds of a Feather,new,,,,,81536,FALSE +Billie Eilish,Blue,new,,,,,81601,FALSE +Billie Eilish,Chihiro,new,,,,,81600,FALSE +Billie Eilish,L'amour De Ma Vie,new,,,,,81647,FALSE +Billie Eilish,Lovely,new,,,,,56015,FALSE +Billie Eilish,Lunch,new,,,,,81527,FALSE +Billie Eilish,Ocean Eyes,new,,,,,55140,FALSE +Billie Eilish,Wildflower,new,,,,,81611,FALSE +Billie Holiday,Ain't Nobody's Business,existing,,,,,,FALSE +Billie Holiday,All Of Me,existing,,,,,,FALSE +Billie Holiday,Blue Moon,new,,,,,64815,FALSE +Billie Holiday,Come Rain or Come Shine,new,,,,,9308,FALSE +Billie Holiday,Easy Living,new,,,,,17111,FALSE +Billie Holiday,God Bless The Child,existing,,,,,,FALSE +Billie Holiday,Lady Sings the Blues,new,,,,,57926,FALSE +Billie Holiday,Love For Sale,existing,,,,,,FALSE +Billie Holiday,Night and Day,new,,,,,9315,FALSE +Billie Holiday,Summertime,new,,,,,64801,FALSE +Billie Holiday,The Very Thought of You,new,,,,,65793,FALSE +Billie Jo Spears,What I've Got In Mind,existing,,,,,,FALSE +Billy Bragg,California Stars,new,,,,,75859,FALSE +Billy Currington,Good Directions,existing,,,,,,FALSE +Billy Currington,Hey Girl,existing,,,,,,FALSE +Billy Currington,People Are Crazy,existing,,,,,,FALSE +Billy Dean,Thank God I'm A Country Boy,existing,,,,,,FALSE +Billy Fury,Halfway To Paradise,existing,,,,,,FALSE +Billy Fury,Thousand Stars,existing,,,,,,FALSE +Billy Idol,Dancing With Myself,new,,,,,32404,FALSE +Billy Idol,Eyes Without a Face,new,,,,,20517,FALSE +Billy Idol,Mony Mony,new,,,,,17128,FALSE +Billy Idol,Rebel Yell,existing,,,,,,FALSE +Billy Idol,White Wedding,existing,,,,,,FALSE +Billy Joel,Allentown,new,,,,,32844,FALSE +Billy Joel,An Innocent Man,existing,,,,,,FALSE +Billy Joel,Big Shot,existing,,,,,,FALSE +Billy Joel,Captain Jack,new,,,,,59115,FALSE +Billy Joel,Don't Ask Me Why,new,,,,,32849,FALSE +Billy Joel,Honesty,new,,,,,5094,FALSE +Billy Joel,It's Still Rock and Roll to Me,new,,,,,6402,FALSE +Billy Joel,Just The Way You Are,existing,,,,,,FALSE +Billy Joel,Movin Out (Anthony's Song),existing,,,,,,FALSE +Billy Joel,My Life,existing,,,,,,FALSE +Billy Joel,New York State Of Mind,existing,,,,,,FALSE +Billy Joel,Only the Good Die Young,new,,,,,17135,FALSE +Billy Joel,Piano Man,existing,,,,,,FALSE +Billy Joel,Scenes From An Italian Restaurant,existing,,,,,,FALSE +Billy Joel,She's Always A Woman,existing,,,,,,FALSE +Billy Joel,The Longest Time,existing,,,,,,FALSE +Billy Joel,The Stranger,existing,,,,,,FALSE +Billy Joel,Uptown Girl,existing,,,,,,FALSE +Billy Joel,We Didn't Start the Fire,new,,,,,13116,FALSE +Billy Joel,You May Be Right,existing,,,,,,FALSE +Billy Ocean,Caribbean Queen,existing,,,,,,FALSE +Billy Ocean,Get Outta My Dreams,existing,,,,,,FALSE +Billy Ocean,Love Really Hurts Without You,existing,,,,,,FALSE +Billy Ocean,Suddenly,existing,,,,,,FALSE +Billy Porter,Land of Lola,existing,,,,,,FALSE +Billy Ray Cyrus,Achy Breaky Heart,existing,,,,,,FALSE +Billy Squier,Everybody Wants You,new,,,,,57240,FALSE +Billy Squier,Lonely Is the Night,new,,,,,56670,FALSE +Billy Squier,Rock Me Tonite,existing,,,,,,FALSE +Billy Squier,The Stroke,new,,,,,46158,FALSE +Billy Strings,California Sober,new,,,,,80765,FALSE +Billy Strings,Dust in a Baggie,new,,,,,27810,FALSE +Billy Strings,Secrets,new,,,,,72611,FALSE +Billy Talent,Fallen Leaves,new,,,,,68452,FALSE +Billy Talent,Red Flag,new,,,,,77874,FALSE +Billy Talent,Rusted from the Rain,new,,,,,74354,FALSE +Billy Thorpe,Children Of The Sun,existing,,,,,,FALSE +Bing Crosby,Let Me Call You Sweetheart (A Cappella),existing,,,,,,FALSE +Bing Crosby & Grace Kelly,True Love,existing,,,,,,FALSE +Birdy,Not About Angels,new,,,,,47146,FALSE +Birdy,People Help The People,existing,,,,,,FALSE +Birdy,Skinny Love,existing,,,,,,FALSE +Birdy,Wings,existing,,,,,,FALSE +Bishop Briggs,River,new,,,,,51610,FALSE +Bitty Mclean,Dedicated To the One I Love,existing,,,,,,FALSE +Bjork,Army of Me,new,,,,,20550,FALSE +Bjork,Human Behaviour,new,,,,,72397,FALSE +Bjork,It's Oh So Quiet,new,,,,,14217,FALSE +Bjork,Venus as a Boy,new,,,,,75169,FALSE +Black Eyed Peas,Boom Boom Pow,existing,,,,,,FALSE +Black Eyed Peas,I Gotta Feeling,existing,,,,,,FALSE +Black Eyed Peas,Just Can't Get Enough,new,,,,,35997,FALSE +Black Eyed Peas,Meet Me Halfway,existing,,,,,,FALSE +Black Eyed Peas,My Humps,new,,,,,12433,FALSE +Black Eyed Peas,Pump It,new,,,,,15115,FALSE +Black Eyed Peas,Ritmo (Bad Boys for Life),new,,,,,59977,FALSE +Black Eyed Peas,Where Is The Love,new,,,,,5208,FALSE +Black Sabbath,Children of the Grave,new,,,,,63511,FALSE +Black Sabbath,Heaven And Hell,new,,,,,49132,FALSE +Black Sabbath,Iron Man,existing,,,,,,FALSE +Black Sabbath,N.I.B.,new,,,,,63423,FALSE +Black Sabbath,Paranoid,existing,,,,,,FALSE +Black Sabbath,Planet Caravan,new,,,,,31311,FALSE +Black Sabbath,War Pigs,existing,,,,,,FALSE +Blackbear,Do Re Mi,new,,,,,54626,FALSE +Blackbear,Hot Girl Bummer,new,,,,,60264,FALSE +Blackbear,Idfc,new,,,,,72922,FALSE +Blackpink (),How You Like That,new,Blackpink,,,,61845,FALSE +Blackpink (),Kill This Love,new,Blackpink,,,,57996,FALSE +Blackpink (),Pink Venom,new,Blackpink,,,,71191,FALSE +Blackpink (),Shut Down,new,Blackpink,,,,72414,FALSE +Blake Shelton,Austin,new,,,,,7880,FALSE +Blake Shelton,Boys Round Here,existing,,,,,,FALSE +Blake Shelton,Came Here To Forget,new,,,,,51031,FALSE +Blake Shelton,God Gave Me You,existing,,,,,,FALSE +Blake Shelton,God's Country,new,,,,,58009,FALSE +Blake Shelton,Honey Bee,existing,,,,,,FALSE +Blake Shelton,Nobody But You,new,,,,,60268,FALSE +Blake Shelton,Ol' Red,new,,,,,6820,FALSE +Blake Shelton,Sangria,new,,,,,49202,FALSE +Blake Shelton,Sure Be Cool If You Did,existing,,,,,,FALSE +Blancmange,Living On the Ceiling,existing,,,,,,FALSE +Bleachers,Don't Take the Money,new,,,,,79390,FALSE +Bleachers,I Wanna Get Better,new,,,,,73050,FALSE +Bleachers,Rollercoaster,new,,,,,80000,FALSE +Blind Faith,Can't Find My Way Home,existing,,,,,,FALSE +Blind Melon,No Rain,existing,,,,,,FALSE +Blink-182,Adam's Song,new,,,,,7379,FALSE +Blink-182,All The Small Things,existing,,,,,,FALSE +Blink-182,Dammit (Growing Up),new,,,,,34606,FALSE +Blink-182,Feeling This,new,,,,,28684,FALSE +Blink-182,First Date,new,,,,,15134,FALSE +Blink-182,I Miss You,existing,,,,,,FALSE +Blink-182,The Rock Show,new,,,,,15133,FALSE +Blink-182,What's My Age Again,new,,,,,8698,FALSE +Blondie,(I'm Always Touched By Your) Presence Dear,existing,,,,,,FALSE +Blondie,Atomic,existing,,,,,,FALSE +Blondie,Call Me,existing,,,,,,FALSE +Blondie,Denis,existing,,,,,,FALSE +Blondie,Dreaming,existing,,,,,,FALSE +Blondie,Hanging On the Telephone,existing,,,,,,FALSE +Blondie,Heart Of Glass,existing,,,,,,FALSE +Blondie,Mother,existing,,,,,,FALSE +Blondie,One Way Or Another,existing,,,,,,FALSE +Blondie,Picture This,existing,,,,,,FALSE +Blondie,Rapture,existing,,,,,,FALSE +Blondie,Sunday Girl,existing,,,,,,FALSE +Blondie,Tide Is High,existing,,,,,,FALSE +Blondie,Union City Blue,existing,,,,,,FALSE +Blood Sweat And Tears,Spinning Wheel,existing,,,,,,FALSE +Blood Sweat And Tears,You've Made Me So Very Happy,existing,,,,,,FALSE +Bloodhound Gang,Foxtrot Uniform Charlie Kilo,new,,,,,69995,FALSE +Bloodhound Gang,The Bad Touch,new,,,,,13118,FALSE +Blue,One Love,existing,,,,,,FALSE +Blue Oyster Cult,Burnin' for You,new,,,,,55636,FALSE +Blue Oyster Cult,Don't Fear The Reaper,existing,,,,,,FALSE +Blue Oyster Cult,Godzilla,existing,,,,,,FALSE +Blue Oyster Cult,Veteran of the Psychic Wars,new,,,,,69545,FALSE +Blue Swede,Hooked On A Feeling,existing,,,,,,FALSE +Blue With Elton John,Sorry Seems To Be the Hardest Word,existing,,,,,,FALSE +Blues Traveler,Run Around,existing,,,,,,FALSE +Blur,Charmless Man,existing,,,,,,FALSE +Blur,Coffee & TV,new,,,,,44122,FALSE +Blur,Girls & Boys,new,,,,,12781,FALSE +Blur,Parklife,new,,,,,28723,FALSE +Blur,Song 2,existing,,,,,,FALSE +Bo Diddley,I'm A Man,existing,,,,,,FALSE +Bob Dylan,All Along the Watchtower,new,,,,,76339,FALSE +Bob Dylan,Blowin In The Wind,existing,,,,,,FALSE +Bob Dylan,"Don't Think Twice, It's All Right",new,,,,,67111,FALSE +Bob Dylan,It Ain't Me Babe,new,,,,,29160,FALSE +Bob Dylan,"It's All Over Now, Baby Blue",new,,,,,63542,FALSE +Bob Dylan,Just Like A Woman,existing,,,,,,FALSE +Bob Dylan,Knocking On Heavens Door,existing,,,,,,FALSE +Bob Dylan,Lay Lady Lay,existing,,,,,,FALSE +Bob Dylan,Like A Rolling Stone,existing,,,,,,FALSE +Bob Dylan,Make You Feel My Love,new,,,,,57990,FALSE +Bob Dylan,Mr. Tambourine Man,existing,,,,,,FALSE +Bob Dylan,Positively 4th Street,new,,,,,9974,FALSE +Bob Dylan,Rainy Day Women #12 & 35,new,,,,,10002,FALSE +Bob Dylan,Shelter from the Storm,new,,,,,27737,FALSE +Bob Dylan,Subterranean Homesick Blues,existing,,,,,,FALSE +Bob Dylan,Tangled Up in Blue,new,,,,,55660,FALSE +Bob Dylan,The Times They Are A Changin,existing,,,,,,FALSE +Bob Marley,Buffalo Soldier,existing,,,,,,FALSE +Bob Marley,Could You Be Loved,existing,,,,,,FALSE +Bob Marley,Get Up Stand Up,existing,,,,,,FALSE +Bob Marley,I Shot The Sheriff,existing,,,,,,FALSE +Bob Marley,Jamming,existing,,,,,,FALSE +Bob Marley,No Woman No Cry,existing,,,,,,FALSE +Bob Marley,One Love (People Get Ready),existing,,,,,,FALSE +Bob Marley,Redemption Song,existing,,,,,,FALSE +Bob Marley,Roots Rock Reggae,existing,,,,,,FALSE +Bob Marley,Stir It Up,existing,,,,,,FALSE +Bob Marley,Three Little Birds,existing,,,,,,FALSE +Bob Marley,Waiting In Vain,existing,,,,,,FALSE +Bob Seger,Against The Wind,existing,,,,,,FALSE +Bob Seger,Fire Down Below,existing,,,,,,FALSE +Bob Seger,Her Strut,existing,,,,,,FALSE +Bob Seger,Hollywood Nights,new,,,,,31315,FALSE +Bob Seger,Katmandu,new,,,,,58023,FALSE +Bob Seger,Like A Rock,existing,,,,,,FALSE +Bob Seger,Mainstreet,existing,,,,,,FALSE +Bob Seger,Night Moves,new,,,,,17148,FALSE +Bob Seger,Old Time Rock And Roll,existing,,,,,,FALSE +Bob Seger,Rock And Roll Never Forgets,existing,,,,,,FALSE +Bob Seger,Still The Same,new,,,,,17145,FALSE +Bob Seger,Turn the Page,new,,,,,15153,FALSE +Bob Seger,We've Got Tonight,new,,,,,17146,FALSE +Bob Seger,You'll Accomp'ny Me,existing,,,,,,FALSE +Bob Weir,Mexicali Blues,new,,,,,73408,FALSE +Bobby 'Boris' Pickett,Monster Mash,existing,,,,,,FALSE +Bobby Darin,(It's Only a) Paper Moon,existing,,,,,,FALSE +Bobby Darin,As Long As I'm Singin' (A Cappella),existing,,,,,,FALSE +Bobby Darin,Beyond the Sea,existing,,,,,,FALSE +Bobby Darin,Don't Rain On My Parade,existing,,,,,,FALSE +Bobby Darin,Dream Lover,existing,,,,,,FALSE +Bobby Darin,If I Were a Carpenter,existing,,,,,,FALSE +Bobby Darin,Mack The Knife,existing,,,,,,FALSE +Bobby Darin,More Than,existing,,,,,,FALSE +Bobby Darin,Splish Splash,existing,,,,,,FALSE +Bobby Darin,Things,existing,,,,,,FALSE +Bobby Gentry,I'll Never Fall In Love Again,existing,,,,,,FALSE +Bobby Valentino,Slow Down,existing,,,,,,FALSE +Bobby Vee,Night Has a Thousand Eyes,existing,,,,,,FALSE +Bon Jovi,Always,existing,,,,,,FALSE +Bon Jovi,Bad Medicine,existing,,,,,,FALSE +Bon Jovi,Bed of Roses,existing,,,,,,FALSE +Bon Jovi,In These Arms,existing,,,,,,FALSE +Bon Jovi,It's My Life,existing,,,,,,FALSE +Bon Jovi,Livin' On a Prayer,existing,,,,,,FALSE +Bon Jovi,Runaway,new,,,,,13034,FALSE +Bon Jovi,Wanted Dead Or Alive,existing,,,,,,FALSE +Bon Jovi,You Give Love A Bad Name,existing,,,,,,FALSE +Boney M,Boney M Megamix,existing,,,,,,FALSE +Boney M,Mary's Boy Child,existing,,,,,,FALSE +Bonnie Raitt,Angel From Montgomery,existing,,,,,,FALSE +Bonnie Raitt,I Can't Make You Love Me,existing,,,,,,FALSE +Bonnie Raitt,Nick Of Time,existing,,,,,,FALSE +Bonnie Raitt,Something to Talk About,new,,,,,7173,FALSE +Bonnie Tyler,Holding Out for a Hero,existing,,,,,,FALSE +Bonnie Tyler,It's A Heartache,existing,,,,,,FALSE +Bonnie Tyler,Total Eclipse Of The Heart,existing,,,,,,FALSE +Booba,92i Veyron,new,,,,,73646,FALSE +Booba,Scarface,new,,,,,62308,FALSE +Borns,Electric Love,new,,,,,51759,FALSE +Borns,Past Lives,new,,,,,77213,FALSE +Boston,A Man I'll Never Be,new,,,,,52337,FALSE +Boston,Amanda,new,,,,,17180,FALSE +Boston,Cool the Engines,new,,,,,70066,FALSE +Boston,Don't Look Back,new,,,,,52723,FALSE +Boston,Feelin' Satisfied,new,,,,,69799,FALSE +Boston,Foreplay Long Time,new,,,,,52038,FALSE +Boston,Hitch a Ride,new,,,,,64613,FALSE +Boston,It's Easy,new,,,,,70764,FALSE +Boston,Let Me Take You Home Tonight,new,,,,,40058,FALSE +Boston,Long Time,new,,,,,63396,FALSE +Boston,More Than A Feeling,existing,,,,,,FALSE +Boston,Peace Of Mind,existing,,,,,,FALSE +Boston,Rock And Roll Band,new,,,,,25207,FALSE +Boston,Smokin,existing,,,,,,FALSE +Boston,Something About You,new,,,,,69611,FALSE +Boston,We're Ready,new,,,,,71205,FALSE +Box Tops,Letter,existing,,,,,,FALSE +Box Tops,Soul Deep,existing,,,,,,FALSE +Boygenius,Cool About It,new,,,,,82834,FALSE +Boygenius,Not Strong Enough,new,,,,,74838,FALSE +Boyz II Men,I'll Make Love to You,new,,,,,11463,FALSE +Boyz II Men,Motownphilly,new,,,,,15198,FALSE +Boyzone,Love You Anyway,existing,,,,,,FALSE +Boz Scaggs,Lido Shuffle,existing,,,,,,FALSE +Boz Scaggs,Lowdown,new,,,,,17249,FALSE +Boz Scaggs,Sierra,existing,,,,,,FALSE +Brad Paisley,I'm Gonna Miss Her,new,,,,,8254,FALSE +Brad Paisley,Mud On The Tires,existing,,,,,,FALSE +Brad Paisley,Remind Me,new,,,,,37497,FALSE +Brad Paisley,She's Everything,existing,,,,,,FALSE +Brad Paisley,Then,new,,,,,23347,FALSE +Brad Paisley,We Danced,new,,,,,7482,FALSE +Brad Paisley,When I Get Where I'm Going,new,,,,,15204,FALSE +Brad Paisley,Whiskey Lullaby,existing,,,,,,FALSE +Branford Marsalis,Here's That Rainy Day,existing,,,,,,FALSE +Brantley Gilbert,Bottoms Up,new,,,,,46310,FALSE +Brantley Gilbert,Kick it in the Sticks,new,,,,,57825,FALSE +Brantley Gilbert,The Weekend,new,,,,,52413,FALSE +Bread,Baby I'm a Want You,existing,,,,,,FALSE +Bread,Everything I Own,existing,,,,,,FALSE +Bread,Guitar Man,existing,,,,,,FALSE +Bread,Make It With You,existing,,,,,,FALSE +Breaking Benjamin,Angels Fall,new,,,,,79986,FALSE +Breaking Benjamin,Blow Me Away,new,,,,,70833,FALSE +Breaking Benjamin,Breath,new,,,,,21597,FALSE +Breaking Benjamin,Dance with the Devil,new,,,,,70538,FALSE +Breaking Benjamin,Failure,new,,,,,82884,FALSE +Breaking Benjamin,I Will Not Bow,new,,,,,64277,FALSE +Breaking Benjamin,So Cold,existing,,,,,,FALSE +Breaking Benjamin,Sooner Or Later,existing,,,,,,FALSE +Breaking Benjamin,The Diary Of Jane,existing,,,,,,FALSE +Brett Eldredge,Beat of the Music,new,,,,,71650,FALSE +Brett Eldredge,Lose My Mind,new,,,,,49928,FALSE +Brett Eldredge,Love Someone,new,,,,,58552,FALSE +Brett Eldredge,The Long Way,new,,,,,54445,FALSE +Brett Eldredge,Wanna Be That Song,new,,,,,52463,FALSE +Brett Young,Catch,new,,,,,59161,FALSE +Brett Young,In Case You Didn't Know,new,,,,,52827,FALSE +Brett Young,Like I Loved You,new,,,,,53654,FALSE +Brett Young,Mercy,new,,,,,53309,FALSE +Brett Young,Sleep Without You,new,,,,,51938,FALSE +Brian Hyland,Ginny Come Lately,existing,,,,,,FALSE +Brian Hyland,Itsy Bitsy Teenie Weenie Yellow Polka Dot Bikini,existing,,,,,,FALSE +Brian Setzer Orchestra,Rock This Town,existing,,,,,,FALSE +Brian Wilson & Various Artists,God Only Knows,existing,,,,,,FALSE +Bring Me the Horizon,Can You Feel My Heart,new,Bring Me The Horizon,,,,70048,FALSE +Bring Me the Horizon,Drown,new,Bring Me The Horizon,,,,48296,FALSE +Bring Me the Horizon,Kingslayer,new,Bring Me The Horizon,,,,79373,FALSE +Bring Me the Horizon,Sleepwalking,new,Bring Me The Horizon,,,,73917,FALSE +Bring Me the Horizon,Throne,new,Bring Me The Horizon,,,,68671,FALSE +Britney Spears,Baby,existing,,,,,,FALSE +Britney Spears,Circus,new,,,,,18840,FALSE +Britney Spears,Gimme More,new,,,,,12847,FALSE +Britney Spears,Oops!... I Did It Again,new,,,,,5920,FALSE +Britney Spears,Toxic,existing,,,,,,FALSE +Britney Spears,Womanizer,new,,,,,21230,FALSE +Broken Bells,After The Disco,new,,,,,46946,FALSE +Bronski Beat,Smalltown Boy,new,,,,,20553,FALSE +Bronski Beat,Why,new,,,,,20551,FALSE +Brooks & Dunn,Brand New Man (with Luke Combs),new,,,,,58015,FALSE +Brooks & Dunn,Neon Moon,new,,,,,6229,FALSE +Brooks & Dunn,Play Something Country,new,,,,,5641,FALSE +Brooks And Dunn,Boot Scootin Boogie,existing,Brooks & Dunn,,,,,FALSE +Brooks And Dunn,My Maria,existing,Brooks & Dunn,,,,,FALSE +Brooks And Dunn,Red Dirt Road,existing,Brooks & Dunn,,,,,FALSE +Brotherhood Of Man,Angelo,existing,,,,,,FALSE +Brotherhood Of Man,Save All Your Kisses for Me,existing,,,,,,FALSE +Brothers Osborne,It Ain't My Fault,new,,,,,52909,FALSE +Brothers Osborne,Stay a Little Longer,new,,,,,51065,FALSE +Bruce Channel,Hey Baby,existing,,,,,,FALSE +Bruce Hornsby,Every Little Kiss,existing,,,,,,FALSE +Bruce Hornsby,Mandolin Rain,new,,,,,58254,FALSE +Bruce Hornsby,The Way It Is,existing,,,,,,FALSE +Bruce Springsteen,Badlands,existing,,,,,,FALSE +Bruce Springsteen,Born In the USA,existing,,,,,,FALSE +Bruce Springsteen,Born To Run,existing,,,,,,FALSE +Bruce Springsteen,Brilliant Disguise,new,,,,,11295,FALSE +Bruce Springsteen,Cover Me,existing,,,,,,FALSE +Bruce Springsteen,Dancing In the Dark,existing,,,,,,FALSE +Bruce Springsteen,Girls In Their Summer Clothes,existing,,,,,,FALSE +Bruce Springsteen,Glory Days,existing,,,,,,FALSE +Bruce Springsteen,Human Touch,existing,,,,,,FALSE +Bruce Springsteen,Hungry Heart,new,,,,,11296,FALSE +Bruce Springsteen,I'm On Fire,existing,,,,,,FALSE +Bruce Springsteen,Jungleland,existing,,,,,,FALSE +Bruce Springsteen,Out in the Street,new,,,,,78330,FALSE +Bruce Springsteen,Rosalita (Come Out Tonight),new,,,,,59758,FALSE +Bruce Springsteen,Secret Garden,existing,,,,,,FALSE +Bruce Springsteen,Tenth Avenue Freeze-Out,new,,,,,43986,FALSE +Bruce Springsteen,The River,existing,,,,,,FALSE +Bruce Springsteen,Thunder Road,existing,,,,,,FALSE +Bruce Springsteen,Tunnel of Love,new,,,,,73536,FALSE +Bruno Mars,24K Magic,new,,,,,51925,FALSE +Bruno Mars,Grenade,existing,,,,,,FALSE +Bruno Mars,Just the Way You Are,existing,,,,,,FALSE +Bruno Mars,Lazy Song,existing,,,,,,FALSE +Bruno Mars,Locked Out of Heaven,existing,,,,,,FALSE +Bruno Mars,Marry You,existing,,,,,,FALSE +Bruno Mars,Talking to the Moon,new,,,,,32782,FALSE +Bruno Mars,That's What I Like,new,,,,,52184,FALSE +Bruno Mars,Treasure,existing,,,,,,FALSE +Bruno Mars,Uptown Funk,existing,,,,,,FALSE +Bruno Mars,When I Was Your Man,existing,,,,,,FALSE +Bryan Adams,Can't Stop This Thing We Started,new,,,,,6975,FALSE +Bryan Adams,Cuts Like A Knife,existing,,,,,,FALSE +Bryan Adams,Everything I Do (I Do It for You),existing,,,,,,FALSE +Bryan Adams,Have You Ever Really Loved a Woman,new,,,,,7131,FALSE +Bryan Adams,Heaven,new,,,,,11227,FALSE +Bryan Adams,Run to You,new,,,,,13175,FALSE +Bryan Adams,Straight from the Heart,new,,,,,9724,FALSE +Bryan Adams,Summer Of 69,existing,,,,,,FALSE +Bryan Adams,When You Love Someone,existing,,,,,,FALSE +Bryan Ferry,Let's Stick Together,existing,,,,,,FALSE +Bryan Ferry,Price of Love,existing,,,,,,FALSE +Bryan Ferry,Slave To Love,existing,,,,,,FALSE +Buck Owens,Act Naturally,existing,,,,,,FALSE +Buddy Guy,Damn Right I've Got The Blues,existing,,,,,,FALSE +Buddy Guy,Feels Like Rain,new,,,,,56689,FALSE +Buddy Guy,"I'd Rather Be Blind, Crippled & Crazy",new,,,,,63412,FALSE +Buddy Guy,Midnight Train,new,,,,,67855,FALSE +Buddy Guy,Mustang Sally,new,,,,,56456,FALSE +Buddy Guy,Red House,new,,,,,63443,FALSE +Buddy Guy,Skin Deep,new,,,,,62958,FALSE +Buddy Holly,It Doesn't Matter Anymore,existing,,,,,,FALSE +Buddy Holly,It's So Easy,existing,,,,,,FALSE +Buddy Holly,Maybe Baby,existing,,,,,,FALSE +Buddy Holly,Oh Boy,existing,,,,,,FALSE +Buddy Holly,Peggy Sue,existing,,,,,,FALSE +Buddy Holly,Raining In My Heart,existing,,,,,,FALSE +Buddy Holly,Rave On,existing,,,,,,FALSE +Buddy Holly,That'll Be The Day,existing,,,,,,FALSE +Buddy Holly,Think It Over,existing,,,,,,FALSE +Buddy Holly,True Love Ways,existing,,,,,,FALSE +Buddy Holly,Wait Til The Sun Shines,existing,,,,,,FALSE +Buddy Knox,Party Doll,existing,,,,,,FALSE +Buena Vista Social Club,Chan Chan,new,,,,,20525,FALSE +Buena Vista Social Club,Dos gardenias,new,,,,,42539,FALSE +Buena Vista Social Club,El cuarto de tula,new,,,,,61302,FALSE +Buena Vista Social Club,Lagrimas negras,new,,,,,61278,FALSE +Buena Vista Social Club,One Step Too Far,new,,,,,61445,FALSE +Buena Vista Social Club,She Will Be Loved,new,,,,,71657,FALSE +Buena Vista Social Club,Veinte anos,new,,,,,63711,FALSE +Buffalo Springfield,For What It's Worth,existing,,,,,,FALSE +Buggles,Video Killed the Radio Star,existing,The Buggles,,,,,FALSE +Bullet for My Valentine,All These Things I Hate,new,Bullet For My Valentine,,,,73366,FALSE +Bullet for My Valentine,Hearts Burst into Fire,new,Bullet For My Valentine,,,,74737,FALSE +Bullet for My Valentine,Scream Aim Fire,new,Bullet For My Valentine,,,,78077,FALSE +Bullet for My Valentine,Tears Don't Fall,new,Bullet For My Valentine,,,,30429,FALSE +Bullet for My Valentine,Waking the Demon,new,Bullet For My Valentine,,,,71779,FALSE +Bullet for My Valentine,Your Betrayal,new,Bullet For My Valentine,,,,70947,FALSE +Burna Boy,For My Hand,new,,,,,71773,FALSE +Burna Boy,Last Last,new,,,,,71394,FALSE +Burna Boy,On the Low,new,,,,,69048,FALSE +Burna Boy,Ye,new,,,,,70952,FALSE +Bush,Comedown,new,,,,,55921,FALSE +Bush,Everything Zen,new,,,,,71050,FALSE +Bush,Glycerine,new,,,,,42272,FALSE +Bush,Machinehead,new,,,,,33969,FALSE +Busta Rhymes,Break Ya Neck,new,,,,,78185,FALSE +Busta Rhymes,Calm Down,new,,,,,26217,FALSE +Busta Rhymes,Dangerous,new,,,,,32685,FALSE +Busta Rhymes,I Love My Chick,new,,,,,13484,FALSE +Busta Rhymes,Put Your Hands Where My Eyes Could See,new,,,,,74042,FALSE +Busta Rhymes,Thank You,new,,,,,46259,FALSE +Busta Rhymes,What's It Gonna Be,new,,,,,35166,FALSE +Busta Rhymes,Woo Hah!! Got You All in Check,new,,,,,34104,FALSE +Busted,What I Go To School tor,existing,,,,,,FALSE +Busted,Year 3000,existing,,,,,,FALSE +Butthole Surfers,Pepper,new,,,,,66801,FALSE +Butthole Surfers,Who Was in My Room Last Night,new,,,,,75809,FALSE +Byron Lee,Hot Hot Hot,existing,,,,,,FALSE +Cab Calloway,Minnie the Moocher,existing,,,,,,FALSE +Cage the Elephant,Ain't No Rest for the Wicked,new,,,,,54906,FALSE +Cage the Elephant,Cigarette Daydreams,new,,,,,68246,FALSE +Cage the Elephant,Cold Cold Cold,new,,,,,77504,FALSE +Cage the Elephant,Come a Little Closer,new,,,,,73163,FALSE +Cage the Elephant,Trouble,new,,,,,51358,FALSE +Cake,I Will Survive,new,,,,,53020,FALSE +Cake,Never There,new,,,,,55870,FALSE +Cake,Short Skirt Long Jacket,new,,,,,24335,FALSE +Cake,The Distance,existing,,,,,,FALSE +Cake,War Pigs,new,,,,,74346,FALSE +Calum Scott,Dancing on My Own,new,,,,,51439,FALSE +Calum Scott,You Are the Reason,new,,,,,54840,FALSE +Calvin Harris,Blame,existing,,,,,,FALSE +Calvin Harris,Feel So Close,new,,,,,38105,FALSE +Calvin Harris,How Deep Is Your Love,new,,,,,49674,FALSE +Calvin Harris,My Way,new,,,,,52139,FALSE +Calvin Harris,One Kiss,new,,,,,55468,FALSE +Calvin Harris,Outside,existing,,,,,,FALSE +Calvin Harris,Slide,new,,,,,52877,FALSE +Calvin Harris,Summer,existing,,,,,,FALSE +Calvin Harris,This Is What You Came For,new,,,,,51251,FALSE +Calvin Harris Feat. Ellie Goulding,I Need Your Love,existing,,,,,,FALSE +Cameo,Word Up,existing,,,,,,FALSE +Camila,Alejate De Mi,existing,,,,,,FALSE +Camila,Mientes,existing,,,,,,FALSE +Camila Cabello,Bam Bam,new,,,,,68587,FALSE +Camila Cabello,Beautiful,new,,,,,56759,FALSE +Camila Cabello,Havana,new,,,,,54071,FALSE +Camila Cabello,My Oh My,new,,,,,60619,FALSE +Camila Cabello,Never Be the Same,new,,,,,54920,FALSE +Camila Cabello,Shameless,new,,,,,59378,FALSE +Candi Staton,Nights On Broadway,existing,,,,,,FALSE +Candi Staton,Young Hearts Run Free,existing,,,,,,FALSE +Cardi B,Be Careful,new,,,,,55807,FALSE +Cardi B,Bodak Yellow,new,,,,,54473,FALSE +Cardi B,Bongos,new,,,,,77140,FALSE +Cardi B,Enough (Miami),new,,,,,80554,FALSE +Cardi B,Hot Shit,new,,,,,70523,FALSE +Cardi B,I Do,new,,,,,78058,FALSE +Cardi B,I Like It,new,,,,,55775,FALSE +Cardi B,Like What (Freestyle),new,,,,,80397,FALSE +Cardi B,Money,new,,,,,57601,FALSE +Cardi B,Please Me,new,,,,,57571,FALSE +Cardi B,Ring,new,,,,,72403,FALSE +Cardi B,Thru Your Phone,new,,,,,73376,FALSE +Cardi B,Up,new,,,,,64046,FALSE +Cardi B,WAP,new,,,,,51289,FALSE +Carl Douglas,Kung Fu Fighting,existing,,,,,,FALSE +Carly Pearce,Every Little Thing,new,,,,,53229,FALSE +Carly Pearce,I Hope You're Happy Now,new,,,,,59459,FALSE +Carly Pearce,Next Girl,new,,,,,23082,FALSE +Carly Pearce,What He Didn't Do,new,,,,,66793,FALSE +Carly Rae Jepsen,Call Me Maybe,existing,,,,,,FALSE +Carly Simon,Anticipation,new,,,,,15289,FALSE +Carly Simon,Nobody Does It Better,existing,,,,,,FALSE +Carly Simon,You're so Vain,existing,,,,,,FALSE +Carole King,I Feel The Earth Move,existing,,,,,,FALSE +Carole King,It's Too Late,new,,,,,15290,FALSE +Carole King,So Far Away,new,,,,,15291,FALSE +Carole King,You've Got a Friend,new,,,,,14673,FALSE +Carousel The Musical,Soliloquy (A Cappella),existing,,,,,,FALSE +Carrie Underwood,Before He Cheats,existing,,,,,,FALSE +Carrie Underwood,Blown Away,existing,,,,,,FALSE +Carrie Underwood,Church Bells,new,,,,,50091,FALSE +Carrie Underwood,Cowboy Casanova,new,,,,,25157,FALSE +Carrie Underwood,Good Girl,existing,,,,,,FALSE +Carrie Underwood,"Jesus, Take the Wheel",new,,,,,14570,FALSE +Carrie Underwood,Out of That Truck,new,,,,,74261,FALSE +Carrie Underwood,Something In The Water,existing,,,,,,FALSE +Carrie Underwood,The Champion,new,,,,,55032,FALSE +Cascada,Evacuate the Dancefloor,existing,,,,,,FALSE +Cascada,Everytime We Touch,new,,,,,12436,FALSE +Cassandra Wilson,Darkness On The Delta (A Cappella),existing,,,,,,FALSE +Casting Crowns,Just Be Held,new,,,,,79358,FALSE +Casting Crowns,Nobody,new,,,,,67917,FALSE +Casting Crowns,Voice of Truth,new,,,,,76569,FALSE +Casting Crowns,Who am I,new,,,,,68932,FALSE +Cat Stevens,Father and Son,new,,,,,22477,FALSE +Cat Stevens,If You Want to Sing Out,new,,,,,74238,FALSE +Cat Stevens,Moonshadow,existing,,,,,,FALSE +Cat Stevens,Morning Has Broken,existing,,,,,,FALSE +Cat Stevens,Oh Very Young,new,,,,,55345,FALSE +Cat Stevens,Peace Train,existing,,,,,,FALSE +Cat Stevens,The Wind,new,,,,,51192,FALSE +Cat Stevens,Trouble,new,,,,,81172,FALSE +Cat Stevens,Where Do the Children Play,new,,,,,40562,FALSE +Cat Stevens,Wild World,existing,,,,,,FALSE +CeCe Peniston,Finally,new,,,,,6397,FALSE +Cee Lo Green,Bright Lights Bigger City,existing,,,,,,FALSE +Cee Lo Green,Forget You,existing,,,,,,FALSE +Celia Cruz,Azucar Negra,existing,,,,,,FALSE +Celia Cruz,Guantanamera,existing,,,,,,FALSE +Celia Cruz,La Vida Es Un Carnaval,existing,,,,,,FALSE +Celia Cruz,Que Le Den Candela,existing,,,,,,FALSE +Celia Cruz,Rie Y Llora,existing,,,,,,FALSE +Celia Cruz,Yo Vivire,existing,,,,,,FALSE +Celine Dion,All by Myself,new,,,,,5943,FALSE +Celine Dion,Ashes,new,,,,,55512,FALSE +Celine Dion,Because You Loved Me,existing,,,,,,FALSE +Celine Dion,I'm Alive,new,,,,,7077,FALSE +Celine Dion,It's All Coming Back to Me Now,new,,,,,11187,FALSE +Celine Dion,My Heart Will Go On,existing,,,,,,FALSE +Celine Dion,The Power of Love,new,,,,,10065,FALSE +Chairman Of The Board,Give Me Just a Little More Time,existing,,,,,,FALSE +Chaka Khan,Ain't Nobody,existing,,,,,,FALSE +Chaka Khan,I'm Every Woman,existing,,,,,,FALSE +Chappell Roan,After Midnight,new,,,,,48373,FALSE +Chappell Roan,California,new,,,,,82632,FALSE +Chappell Roan,Casual,new,,,,,80491,FALSE +Chappell Roan,Coffee,new,,,,,82570,FALSE +Chappell Roan,Femininomenon,new,,,,,81658,FALSE +Chappell Roan,"Good Luck, Babe!",new,,,,,80846,FALSE +Chappell Roan,Guilty Pleasure,new,,,,,82710,FALSE +Chappell Roan,Hot to Go!,new,,,,,80547,FALSE +Chappell Roan,Kaleidoscope,new,,,,,82492,FALSE +Chappell Roan,Love Me Anyway,new,,,,,82917,FALSE +Chappell Roan,My Kink Is Karma,new,,,,,80610,FALSE +Chappell Roan,Naked in Manhattan,new,,,,,80984,FALSE +Chappell Roan,Picture You,new,,,,,82256,FALSE +Chappell Roan,Pink Pony Club,new,,,,,79097,FALSE +Chappell Roan,Red Wine Supernova,new,,,,,76222,FALSE +Chappell Roan,Super Graphic Ultra Modern Girl,new,,,,,81681,FALSE +Charlene,Never Been To Me,existing,,,,,,FALSE +Charles & Eddie,Would I Lie To You,existing,,,,,,FALSE +Charley Pride,Is Anybody Goin' to San Antone,new,,,,,6605,FALSE +Charley Pride,Kiss an Angel Good Mornin',new,,,,,15308,FALSE +Charli XCX,360,new,,,,,81983,FALSE +Charli XCX,365,new,,,,,82636,FALSE +Charli XCX,Apple,new,,,,,82503,FALSE +Charli XCX,"Girl, So Confusing",new,,,,,82336,FALSE +Charli XCX,Guess (feat. Billie Eilish),new,,,,,83006,FALSE +Charli XCX,Von Dutch,new,,,,,81182,FALSE +Charlie Daniles Band,Devil Went Down To Georgia,existing,The Charlie Daniels Band,,,,,FALSE +Charlie Pride,Crystal Chandelier,existing,,,,,,FALSE +Charlie Puth,Attention,new,,,,,53088,FALSE +Charlie Puth,How Long,new,,,,,54402,FALSE +Charlie Puth,Left and Right,new,,,,,70288,FALSE +Charlie Puth,Marvin Gaye,new,,,,,49091,FALSE +Charlie Puth,One Call Away,new,,,,,50332,FALSE +Charlie Puth,See You Again (piano version),new,,,,,49130,FALSE +Charlie Puth,We Don't Talk Anymore,new,,,,,50886,FALSE +Charlie Rich,Behind Closed Doors,existing,,,,,,FALSE +Charlie Rich,Most Beautiful Girl In the World,existing,,,,,,FALSE +Chauncey Olcott,My Wild Irish Rose (A Cappella),existing,,,,,,FALSE +Cheap Trick,Dream Police,new,,,,,5618,FALSE +Cheap Trick,I Want You To Want Me (Live Version),existing,,,,,,FALSE +Cheap Trick,Surrender,existing,,,,,,FALSE +Cher,Believe,existing,,,,,,FALSE +Cher,Gypsies,existing,,,,,,FALSE +Cher,If I Could Turn Back Time,existing,,,,,,FALSE +Cher,Just Like Jesse James,existing,,,,,,FALSE +Cher,Shoop Shoop Song,existing,,,,,,FALSE +Cher Lloyd,Want U Back,existing,,,,,,FALSE +Cheryl Cole,Fight for This Love,existing,,,,,,FALSE +Chet Baker,But Not for Me,new,,,,,66219,FALSE +Chet Baker,I Fall in Love Too Easily,new,,,,,72330,FALSE +Chet Baker,My Funny Valentine,new,,,,,66455,FALSE +Chic,Everybody Dance,existing,,,,,,FALSE +Chic,Good Times,new,,,,,8651,FALSE +Chic,Le Freak,new,,,,,8644,FALSE +Chicago,25 Or 6 To 4,existing,,,,,,FALSE +Chicago,Hard To Say I'm Sorry (Single Version),existing,,,,,,FALSE +Chicago,If You Leave Me Now,existing,,,,,,FALSE +Chicago (band),"Baby, What a Big Surprise",new,Chicago,,,,15347,FALSE +Chicago (band),Does Anybody Really Know What Time It Is,new,Chicago,,,,32333,FALSE +Chicago (band),Feelin' Stronger Every Day,new,Chicago,,,,60473,FALSE +Chicago (band),Hard Habit To Break,new,Chicago,,,,8593,FALSE +Chicago (band),Saturday in the Park,new,Chicago,,,,8590,FALSE +Chicago The Musical,Razzle Dazzle (A Cappella),existing,,,,,,FALSE +Chico And The Gypsies,Besame Mucho,existing,,,,,,FALSE +Chico And The Gypsies,La Bohemia,existing,,,,,,FALSE +Childish Gambino,3005,new,,,,,46400,FALSE +Childish Gambino,Bonfire,new,,,,,69581,FALSE +Childish Gambino,Feels Like Summer,new,,,,,56527,FALSE +Childish Gambino,Heartbeat,new,,,,,73275,FALSE +Childish Gambino,Redbone,new,,,,,54320,FALSE +Chris Andrews,Yesterday Man,existing,,,,,,FALSE +Chris Brown,Five More Hours,new,,,,,49454,FALSE +Chris Brown,Forever,new,,,,,19780,FALSE +Chris Brown,Kiss Kiss,new,,,,,13594,FALSE +Chris Brown,Loyal,new,,,,,46653,FALSE +Chris Brown,No Guidance,new,,,,,68477,FALSE +Chris Brown,Under the Influence,new,,,,,71484,FALSE +Chris Brown,With You,new,,,,,14641,FALSE +Chris De Burgh,Patricia the Stripper,existing,,,,,,FALSE +Chris Farlowe,Out of Time,existing,,,,,,FALSE +Chris Isaak,Wicked Game,new,,,,,6337,FALSE +Chris Janson,Buy Me a Boat,new,,,,,49481,FALSE +Chris Janson,Done,new,,,,,60963,FALSE +Chris Janson,Drunk Girl,new,,,,,55249,FALSE +Chris Janson,Fix a Drink,new,,,,,53273,FALSE +Chris Janson,Good Vibes,new,,,,,58250,FALSE +Chris Montez,Let's Dance,existing,,,,,,FALSE +Chris Rea,Driving Home for Christmas,existing,,,,,,FALSE +Chris Stapleton,Broken Halos,new,,,,,53051,FALSE +Chris Stapleton,Millionaire,new,,,,,54451,FALSE +Chris Stapleton,Parachute,new,,,,,50730,FALSE +Chris Stapleton,Starting Over,new,,,,,62311,FALSE +Chris Stapleton,Tennessee Whiskey,new,,,,,49375,FALSE +Chris Stapleton,Think I'm in Love with You,new,,,,,77146,FALSE +Chris Stapleton,Traveller,new,,,,,50295,FALSE +Chris Stapleton,White Horse,new,,,,,76263,FALSE +Chris Stapleton,You Should Probably Leave,new,,,,,63026,FALSE +Chris Young,Aw Naw,new,,,,,44795,FALSE +Chris Young,Famous Friends,new,,,,,64303,FALSE +Chris Young,Gettin' You Home,new,,,,,22691,FALSE +Chris Young,I'm Comin' Over,new,,,,,49638,FALSE +Chris Young,Think Of You,new,,,,,50979,FALSE +Chris Young,Tomorrow,new,,,,,37120,FALSE +Christie,Yellow River,existing,,,,,,FALSE +Christina Aguilera,Ain't No Other Man,existing,,,,,,FALSE +Christina Aguilera,Beautiful,existing,,,,,,FALSE +Christina Aguilera,But I Am a Good Girl,existing,,,,,,FALSE +Christina Aguilera,Candy Man,existing,,,,,,FALSE +Christina Aguilera,Dirrty,new,,,,,14431,FALSE +Christina Aguilera,Fighter,new,,,,,6206,FALSE +Christina Aguilera,Genie in a Bottle,new,,,,,8629,FALSE +Christina Aguilera,Hurt,existing,,,,,,FALSE +Christina Aguilera,Voice Within,existing,,,,,,FALSE +Christina Aguilera / Lil Kim / Mya / Pink,Lady Marmalade,existing,,,,,,FALSE +Christina Perri,Jar of Hearts,existing,,,,,,FALSE +Christmas Carol,All Through the Night,new,,,,,24973,FALSE +Christmas Carol,Angels We Have Heard on High,new,,,,,34350,FALSE +Christmas Carol,Angels from the Realms of Glory,new,,,,,26554,FALSE +Christmas Carol,Away in a Manger,new,,,,,24703,FALSE +Christmas Carol,Campanas De Navidad,new,,,,,25234,FALSE +Christmas Carol,Carol of the Bells,new,,,,,25235,FALSE +Christmas Carol,Deck the Halls (long version),new,,,,,26797,FALSE +Christmas Carol,Deck the Halls,new,,,,,26796,FALSE +Christmas Carol,Ding Dong Merrily on High,new,,,,,33781,FALSE +Christmas Carol,Ding dong que alegria,new,,,,,38644,FALSE +Christmas Carol,Doce Dias De Navidad,new,,,,,34450,FALSE +Christmas Carol,"Douce nuit, sainte nuit (version lente)",new,,,,,37071,FALSE +Christmas Carol,"Douce nuit, sainte nuit",new,,,,,5081,FALSE +Christmas Carol,El Acebo Y La Hiedra,new,,,,,34451,FALSE +Christmas Carol,El Buen Rey Wenceslao,new,,,,,34452,FALSE +Christmas Carol,En Un Pesebrito,new,,,,,34454,FALSE +Christmas Carol,Escucha! Los Angeles Cantan,new,,,,,34455,FALSE +Christmas Carol,"God Rest Ye Merry, Gentlemen (slow version)",new,,,,,26880,FALSE +Christmas Carol,"God Rest Ye Merry, Gentlemen",new,,,,,24201,FALSE +Christmas Carol,Good King Wenceslas,new,,,,,33782,FALSE +Christmas Carol,Gozo de Dios,new,,,,,34456,FALSE +Christmas Carol,Hark! The Herald Angels Sing (slow version),new,,,,,26949,FALSE +Christmas Carol,Hark! The Herald Angels Sing,new,,,,,24873,FALSE +Christmas Carol,I Saw Three Ships,new,,,,,25177,FALSE +Christmas Carol,Il est ne le divin enfant (version dance),new,,,,,37072,FALSE +Christmas Carol,It Came Upon A Midnight Clear,new,,,,,26596,FALSE +Christmas Carol,Joy to the World,new,,,,,24241,FALSE +Christmas Carol,La primera Navidad,new,,,,,34453,FALSE +Christmas Carol,Mon beau sapin,new,,,,,5085,FALSE +Christmas Carol,"Navidad, Navidad",new,,,,,34458,FALSE +Christmas Carol,Noche De Paz,new,,,,,34459,FALSE +Christmas Carol,Nosotros Los Tres Reyes,new,,,,,34356,FALSE +Christmas Carol,O Christmas Tree,new,,,,,5086,FALSE +Christmas Carol,O Come All Ye Faithful (alternate version),new,,,,,25647,FALSE +Christmas Carol,O Come All Ye Faithful,new,,,,,24742,FALSE +Christmas Carol,"O Come, O Come, Emmanuel",new,,,,,27446,FALSE +Christmas Carol,O Holy Night,new,,,,,34376,FALSE +Christmas Carol,O Little Town of Bethlehem,new,,,,,25645,FALSE +Christmas Carol,O Tannenbaum,new,,,,,5087,FALSE +Christmas Carol,Once in Royal David's City,new,,,,,33783,FALSE +Christmas Carol,Oyelas Bien,new,,,,,25236,FALSE +Christmas Carol,Querida ciudad de Belen,new,,,,,34461,FALSE +Christmas Carol,Quien es este nino,new,,,,,34463,FALSE +Christmas Carol,Silent Night (Man Voice),new,,,,,26636,FALSE +Christmas Carol,Silent Night (Woman Voice),new,,,,,26635,FALSE +Christmas Carol,Silent Night,new,,,,,5082,FALSE +Christmas Carol,"Stille Nacht, Heilige Nacht",new,,,,,5084,FALSE +Christmas Carol,Te deseamos una Feliz Navidad,new,,,,,34464,FALSE +Christmas Carol,The Christmas Song (Chestnuts Roasting),existing,,,,,,FALSE +Christmas Carol,The First Noel,new,,,,,24722,FALSE +Christmas Carol,The Holly and the Ivy,new,,,,,33784,FALSE +Christmas Carol,Toda La Noche,new,,,,,25443,FALSE +Christmas Carol,Toyland,new,,,,,25217,FALSE +Christmas Carol,Twelve Days of Christmas (alternate version),new,,,,,26950,FALSE +Christmas Carol,Twelve Days of Christmas,new,,,,,24963,FALSE +Christmas Carol,Up on the House Top,new,,,,,26910,FALSE +Christmas Carol,We Three Kings (alternate version),new,,,,,25649,FALSE +Christmas Carol,We Three Kings,new,,,,,24965,FALSE +Christmas Carol,We Wish You a Merry Christmas (Alternate Version),new,,,,,25650,FALSE +Christmas Carol,We Wish You a Merry Christmas (slow version),new,,,,,24222,FALSE +Christmas Carol,We Wish You a Merry Christmas,new,,,,,5025,FALSE +Christmas Carol,What Child Is This,new,,,,,26915,FALSE +Christmas Carol,While Shepherds Watched Their Flocks,new,,,,,33785,FALSE +Christmas Carol,Winter Wonderland,new,,,,,67353,FALSE +Christmas Song,Jingle Bells (A Cappella),existing,,,,,,FALSE +Christopher Cross,Arthur's Theme (The Best That You Can Do),new,,,,,10095,FALSE +Christopher Cross,Ride Like the Wind,new,,,,,12449,FALSE +Christopher Cross,Sailing (A Cappella),existing,,,,,,FALSE +Christopher Cross,Sailing,existing,,,,,,FALSE +Chubbey Checker,Let's Twist Again,existing,Chubby Checker,,,,,FALSE +Chuck Berry,Almost Grown,existing,,,,,,FALSE +Chuck Berry,Johnny B Goode,existing,,,,,,FALSE +Chuck Berry,Little Queenie,new,,,,,47641,FALSE +Chuck Berry,My Ding-a-Ling,new,,,,,42215,FALSE +Chuck Berry,No Particular Place To Go,existing,,,,,,FALSE +Chuck Berry,Rock And Roll Music,existing,,,,,,FALSE +Chuck Berry,Roll Over Beethoven,existing,,,,,,FALSE +Chuck Berry,You Never Can Tell,existing,,,,,,FALSE +Chumbawamba,Tubthumping,existing,,,,,,FALSE +Chvrches,The Mother We Share,new,,,,,47599,FALSE +Ciara,"1, 2 Step",new,,,,,12448,FALSE +Ciara,Goodies,new,,,,,49530,FALSE +Ciara,Level Up,new,,,,,79613,FALSE +Ciara,Like a Boy,new,,,,,11904,FALSE +Ciara,Oh,new,,,,,75849,FALSE +Cilla Black,You're My World,existing,,,,,,FALSE +Citizen Cope,Son's Gonna Rise,new,,,,,81662,FALSE +Clarence 'Frogman' Henry,I Don't Know Why I Love You (but I Do),existing,,,,,,FALSE +Clean Bandit,Baby,new,,,,,56731,FALSE +Clean Bandit,I Miss You,new,,,,,54759,FALSE +Clean Bandit,Rather Be feat. Jess Glynne,existing,,,,,,FALSE +Clean Bandit,Rather Be,new,,,,,46232,FALSE +Clean Bandit,Rockabye,new,,,,,52043,FALSE +Clean Bandit,Solo,new,,,,,55644,FALSE +Clean Bandit,Symphony,new,,,,,52887,FALSE +Cliff Richard,Bachelor Boy,existing,,,,,,FALSE +Cliff Richard,Do You Wanna Dance,existing,,,,,,FALSE +Cliff Richard,I Could Easily Fall,existing,,,,,,FALSE +Cliff Richard,I Love You,existing,,,,,,FALSE +Cliff Richard,In The Country,existing,,,,,,FALSE +Cliff Richard,Johnny B Goode,existing,,,,,,FALSE +Cliff Richard,Minute You're Gone,existing,,,,,,FALSE +Cliff Richard,Mistletoe & Wine,existing,,,,,,FALSE +Cliff Richard,Move It,existing,,,,,,FALSE +Cliff Richard,Rip It Up,existing,,,,,,FALSE +Cliff Richard,School Days,existing,,,,,,FALSE +Cliff Richard,Sealed With a Kiss,existing,,,,,,FALSE +Cliff Richard,Stood Up,existing,,,,,,FALSE +Cliff Richard,Stuck On You,existing,,,,,,FALSE +Cliff Richard,Such a Night,existing,,,,,,FALSE +Cliff Richard,Summer Holiday,existing,,,,,,FALSE +Cliff Richard,Travellin' Light,existing,,,,,,FALSE +Cliff Richard,Young Ones,existing,,,,,,FALSE +Climax Blues Band,Couldn't Get It Right,new,,,,,34116,FALSE +Clout,Substitute,existing,,,,,,FALSE +Clyde Mcphatter,Lover's Question,existing,,,,,,FALSE +Coast To Coast,Do the Hucklebuck,existing,,,,,,FALSE +Cody Jinks,Hippies & Cowboys,new,,,,,53895,FALSE +Cody Jinks,Loud and Heavy,new,,,,,57428,FALSE +Cody Jinks,Mamma Song,new,,,,,60512,FALSE +Cody Jinks,Must Be the Whiskey,new,,,,,56076,FALSE +Cody Johnson,Dance Her Home,new,,,,,55306,FALSE +Cody Johnson,Diamond in My Pocket,new,,,,,27918,FALSE +Cody Johnson,Me and My Kind,new,,,,,69089,FALSE +Cody Johnson,The Painter,new,,,,,76737,FALSE +Cody Johnson,With You I Am,new,,,,,53172,FALSE +Coheed And Cambria,A Favor House Atlantic,existing,,,,,,FALSE +Coheed And Cambria,Welcome Home,existing,,,,,,FALSE +Coheed and Cambria,A Favor House Atlantic,new,Coheed And Cambria,,,,29039,FALSE +Coheed and Cambria,Blood Red Summer,new,Coheed And Cambria,,,,24850,FALSE +Coheed and Cambria,The Suffering,new,Coheed And Cambria,,,,15388,FALSE +Coheed and Cambria,Welcome Home,new,Coheed And Cambria,,,,28920,FALSE +Colbie Caillat,Bubbly,existing,,,,,,FALSE +Colbie Caillat,Try,existing,,,,,,FALSE +Cold War Kids,First,new,,,,,63967,FALSE +Cold War Kids,Hang Me Up to Dry,new,,,,,76215,FALSE +Coldplay,A Head Full of Dreams,new,,,,,50466,FALSE +Coldplay,A Rush of Blood to the Head,new,,,,,53386,FALSE +Coldplay,A Sky Full Of Stars,existing,,,,,,FALSE +Coldplay,Adventure of a Lifetime,new,,,,,50144,FALSE +Coldplay,Charlie Brown,existing,,,,,,FALSE +Coldplay,Clocks,existing,,,,,,FALSE +Coldplay,Fix You,existing,,,,,,FALSE +Coldplay,Hymn for the Weekend (Seeb Remix),new,,,,,62621,FALSE +Coldplay,Hymn for the Weekend,new,,,,,50674,FALSE +Coldplay,In My Place,existing,,,,,,FALSE +Coldplay,Magic,existing,,,,,,FALSE +Coldplay,Paradise,existing,,,,,,FALSE +Coldplay,Sky Full of Stars,existing,,,,,,FALSE +Coldplay,Speed of Sound,existing,,,,,,FALSE +Coldplay,Spies,new,,,,,82450,FALSE +Coldplay,The Scientist,new,,,,,5737,FALSE +Coldplay,Viva La Vida,existing,,,,,,FALSE +Coldplay,White Shadows,existing,,,,,,FALSE +Coldplay,Yellow,new,,,,,7788,FALSE +Cole Porter,Begin The Beguine,existing,,,,,,FALSE +Cole Porter,Every Time We Say Goodbye,existing,,,,,,FALSE +Cole Porter,I Get A Kick Out Of You,existing,,,,,,FALSE +Cole Porter,I've Got You Under My Skin,existing,,,,,,FALSE +Cole Porter,It's De-Lovely,existing,,,,,,FALSE +Cole Swindell,Chillin' It,new,,,,,47972,FALSE +Cole Swindell,Flatliner,new,,,,,52865,FALSE +Cole Swindell,Middle of a Memory,new,,,,,51799,FALSE +Cole Swindell,She Had Me at Heads Carolina,new,,,,,69251,FALSE +Cole Swindell,Single Saturday Night,new,,,,,65598,FALSE +Cole Swindell,You Should Be Here,new,,,,,50675,FALSE +Collective Soul,December,new,,,,,17445,FALSE +Collective Soul,Heavy,new,,,,,8516,FALSE +Collective Soul,Shine,new,,,,,35895,FALSE +Collective Soul,The World I Know,new,,,,,10834,FALSE +Colter Wall,Cowpoke,new,,,,,77710,FALSE +Colter Wall,Fraulein,new,,,,,56998,FALSE +Colter Wall,Kate McCannon,new,,,,,68325,FALSE +Colter Wall,Motorcycle,new,,,,,76262,FALSE +Colter Wall,Sleeping on the Blacktop,new,,,,,67265,FALSE +Colter Wall,The Devil Wears a Suit and Tie,new,,,,,66178,FALSE +Commodores,Brick House,new,The Commodores,,TRUE,,15400,FALSE +Commodores,Easy,new,The Commodores,,TRUE,,13677,FALSE +Commodores,Lady (You Bring Me Up),new,The Commodores,,,,55442,FALSE +Commodores,Nightshift,new,The Commodores,,TRUE,,17447,FALSE +Commodores,Sail On,new,The Commodores,,,,33486,FALSE +Commodores,Still,new,The Commodores,,TRUE,,17448,FALSE +Commodores,Three Times A Lady,new,The Commodores,,TRUE,,13632,FALSE +Connie Francis,Jealous Heart,existing,,,,,,FALSE +Connie Francis,Lipstick On Your Collar,existing,,,,,,FALSE +Connie Francis,Stupid Cupid,existing,,,,,,FALSE +Connie Francis,Where the Boys Are,existing,,,,,,FALSE +Connie Francis,You Tell Me Your Dream (A Cappella),existing,,,,,,FALSE +Conor Maynard,Can't Say No,existing,,,,,,FALSE +Conway Twitty,Hello Darlin',new,,,,,14824,FALSE +Conway Twitty,"Louisiana Woman, Mississippi Man",new,,,,,17449,FALSE +Conway Twitty,Slow Hand,new,,,,,14268,FALSE +Conway Twitty,Tight Fittin' Jeans,new,,,,,15410,FALSE +Coolio,Fantastic Voyage,existing,,,,,,FALSE +Coolio,Gangsta's Paradise,existing,,,,,,FALSE +Corinne Bailey Rae,Put Your Records On,existing,,,,,,FALSE +Cornershop,Brimful of Asha (Norman Cook Remix),existing,,,,,,FALSE +Corrosion Of Conformity,Albatross,existing,,,,,,FALSE +Count Basie,Cute,existing,,,,,,FALSE +Counting Crows,A Long December,new,,,,,11213,FALSE +Counting Crows,Big Yellow Taxi,new,,,,,5779,FALSE +Counting Crows,Mr. Jones,new,,,,,11440,FALSE +Counting Crows,Round Here,new,,,,,11420,FALSE +Country Standards,Cotton Eyed Joe,existing,,,,,,FALSE +Cowboy Bebop (),Call Me Call Me,new,Cowboy Bebop,,,,82987,FALSE +Cowboy Bebop (),The Real Folk Blues,new,Cowboy Bebop,,,,81369,FALSE +Crazy,One Foot Cock,existing,,,,,,FALSE +Cream,Born Under A Bad Sign,existing,,,,,,FALSE +Cream,Crossroads,existing,,,,,,FALSE +Cream,Outside Woman Blues (Live),existing,,,,,,FALSE +Cream,Strange Brew,new,,,,,24075,FALSE +Cream,Sunshine Of Your Love,existing,,,,,,FALSE +Cream,White Room,existing,,,,,,FALSE +Creed,Higher,new,,,,,8817,FALSE +Creed,My Sacrifice,new,,,,,8086,FALSE +Creed,One Last Breath,new,,,,,6830,FALSE +Creed,Torn,new,,,,,59093,FALSE +Creed,With Arms Wide Open,new,,,,,7377,FALSE +Creedence Clearwater Revival,Bad Moon Rising,existing,,,,,,FALSE +Creedence Clearwater Revival,Born on the Bayou,new,,,,,14464,FALSE +Creedence Clearwater Revival,Down On The Corner,existing,,,,,,FALSE +Creedence Clearwater Revival,Fortunate Son,new,,,,,9998,FALSE +Creedence Clearwater Revival,Have You Ever Seen The Rain,existing,,,,,,FALSE +Creedence Clearwater Revival,I Heard It Through the Grapevine (single version),new,,,,,13270,FALSE +Creedence Clearwater Revival,Proud Mary (A Cappella),existing,,,,,,FALSE +Creedence Clearwater Revival,Proud Mary,new,,,,,5462,FALSE +Creedence Clearwater Revival,Run Through the Jungle,new,,,,,46009,FALSE +Creedence Clearwater Revival,Suzie Q,new,,,,,8967,FALSE +Creedence Clearwater Revival,The Midnight Special,new,,,,,8957,FALSE +Creedence Clearwater Revival,Travelin' Band,existing,,,,,,FALSE +Creedence Clearwater Revival,Who'll Stop the Rain,new,,,,,15438,FALSE +"Crosby, Stills, Nash and Young",Helpless,new,,,,,65988,FALSE +"Crosby, Stills, Nash and Young",Helplessly Hoping,new,,,,,53236,FALSE +"Crosby, Stills, Nash and Young",Love the One You're With (live),new,,,,,66240,FALSE +"Crosby, Stills, Nash and Young",Marrakesh Express,new,,,,,60798,FALSE +"Crosby, Stills, Nash and Young",Southern Cross,new,,,,,45050,FALSE +"Crosby, Stills, Nash and Young",Wasted On The Way,new,,,,,41086,FALSE +"Crosby, Stills, Nash and Young",Wooden Ships,new,,,,,61398,FALSE +"Crosby, Stills, Nash and Young",Woodstock,new,,,,,50642,FALSE +Crosby Stills And Nash,Our House,existing,,,,,,FALSE +Crosby Stills And Nash,Suite Judy Blue Eyes,existing,,,,,,FALSE +Crosby Stills And Nash,Teach Your Children,existing,,,,,,FALSE +Crowded House,Don't Dream It's Over,existing,,,,,,FALSE +Crowded House,Four Seasons In One Day,existing,,,,,,FALSE +Crowded House,Something So Strong,new,,,,,41198,FALSE +Crowded House,Weather With You,existing,,,,,,FALSE +Crystal Gayle,Don't It Make Your Brown Eyes Blue,existing,,,,,,FALSE +Culture Club,Do You Really Want To Hurt Me,new,,,,,12022,FALSE +Culture Club,I'll Tumble 4 Ya,new,,,,,78356,FALSE +Culture Club,Karma Chameleon,new,,,,,11301,FALSE +Curiosity Killed The Cat,Down To Earth,existing,,,,,,FALSE +Curtis Mayfield,Move On Up,new,,,,,48503,FALSE +Curtis Mayfield,Superfly,new,,,,,15457,FALSE +Cutting Crew,(I Just) Died In Your Arms,existing,,,,,,FALSE +Cyndi Lauper,All Through the Night,new,,,,,15459,FALSE +Cyndi Lauper,Girls Just Wanna Have Fun,existing,,,,,,FALSE +Cyndi Lauper,She Bop,new,,,,,20853,FALSE +Cyndi Lauper,Time After Time,new,,,,,13259,FALSE +Cyndi Lauper,True Colours,existing,,,,,,FALSE +D:Ream,Things Can Only Get Better,existing,,,,,,FALSE +DJ Khaled,All I Do Is Win,new,,,,,52130,FALSE +DJ Khaled,I'm On One,new,,,,,79729,FALSE +DJ Khaled,I'm So Hood,new,,,,,13714,FALSE +DJ Khaled,I'm the One,new,,,,,53372,FALSE +DJ Khaled,No Brainer,new,,,,,56170,FALSE +DJ Khaled,Popstar,new,,,,,71559,FALSE +DJ Khaled,Wild Thoughts,new,,,,,53526,FALSE +DJ Otzi,Hey Baby,existing,,,,,,FALSE +DJ Sammy,Boys of Summer,existing,,,,,,FALSE +DMX,Party Up,new,,,,,54980,FALSE +DMX,Ruff Ryders' Anthem,new,,,,,69200,FALSE +DMX,Slippin',new,,,,,77813,FALSE +DMX,What These Bitches Want,new,,,,,70299,FALSE +DMX,Where the Hood At,new,,,,,64541,FALSE +DMX,X Gon' Give it To Ya,new,,,,,54903,FALSE +DNCE,Cake by the Ocean,new,,,,,50329,FALSE +DNCE,Kissing Strangers,new,,,,,53137,FALSE +DNCE,Toothbrush,new,,,,,51517,FALSE +Daft Punk,Around the World,new,,,,,43219,FALSE +Daft Punk,Digital Love,new,,,,,20856,FALSE +Daft Punk,Fragments of Time,new,,,,,64226,FALSE +Daft Punk,Get Lucky,existing,,,,,,FALSE +Daft Punk,"Harder, Better, Faster, Stronger",new,,,,,64154,FALSE +Daft Punk,Instant Crush,new,,,,,44068,FALSE +Daft Punk,Lose Yourself to Dance,new,,,,,44392,FALSE +Daft Punk,One More Time,new,,,,,13275,FALSE +Daft Punk,Something About Us,new,,,,,38553,FALSE +Daft Punk,Technologic,new,,,,,52766,FALSE +Damien Rice,9 Crimes,new,,,,,32117,FALSE +Damien Rice,Cannonball,new,,,,,24509,FALSE +Damien Rice,Delicate,new,,,,,64057,FALSE +Damien Rice,The Blowers Daughter,new,,,,,21148,FALSE +Damn Yankees,Bad Reputation,new,,,,,15465,FALSE +Damn Yankees,Come Again,new,,,,,76445,FALSE +Damn Yankees,Coming of Age,new,,,,,15466,FALSE +Damn Yankees,High Enough,new,,,,,15464,FALSE +Dan + Shay,"10,000 Hours",new,,,,,59487,FALSE +Dan + Shay,All to Myself,new,,,,,81414,FALSE +Dan + Shay,From the Ground Up,new,,,,,51412,FALSE +Dan + Shay,Glad You Exist,new,,,,,63822,FALSE +Dan + Shay,Nothin' Like You,new,,,,,51254,FALSE +Dan + Shay,Speechless,new,,,,,55969,FALSE +Dan + Shay,Tequila,new,,,,,55116,FALSE +Dan Auerbach,Shine on Me,new,,,,,53208,FALSE +Dan Auerbach,Waiting on a Song,new,,,,,65246,FALSE +Dan Fogelberg,Leader of the Band,new,,,,,17456,FALSE +Dan Fogelberg,Longer,new,,,,,10285,FALSE +Dan Fogelberg,Same Old Lang Syne,new,,,,,17457,FALSE +Dan Hartman,Instant Replay,existing,,,,,,FALSE +Dan Hill,Sometimes When We Touch,existing,,,,,,FALSE +Daniel Bedingfield,If You're Not the One,existing,,,,,,FALSE +Daniel Boone,Beautiful Sunday,existing,,,,,,FALSE +Daniel Caesar,Always,new,,,,,83119,FALSE +Daniel Caesar,Best Part,new,,,,,55821,FALSE +Daniel Caesar,Blessed,new,,,,,68563,FALSE +Daniel Caesar,Get You,new,,,,,56087,FALSE +Daniel Caesar,Japanese Denim,new,,,,,58388,FALSE +Daniel Merriweather,Red,existing,,,,,,FALSE +Daniel Powter,Bad Day (A Cappella),existing,,,,,,FALSE +Danny & The Juniors,At the Hop,existing,,,,,,FALSE +Danny Wilson,Mary's Prayer,existing,,,,,,FALSE +Danzig,Dirty Black Summer,existing,,,,,,FALSE +Danzig,Mother,new,,,,,54257,FALSE +Danzig,Twist of Cain,new,,,,,68516,FALSE +Darius Rucker,Alright,new,,,,,22844,FALSE +Darius Rucker,Beers and Sunshine,new,,,,,62101,FALSE +Darius Rucker,For the First Time,new,,,,,54639,FALSE +Darius Rucker,If I Told You,new,,,,,53133,FALSE +Darius Rucker,Wagon Wheel,new,,,,,43412,FALSE +Dashboard Confessional,Hands Down,new,,,,,15479,FALSE +Dashboard Confessional,Screaming Infidelities,new,,,,,64214,FALSE +Dashboard Confessional,Stolen,new,,,,,11883,FALSE +Dashboard Confessional,Vindicated,new,,,,,15481,FALSE +Daughtry,Home,new,,,,,11867,FALSE +Daughtry,It's Not Over,new,,,,,11732,FALSE +Daughtry,Life After You,new,,,,,26930,FALSE +Daughtry,Over You,new,,,,,11868,FALSE +Daughtry,Waiting For Superman,new,,,,,45993,FALSE +Dave Berry,Little Things,existing,,,,,,FALSE +Dave Clark Five,Bits & Pieces,existing,,,,,,FALSE +Dave Clark Five,Glad All Over,existing,,,,,,FALSE +Dave Edmunds,I Hear You Knocking,existing,,,,,,FALSE +Dave Edmunds,Queen of Hearts,existing,,,,,,FALSE +Dave Mason,We Just Disagree,new,,,,,50606,FALSE +Dave Matthews Band,#41,new,,,,,74806,FALSE +Dave Matthews Band,American Baby,new,,,,,5626,FALSE +Dave Matthews Band,Ants Marching,new,,,,,18259,FALSE +Dave Matthews Band,Crash into Me,new,,,,,10211,FALSE +Dave Matthews Band,Crush,new,,,,,9251,FALSE +Dave Matthews Band,Don't Drink the Water,new,,,,,79570,FALSE +Dave Matthews Band,Gravedigger,new,,,,,64927,FALSE +Dave Matthews Band,Grey Street,new,,,,,76271,FALSE +Dave Matthews Band,Satellite,new,,,,,67530,FALSE +Dave Matthews Band,So Much to Say,new,,,,,32116,FALSE +Dave Matthews Band,Stay (Wasting Time),new,,,,,9145,FALSE +Dave Matthews Band,The Space Between,new,,,,,7897,FALSE +Dave Matthews Band,Too Much,new,,,,,11000,FALSE +Dave Matthews Band,Tripping Billies,new,,,,,10421,FALSE +Dave Matthews Band,What Would You Say,new,,,,,59242,FALSE +Dave Matthews Band,Where Are You Going,new,,,,,15486,FALSE +Dave Matthews Band,You and Me,new,,,,,76578,FALSE +Dave Sebree,Halfway To Avalon,existing,,,,,,FALSE +Dave Sebree,Head Over Heels,existing,,,,,,FALSE +David Allan Coe,Longhaired Redneck,new,,,,,74214,FALSE +David Allan Coe,The Ride,new,,,,,15493,FALSE +David Allan Coe,You Never Even Called Me by My Name,new,,,,,15489,FALSE +David Archuleta,Crush,new,,,,,20648,FALSE +David Archuleta,From a Distance,new,,,,,62272,FALSE +David Bowie,Absolute Beginners,existing,,,,,,FALSE +David Bowie,Blue Jean,new,,,,,17464,FALSE +David Bowie,Changes,existing,,,,,,FALSE +David Bowie,China Girl,new,,,,,12905,FALSE +David Bowie,Dancing in the Street,new,,,,,12995,FALSE +David Bowie,Fame,existing,,,,,,FALSE +David Bowie,Golden Years,new,,,,,55232,FALSE +David Bowie,Heroes,new,,,,,12733,FALSE +David Bowie,Jean Genie,existing,,,,,,FALSE +David Bowie,Let's Dance,existing,,,,,,FALSE +David Bowie,Life On Mars,existing,,,,,,FALSE +David Bowie,Modern Love,new,,,,,12739,FALSE +David Bowie,Moonage Daydream,new,,,,,47434,FALSE +David Bowie,Oh You Pretty Things,existing,,,,,,FALSE +David Bowie,Rebel Rebel,existing,,,,,,FALSE +David Bowie,Sorrow,existing,,,,,,FALSE +David Bowie,Space Oddity,existing,,,,,,FALSE +David Bowie,Starman,existing,,,,,,FALSE +David Bowie,Suffragette City,existing,,,,,,FALSE +David Bowie,Young Americans,new,,,,,35278,FALSE +David Bowie,Ziggy Stardust,existing,,,,,,FALSE +David Essex,Gonna Make You A Star,existing,,,,,,FALSE +David Essex,Winters Tale,existing,,,,,,FALSE +David Gilmour,Between Two Points,new,,,,,82153,FALSE +David Gilmour,Comfortably Numb (live in Gdansk),new,,,,,68805,FALSE +David Gilmour,In Any Tongue,new,,,,,49913,FALSE +David Gilmour,Luck and Strange,new,,,,,83700,FALSE +David Gilmour,On an Island,new,,,,,62461,FALSE +David Gilmour,Rattle That Lock,new,,,,,49661,FALSE +David Gilmour,The Blue,new,,,,,75546,FALSE +David Gilmour,The Piper's Call,new,,,,,81449,FALSE +David Gilmour,There's No Way Out of Here,new,,,,,75024,FALSE +David Gray,Babylon,new,,,,,7693,FALSE +David Guetta,Baby Don't Hurt Me,new,,,,,74647,FALSE +David Guetta,Be My Lover,new,,,,,75739,FALSE +David Guetta,I Don't Wanna Wait,new,,,,,80741,FALSE +David Guetta,I'm Good (Blue),new,,,,,71382,FALSE +David Guetta,Memories,new,,,,,27729,FALSE +David Guetta,Sexy Bitch,new,,,,,24127,FALSE +David Guetta,Titanium (A Cappella),existing,,,,,,FALSE +David Guetta,Titanium,existing,,,,,,FALSE +David Guetta,When We Were Young (The Logical Song),new,,,,,79359,FALSE +David Guetta,Where Them Girls At,new,,,,,36910,FALSE +David Guetta Feat. Nicki Minaj,Turn Me On,existing,David Guetta,,,,,FALSE +David Guetta Vs The Egg,Love Don't Let Me Go (Walking Away),existing,David Guetta,,,,,FALSE +David Lee Roth,Just a Gigolo,existing,,,,,,FALSE +Dawes,All Your Favorite Bands,new,,,,,80298,FALSE +Dawn,Knock Three Times,existing,,,,,,FALSE +Dawn,Tie a Yellow Ribbon Round the Old Oak Tree,existing,,,,,,FALSE +Dawn Penn,You Don't Love Me (No,existing,,,,,,FALSE +Dazz Band,Let It Whip,new,,,,,47583,FALSE +De Barge,Rhythm of the Night,existing,,,,,,FALSE +Deacon Blue,Dignity,existing,,,,,,FALSE +Deacon Blue,Fergus Sings the Blues,existing,,,,,,FALSE +Deacon Blue,I'll Never Fall In Love Again,existing,,,,,,FALSE +Deacon Blue,Real Gone Kid,existing,,,,,,FALSE +Dead Kennedys,California Uber Alles,new,,,,,77001,FALSE +Dead Kennedys,Holiday in Cambodia,new,,,,,70706,FALSE +Dead Kennedys,Police Truck,new,,,,,74280,FALSE +Dead Kennedys,Too Drunk to Fuck,new,,,,,64956,FALSE +Dead Or Alive,You Spin Me Round (Like A Record),existing,,,,,,FALSE +Deadmau5,I Remember,new,,,,,38258,FALSE +Dean Lewis,Be Alright,new,,,,,56268,FALSE +Dean Lewis,Half a Man,new,,,,,74563,FALSE +Dean Lewis,How Do I Say Goodbye,new,,,,,72204,FALSE +Dean Lewis,Waves,new,,,,,53370,FALSE +Dean Martin,(I Love You) For Sentimental Reasons,new,,,,,31171,FALSE +Dean Martin,Ain't That a Kick in the Head,new,,,,,12685,FALSE +Dean Martin,All of Me,new,,,,,51274,FALSE +Dean Martin,Almost Like Being in Love,new,,,,,60252,FALSE +Dean Martin,Blue Moon,new,,,,,36464,FALSE +Dean Martin,Buona Sera,new,,,,,53635,FALSE +Dean Martin,Dream a Little Dream of Me,new,,,,,48049,FALSE +Dean Martin,Everybody Loves Somebody,existing,,,,,,FALSE +Dean Martin,I Can't Give You Anything but Love,new,,,,,27513,FALSE +Dean Martin,I Left My Heart in San Francisco,new,,,,,48805,FALSE +Dean Martin,King of the Road,new,,,,,36028,FALSE +Dean Martin,L.O.V.E.,new,,,,,56918,FALSE +Dean Martin,Little Ole Wine Drinker Me,existing,,,,,,FALSE +Dean Martin,Sway,existing,,,,,,FALSE +Dean Martin,That's Amore,existing,,,,,,FALSE +Dean Martin,What a Difference a Day Makes,new,,,,,54606,FALSE +Dean Martin,When You're Smiling,new,,,,,34950,FALSE +Dean Martin,You're Nobody Till Somebody Loves You,new,,,,,15502,FALSE +Death Cab For Cutie,I Will Follow You Into The Dark,new,,,,,28496,FALSE +Death Cab For Cutie,Soul Meets Body,new,,,,,15504,FALSE +Debbie Harry,French Kissing In the USA,existing,,,,,,FALSE +Deborah Harry,I Want That Man,existing,Debbie Harry,,,,,FALSE +Deep Purple,Child In Time,new,,,,,30060,FALSE +Deep Purple,Highway Star,existing,,,,,,FALSE +Deep Purple,Hush,new,,,,,51930,FALSE +Deep Purple,Perfect Strangers,new,,,,,48851,FALSE +Deep Purple,Smoke On The Water,existing,,,,,,FALSE +Deep Purple,Space Truckin',new,,,,,46358,FALSE +Def Leppard,Animal,new,,,,,19977,FALSE +Def Leppard,Bringin' On the Heartbreak,new,,,,,42531,FALSE +Def Leppard,Foolin',new,,,,,62027,FALSE +Def Leppard,Hysteria,new,,,,,35382,FALSE +Def Leppard,Love Bites,new,,,,,15512,FALSE +Def Leppard,Photograph,new,,,,,35253,FALSE +Def Leppard,Pour Some Sugar On Me,existing,,,,,,FALSE +Def Leppard,Rock of Ages,new,,,,,49664,FALSE +Deftones,Be Quiet And Drive (Far Away),new,,,,,64742,FALSE +Deftones,Change (In the House of Flies),new,,,,,55466,FALSE +Deftones,Cherry Waves,new,,,,,82858,FALSE +Deftones,My Own Summer (Shove It),new,,,,,63893,FALSE +Deftones,Sextape,new,,,,,75668,FALSE +Del Amitri,Always the Last To Know,existing,,,,,,FALSE +Del Amitri,Nothing Ever Happens,existing,,,,,,FALSE +Del Amitri,Roll to Me,new,,,,,10827,FALSE +Del Shannon,Answer to Everything,existing,,,,,,FALSE +Del Shannon,Hats off To Larry,existing,,,,,,FALSE +Del Shannon,Little Town Flirt,existing,,,,,,FALSE +Del Shannon,Runaway,existing,,,,,,FALSE +Deloris & The Sisters,Spread the Love Around,existing,,,,,,FALSE +Demi Lovato,Confident,new,,,,,50142,FALSE +Demi Lovato,Cool for the Summer,new,,,,,49521,FALSE +Demi Lovato,Give Your Heart a Break,new,,,,,38776,FALSE +Demi Lovato,Heart Attack,existing,,,,,,FALSE +Demi Lovato,Let It Go,existing,,,,,,FALSE +Demi Lovato,Really Don't Care,new,,,,,44585,FALSE +Demi Lovato,Solo,new,,,,,24113,FALSE +Demi Lovato,Sorry Not Sorry,new,,,,,53804,FALSE +Deniece Williams,Let's Hear It for the Boy,existing,,,,,,FALSE +Dennis Brown,Love Has Found It's Way,existing,,,,,,FALSE +Depeche Mode,Behind the Wheel,existing,,,,,,FALSE +Depeche Mode,Blasphemous Rumours,new,,,,,71996,FALSE +Depeche Mode,Enjoy the Silence,existing,,,,,,FALSE +Depeche Mode,Everything Counts,existing,,,,,,FALSE +Depeche Mode,I Feel You,existing,,,,,,FALSE +Depeche Mode,It's No Good,new,,,,,10236,FALSE +Depeche Mode,Just Can't Get Enough,existing,,,,,,FALSE +Depeche Mode,Master and Servant,new,,,,,20885,FALSE +Depeche Mode,Never Let Me Down Again,new,,,,,61943,FALSE +Depeche Mode,Never Let Me Down,existing,,,,,,FALSE +Depeche Mode,People Are People,new,,,,,9976,FALSE +Depeche Mode,Personal Jesus,new,,,,,12804,FALSE +Depeche Mode,Policy of Truth,new,,,,,20886,FALSE +Depeche Mode,Precious,new,,,,,20758,FALSE +Depeche Mode,Shake the Disease,existing,,,,,,FALSE +Depeche Mode,Strangelove,existing,,,,,,FALSE +Depeche Mode,World In My Eyes,existing,,,,,,FALSE +Derek And The Dominos,Layla,existing,,,,,,FALSE +Derek and the Dominos,Little Wing,new,Derek And The Dominos,,,,58030,FALSE +Derek and the Dominos,Nobody Knows You When You're Down and Out,new,Derek And The Dominos,,,,59209,FALSE +Dermot Kennedy,Better Days,new,,,,,67019,FALSE +Dermot Kennedy,Giants,new,,,,,62038,FALSE +Dermot Kennedy,Kiss Me,new,,,,,71677,FALSE +Dermot Kennedy,Outnumbered,new,,,,,59303,FALSE +Dermot Kennedy,Power Over Me,new,,,,,57768,FALSE +Dermot Kennedy,Something to Someone,new,,,,,72746,FALSE +Desmond Dekker & The Aces,Israelites,existing,,,,,,FALSE +Destiny's Child,"Bills, Bills, Bills",new,,,,,8703,FALSE +Destiny's Child,Bootylicious,existing,,,,,,FALSE +Destiny's Child,Independent Women Part I,new,,,,,13200,FALSE +Destiny's Child,"Jumpin, Jumpin",new,,,,,7425,FALSE +Destiny's Child,Say My Name,existing,,,,,,FALSE +Destiny's Child,Survivor,new,,,,,15158,FALSE +Detroit Spinners,Working My Way Back To You,existing,,,,,,FALSE +Devo,(I Can't Get No) Satisfaction,new,,,,,31213,FALSE +Devo,Beautiful World,new,,,,,31933,FALSE +Devo,Freedom of Choice,new,,,,,77034,FALSE +Devo,Girl U Want,new,,,,,31932,FALSE +Devo,Uncontrollable Urge,new,,,,,76820,FALSE +Devo,Whip It,existing,,,,,,FALSE +Dexy's Midnight Runners,Come On Eileen,existing,,,,,,FALSE +Dexy's Midnight Runners,Geno,existing,,,,,,FALSE +Dexy's Midnight Runners,Jackie Wilson,existing,,,,,,FALSE +Diana Ross,Chain Reaction,existing,,,,,,FALSE +Diana Ross,Endless Love,existing,,,,,,FALSE +Diana Ross,I'm Coming Out,existing,,,,,,FALSE +Diana Ross,I'm Still Waiting,existing,,,,,,FALSE +Diana Ross,Theme from Mahogany - Do You Know Where You're Going to ?,existing,,,,,,FALSE +Diana Ross,Upside Down,existing,,,,,,FALSE +Diana Ross & The Supremes,Stop! In the Name of Love,existing,,,,,,FALSE +Diana Ross & The Supremes,Where Did Our Love Go ?,existing,,,,,,FALSE +Dido,Here With Me,new,,,,,7593,FALSE +Dido,Life For Rent,new,,,,,5224,FALSE +Dido,Thank You,new,,,,,7698,FALSE +Dido,White Flag,existing,,,,,,FALSE +Die Toten Hosen,Auld Lang Syne,existing,,,,,,FALSE +Dierks Bentley,5-1-5-0,new,,,,,41178,FALSE +Dierks Bentley,5150,existing,,,,,,FALSE +Dierks Bentley,Beers on Me,new,,,,,66053,FALSE +Dierks Bentley,Drunk On A Plane,new,,,,,49650,FALSE +Dierks Bentley,Somewhere on a Beach,new,,,,,51209,FALSE +Dierks Bentley,What Was I Thinkin,existing,,,,,,FALSE +Dio,Holy Diver,new,,,,,49078,FALSE +Dio,Rainbow in the Dark,new,,,,,51334,FALSE +Dio,The Last in Line,new,,,,,57806,FALSE +Dio,We Rock,new,,,,,63417,FALSE +Dion & The Belmonts,Runaround Sue,existing,,,,,,FALSE +Dion & The Belmonts,Teenager In Love,existing,,,,,,FALSE +Dion & The Belmonts,Wanderer,existing,,,,,,FALSE +Dionne Warwick,Do You Know the Way To San Jose?,existing,,,,,,FALSE +Dionne Warwick,Heartbreaker,existing,,,,,,FALSE +Dionne Warwick,House Is Not a Home,existing,,,,,,FALSE +Diplo,Don't Forget My Love,new,,,,,35245,FALSE +Diplo,Heartbroken,new,,,,,76861,FALSE +Diplo,Heartless,new,,,,,60186,FALSE +Diplo,Use Me (Brutal Hearts),new,,,,,75258,FALSE +Dire Straits,Brothers In Arms,existing,,,,,,FALSE +Dire Straits,Down to the Waterline,new,,,,,47335,FALSE +Dire Straits,Money For Nothing,existing,,,,,,FALSE +Dire Straits,Private Investigations,existing,,,,,,FALSE +Dire Straits,Romeo And Juliet,existing,,,,,,FALSE +Dire Straits,Skateaway,existing,,,,,,FALSE +Dire Straits,So Far Away,new,,,,,11917,FALSE +Dire Straits,Sultans Of Swing,existing,,,,,,FALSE +Dire Straits,Tunnel Of Love,existing,,,,,,FALSE +Dire Straits,Walk Of Life,existing,,,,,,FALSE +Disney,A Dream Is A Wish Your Heart Makes (A Cappella),existing,,,,,,FALSE +Disney,A Little Patch Of Heaven (A Cappella),existing,,,,,,FALSE +Disney's Dumbo,When I See An Elephant Fly (A Cappella),existing,Disney,,,,,FALSE +Disney's Toy Story,When She Loved Me (A Cappella),existing,Disney,,,,,FALSE +Disturbed,Down with the Sickness,new,,,,,24224,FALSE +Disturbed,Indestructible,new,,,,,71693,FALSE +Disturbed,Stricken,new,,,,,15550,FALSE +Disturbed,Ten Thousand Fists,new,,,,,75021,FALSE +Disturbed,The Sound of Silence (Cyril remix),new,,,,,79947,FALSE +Disturbed,The Sound of Silence,new,,,,,50491,FALSE +Dixie Chicks,Landslide (Duet),existing,,,,,,FALSE +Dixie Chicks,Travelin Soldier,existing,,,,,,FALSE +Dixieland Boys,Alexander's Ragtime Band,existing,,,,,,FALSE +Dixieland Boys,Down By The Riverside,existing,,,,,,FALSE +Dixieland Boys,James Street Funeral March,existing,,,,,,FALSE +Dixieland Boys,Twelfth Street Rag,existing,,,,,,FALSE +Dizzee Rascal,Bonkers,new,,,,,22788,FALSE +Dizzee Rascal,Dance wiv Me,new,,,,,20093,FALSE +Dizzee Rascal Feat. Calvin Harris,Dance Wiv Me,existing,Dizzee Rascal,,,,,FALSE +Dobie Gray,Drift Away,new,,,,,33938,FALSE +Doja Cat,Agora Hills,new,,,,,77432,FALSE +Doja Cat,Boss Btch,new,,,,,61358,FALSE +Doja Cat,Kiss Me More,new,,,,,64976,FALSE +Doja Cat,Need to Know,new,,,,,65995,FALSE +Doja Cat,Paint the Town Red,new,,,,,76515,FALSE +Doja Cat,Streets,new,,,,,40336,FALSE +Doja Cat,Woman,new,,,,,36137,FALSE +Doja Cat,You Right,new,,,,,65448,FALSE +Dokken,Alone Again,new,,,,,63803,FALSE +Dokken,Breaking the Chains,new,,,,,28534,FALSE +Dokken,Dream Warriors,new,,,,,64972,FALSE +Dokken,In My Dreams,new,,,,,65210,FALSE +Dokken,It's Not Love,existing,,,,,,FALSE +Dokken,Unchain the Night,new,,,,,69833,FALSE +Dolly Parton,9 To 5,existing,,,,,,FALSE +Dolly Parton,Here You Come Again,new,,,,,14533,FALSE +Dolly Parton,I Will Always Love You (duet),new,,,,,10730,FALSE +Dolly Parton,Islands In The Stream,existing,,,,,,FALSE +Dolly Parton,Jolene,existing,,,,,,FALSE +Don Felder,Heavy Metal (Takin' a Ride),new,,,,,69742,FALSE +Don Gibson,Sea of Heartbreak,existing,,,,,,FALSE +Don Henley,All She Wants To Do Is Dance,new,,,,,32190,FALSE +Don Henley,Boys of Summer,existing,,,,,,FALSE +Don Henley,Dirty Laundry,new,,,,,32191,FALSE +Don Henley,New York Minute,new,,,,,32193,FALSE +Don Henley,Sunset Grill,new,,,,,32195,FALSE +Don Henley,The End of the Innocence,new,,,,,32197,FALSE +Don Henley,The Heart of the Matter,new,,,,,27566,FALSE +Don McLean,American Pie,existing,,,,,,FALSE +Don Williams,I Believe in You,new,,,,,26338,FALSE +Don Williams,To Be Your Man,existing,,,,,,FALSE +Don Williams,Tulsa Time,new,,,,,15573,FALSE +Donald O'Connor,Make 'Em Laugh (A Cappella),existing,,,,,,FALSE +Donna Summer,Bad Girls,existing,,,,,,FALSE +Donna Summer,Hot Stuff,existing,,,,,,FALSE +Donna Summer,I Feel Love,new,,,,,13072,FALSE +Donna Summer,Last Dance,new,,,,,10359,FALSE +Donna Summer,On the Radio,existing,,,,,,FALSE +Donna Summer,She Works Hard for the Money,new,,,,,8650,FALSE +Donnie Iris,Ah Leah,new,,,,,58419,FALSE +Donnie Iris,Love Is Like a Rock,new,,,,,70916,FALSE +Donovan,Hurdy Gurdy Man,new,,,,,69712,FALSE +Donovan,Mellow Yellow,new,,,,,34671,FALSE +Donovan,Season of the Witch,new,,,,,62692,FALSE +Donovan,Sunshine Superman,new,,,,,34674,FALSE +Doris Day,Deadwood Stage,existing,,,,,,FALSE +Doris Day,Que Sera Sera(Whatever Will Be Will Be),existing,,,,,,FALSE +Dorothy Moore,Misty Blue,existing,,,,,,FALSE +Dr. Dre,Forgot About Dre,new,,,,,54953,FALSE +Dr. Dre,I Need a Doctor,new,,,,,36037,FALSE +Dr. Dre,Keep Their Heads Ringin',new,,,,,35796,FALSE +Dr. Dre,Nuthin' but a 'G' Thang,new,,,,,55041,FALSE +Dr. Dre,Still D.R.E.,new,,,,,55748,FALSE +Dr. Dre,Super Bowl LVI Halftime Show,new,,,,,69460,FALSE +Dr. Dre,The Next Episode,new,,,,,63930,FALSE +Dr. Dre,What's the Difference,new,,,,,80166,FALSE +Dr. Dre,Xxplosive,new,,,,,68724,FALSE +Dr. Feelgood,Milk & Alcohol,existing,,,,,,FALSE +Dr. Hook,A Little Bit More,existing,,,,,,FALSE +Dr. Hook,If Not You,existing,,,,,,FALSE +Dr. Hook,Sylvia's Mother,existing,,,,,,FALSE +Dr. Hook,When You're In Love With a Beautiful Woman,existing,,,,,,FALSE +Dr. Hook,Wild Colonial Boy,existing,,,,,,FALSE +Dr. Hook & The Medicine Show,Sharing the Night Together,new,,,,,31788,FALSE +Dr. Hook & The Medicine Show,The Cover of the Rolling Stone,new,,,,,7532,FALSE +Dr. Hook & The Medicine Show,When You're in Love with a Beautiful Woman,new,,,,,13759,FALSE +Dr. John,Iko Iko,new,,,,,72599,FALSE +Dragon Ball (),Cha-La Head-Cha-La () (2005 version),new,Dragon Ball,,,,65128,FALSE +Dragon Ball (),Cha-La Head-Cha-La (),new,Dragon Ball,,,,64778,FALSE +Dragon Ball (),Dan dan kokoro hikareteku (DAN DAN ),new,Dragon Ball,,,,79049,FALSE +Dragon Ball (),Du wirst unbesiegbar sein,new,Dragon Ball,,,,82627,FALSE +Drake,All Me,new,,,,,59064,FALSE +Drake,Best I Ever Had,new,,,,,23342,FALSE +Drake,Child's Play,new,,,,,78178,FALSE +Drake,Controlla,new,,,,,55275,FALSE +Drake,Fake Love,new,,,,,55170,FALSE +Drake,Family Matters,new,,,,,82022,FALSE +Drake,Fancy,new,,,,,82640,FALSE +Drake,Find Your Love,new,,,,,31040,FALSE +Drake,First Person Shooter,new,,,,,78995,FALSE +Drake,Forever,new,,,,,25292,FALSE +Drake,God's Plan,new,,,,,55200,FALSE +Drake,HYFR (Hell Ya Fucking Right),new,,,,,69578,FALSE +Drake,Headlines,new,,,,,45714,FALSE +Drake,"Hold On, We're Going Home",new,,,,,44950,FALSE +Drake,Hotline Bling,new,,,,,50178,FALSE +Drake,In My Feelings,new,,,,,56074,FALSE +Drake,Knife Talk,new,,,,,71088,FALSE +Drake,Marvin's Room,new,,,,,60130,FALSE +Drake,Massive,new,,,,,71193,FALSE +Drake,Nice for What,new,,,,,55565,FALSE +Drake,Nonstop,new,,,,,64048,FALSE +Drake,One Dance,new,,,,,51212,FALSE +Drake,Over,new,,,,,29583,FALSE +Drake,Passionfruit,new,,,,,53132,FALSE +Drake,Rich Baby Daddy,new,,,,,77831,FALSE +Drake,Rich Flex,new,,,,,73038,FALSE +Drake,Search & Rescue,new,,,,,75084,FALSE +Drake,Shot for Me,new,,,,,78638,FALSE +Drake,Slime You Out,new,,,,,77875,FALSE +Drake,Spin Bout U,new,,,,,81716,FALSE +Drake,Started From The Bottom,new,,,,,42973,FALSE +Drake,Sticky,new,,,,,71601,FALSE +Drake,Take Care,new,,,,,38928,FALSE +Drake,The Motto,new,,,,,67119,FALSE +Drake,Too Good,new,,,,,51437,FALSE +Drake,Toosie Slide,new,,,,,81323,FALSE +Drake,Up All Night,new,,,,,75997,FALSE +Drake,Wants and Needs (clean),new,,,,,31227,FALSE +Drake,Wants and Needs,new,,,,,71641,FALSE +Drake,Way 2 Sexy,new,,,,,67351,FALSE +Drake,Worst Behavior,new,,,,,47342,FALSE +Drake,You Broke My Heart,new,,,,,78896,FALSE +Dream Theater,Another Day,new,,,,,63415,FALSE +Dream Theater,Pull Me Under,new,,,,,58991,FALSE +Drive-By Truckers,Goddamn Lonely Love,new,,,,,83246,FALSE +Drive-By Truckers,Outfit,new,,,,,82543,FALSE +Dropkick Murphys,I'm Shipping Up To Boston,existing,The Dropkick Murphys,,,,,FALSE +Dropkick Murphys,Rose Tattoo,new,The Dropkick Murphys,,,,55573,FALSE +Dropkick Murphys,The State of Massachusetts,new,The Dropkick Murphys,,,,72172,FALSE +Dua Lipa,Cold Heart (PNAU remix),new,,,,,66024,FALSE +Dua Lipa,Don't Start Now,new,,,,,59760,FALSE +Dua Lipa,Houdini,new,,,,,78085,FALSE +Dua Lipa,Levitating,new,,,,,61060,FALSE +Dua Lipa,New Rules,new,,,,,53752,FALSE +Dua Lipa,Training Season,new,,,,,79760,FALSE +Duan Stephenson,Border,existing,,,,,,FALSE +Duffy,Mercy,existing,,,,,,FALSE +Duffy,Warwick Avenue,existing,,,,,,FALSE +Duke Ellington,It Don't Mean a Thing (If It Ain't Got That Swing),new,,,,,77341,FALSE +Duran Duran,A View to a Kill,new,,,,,14221,FALSE +Duran Duran,Girls On Film,existing,,,,,,FALSE +Duran Duran,Hungry Like the Wolf,existing,,,,,,FALSE +Duran Duran,Is There Something I Should Know ?,existing,,,,,,FALSE +Duran Duran,New Moon on Monday,new,,,,,68627,FALSE +Duran Duran,Notorious,new,,,,,36127,FALSE +Duran Duran,Ordinary World,new,,,,,13613,FALSE +Duran Duran,Reflex,existing,,,,,,FALSE +Duran Duran,Rio,existing,,,,,,FALSE +Duran Duran,Save A Prayer,existing,,,,,,FALSE +Duran Duran,The Wild Boys,new,,,,,13747,FALSE +Duran Duran,Union of the Snake,new,,,,,65377,FALSE +Duran Duran,View To a Kill,existing,,,,,,FALSE +Dustin Lynch,Small Town Boy,new,,,,,49110,FALSE +Dustin Lynch,Thinking 'Bout You,new,,,,,67847,FALSE +Dusty Springfield,I Close My Eyes & Count to Ten,existing,,,,,,FALSE +Dusty Springfield,I Just Don't Know What to Do With Myself,existing,,,,,,FALSE +Dusty Springfield,I Only Wanna Be With You,existing,,,,,,FALSE +Dusty Springfield,I'm Going Back,existing,,,,,,FALSE +Dusty Springfield,Look of Love,existing,,,,,,FALSE +Dusty Springfield,Son of a Preacher Man,existing,,,,,,FALSE +Dusty Springfield,Take Another Little Piece of My Heart,existing,,,,,,FALSE +Dusty Springfield,What Are You Doing the Rest of Your Life?,existing,,,,,,FALSE +Dusty Springfield,Wishin' & Hopin',existing,,,,,,FALSE +Dusty Springfield,You Don't Have to Say You Love Me,existing,,,,,,FALSE +Dwight Yoakam,A Thousand Miles From Nowhere,new,,,,,5886,FALSE +Dwight Yoakam,Fast As You,new,,,,,6041,FALSE +Dwight Yoakam,Guitars,existing,,,,,,FALSE +EMF,Unbelievable,existing,,,,,,FALSE +Eagles,Desperado (A Cappella),existing,The Eagles,,,,,FALSE +Eagles,One of These Nights,new,The Eagles,,,,6145,FALSE +Eagles,The Long Run,new,The Eagles,,,,25258,FALSE +"Earth, Wind & Fire",Sing a Song,new,,,,,20740,FALSE +Earth Wind And Fire,After The Love Has Gone,existing,,,,,,FALSE +Earth Wind And Fire,Got To Get You Into My Life,existing,,,,,,FALSE +Earth Wind And Fire,September,existing,,,,,,FALSE +Earth Wind And Fire,Shining Star,existing,,,,,,FALSE +Earth Wind And Fire,That's The Way Of The World,existing,,,,,,FALSE +Eartha Kitt,C'est Si Bon,new,,,,,29141,FALSE +Eartha Kitt,Champagne Taste (live),new,,,,,71879,FALSE +Eartha Kitt,I Don't Care,new,,,,,46099,FALSE +Eartha Kitt,I Want to Be Evil,new,,,,,38200,FALSE +Eartha Kitt,I'd Rather Be Burned As a Witch,new,,,,,59187,FALSE +Eartha Kitt,Le danseur de charleston,new,,,,,39931,FALSE +Eartha Kitt,Santa Baby,existing,,,,,,FALSE +Eartha Kitt,This Is My Life,new,,,,,26534,FALSE +Eartha Kitt,Where Is My Man,new,,,,,20938,FALSE +East 17,Stay Another Day,existing,,,,,,FALSE +Eazy-E,Boyz-n-the-Hood,new,,,,,51733,FALSE +Eazy-E,Gimmie That Nutt,new,,,,,67307,FALSE +Eazy-E,Real Muthaphuckkin G's,new,,,,,67494,FALSE +Echo & The Bunnymen,Killing Moon,existing,,,,,,FALSE +Echo & The Bunnymen,Lips Like Sugar,new,,,,,63610,FALSE +Ed Sheeran,Bad Habits,new,,,,,65438,FALSE +Ed Sheeran,Castle on the Hill,new,,,,,52435,FALSE +Ed Sheeran,Don't,existing,,,,,,FALSE +Ed Sheeran,Galway Girl,new,,,,,52822,FALSE +Ed Sheeran,I Don't Care,new,,,,,58271,FALSE +Ed Sheeran,I See Fire,existing,,,,,,FALSE +Ed Sheeran,Perfect (acoustic),new,,,,,59295,FALSE +Ed Sheeran,Perfect,new,,,,,52796,FALSE +Ed Sheeran,Photograph,new,,,,,47400,FALSE +Ed Sheeran,Shape of You,new,,,,,52432,FALSE +Ed Sheeran,Shivers,new,,,,,66223,FALSE +Ed Sheeran,Sing,existing,,,,,,FALSE +Ed Sheeran,Thinking Out Loud,existing,,,,,,FALSE +Eddie Arnold,Make the World Go Away,existing,,,,,,FALSE +Eddie Cochran,C'Mon Everybody,existing,,,,,,FALSE +Eddie Cochran,Three Steps To Heaven,existing,,,,,,FALSE +Eddie Floyd,Knock On Wood,existing,,,,,,FALSE +Eddie Money,Gimme Some Water,existing,,,,,,FALSE +Eddie Money,Shakin',new,,,,,55864,FALSE +Eddie Money,Take Me Home Tonight,new,,,,,40115,FALSE +Eddie Money,Think I'm in Love,new,,,,,59316,FALSE +Eddie Money,Two Tickets To Paradise,existing,,,,,,FALSE +Eddie Rabbitt,Drivin My Life Away,existing,,,,,,FALSE +Eddie Rabbitt,I Love A Rainy Night,existing,,,,,,FALSE +Eddy Grant,Electric Avenue,existing,,,,,,FALSE +Edie Brickell,What I Am,existing,,,,,,FALSE +Edison Lighthouse,Love Grows Where My Rosemary Goes,existing,,,,,,FALSE +Edit Piaf,Non Je Ne Regrette Rien,existing,Edith Piaf,,,,,FALSE +Edith Piaf,La Vie En Rose - (English Version),existing,,,,,,FALSE +Edith Piaf,La Vie En Rose,existing,,,,,,FALSE +Edward Sharpe And The Magnetic Zeros,Home,existing,,,,,,FALSE +Edwin Starr,Stop Her On Sight - S.O.S,existing,,,,,,FALSE +Edwin Starr,War,existing,,,,,,FALSE +Elaine Page & Barbara Dickson,I Know Him so Well,existing,,,,,,FALSE +Elastica,Connection,new,,,,,52457,FALSE +Elbow,One Day Like This,existing,,,,,,FALSE +Electric Callboy,Pump It,new,,,,,78337,FALSE +Electric Callboy,We Got the Moves,new,,,,,79678,FALSE +Electric Light Orchestra,Can't Get It Out of My Head,new,,,,,55835,FALSE +Electric Light Orchestra,Don't Bring Me Down,existing,,,,,,FALSE +Electric Light Orchestra,Evil Woman,new,,,,,27718,FALSE +Electric Light Orchestra,Hold On Tight,existing,,,,,,FALSE +Electric Light Orchestra,Livin Thing,existing,,,,,,FALSE +Electric Light Orchestra,Long Black Road,existing,,,,,,FALSE +Electric Light Orchestra,Mr. Blue Sky,existing,,,,,,FALSE +Electric Light Orchestra,Roll Over Beethoven,existing,,,,,,FALSE +Electric Light Orchestra,Strange Magic,new,,,,,61040,FALSE +Electric Light Orchestra,Sweet Talkin' Woman,new,,,,,59314,FALSE +Electric Light Orchestra,Telephone Line,existing,,,,,,FALSE +Electric Light Orchestra,Turn to Stone,new,,,,,56363,FALSE +Electric Light Orchestra,Wild West Hero,existing,,,,,,FALSE +Elis Regina,Mas Que Nada,existing,,,,,,FALSE +Elkie Brooks,Fool If You Think It's Over,existing,,,,,,FALSE +Elkie Brooks,Pearl's a Singer,existing,,,,,,FALSE +Ella Fitzgerald,A Night in Tunisia,new,,,,,37423,FALSE +Ella Fitzgerald,"A-Tisket, A-Tasket",new,,,,,17617,FALSE +Ella Fitzgerald,All of Me,new,,,,,43756,FALSE +Ella Fitzgerald,"Bewitched, Bothered and Bewildered",new,,,,,47858,FALSE +Ella Fitzgerald,Blue Moon,new,,,,,35331,FALSE +Ella Fitzgerald,Caravan,new,,,,,29370,FALSE +Ella Fitzgerald,Cheek to Cheek,new,,,,,6993,FALSE +Ella Fitzgerald,Cry Me a River,new,,,,,39689,FALSE +Ella Fitzgerald,Dream a Little Dream of Me,new,,,,,33657,FALSE +Ella Fitzgerald,Embraceable You,new,,,,,64618,FALSE +Ella Fitzgerald,Everytime We Say Goodbye,existing,,,,,,FALSE +Ella Fitzgerald,Georgia On My Mind,existing,,,,,,FALSE +Ella Fitzgerald,God Bless the Child,new,,,,,58410,FALSE +Ella Fitzgerald,I Got Rhythm,new,,,,,25695,FALSE +Ella Fitzgerald,I Only Have Eyes for You,new,,,,,27348,FALSE +Ella Fitzgerald,I've Got My Love to Keep Me Warm,new,,,,,8414,FALSE +Ella Fitzgerald,I've Got You Under My Skin,new,,,,,72602,FALSE +Ella Fitzgerald,It Don't Mean a Thing,new,,,,,48650,FALSE +Ella Fitzgerald,Let's Call the Whole Thing Off,new,,,,,8411,FALSE +Ella Fitzgerald,Mack The Knife,existing,,,,,,FALSE +Ella Fitzgerald,Night And Day,existing,,,,,,FALSE +Ella Fitzgerald,Off Key (Desafinado),new,,,,,25024,FALSE +Ella Fitzgerald,Satin Doll,existing,,,,,,FALSE +Ella Fitzgerald,Someone To Watch Over Me,existing,,,,,,FALSE +Ella Fitzgerald,Stormy Weather,existing,,,,,,FALSE +Ella Fitzgerald,Summertime,new,,,,,16317,FALSE +Ella Fitzgerald,Take The A Train,existing,,,,,,FALSE +Ella Fitzgerald,The Lady Is A Tramp,existing,,,,,,FALSE +Ella Fitzgerald,The Thrill Is Gone,new,,,,,51953,FALSE +Ella Fitzgerald,They Can't Take That Away from Me,new,,,,,46245,FALSE +Ella Fitzgerald,You Took Advantage Of Me (A Cappella),existing,,,,,,FALSE +Ella Henderson,Alibi,new,,,,,79710,FALSE +Ella Henderson,Ghost,existing,,,,,,FALSE +Ella Langley,Country Boy's Dream Girl,new,,,,,83106,FALSE +Ella Langley,You Look Like You Love Me,new,,,,,82143,FALSE +Elle King,America's Sweetheart,new,,,,,50965,FALSE +Elle King,Drunk (And I Don't Wanna to Go Home),new,,,,,64066,FALSE +Elle King,Ex's & Oh's,new,,,,,49067,FALSE +Ellie Goulding,Burn,existing,,,,,,FALSE +Ellie Goulding,Hate Me,new,,,,,77420,FALSE +Ellie Goulding,How Long Will I Love You,new,,,,,45414,FALSE +Ellie Goulding,How Long Will i Love You?,existing,,,,,,FALSE +Ellie Goulding,Lights,existing,,,,,,FALSE +Ellie Goulding,Love Me Like You Do,new,,,,,48548,FALSE +Elliott Smith,Between the Bars,new,,,,,73140,FALSE +Elliott Smith,Waltz #2 (XO),new,,,,,40590,FALSE +Ellis Island,With A Little Help from My Friends,existing,,,,,,FALSE +Elton John,Are You Ready for Love,existing,,,,,,FALSE +Elton John,Bennie And The Jets,existing,,,,,,FALSE +Elton John,Blue Eyes,existing,,,,,,FALSE +Elton John,Border Song,new,,,,,52965,FALSE +Elton John,Candle In the Wind,existing,,,,,,FALSE +Elton John,Circle of Life,existing,,,,,,FALSE +Elton John,Crocodile Rock,existing,,,,,,FALSE +Elton John,Daniel,existing,,,,,,FALSE +Elton John,Don't Go Breaking My Heart,existing,,,,,,FALSE +Elton John,Don't Let The Sun Go Down On Me,existing,,,,,,FALSE +Elton John,Goodbye Yellow Brick Road,new,,,,,6128,FALSE +Elton John,Honky Cat,existing,,,,,,FALSE +Elton John,I Guess That's Why They Call It The Blues,existing,,,,,,FALSE +Elton John,I'm Still Standing,existing,,,,,,FALSE +Elton John,Levon,existing,,,,,,FALSE +Elton John,Madman Across the Water,new,,,,,57846,FALSE +Elton John,Mona Lisas and Mad Hatters,new,,,,,64363,FALSE +Elton John,Philadelphia Freedom,new,,,,,7525,FALSE +Elton John,Rocket Man,existing,,,,,,FALSE +Elton John,Sad Songs Say So Much,existing,,,,,,FALSE +Elton John,Saturday Night's Alright For Fighting,existing,,,,,,FALSE +Elton John,Someone Saved My Life Tonight,new,,,,,17636,FALSE +Elton John,Step Into Christmas,existing,,,,,,FALSE +Elton John,Take Me to the Pilot,new,,,,,57224,FALSE +Elton John,The Bitch is Back,new,,,,,17628,FALSE +Elton John,This Train Don't Stop There Anymore,existing,,,,,,FALSE +Elton John,Tiny Dancer,existing,,,,,,FALSE +Elton John,Your Song,existing,,,,,,FALSE +Elton John & Kd Lang,Teardrops,existing,Elton John,,,,,FALSE +Elton John & Kiki Dee,Don't Go Breaking My Heart,existing,Elton John,,,,,FALSE +Elvin Bishop,Fooled Around And Fell In Love,existing,,,,,,FALSE +Elvis,A Fool Such As I (A Cappella),existing,Elvis Presley,,,,,FALSE +Elvis,I Want You,existing,Elvis Presley,,,,,FALSE +Elvis,Love Me (A Cappella),existing,Elvis Presley,,,,,FALSE +Elvis,Teddy Bear (A Cappella),existing,Elvis Presley,,,,,FALSE +Elvis Costello,(I Don't Want to Go to) Chelsea,new,,,,,32750,FALSE +Elvis Costello,"(What's So Funny 'Bout) Peace, Love, and Understanding",new,,,,,58246,FALSE +Elvis Costello,Accidents Will Happen,new,,,,,65945,FALSE +Elvis Costello,Alison,existing,,,,,,FALSE +Elvis Costello,Everyday I Write the Book,existing,,,,,,FALSE +Elvis Costello,Good Year for the Roses,new,,,,,32754,FALSE +Elvis Costello,I Can't Stand Up for Falling Down,new,,,,,32753,FALSE +Elvis Costello,Olivers Army,existing,,,,,,FALSE +Elvis Costello,Pump It Up,existing,,,,,,FALSE +Elvis Costello,Radio Radio,new,,,,,73222,FALSE +Elvis Costello,She,existing,,,,,,FALSE +Elvis Costello,Veronica,new,,,,,73150,FALSE +Elvis Costello,Watching the Detectives,new,,,,,32751,FALSE +Elvis Presley,(You're the) Devil In Disguise,existing,,,,,,FALSE +Elvis Presley,All Shook Up,existing,,,,,,FALSE +Elvis Presley,Always On My Mind,existing,,,,,,FALSE +Elvis Presley,American Trilogy,existing,,,,,,FALSE +Elvis Presley,Are You Lonesome Tonight?,existing,,,,,,FALSE +Elvis Presley,Blue Suede Shoes,existing,,,,,,FALSE +Elvis Presley,C.C. Rider,existing,,,,,,FALSE +Elvis Presley,Can't Help Falling In Love,existing,,,,,,FALSE +Elvis Presley,Crying In the Chapel,existing,,,,,,FALSE +Elvis Presley,Didja Ever,existing,,,,,,FALSE +Elvis Presley,Don't Be Cruel,existing,,,,,,FALSE +Elvis Presley,Don't,existing,,,,,,FALSE +Elvis Presley,Elvis Megamix,existing,,,,,,FALSE +Elvis Presley,G.I. Blues,existing,,,,,,FALSE +Elvis Presley,Girl of My Best Friend,existing,,,,,,FALSE +Elvis Presley,Good Luck Charm,existing,,,,,,FALSE +Elvis Presley,Guitar Man,existing,,,,,,FALSE +Elvis Presley,Heartbreak Hotel,existing,,,,,,FALSE +Elvis Presley,Hound Dog,existing,,,,,,FALSE +Elvis Presley,I Can't Help Falling In Love With You,existing,,,,,,FALSE +Elvis Presley,I Need Your Love Tonight,existing,,,,,,FALSE +Elvis Presley,If Everyday Was Like Christmas ,existing,,,,,,FALSE +Elvis Presley,If I Can Dream,existing,,,,,,FALSE +Elvis Presley,In the Ghetto,existing,,,,,,FALSE +Elvis Presley,It's Now Or Never,existing,,,,,,FALSE +Elvis Presley,Jailhouse Rock,existing,,,,,,FALSE +Elvis Presley,Kiss Me Quick,existing,,,,,,FALSE +Elvis Presley,Little Sister,existing,,,,,,FALSE +Elvis Presley,Love Letters,existing,,,,,,FALSE +Elvis Presley,Love Me Tender,existing,,,,,,FALSE +Elvis Presley,Love Me,existing,,,,,,FALSE +Elvis Presley,Marie's the Name of His Latest Flame,existing,,,,,,FALSE +Elvis Presley,Mess of Blues,existing,,,,,,FALSE +Elvis Presley,One Night,existing,,,,,,FALSE +Elvis Presley,Pledge My Love,existing,,,,,,FALSE +Elvis Presley,Polk Salad Annie,existing,,,,,,FALSE +Elvis Presley,Return To Sender,existing,,,,,,FALSE +Elvis Presley,Rock a Hula Baby,existing,,,,,,FALSE +Elvis Presley,She's Not You,existing,,,,,,FALSE +Elvis Presley,Suspicious Minds,existing,,,,,,FALSE +Elvis Presley,Teddy Bear,existing,,,,,,FALSE +Elvis Presley,That's Alright,existing,,,,,,FALSE +Elvis Presley,Viva Las Vegas,existing,,,,,,FALSE +Elvis Presley,Way Down,existing,,,,,,FALSE +Elvis Presley,Wear My Ring Around Your Neck,existing,,,,,,FALSE +Elvis Presley,Wonder of You,existing,,,,,,FALSE +Elvis Presley,Wooden Heart,existing,,,,,,FALSE +Elvis Presley,Your Cheating Heart,existing,,,,,,FALSE +Emeli Sande,Clown,new,,,,,40155,FALSE +Emeli Sande,Next To Me,existing,,,,,,FALSE +Emeli Sande,Next to Me,new,,,,,39659,FALSE +Emeli Sande,Read All About It (Pt. III),new,,,,,39955,FALSE +"Emerson, Lake & Palmer",C'est La Vie,new,"Emerson, Lake & Palmer",,,,64440,FALSE +"Emerson, Lake & Palmer",From the Beginning,new,"Emerson, Lake & Palmer",,,,53006,FALSE +"Emerson, Lake & Palmer","Karn Evil 9 (1st Impression, Pt 1)",new,"Emerson, Lake & Palmer",,,,63262,FALSE +"Emerson, Lake & Palmer","Karn Evil 9 (1st Impression, Pt 2)",new,"Emerson, Lake & Palmer",,,,78393,FALSE +"Emerson, Lake & Palmer",Still...You Turn Me On,new,"Emerson, Lake & Palmer",Still... You Turn Me On,,,62157,FALSE +Emerson Lake And Palmer,Lucky Man,existing,"Emerson, Lake & Palmer",,,,,FALSE +Emile Ford & The Checkmates,Counting Teardrops,existing,,,,,,FALSE +Eminem,Godzilla,new,,,,,60606,FALSE +Eminem,Houdini,new,,,,,81780,FALSE +Eminem,Lose Yourself,existing,,,,,,FALSE +Eminem,Love The Way You Lie,existing,,,,,,FALSE +Eminem,Mockingbird,new,,,,,15662,FALSE +Eminem,Stan,new,,,,,12907,FALSE +Eminem,Superman,new,,,,,15659,FALSE +Eminem,The Real Slim Shady,new,,,,,7504,FALSE +Eminem,Without Me,new,,,,,27276,FALSE +Empire of the Sun,Alive,new,Empire Of The Sun,,,,43714,FALSE +Empire of the Sun,Walking on a Dream,new,Empire Of The Sun,,,,21428,FALSE +Empire of the Sun,We Are the People,new,Empire Of The Sun,,,,22462,FALSE +En Vogue,Free Your Mind,existing,,,,,,FALSE +Engelbert Humperdinck,Last Waltz,existing,,,,,,FALSE +Engelbert Humperdinck,Les Bicyclettes De Belsize,existing,,,,,,FALSE +Engelbert Humperdinck,Man Without Love,existing,,,,,,FALSE +Engelbert Humperdinck,Release Me,existing,,,,,,FALSE +Engelbert Humperdinck,Ten Guitars,existing,,,,,,FALSE +Enrique Iglesias,Bailando,new,,,,,46986,FALSE +Enrique Iglesias,Cuando Me Enamoro,existing,,,,,,FALSE +Enrique Iglesias,Duele el corazon,new,,,,,51246,FALSE +Enrique Iglesias,Hero,existing,,,,,,FALSE +Enrique Iglesias,Loco,existing,,,,,,FALSE +Enrique Iglesias,Subeme la radio,new,,,,,52745,FALSE +Enrique Iglesias Feat. P Iitbull,I Like It,existing,Enrique Iglesias,,,,,FALSE +Enya,Orinoco Flow (Sail Away),new,,,,,21638,FALSE +Erasure,A Little Respect,existing,,,,,,FALSE +Erasure,Chains of Love,new,,,,,51587,FALSE +Erasure,Gimme Gimme Gimme,existing,,,,,,FALSE +Erasure,Oh L'Amour,existing,,,,,,FALSE +Erasure,Rain,existing,,,,,,FALSE +Erasure,Stop,existing,,,,,,FALSE +Erasure,Victim of Love,existing,,,,,,FALSE +Eric Burdon,Spill The Wine,existing,,,,,,FALSE +Eric Carmen,All by Myself,new,,,,,12541,FALSE +Eric Church,Drink In My Hand,new,,,,,38921,FALSE +Eric Church,Hell of a View,new,,,,,62717,FALSE +Eric Church,Record Year,new,,,,,51244,FALSE +Eric Church,Smoke A Little Smoke,new,,,,,38011,FALSE +Eric Church,Springsteen,new,,,,,40536,FALSE +Eric Church,Talladega,new,,,,,48144,FALSE +Eric Clapton,After Midnight,existing,,,,,,FALSE +Eric Clapton,Bad Love,existing,,,,,,FALSE +Eric Clapton,Before You Accuse Me,existing,,,,,,FALSE +Eric Clapton,Bell Bottom Blues,new,,,,,47587,FALSE +Eric Clapton,Cocaine,existing,,,,,,FALSE +Eric Clapton,Crossroads (live),new,,,,,51301,FALSE +Eric Clapton,Hold On I'm Comin',new,,,,,44640,FALSE +Eric Clapton,I Can't Stand It,new,,,,,30027,FALSE +Eric Clapton,I Shot the Sheriff,new,,,,,11922,FALSE +Eric Clapton,Knockin' on Heaven's Door,new,,,,,29870,FALSE +Eric Clapton,Lay Down Sally,existing,,,,,,FALSE +Eric Clapton,Layla - Unplugged,existing,,,,,,FALSE +Eric Clapton,Layla,existing,,,,,,FALSE +Eric Clapton,Let It Grow,new,,,,,62171,FALSE +Eric Clapton,Little Wing (live),new,,,,,61873,FALSE +Eric Clapton,Nobody Knows You When You're Down & Out,existing,,,,,,FALSE +Eric Clapton,Promises,existing,,,,,,FALSE +Eric Clapton,Riding with the King,new,,,,,17731,FALSE +Eric Clapton,Running On Faith,existing,,,,,,FALSE +Eric Clapton,Sweet Home Chicago,existing,,,,,,FALSE +Eric Clapton,Tears In Heaven (A Cappella),existing,,,,,,FALSE +Eric Clapton,Tears In Heaven,existing,,,,,,FALSE +Eric Clapton,While My Guitar Gently Weeps,new,,,,,51067,FALSE +Eric Clapton,Willie and the Hand Jive,new,,,,,24659,FALSE +Eric Clapton,Wonderful Tonight,existing,,,,,,FALSE +Eric Johnson,Cliffs Of Dover,existing,,,,,,FALSE +Ernie Ford,Sixteen Tons (A Cappella),existing,,,,,,FALSE +Erykah Badu,Appletree,new,,,,,61159,FALSE +Erykah Badu,Didn't Cha Know,new,,,,,17737,FALSE +Erykah Badu,Next Lifetime,new,,,,,43019,FALSE +Erykah Badu,On & On,new,,,,,15691,FALSE +Estelle Feat. Kanye West,American Boy,existing,,,,,,FALSE +Etta James,At Last,existing,,,,,,FALSE +Etta James,Come Rain Or Come Shine,existing,,,,,,FALSE +Etta James,I Just Want To Make Love To You,existing,,,,,,FALSE +Etta James,I'd Rather Go Blind,existing,,,,,,FALSE +Etta James,Someone To Watch Over Me,existing,,,,,,FALSE +Etta James,Stormy Weather,existing,,,,,,FALSE +Etta James,The Very Thought Of You,existing,,,,,,FALSE +Europe,Final Countdown,existing,,,,,,FALSE +Eurythmics,Here Comes the Rain Again,new,,,,,9460,FALSE +Eurythmics,Sweet Dreams,existing,,,,,,FALSE +Eurythmics,Thorn In My Side,existing,,,,,,FALSE +Eurythmics,When Tomorrow Comes,existing,,,,,,FALSE +Eurythmics,Would I Lie to You,new,,,,,9457,FALSE +Eurythmics & Aretha Franklin,Sisters Are Doing It for Themselves,existing,Eurythmics,,,,,FALSE +Eva Cassidy,Ain't No Sunshine,existing,,,,,,FALSE +Eva Cassidy,What a Wonderful World,existing,,,,,,FALSE +Evanescence,Bring Me To Life,existing,,,,,,FALSE +Evanescence,Call Me When You're Sober,new,,,,,11020,FALSE +Evanescence,Everybody's Fool,new,,,,,5258,FALSE +Evanescence,Going Under,existing,,,,,,FALSE +Evanescence,Lithium,new,,,,,11617,FALSE +Evanescence,My Immortal,existing,,,,,,FALSE +Eve,Let Me Blow Ya Mind,existing,,,,,,FALSE +Evelyn 'Champagne' King,Love Come Down,existing,,,,,,FALSE +Everclear,Father of Mine,new,,,,,9368,FALSE +Everclear,Santa Monica,new,,,,,60204,FALSE +Everlast,What It's Like,existing,,,,,,FALSE +Everly Brothers,Bye Bye,existing,The Everly Brothers,,,,,FALSE +Extreme,Get The Funk Out,new,,,,,47524,FALSE +Extreme,More Than Words,existing,,,,,,FALSE +Extreme,Rest in Peace,new,,,,,31179,FALSE +Faith Hill,Breathe,new,,,,,8802,FALSE +Faith Hill,The Rest of Our Life,new,,,,,55211,FALSE +Faith Hill,The Way You Love Me,new,,,,,8904,FALSE +Faith Hill,There You'll Be,new,,,,,7878,FALSE +Faith Hill,This Kiss,new,,,,,9912,FALSE +Faith Hill,Wild One,new,,,,,6056,FALSE +Faith No More,Easy,new,,,,,30029,FALSE +Faith No More,Epic,existing,,,,,,FALSE +Faith No More,Midlife Crisis,new,,,,,70875,FALSE +Falco,Der Kommissar,existing,,,,,,FALSE +Falco,Rock Me Amadeus,new,,,,,19251,FALSE +Fall Out Boy,Centuries,existing,,,,,,FALSE +Fall Out Boy,"Dance, Dance",new,,,,,15730,FALSE +Fall Out Boy,Immortals,new,,,,,56598,FALSE +Fall Out Boy,My Songs Know What You Did In The Dark,new,,,,,42884,FALSE +Fall Out Boy,"Sugar, We're Goin Down",new,,,,,15731,FALSE +Fall Out Boy,The Phoenix,new,,,,,44104,FALSE +Fall Out Boy,"This Ain't a Scene, It's an Arms Race",new,,,,,11761,FALSE +Fall Out Boy,Thnks Fr Th Mmrs,new,,,,,11965,FALSE +Falling in Reverse,I'm Not a Vampire,new,,,,,71062,FALSE +Falling in Reverse,Popular Monster,new,,,,,69166,FALSE +Falling in Reverse,The Drug In Me Is You,new,,,,,69141,FALSE +Falling in Reverse,Voices in My Head,new,,,,,70063,FALSE +Falling in Reverse,Watch the World Burn,new,,,,,73775,FALSE +Falling in Reverse,Zombified,new,,,,,69259,FALSE +Family Of The Year,Hero,existing,,,,,,FALSE +Fastball,The Way,new,,,,,8974,FALSE +Fatboy Slim,"Eat, Sleep, Rave, Repeat",new,,,,,45902,FALSE +Fatboy Slim,Praise You,new,,,,,8519,FALSE +Fatboy Slim,"Right Here, Right Now",new,,,,,46640,FALSE +Fatboy Slim,Rockafeller Skank,new,,,,,36266,FALSE +Father John Misty,Hollywood Forever Cemetery Sings,new,,,,,78137,FALSE +Father John Misty,Nancy from Now on,new,,,,,78617,FALSE +Father John Misty,Real Love Baby,new,,,,,80652,FALSE +Father John Misty,Total Entertainment Forever,new,,,,,78290,FALSE +Fats Domino,Ain't That A Shame,existing,,,,,,FALSE +Fats Domino,Blueberry Hill,existing,,,,,,FALSE +Fats Domino,I'm Walkin,existing,,,,,,FALSE +Fats Domino,Walkin To New Orleans,existing,,,,,,FALSE +Feist,1234,existing,,,,,,FALSE +Fergie,A Little Party Never Killed Nobody (All We Got),new,,,,,44334,FALSE +Fergie,Big Girls Don't Cry,existing,,,,,,FALSE +Fergie,Fergalicious,new,,,,,20972,FALSE +Fergie,Glamorous,new,,,,,11727,FALSE +Fergie,London Bridge,new,,,,,14666,FALSE +Fiction Factory,Feels Like Heaven,existing,,,,,,FALSE +Filter,"Hey Man, Nice Shot",new,,,,,59104,FALSE +Filter,Take a Picture,new,,,,,8827,FALSE +Final Fantasy (),1000 Words (FFX-2 Mix) (1000),new,Final Fantasy,,,,81283,FALSE +Final Fantasy (),1000 Words (FFX-2 Mix) (english version),new,Final Fantasy,,,,81282,FALSE +Final Fantasy (),Answers,new,Final Fantasy,,,,81252,FALSE +Final Fantasy (),Eyes on Me,new,Final Fantasy,,,,81939,FALSE +Final Fantasy (),Suteki da ne (Isn't It Wonderful) (),new,Final Fantasy,,,,65563,FALSE +Fine Young Cannibals,Good Thing,new,,,,,13635,FALSE +Fine Young Cannibals,She Drives Me Crazy,new,,,,,14010,FALSE +Fine Young Cannibals,Suspicious Minds,existing,,,,,,FALSE +Fiona Apple,Across The Universe,new,,,,,9298,FALSE +Fiona Apple,Criminal,new,,,,,10431,FALSE +Fiona Apple,Fast As You Can,new,,,,,8815,FALSE +Fiona Apple,Get Gone,new,,,,,83342,FALSE +Fiona Apple,I Know,new,,,,,81626,FALSE +Fiona Apple,Paper Bag,new,,,,,31360,FALSE +Fiona Apple,Shadowboxer,new,,,,,15759,FALSE +Fiona Apple,Sleep to Dream,new,,,,,63244,FALSE +First Aid Kit,Emmylou,new,,,,,59147,FALSE +First Aid Kit,My Silver Lining,new,,,,,47448,FALSE +Fitz And The Tantrums,HandClap,new,,,,,51542,FALSE +Fitz And The Tantrums,Moneygrabber,new,,,,,66176,FALSE +Fitz And The Tantrums,Out of My League,new,,,,,54099,FALSE +Fitz And The Tantrums,The Walker,existing,,,,,,FALSE +Five Finger Death Punch,A Little Bit Off,new,,,,,65018,FALSE +Five Finger Death Punch,Bad Company,existing,,,,,,FALSE +Five Finger Death Punch,House Of The Rising Sun,existing,,,,,,FALSE +Five Finger Death Punch,Jekyll And Hyde,new,,,,,50621,FALSE +Five Finger Death Punch,Lift Me Up,new,,,,,51704,FALSE +Five Finger Death Punch,Remember Everything,new,,,,,57201,FALSE +Five Finger Death Punch,Under and Over It,new,,,,,65250,FALSE +Five Finger Death Punch,Wash It All Away,new,,,,,50508,FALSE +Five Finger Death Punch,Wrong Side of Heaven,new,,,,,49543,FALSE +Five Satins,In the Still of The Night,existing,,,,,,FALSE +Five for Fighting,100 Years,new,Five For Fighting,,,,5665,FALSE +Five for Fighting,Superman (It's Not Easy),new,Five For Fighting,,,,7932,FALSE +Fleetwood Mac,As Long as You Follow,new,,,,,62450,FALSE +Fleetwood Mac,Big Love,new,,,,,20975,FALSE +Fleetwood Mac,Don't Stop,existing,,,,,,FALSE +Fleetwood Mac,Dreams,existing,,,,,,FALSE +Fleetwood Mac,Go Your Own Way,existing,,,,,,FALSE +Fleetwood Mac,Gold Dust Woman,existing,,,,,,FALSE +Fleetwood Mac,Gypsy,new,,,,,17783,FALSE +Fleetwood Mac,Hold Me,new,,,,,48269,FALSE +Fleetwood Mac,Hypnotized,new,,,,,62022,FALSE +Fleetwood Mac,Landslide,new,,,,,70102,FALSE +Fleetwood Mac,Little Lies,new,,,,,21804,FALSE +Fleetwood Mac,Oh Daddy,new,,,,,71523,FALSE +Fleetwood Mac,Rhiannon,existing,,,,,,FALSE +Fleetwood Mac,Sara,new,,,,,17781,FALSE +Fleetwood Mac,Second Hand News,existing,,,,,,FALSE +Fleetwood Mac,Silver Springs,new,,,,,9651,FALSE +Fleetwood Mac,Songbird (A Cappella),existing,,,,,,FALSE +Fleetwood Mac,Songbird,new,,,,,32952,FALSE +Fleetwood Mac,The Chain,existing,,,,,,FALSE +Fleetwood Mac,Tusk,new,,,,,47316,FALSE +Fleetwood Mac,You Make Lovin' Fun,existing,,,,,,FALSE +Fleetwood Mac,You Make Loving Fun,existing,,,,,,FALSE +Flo Rida,Club Can't Handle Me,new,,,,,32137,FALSE +Flo Rida,G.D.F.R. (Goin Down For Real),existing,,,,,,FALSE +Flo Rida,Good Feeling,new,,,,,38611,FALSE +Flo Rida,I Cry,new,,,,,41909,FALSE +Flo Rida,Low,new,,,,,19323,FALSE +Flo Rida,My House,new,,,,,50968,FALSE +Flo Rida,Right Round,new,,,,,22210,FALSE +Flo Rida,Whistle,existing,,,,,,FALSE +Flo Rida,Wild Ones,existing,,,,,,FALSE +Flogging Molly,Black Friday Rule,existing,,,,,,FALSE +Flogging Molly,Drunken Lullabies,existing,,,,,,FALSE +Flogging Molly,Salty Dog,existing,,,,,,FALSE +Flora Cash,You're Somebody Else,new,,,,,73941,FALSE +Florence & The Machine,You've Got the Love,existing,Florence + The Machine,,,,,FALSE +Florence + The Machine,Cosmic Love,new,,,,,23833,FALSE +Florence + The Machine,Shake It Out,new,,,,,38441,FALSE +Florence + The Machine,Ship To Wreck,new,,,,,49269,FALSE +Florence + The Machine,Spectrum (Remix),new,,,,,41212,FALSE +Florence And The Machine,Dog Days Are Over,existing,Florence + The Machine,,,,,FALSE +Florida Georgia Line,Anything Goes,new,,,,,43273,FALSE +Florida Georgia Line,Cruise,new,,,,,41984,FALSE +Florida Georgia Line,H.O.L.Y.,new,,,,,51250,FALSE +Florida Georgia Line,May We All,new,,,,,51867,FALSE +Florida Georgia Line,Round Here,new,,,,,44325,FALSE +Florida Georgia Line,Simple,new,,,,,55718,FALSE +Florida Georgia Line,This Is How We Roll,new,,,,,47409,FALSE +Flyleaf,All Around Me,existing,,,,,,FALSE +Flyleaf,I'm So Sick,existing,,,,,,FALSE +Focus,Hocus Pocus,new,,,,,60191,FALSE +Focus,Sylvia (Instrumental),existing,,,,,,FALSE +Foghat,I Just Wanna Make Love To You,existing,,,,,,FALSE +Foghat,Slow Ride,existing,,,,,,FALSE +Fontella Bass,Rescue Me,existing,,,,,,FALSE +Foo Fighters,All My Life,existing,,,,,,FALSE +Foo Fighters,Best of You,new,,,,,13542,FALSE +Foo Fighters,Everlong (acoustic),new,,,,,61490,FALSE +Foo Fighters,Everlong,existing,,,,,,FALSE +Foo Fighters,Learn To Fly,existing,,,,,,FALSE +Foo Fighters,Monkey Wrench,new,,,,,13984,FALSE +Foo Fighters,My Hero,new,,,,,38035,FALSE +Foo Fighters,The Pretender,existing,,,,,,FALSE +Foo Fighters,Times Like These,new,,,,,36110,FALSE +Foo Fighters,Wheels,existing,,,,,,FALSE +Foreigner,"Blue Morning, Blue Day",new,,,,,17785,FALSE +Foreigner,Cold As Ice,new,,,,,30407,FALSE +Foreigner,Dirty White Boy,new,,,,,50855,FALSE +Foreigner,Double Vision,existing,,,,,,FALSE +Foreigner,Feels Like The First Time,new,,,,,41264,FALSE +Foreigner,Head Games,new,,,,,62676,FALSE +Foreigner,Hot Blooded,existing,,,,,,FALSE +Foreigner,I Want To Know What Love Is,existing,,,,,,FALSE +Foreigner,Juke Box Hero,existing,,,,,,FALSE +Foreigner,"Long, Long Way from Home",new,,,,,62438,FALSE +Foreigner,Say You Will,new,,,,,47166,FALSE +Foreigner,Starrider,new,,,,,67467,FALSE +Foreigner,Urgent,new,,,,,21012,FALSE +Foster & Allen,After All These Years,existing,,,,,,FALSE +Foster The People,Pumped Up Kicks,existing,,,,,,FALSE +Foster the People,Call It What You Want,new,Foster The People,,,,38910,FALSE +Foster the People,Coming of Age,new,Foster The People,,,,47885,FALSE +Foster the People,Helena Beat,new,Foster The People,,,,38401,FALSE +Foster the People,Sit Next to Me,new,Foster The People,,,,61836,FALSE +Fountains Of Wayne,Stacy's Mom,existing,,,,,,FALSE +Francis Farmer & Elvis,Aura Lee (A Cappella),existing,,,,,,FALSE +Frank Ocean,Ivy,new,,,,,83339,FALSE +Frank Ocean,Lost,new,,,,,69138,FALSE +Frank Ocean,Novacane,new,,,,,56049,FALSE +Frank Ocean,Pink + White,new,,,,,77872,FALSE +Frank Ocean,Pink Matter,new,,,,,74082,FALSE +Frank Ocean,Thinkin Bout You,new,,,,,41777,FALSE +Frank Sinatra,All Of Me (A Cappella),existing,,,,,,FALSE +Frank Sinatra,Bad Bad Leroy Brown,existing,,,,,,FALSE +Frank Sinatra,Fly Me To The Moon,existing,,,,,,FALSE +Frank Sinatra,I Get A Kick Out of You,existing,,,,,,FALSE +Frank Sinatra,I'm Gonna Live Till I Die (A Cappella),existing,,,,,,FALSE +Frank Sinatra,I've Got The World On A String,existing,,,,,,FALSE +Frank Sinatra,Let Me Try Again,existing,,,,,,FALSE +Frank Sinatra,Let's Face the Music & Dance,existing,,,,,,FALSE +Frank Sinatra,Luck Be A Lady,existing,,,,,,FALSE +Frank Sinatra,My Kind of Town,existing,,,,,,FALSE +Frank Sinatra,My Way,existing,,,,,,FALSE +Frank Sinatra,New York New York,existing,,,,,,FALSE +Frank Sinatra,Saturday Night Is the Loneliest Night of the Week,existing,,,,,,FALSE +Frank Sinatra,Strangers In the Night,existing,,,,,,FALSE +Frank Sinatra,That's Life,existing,,,,,,FALSE +Frank Sinatra,The Tender Trap (A Cappella),existing,,,,,,FALSE +Frank Sinatra,The Very Thought Of You (A Cappella),existing,,,,,,FALSE +Frank Sinatra,Witchcraft (A Cappella),existing,,,,,,FALSE +Frank Sinatra,You Make Me Feel so Young,existing,,,,,,FALSE +Frank Zappa,Bobby Brown,new,,,,,26327,FALSE +Frank Zappa,Catholic Girls,new,,,,,74576,FALSE +Frank Zappa,Dancing Fool,new,,,,,26307,FALSE +Frank Zappa,Dinah-Moe Humm,new,,,,,79413,FALSE +Frank Zappa,Dirty Love,new,,,,,68138,FALSE +Frank Zappa,Don't Eat the Yellow Snow (album version),new,,,,,74385,FALSE +Frank Zappa,Don't Eat the Yellow Snow,new,,,,,73266,FALSE +Frank Zappa,Joe's Garage,new,,,,,74151,FALSE +Frank Zappa,Titties & Beer (live),new,,,,,74369,FALSE +Frank Zappa,Why Does It Hurt When I Pee,new,,,,,73459,FALSE +Frankie Goes To Hollywood,Relax,existing,,,,,,FALSE +Frankie Goes To Hollywood,Two Tribes,existing,,,,,,FALSE +Frankie Laine,High Noon,existing,,,,,,FALSE +Frankie Laine,I Believe,existing,,,,,,FALSE +Frankie Lymon & The Teenagers,Why Do Fools Fall In Love ?,existing,,,,,,FALSE +Frankie Miller,Darlin',existing,,,,,,FALSE +Frankie Valli,Grease,existing,,,,,,FALSE +Frankie Valli,My Eyes Adore You,existing,,,,,,FALSE +Frankie Vaughan,There Must Be a Way,existing,,,,,,FALSE +Franz Ferdinand,Do You Want To,new,,,,,15804,FALSE +Franz Ferdinand,No You Girls,new,,,,,22451,FALSE +Franz Ferdinand,Take Me Out,existing,,,,,,FALSE +Franz Ferdinand,This Fire,new,,,,,15805,FALSE +Fred Astaire,Santa Claus Is Coming To Town (A Cappella),existing,,,,,,FALSE +Freda Payne,Band of Gold,existing,,,,,,FALSE +Freddie Hubbard,Little Sunflower,existing,,,,,,FALSE +Free,All Right Now,existing,,,,,,FALSE +Free,My Brother Jake,existing,,,,,,FALSE +Freemasons,Uninvited,existing,,,,,,FALSE +Freiheit,Keeping the Dream Alive,existing,,,,,,FALSE +From Annie,Tomorrow,existing,Annie (Musical),,,,,FALSE +From Big Deal,Dancin' Dan (Me & My Shadow),existing,Big Deal (Musical),,,,,FALSE +From Cabaret,Cabaret,existing,Cabaret (Musical),,,,,FALSE +From Chicago,Razzle Dazzle,existing,Chicago (Musical),,,,,FALSE +From Hairspray,Good Morning Baltimore,existing,Hairspray (Musical),,,,,FALSE +From Jungle Book,I Wanna Be Like You,existing,Jungle Book (Movie),,,,,FALSE +From Les Miserables,Bring Him Home,existing,Les Miserables (Musical),,,,,FALSE +From Miss Saigon,Bui Doi,existing,Miss Saigon,,,,,FALSE +From Phantom Of The Opera,All I Ask of You,existing,Phantom Of The Opera,,,,,FALSE +From The Jersey Boys,Beggin',existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Can't Take My Eyes off Of You,existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,December 1963 (Oh What a Night),existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Sherry,existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Walk Like a Man,existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Who Loves You ?,existing,The Jersey Boys,,,,,FALSE +Frozen,For The First Time In Forever,existing,Frozen (Movie),,,,,FALSE +Fuel,Hemorrhage (In My Hands),new,,,,,7726,FALSE +Fuel,Shimmer,existing,,,,,,FALSE +Fun,Carry On,existing,,,,,,FALSE +Fun,Some Nights,existing,,,,,,FALSE +Fun,We Are Young,existing,,,,,,FALSE +Future,Like That,new,,,,,80683,FALSE +Future,Mask Off,new,,,,,65030,FALSE +Future,Turn on the Lights,new,,,,,81860,FALSE +Future,Type Shit,new,,,,,80953,FALSE +G-Eazy,I Mean It,new,,,,,73598,FALSE +G-Eazy,No Limit,new,,,,,74851,FALSE +Gabby Barrett,I Hope,new,,,,,58103,FALSE +Gabby Barrett,The Good Ones,new,,,,,59872,FALSE +Gabriella Cilmi,Sweet About Me,existing,,,,,,FALSE +Gabrielle,Give Me a Little More Time,existing,,,,,,FALSE +Gabrielle,Out of Reach,existing,,,,,,FALSE +Gabrielle Aplin,Please Don't Say You Love Me,existing,,,,,,FALSE +Galantis,Heartbreak Anthem,new,,,,,65093,FALSE +Galantis,Lighter,new,,,,,80781,FALSE +Galantis,Love on Me,new,,,,,58206,FALSE +Galantis,Peanut Butter Jelly,new,,,,,77718,FALSE +Galantis,Runaway (U & I),new,,,,,49363,FALSE +Garbage,#1 Crush,new,,,,,58663,FALSE +Garbage,Cherry Lips,existing,,,,,,FALSE +Garbage,I Think I'm Paranoid,existing,,,,,,FALSE +Garbage,Only Happy When It Rains,new,,,,,55838,FALSE +Garbage,Stupid Girl,new,,,,,10997,FALSE +Gareth Gates & The Kumars,Spirit In the Sky,existing,,,,,,FALSE +Garth Brooks,Friends In Low Places,existing,,,,,,FALSE +Gary Allan,Every Storm (Runs Out Of Rain),new,,,,,43119,FALSE +Gary Allan,Every Storm Runs Out Of Rain,existing,,,,,,FALSE +Gary Allan,Nothing on but the Radio,new,,,,,8481,FALSE +Gary Allan,Right Where I Need to Be,new,,,,,7793,FALSE +Gary Allan,Watching Airplanes,existing,,,,,,FALSE +Gary Barlow,Let Me Go,existing,,,,,,FALSE +"Gary Clark, Jr.",Bright Lights,new,,,,,62181,FALSE +"Gary Clark, Jr.",Come Together,new,,,,,55127,FALSE +"Gary Clark, Jr.",When My Train Pulls In,new,,,,,79426,FALSE +Gary Moore,Over the Hills & Far Away,existing,,,,,,FALSE +Gary Moore,Parisienne Walkways,new,,,,,26385,FALSE +Gary Moore,Still Got the Blues,new,,,,,5466,FALSE +Gary Numan,Cars,new,,,,,41696,FALSE +Gary Numan & Tubeway Army,Are Friends Electric ?,existing,Gary Numan,,,,,FALSE +Gary Puckett & The Union Gap,Young Girl,existing,,,,,,FALSE +Gatlin Brothers,All The Gold In California,existing,,,,,,FALSE +Gavin DeGraw,Chariot,new,,,,,5651,FALSE +Gavin DeGraw,I Don't Want To Be,existing,,,,,,FALSE +Gavin DeGraw,Not Over You,new,,,,,37880,FALSE +Gavin DeGraw,Soldier,existing,,,,,,FALSE +Gavin James,22,new,,,,,11572,FALSE +Gavin James,Always (feat. Philippine),new,,,,,57943,FALSE +Gavin James,Always,new,,,,,57652,FALSE +Gavin James,Nervous (The Ooh Song Mark McCabe Remix),new,,,,,52439,FALSE +Gavin James,Nervous,new,,,,,52438,FALSE +Gavin James,The Book of Love,new,,,,,49413,FALSE +Gayle,Abcdefu (angrier),new,,,,,67751,FALSE +Gayle,Abcdefu,new,,,,,67392,FALSE +Gene Autry,Back in the Saddle Again,new,,,,,41089,FALSE +Gene Autry,Don't Fence Me in,new,,,,,15835,FALSE +Gene Pitney,24 Hours from Tulsa,existing,,,,,,FALSE +Gene Pitney,I'm Gonna Be Strong,existing,,,,,,FALSE +Gene Vincent,Be-Bop-A-Lula,existing,,,,,,FALSE +Gene Vincent,Race With the Devil,existing,,,,,,FALSE +General Public,Tenderness,new,,,,,83400,FALSE +Genesis,Abacab,new,,,,,14184,FALSE +Genesis,Behind the Lines,new,,,,,65235,FALSE +Genesis,Follow You Follow Me,new,,,,,20766,FALSE +Genesis,Home by the Sea,new,,,,,18075,FALSE +Genesis,I Can't Dance,new,,,,,12921,FALSE +Genesis,Invisible Touch,new,,,,,14185,FALSE +Genesis,Land of Confusion,new,,,,,14186,FALSE +Genesis,Mama,new,,,,,13322,FALSE +Genesis,Misunderstanding,new,,,,,57604,FALSE +Genesis,No Reply at All,new,,,,,71544,FALSE +Genesis,Supper's Ready,new,,,,,27720,FALSE +Genesis,That's All,new,,,,,14187,FALSE +Genesis,The Carpet Crawlers,new,,,,,30920,FALSE +Genesis,The Lamb Lies Down on Broadway,new,,,,,29297,FALSE +Genesis,Throwing It All Away,new,,,,,48323,FALSE +Genesis,"Tonight, Tonight, Tonight",new,,,,,14227,FALSE +Genesis,Turn It On Again,new,,,,,19899,FALSE +George Benson,Give Me The Night,existing,,,,,,FALSE +George Benson,Greatest Love of All,existing,,,,,,FALSE +George Benson,Nothing's Gonna Change My Love for You,new,,,,,13583,FALSE +George Benson,Turn Your Love Around,new,,,,,21017,FALSE +George Ezra,Barcelona,new,,,,,48464,FALSE +George Ezra,Blame It on Me,new,,,,,47486,FALSE +George Ezra,Budapest,existing,,,,,,FALSE +George Ezra,Green Green Grass,new,,,,,69298,FALSE +George Ezra,Hold My Girl,new,,,,,55489,FALSE +George Ezra,Paradise,new,,,,,55133,FALSE +George Ezra,Shotgun,new,,,,,55506,FALSE +George Harrison,All Things Must Pass,new,,,,,28400,FALSE +George Harrison,Give Me Love (Give Me Peace on Earth),new,,,,,57316,FALSE +George Harrison,Got My Mind Set On You,existing,,,,,,FALSE +George Harrison,If Not for You,new,,,,,61972,FALSE +George Harrison,My Sweet Lord,existing,,,,,,FALSE +George Harrison,What Is Life,existing,,,,,,FALSE +George Jones,He Stopped Loving Her Today,existing,,,,,,FALSE +George Jones,I Don't Need Your Rockin' Chair,new,,,,,15854,FALSE +George Jones,She Thinks I Still Care,new,,,,,15859,FALSE +George Jones,The Race Is On,new,,,,,8205,FALSE +George Mccrae,Rock Your Baby,existing,,,,,,FALSE +George Michael,Careless Whisper,existing,,,,,,FALSE +George Michael,Faith,existing,,,,,,FALSE +George Michael,Fast Love,existing,,,,,,FALSE +George Michael,Freedom '90,new,,,,,19978,FALSE +George Michael,I Can't Make You Love Me,existing,,,,,,FALSE +George Michael,Jesus To a Child,existing,,,,,,FALSE +George Michael & Elton John,Don't Let the Sun Go Down On Me (Live),existing,,,,,,FALSE +George Michael & Mary J Blige,As,existing,,,,,,FALSE +George Strait,All My Exes Live In Texas,existing,,,,,,FALSE +George Strait,Amarillo By Morning,existing,,,,,,FALSE +George Strait,Carrying Your Love With Me,new,,,,,10324,FALSE +George Strait,Check Yes Or No,new,,,,,8326,FALSE +George Strait,Give It All We Got Tonight,existing,,,,,,FALSE +George Strait,Give It Away,new,,,,,15871,FALSE +George Strait,Here for a Good Time,new,,,,,37755,FALSE +George Strait,Seashores of Old Mexico,existing,,,,,,FALSE +George Strait,Troubadour,new,,,,,24640,FALSE +George Strait,Write This Down,new,,,,,8444,FALSE +George Strait,You Look So Good In Love,existing,,,,,,FALSE +George Thorogood,Bad To The Bone,existing,,,,,,FALSE +George Thorogood,I Drink Alone,new,,,,,53200,FALSE +George Thorogood,Move It On Over,existing,,,,,,FALSE +George Thorogood,"One Bourbon, One Scotch, One Beer",new,,,,,49609,FALSE +Georgie Fame,Yeh Yeh,existing,,,,,,FALSE +Gerry & The Pacemakers,Ferry 'Cross the Mersey,existing,,,,,,FALSE +Gerry & The Pacemakers,How Do You Do It?,existing,,,,,,FALSE +Gerry & The Pacemakers,You'll Never Walk Alone,existing,,,,,,FALSE +Gerry Rafferty,Baker Street,existing,,,,,,FALSE +Gerry Rafferty,Right Down The Line,existing,,,,,,FALSE +Ghost (band),Call Me Little Sunshine,new,Ghost,,,,68256,FALSE +Ghost (band),Cirice,new,Ghost,,,,57343,FALSE +Ghost (band),Dance Macabre,new,Ghost,,,,56605,FALSE +Ghost (band),Mary on a Cross,new,Ghost,,,,69741,FALSE +Ghost (band),Square Hammer,new,Ghost,,,,52440,FALSE +Ghost (band),Year Zero,new,Ghost,,,,75946,FALSE +Gin Blossoms,Follow You Down,existing,,,,,,FALSE +Gin Blossoms,Found Out About You,new,,,,,11441,FALSE +Gin Blossoms,Hey Jealousy,existing,,,,,,FALSE +Gin Blossoms,Til I Hear It from You,new,,,,,17917,FALSE +Gina G,Ooh..Aah Just a Little Bit,existing,,,,,,FALSE +Ginuwine,Differences,new,,,,,15891,FALSE +Ginuwine,Hell Yeah,new,,,,,15927,FALSE +Ginuwine,Pony,new,,,,,34193,FALSE +Ginuwine,So Anxious,new,,,,,58921,FALSE +Ginuwine,The Best Man I Can Be,new,,,,,35373,FALSE +Ginuwine,There It Is,new,,,,,15925,FALSE +Ginuwine,When Doves Cry,new,,,,,34208,FALSE +Girls Aloud,Loving Kind,existing,,,,,,FALSE +Girls Aloud,Sexy! No,existing,,,,,,FALSE +Girls Aloud,Sound of the Underground,existing,,,,,,FALSE +Girls Aloud,The Promise,existing,,,,,,FALSE +Gladys Knight,Licence To Kill,existing,,,,,,FALSE +Gladys Knight And The Pips,Midnight Train To Georgia,existing,,,,,,FALSE +Glass Animals,Creatures in Heaven,new,,,,,81482,FALSE +Glass Animals,Gooey,new,,,,,69338,FALSE +Glass Animals,Heat Waves,new,,,,,64678,FALSE +Glass Animals,Space Ghost Coast to Coast,new,,,,,82137,FALSE +Glass Animals,The Other Side of Paradise,new,,,,,78859,FALSE +Glee Cast,Defying Gravity,existing,,,,,,FALSE +Glee Cast,Fat Bottomed Girls,existing,,,,,,FALSE +Glee Cast,Hello Goodbye,existing,,,,,,FALSE +Glee Cast,I'll Stand By You,existing,,,,,,FALSE +Glee Cast,It's Not Unusual,existing,,,,,,FALSE +Glee Cast,Jump,existing,,,,,,FALSE +Glee Cast,Leaving On a Jet Plane,existing,,,,,,FALSE +Glen Campbell,By the Time I Get To Phoenix,existing,,,,,,FALSE +Glen Campbell,Galveston,existing,,,,,,FALSE +Glen Campbell,Gentle On My Mind,existing,,,,,,FALSE +Glen Campbell,It's Only Make Believe,existing,,,,,,FALSE +Glen Campbell,Rhinestone Cowboys,existing,,,,,,FALSE +Glen Campbell,Wichita Lineman,existing,,,,,,FALSE +Glen Hansard,Falling Slowly,existing,,,,,,FALSE +Glenn Miller,In The Mood,existing,,,,,,FALSE +GloRilla,TGIF,new,,,,,82335,FALSE +GloRilla,Tomorrow 2,new,,,,,72621,FALSE +GloRilla,Wanna Be,new,,,,,81127,FALSE +GloRilla,Yeah Glo!,new,,,,,80639,FALSE +Gloria Estefan,I Don't Wanna Lose You,existing,,,,,,FALSE +Gloria Estefan,Mi Tierra,existing,,,,,,FALSE +Gloria Estefan,Rhythm Is Gonna Get You,existing,,,,,,FALSE +Gloria Estefan,Turn The Beat Around,existing,,,,,,FALSE +Gloria Gaynor,I Will Survive,existing,,,,,,FALSE +Gloria Gaynor,Never Can Say Goodbye,existing,,,,,,FALSE +Gnarls Barkley,Crazy,existing,,,,,,FALSE +Go West,King of Wishful Thinking,existing,,,,,,FALSE +Go West,We Close Our Eyes,existing,,,,,,FALSE +Godsmack,Awake,new,,,,,64310,FALSE +Godsmack,Bulletproof,new,,,,,68735,FALSE +Godsmack,Cryin' Like a Bitch,new,,,,,64602,FALSE +Godsmack,Greed,existing,,,,,,FALSE +Godsmack,I Stand Alone,existing,,,,,,FALSE +Godsmack,Love-Hate-Sex-Pain,new,,,,,67674,FALSE +Godsmack,Voodoo,new,,,,,54890,FALSE +Godsmack,When Legends Rise,new,,,,,78174,FALSE +Gojira,Flying Whales,new,,,,,83019,FALSE +Gojira,Silvera,new,,,,,76627,FALSE +Gojira,Stranded,new,,,,,73824,FALSE +Golden Earring,Radar Love,existing,,,,,,FALSE +Golden Earring,Twilight Zone,new,,,,,53341,FALSE +Goo Goo Dolls,Iris,existing,,,,,,FALSE +Goo Goo Dolls,Name,new,,,,,18225,FALSE +Goo Goo Dolls,Slide,existing,,,,,,FALSE +Goo Goo Dolls,Sympathy,new,,,,,6215,FALSE +Good Charlotte,I Don't Wanna Be in Love (Dance Floor Anthem),new,,,,,81871,FALSE +Good Charlotte,I Just Wanna Live,new,,,,,15945,FALSE +Good Charlotte,Lifestyles Of The Rich And Famous,existing,,,,,,FALSE +Good Charlotte,The Anthem,existing,,,,,,FALSE +Gordon Haskell,How Wonderful You Are,existing,,,,,,FALSE +Gordon Lightfoot,If You Could Read My Mind,existing,,,,,,FALSE +Gordon Lightfoot,Rainy Day People,existing,,,,,,FALSE +Gordon Lightfoot,Sundown,existing,,,,,,FALSE +Gordon Lightfoot,The Wreck of the Edmund Fitzgerald,new,,,,,39438,FALSE +Gorillaz,19-2000,new,,,,,15950,FALSE +Gorillaz,Clint Eastwood (remix),new,,,,,16885,FALSE +Gorillaz,Clint Eastwood,new,,,,,52486,FALSE +Gorillaz,Controllah,new,,,,,74630,FALSE +Gorillaz,Cracker Island,new,,,,,71342,FALSE +Gorillaz,Dare,new,,,,,12710,FALSE +Gorillaz,Feel Good Inc.,new,,,,,11574,FALSE +Gorillaz,Kids with Guns,new,,,,,73170,FALSE +Gorillaz,On Melancholy Hill,new,,,,,30790,FALSE +Gorillaz,Rhinestone Eyes,new,,,,,74251,FALSE +Gorillaz,Rock the House,new,,,,,78755,FALSE +Gorillaz,Silent Running,new,,,,,74678,FALSE +Gorillaz,Stylo,new,,,,,28696,FALSE +Gospel Singer,A Mighty Fortress Is Our God,existing,,,,,,FALSE +Gospel Singer,All Hail The Power Of Jesus Name,existing,,,,,,FALSE +Gospel Singer,Amazing Grace,existing,,,,,,FALSE +Gospel Singer,Because He Lives,existing,,,,,,FALSE +Gospel Singer,Blessed Assurance,existing,,,,,,FALSE +Gospel Singer,Blessed Be The Tie That Binds,existing,,,,,,FALSE +Gospel Singer,Christ The Lord Is Risen Today,existing,,,,,,FALSE +Gospel Singer,Crown Him With Many Crowns,existing,,,,,,FALSE +Gospel Singer,Faith Of Our Fathers,existing,,,,,,FALSE +Gospel Singer,For The Beauty Of The Earth,existing,,,,,,FALSE +Gospel Singer,He Touched Me,existing,,,,,,FALSE +Gospel Singer,Holy Holy Holy,existing,,,,,,FALSE +Gospel Singer,Hosanna Loud Hosanna,existing,,,,,,FALSE +Gospel Singer,How Firm A Foundation,existing,,,,,,FALSE +Gospel Singer,How Great Thou Art,existing,,,,,,FALSE +Gospel Singer,I Can Only Imagine,existing,,,,,,FALSE +Gospel Singer,I Have Decided To Follow Jesus,existing,,,,,,FALSE +Gospel Singer,I Love To Tell The Story,existing,,,,,,FALSE +Gospel Singer,Jesus Shall Reign,existing,,,,,,FALSE +Gospel Singer,Joyful Joyful We Adore Thee,existing,,,,,,FALSE +Gospel Singer,Just A Closer Walk With Thee,existing,,,,,,FALSE +Gospel Singer,Just As I Am,existing,,,,,,FALSE +Gospel Singer,Lord I Lift Your Name On High,existing,,,,,,FALSE +Gospel Singer,O For A Thousand Tongues To Sing,existing,,,,,,FALSE +Gospel Singer,Onward Christian Soldiers,existing,,,,,,FALSE +Gospel Singer,Peace In The Valley,existing,,,,,,FALSE +Gospel Singer,Praise Him,existing,,,,,,FALSE +Gospel Singer,Praise To The Lord The Almighty,existing,,,,,,FALSE +Gospel Singer,Rock Of Ages,existing,,,,,,FALSE +Gospel Singer,Softly And Tenderly,existing,,,,,,FALSE +Gospel Singer,Stand Up For Jesus,existing,,,,,,FALSE +Gospel Singer,Sweet Hour Of Prayer,existing,,,,,,FALSE +Gospel Singer,Tell Me The Stories Of Jesus,existing,,,,,,FALSE +Gospel Singer,Tell Me The Story Of Jesus,existing,,,,,,FALSE +Gospel Singer,The Church In The Wildwood,existing,,,,,,FALSE +Gospel Singer,The Lord's Prayer,existing,,,,,,FALSE +Gospel Singer,The Strife Is O'er The Battle Done,existing,,,,,,FALSE +Gospel Singer,There Is A Balm In Gilead,existing,,,,,,FALSE +Gospel Singer,This Is My Father's World,existing,,,,,,FALSE +Gospel Singer,We Gather Together,existing,,,,,,FALSE +Gospel Singer,We Shall Overcome,existing,,,,,,FALSE +Gospel Song,Vict'ry Road (A Cappella),existing,,,,,,FALSE +Gotye Feat. Kimbra,Somebody That I Used To Know,existing,,,,,,FALSE +Gov't Mule,Banks of the Deep End,new,,,,,77652,FALSE +Gov't Mule,Beautifully Broken,new,,,,,80497,FALSE +Gov't Mule,Soulshine,new,,,,,52847,FALSE +Grace Potter,Something That I Want,existing,,,,,,FALSE +Grace Potter,Stars (Piano Acoustic),existing,,,,,,FALSE +Grand Funk Railroad,Some Kind Of Wonderful,existing,,,,,,FALSE +Grand Funk Railroad,We're An American Band,existing,,,,,,FALSE +Grandmaster Flash & The Furious Five,The Message,new,,,,,13762,FALSE +Grandmaster Flash & The Furious Five,White Lines (Don't Do It),new,,,,,14528,FALSE +Grateful Dead,Althea,new,,,,,76891,FALSE +Grateful Dead,Bertha,new,,,,,72137,FALSE +Grateful Dead,Box of Rain,new,,,,,69589,FALSE +Grateful Dead,Brown Eyed Women,existing,,,,,,FALSE +Grateful Dead,Casey Jones,existing,,,,,,FALSE +Grateful Dead,Cassidy,existing,,,,,,FALSE +Grateful Dead,China Cat Sunflower,new,,,,,83426,FALSE +Grateful Dead,Deep Elem Blues (live),new,,,,,73992,FALSE +Grateful Dead,Eyes of the World,new,,,,,71819,FALSE +Grateful Dead,Fire on the Mountain,new,,,,,41140,FALSE +Grateful Dead,Franklin's Tower,new,,,,,25828,FALSE +Grateful Dead,Friend of the Devil,new,,,,,61018,FALSE +Grateful Dead,I Know You Rider (live in Paris),new,,,,,79025,FALSE +Grateful Dead,Jack Straw,existing,,,,,,FALSE +Grateful Dead,Ramble on Rose (live),new,,,,,75893,FALSE +Grateful Dead,Ripple,new,,,,,58995,FALSE +Grateful Dead,Scarlet Begonias,new,,,,,69254,FALSE +Grateful Dead,Shakedown Street,new,,,,,28000,FALSE +Grateful Dead,Sugar Magnolia,new,,,,,69318,FALSE +Grateful Dead,Sugaree,existing,,,,,,FALSE +Grateful Dead,Tennessee Jed,existing,,,,,,FALSE +Grateful Dead,Terrapin Station,existing,,,,,,FALSE +Grateful Dead,Touch of Grey,new,,,,,56037,FALSE +Grateful Dead,Truckin',new,,,,,11466,FALSE +Grateful Dead,Truckin,existing,,,,,,FALSE +Grateful Dead,Uncle John's Band,new,,,,,48172,FALSE +Grease,Summer Nights,existing,,,,,,FALSE +Grease,You're The One That I Want,existing,,,,,,FALSE +Great White,Lady Red Light,new,,,,,70514,FALSE +Great White,Once Bitten Twice Shy,existing,,,,,,FALSE +Great White,Rock Me,new,,,,,69553,FALSE +Green Day,21 Guns,new,,,,,23533,FALSE +Green Day,American Idiot,new,,,,,5611,FALSE +Green Day,Basket Case,existing,,,,,,FALSE +Green Day,Boulevard Of Broken Dreams,existing,,,,,,FALSE +Green Day,Brain Stew,new,,,,,54959,FALSE +Green Day,Holiday,new,,,,,5610,FALSE +Green Day,Time Of Your Life (Good Riddance),existing,,,,,,FALSE +Green Day,Wake Me Up When September Ends,existing,,,,,,FALSE +Green Day,When I Come Around,existing,,,,,,FALSE +Greg Kihn Band,Jeopardy,existing,The Greg Kihn Band,,,,,FALSE +Gregg Allman,I'm No Angel,new,,,,,64302,FALSE +Gregg Allman,Midnight Rider,new,,,,,15958,FALSE +Gregg Lake,I Believe In Father Christmas,existing,,,,,,FALSE +Greta Van Fleet,Black Smoke Rising,new,,,,,57930,FALSE +Greta Van Fleet,Heat Above,new,,,,,71698,FALSE +Greta Van Fleet,Highway Tune,new,,,,,57536,FALSE +Greta Van Fleet,Safari Song,new,,,,,58687,FALSE +Gretchen Wilson,Here For The Party,existing,,,,,,FALSE +Gretchen Wilson,Redneck Woman,existing,,,,,,FALSE +Grizzly Bear,Two Weeks,new,,,,,77656,FALSE +Grouplove,Let Me In,new,,,,,47176,FALSE +Grouplove,Tongue Tied,new,,,,,41845,FALSE +Grover Washington Jr,Just The Two Of Us,existing,,,,,,FALSE +Guns N' Roses,Civil War,new,,,,,31646,FALSE +Guns N' Roses,Don't Cry,new,,,,,13605,FALSE +Guns N' Roses,Knockin' On Heaven's Door,existing,,,,,,FALSE +Guns N' Roses,Live and Let Die,new,,,,,13760,FALSE +Guns N' Roses,Mr. Brownstone,existing,,,,,,FALSE +Guns N' Roses,November Rain,new,,,,,7157,FALSE +Guns N' Roses,Paradise City,new,,,,,15965,FALSE +Guns N' Roses,Patience,existing,,,,,,FALSE +Guns N' Roses,Sweet Child O' Mine,existing,,,,,,FALSE +Guns N' Roses,Welcome To The Jungle,existing,,,,,,FALSE +Guns N' Roses,You Could Be Mine,new,,,,,31645,FALSE +Guy Mitchell,Heartaches By the Number,existing,,,,,,FALSE +Guy Mitchell,Singing the Blues,existing,,,,,,FALSE +Gwen Guthrie,Ain't Nothing Going On but the Rent,existing,,,,,,FALSE +Gwen Stefani,Cool,new,,,,,11571,FALSE +Gwen Stefani,Hollaback Girl,new,,,,,5629,FALSE +Gwen Stefani,Luxurious,new,,,,,15967,FALSE +Gwen Stefani,Rich Girl,new,,,,,5615,FALSE +Gwen Stefani,Sweet Escape,existing,,,,,,FALSE +Gwen Stefani,What You Waiting For,new,,,,,11525,FALSE +Gym Class Heroes,Ass Back Home,existing,,,,,,FALSE +Gym Class Heroes,Stereo Hearts,existing,,,,,,FALSE +H.E.R.,Come Through,new,,,,,65402,FALSE +H.E.R.,Comfortable,new,,,,,63151,FALSE +H.E.R.,Damage,new,,,,,63178,FALSE +H.E.R.,Focus,new,,,,,57555,FALSE +H.E.R.,Hard Place,new,,,,,57598,FALSE +H.E.R.,Slide,new,,,,,75722,FALSE +Haim,Don't Save Me,new,,,,,43377,FALSE +Haim,Falling,new,,,,,43247,FALSE +Haim,Forever,new,,,,,47608,FALSE +Haim,If I Could Change Your Mind,new,,,,,47083,FALSE +Haim,The Wire,new,,,,,45004,FALSE +Halestorm,Bad Romance,new,,,,,46944,FALSE +Halestorm,Freak Like Me,new,,,,,49507,FALSE +Halestorm,Here's To Us,existing,,,,,,FALSE +Halestorm,I Get Off,new,,,,,24055,FALSE +Halestorm,I Miss The Misery,existing,,,,,,FALSE +Halestorm,Love Bites So Do I,existing,,,,,,FALSE +Halestorm,Mz. Hyde,new,,,,,48176,FALSE +Haley Reinhart,Can't Help Falling in Love,new,,,,,50719,FALSE +Hall & Oates,Adult Education,new,,,,,70906,FALSE +Hall & Oates,Did It in a Minute,new,,,,,15973,FALSE +Hall & Oates,Family Man,new,,,,,31107,FALSE +Hall & Oates,Kiss on My List,new,,,,,31080,FALSE +Hall & Oates,Method of Modern Love,new,,,,,71870,FALSE +Hall & Oates,One On One,new,,,,,56464,FALSE +Hall & Oates,Out of Touch,new,,,,,44450,FALSE +Hall & Oates,Rich Girl,new,,,,,17958,FALSE +Hall & Oates,Sara Smile,new,,,,,7529,FALSE +Hall & Oates,Say It Isn't So,new,,,,,44067,FALSE +Hall & Oates,You Make My Dreams,new,,,,,40923,FALSE +Hall & Oates,You've Lost That Lovin' Feeling,new,,,,,50426,FALSE +Hall And Oates,I Can't Go For That (No Can Do),existing,Hall & Oates,,,,,FALSE +Hall And Oates,Maneater,existing,Hall & Oates,,,,,FALSE +Hall And Oates,Private Eyes,existing,Hall & Oates,,,,,FALSE +Hall And Oates,She's Gone,existing,Hall & Oates,,,,,FALSE +Halsey,Bad at Love,new,,,,,54231,FALSE +Halsey,Be Kind,new,,,,,61649,FALSE +Halsey,Him & I,new,,,,,55419,FALSE +Halsey,Without Me,new,,,,,56734,FALSE +"Hank Williams, Jr.",All My Rowdy Friends (Have Settled Down),new,,,,,24972,FALSE +"Hank Williams, Jr.",All My Rowdy Friends Are Coming Over Tonight,new,,,,,15983,FALSE +"Hank Williams, Jr.",Dinosaur,new,,,,,23839,FALSE +"Hank Williams, Jr.",If Heaven Ain't A Lot Like Dixie,new,,,,,15988,FALSE +"Hank Williams, Jr.",Weatherman,new,,,,,69957,FALSE +"Hank Williams, Sr.","Hey, Good Lookin'",new,,,,,17962,FALSE +"Hank Williams, Sr.",I'm So Lonesome I Could Cry,new,,,,,17960,FALSE +Hank Williams Jr,A Country Boy Can Survive,existing,Hank Williams Jr.,,,,,FALSE +Hank Williams Jr,All My Rowdy Friends Have Settled Down,existing,Hank Williams Jr.,,,,,FALSE +Hank Williams Jr,Family Tradition,existing,Hank Williams Jr.,,,,,FALSE +Hank Williams Jr,Whiskey Bent And Hell Bound,existing,Hank Williams Jr.,,,,,FALSE +Hanumankind,Big Dawgs,new,,,,,83277,FALSE +Hard Fi,Suburban Knights,existing,,,,,,FALSE +Hardy,Give Heaven Some Hell,new,,,,,68507,FALSE +Hardy,He Went to Jared,new,,,,,59345,FALSE +Hardy,One Beer,new,,,,,60965,FALSE +Hardy,Red,new,,,,,73448,FALSE +Hardy,Truck Bed,new,,,,,72700,FALSE +Hardy,Wait in the Truck,new,,,,,71359,FALSE +Harold Faltermeyer,Axel F,existing,,,,,,FALSE +Harold Melvin & The Bluenotes,Love I Lost,existing,,,,,,FALSE +Harold Melvin And The Blue Notes,If You Don't Know Me By Now,existing,Harold Melvin & The Bluenotes,,,,,FALSE +Harry Belafonte,Jump In the Line,existing,,,,,,FALSE +Harry Chapin,Cat's in the Cradle,new,,,,,17963,FALSE +Harry Nilsson,Everybody's Talkin,existing,,,,,,FALSE +Harry Nilsson,Without You,new,,,,,7535,FALSE +Harry Styles,Adore You,new,,,,,60218,FALSE +Harry Styles,As It Was,new,,,,,68930,FALSE +Harry Styles,Falling,new,,,,,60311,FALSE +Harry Styles,Fine Line,new,,,,,81075,FALSE +Harry Styles,Golden,new,,,,,61219,FALSE +Harry Styles,Late Night Talking,new,,,,,69609,FALSE +Harry Styles,Matilda,new,,,,,69659,FALSE +Harry Styles,Satellite,new,,,,,70607,FALSE +Harry Styles,Sign of the Times,new,,,,,53042,FALSE +Harry Styles,Watermelon Sugar,new,,,,,59951,FALSE +Haydn Quartet,Sweet Adeline (A Cappella),existing,,,,,,FALSE +Hazel O'connor,Will You,existing,,,,,,FALSE +Heart,All I Wanna Do Is Make Love To You,existing,,,,,,FALSE +Heart,Alone,existing,,,,,,FALSE +Heart,Barracuda,existing,,,,,,FALSE +Heart,Crazy On You,existing,,,,,,FALSE +Heart,Magic Man,existing,,,,,,FALSE +Heart (band),Dog & Butterfly,new,Heart,,,,41834,FALSE +Heart (band),Dreamboat Annie,new,Heart,,,,57839,FALSE +Heart (band),Even It Up,new,Heart,,,,43976,FALSE +Heart (band),Straight On,new,Heart,,,,55961,FALSE +Heart (band),These Dreams (radio edit),new,Heart,,,,10005,FALSE +Heart (band),What About Love,new,Heart,,,,30224,FALSE +Heather Small,Proud,existing,,,,,,FALSE +Helen Shapiro,Walking Back To Happiness,existing,,,,,,FALSE +Herbie Hancock,A Song for You,new,,,,,23905,FALSE +Herbie Hancock,Imagine,new,,,,,63944,FALSE +Herbie Hancock,Stitched Up,new,,,,,63706,FALSE +Herbie Hancock,The Star Spangled Banner,new,,,,,76996,FALSE +Herbie Hancock,Watermelon Man,existing,,,,,,FALSE +Herbie Hancock,When Love Comes to Town,new,,,,,68126,FALSE +Herman's Hermits,I'm Into Something Good,existing,,,,,,FALSE +Herman's Hermits,My Sentimental Friend,existing,,,,,,FALSE +Herman's Hermits,Silhouettes,existing,,,,,,FALSE +Herman's Hermits,There's A Kind of Hush,existing,,,,,,FALSE +Highly Suspect,Lydia,new,,,,,68214,FALSE +Highly Suspect,My Name Is Human,new,,,,,53084,FALSE +Hinder,Better Than Me,new,,,,,12759,FALSE +Hinder,Lips of an Angel,new,,,,,14595,FALSE +Hole,Celebrity Skin,new,,,,,60740,FALSE +Hole,Malibu,new,,,,,65896,FALSE +Hollywood Undead,Bullet,new,,,,,72006,FALSE +Hollywood Undead,Everywhere I Go,new,,,,,68193,FALSE +Hollywood Undead,Undead,new,,,,,69473,FALSE +Hoobastank,Crawling in the Dark,new,,,,,16117,FALSE +Hoobastank,Out of Control,new,,,,,16119,FALSE +Hoobastank,The Reason,new,,,,,13512,FALSE +Hootie And The Blowfish,Hold My Hand,existing,,,,,,FALSE +Hot Chocolate,Disco Queen,existing,,,,,,FALSE +Hot Chocolate,Every 1's A Winner,new,,,,,31579,FALSE +Hot Chocolate,You Sexy Thing,existing,,,,,,FALSE +Howard Jones,Everlasting Love,new,,,,,71448,FALSE +Howard Jones,Like to Get to Know You Well,new,,,,,71471,FALSE +Howard Jones,New Song,new,,,,,70981,FALSE +Howard Jones,No One Is to Blame,new,,,,,58723,FALSE +Howard Jones,Things Can Only Get Better,new,,,,,18001,FALSE +Howard Jones,What Is Love,new,,,,,36717,FALSE +Howlin' Wolf,Killing Floor,new,,,,,81677,FALSE +Howlin' Wolf,Smokestack Lightning,new,,,,,77317,FALSE +Howlin' Wolf,Spoonful,new,,,,,78721,FALSE +Hozier,Almost (Sweet Music),new,,,,,57963,FALSE +Hozier,From Eden,existing,,,,,,FALSE +Hozier,Like Real People Do,new,,,,,73560,FALSE +Hozier,Someone New,new,,,,,49064,FALSE +Hozier,Take Me To Church,existing,,,,,,FALSE +Hozier,Too Sweet,new,,,,,80539,FALSE +Hozier,Work Song,new,,,,,48526,FALSE +Huey Lewis,It's Alright (A Cappella),existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis & The News,Do You Believe In Love,new,,,,,16132,FALSE +Huey Lewis & The News,Hip to Be Square,new,,,,,16134,FALSE +Huey Lewis & The News,If This Is It,new,,,,,20850,FALSE +Huey Lewis & The News,Power of Love,existing,,,,,,FALSE +Huey Lewis And The News,Heart And Soul,existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,Heart Of Rock And Roll,existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,I Want A New Drug,existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,Power Of Love,existing,Huey Lewis & The News,,,,,FALSE +Human League,Don't You Want Me,existing,The Human League,,,,,FALSE +Human League,Mirror Man,existing,,,,,,FALSE +Hunter Hayes,I Want Crazy,new,,,,,43746,FALSE +Hunter Hayes,Wanted,new,,,,,40834,FALSE +Hurt,Wonderful Life,existing,,,,,,FALSE +I Prevail,Blank Space,new,,,,,58554,FALSE +I Prevail,Bow Down,new,,,,,76087,FALSE +I Prevail,Hurricane,new,,,,,75866,FALSE +I Prevail,Scars,new,,,,,73164,FALSE +INXS,Beautiful Girl,new,,,,,18015,FALSE +INXS,Devil Inside,existing,,,,,,FALSE +INXS,Don't Change,new,,,,,34054,FALSE +INXS,Mystify,existing,,,,,,FALSE +INXS,Need You Tonight,existing,,,,,,FALSE +INXS,Suicide Blonde,new,,,,,12897,FALSE +INXS,What You Need,existing,,,,,,FALSE +Ian Dury & The Blockheads,Hit Me With Your Rhythm Stick,existing,,,,,,FALSE +Ice Cube,Check Yo Self,new,,,,,35460,FALSE +Ice Cube,Down For Whatever,new,,,,,37974,FALSE +Ice Cube,It Was a Good Day,new,,,,,54976,FALSE +Ice Cube,No Vaseline,new,,,,,74471,FALSE +Ice Cube,You Can Do It (Put Your Ass Into It),new,,,,,28569,FALSE +Ice Spice,Deli,new,,,,,76732,FALSE +Ice Spice,Did It First,new,,,,,83123,FALSE +Ice Spice,In Ha Mood,new,,,,,73771,FALSE +Ice Spice,Princess Diana,new,,,,,75141,FALSE +Ice Spice,Think U the Shit (Fart),new,,,,,81334,FALSE +Ice-T,Colors,new,,,,,70127,FALSE +Icehouse,Electric Blue,new,,,,,62057,FALSE +Icehouse,Great Southern Land,new,,,,,62243,FALSE +Idles,Never Fight a Man with a Perm,new,,,,,80422,FALSE +Iggy Azalea,Black Widow,existing,,,,,,FALSE +Iggy Azalea,Bounce,new,,,,,44564,FALSE +Iggy Azalea,Change Your Life,new,,,,,45543,FALSE +Iggy Azalea,Fancy,existing,,,,,,FALSE +Iggy Azalea,Trouble,new,,,,,49022,FALSE +Iggy Azalea,Work,new,,,,,43532,FALSE +Iggy Pop,Lust for Life,new,,,,,51312,FALSE +Iggy Pop,Real Wild Child,existing,,,,,,FALSE +Ike & Tina Turner,Nutbush City Limits,existing,,,,,,FALSE +Imagine Dragons,Believer,new,,,,,52644,FALSE +Imagine Dragons,Bones,new,,,,,68712,FALSE +Imagine Dragons,Demons,existing,,,,,,FALSE +Imagine Dragons,Enemy (solo version),new,,,,,69672,FALSE +Imagine Dragons,It's Time,existing,,,,,,FALSE +Imagine Dragons,Natural,new,,,,,56156,FALSE +Imagine Dragons,On Top of the World,new,,,,,43366,FALSE +Imagine Dragons,Radioactive,existing,,,,,,FALSE +Imagine Dragons,Thunder,new,,,,,53367,FALSE +Imagine Dragons,Whatever It Takes,new,,,,,53170,FALSE +Imelda May,Big Bad Handsome Man,existing,,,,,,FALSE +Imelda May,Inside Out,existing,,,,,,FALSE +In This Moment,Black Wedding,new,,,,,71492,FALSE +In This Moment,Blood,new,,,,,72331,FALSE +In This Moment,Whore,new,,,,,67946,FALSE +Incubus,Anna Molly,new,,,,,21037,FALSE +Incubus,Are You In,new,,,,,70866,FALSE +Incubus,Dig,new,,,,,69148,FALSE +Incubus,Drive,existing,,,,,,FALSE +Incubus,Pardon Me,new,,,,,62984,FALSE +Incubus,Stellar,new,,,,,21770,FALSE +Incubus,Wish You Were Here,new,,,,,16148,FALSE +India Arie,Brown Skin,new,,,,,20779,FALSE +India Arie,Video,new,,,,,8156,FALSE +Indigo Girls,Closer to Fine,new,,,,,67104,FALSE +Indigo Girls,Galileo,new,,,,,70513,FALSE +Information Society,What's On Your Mind (Pure Energy),existing,,,,,,FALSE +Ingrid Michaelson,Girls Chase Boys,existing,,,,,,FALSE +Ingrid Michaelson,The Way I Am,existing,,,,,,FALSE +Ingrid Michaelson,You And I,existing,,,,,,FALSE +Ini Kamoze,Here Comes the Hotstepper,existing,,,,,,FALSE +Inna,Hot,new,,,,,29250,FALSE +Inna,Sun Is Up,new,,,,,36182,FALSE +Interpol,Evil,new,,,,,71983,FALSE +Interpol,Obstacle 1,new,,,,,75769,FALSE +Inxs,Never Tear Us Apart,existing,INXS,,,,,FALSE +Inxs,New Sensation,existing,INXS,,,,,FALSE +Irene Cara,Flashdance (What a Feeling),existing,,,,,,FALSE +Irish Traditional,Dirty Old Town,existing,,,,,,FALSE +Irish Traditional,Whiskey In the Jar,existing,,,,,,FALSE +Irish Traditional,Wild Rover,existing,,,,,,FALSE +Iron Maiden,2 Minutes to Midnight,new,,,,,21669,FALSE +Iron Maiden,Aces High,new,,,,,21877,FALSE +Iron Maiden,Fear Of The Dark,existing,,,,,,FALSE +Iron Maiden,Hallowed Be Thy Name,new,,,,,21880,FALSE +Iron Maiden,Run To The Hills,existing,,,,,,FALSE +Iron Maiden,The Number of the Beast,new,,,,,21883,FALSE +Iron Maiden,The Trooper,existing,,,,,,FALSE +Iron Maiden,Wasted Years,new,,,,,21888,FALSE +Iron Maiden,Where Eagles Dare,new,,,,,69610,FALSE +Iron Maiden,Wrathchild,new,,,,,21890,FALSE +Ivete Sangalo,Berimbau Metalizado,existing,,,,,,FALSE +Ivete Sangalo,Chupa Toda,existing,,,,,,FALSE +Ivete Sangalo,Perere,existing,,,,,,FALSE +Ivy Queen,Quiero Bailar,existing,,,,,,FALSE +J Geils Band,Centerfold,existing,The J. Geils Band,,,,,FALSE +J Geils Band,Freeze Frame,existing,The J. Geils Band,,,,,FALSE +J Geils Band,Love Stinks,existing,The J. Geils Band,,,,,FALSE +J-Kwon,Tipsy,new,,,,,16169,FALSE +J-Sqruipt,Don't Worry,existing,,,,,,FALSE +J. Cole,KOD,new,,,,,83030,FALSE +J. Cole,Middle Child,new,,,,,76576,FALSE +J. Cole,Neighbors,new,,,,,76225,FALSE +J. Cole,No Role Modelz,new,,,,,63430,FALSE +J. Cole,Power Trip,new,,,,,43809,FALSE +J. Cole,Pride Is the Devil,new,,,,,72932,FALSE +J. Cole,Wet Dreamz,new,,,,,70786,FALSE +J. Cole,Work Out,new,,,,,70980,FALSE +J. Geils Band,Must of Got Lost,new,The J. Geils Band,,,,71846,FALSE +J. Holiday,Bed,new,,,,,12868,FALSE +J. Holiday,Suffocate,new,,,,,14998,FALSE +JJ Grey & Mofro,Lochloosa,new,,,,,75952,FALSE +JJ Grey & Mofro,The Sun Is Shining Down,new,,,,,83315,FALSE +JJ Grey & Mofro,This River,new,,,,,50894,FALSE +JP Cooper,September Song,new,,,,,52603,FALSE +JP Cooper,Sing It with Me,new,,,,,66585,FALSE +Ja Rule,Always on Time,new,,,,,55244,FALSE +Ja Rule,Put It on Me,new,,,,,56814,FALSE +Jaci Velasquez,He,existing,,,,,,FALSE +Jaci Velasquez,Jesus Is,existing,,,,,,FALSE +Jaci Velasquez,Lost Without You,existing,,,,,,FALSE +Jack Harlow,First Class,new,,,,,40208,FALSE +Jack Harlow,Lovin on Me,new,,,,,78349,FALSE +Jack Harlow,Same Guy,new,,,,,64512,FALSE +Jack Harlow,What's Poppin',new,,,,,69703,FALSE +Jack Johnson,At Or With Me,existing,,,,,,FALSE +Jack Johnson,Banana Pancakes,new,,,,,18492,FALSE +Jack Johnson,Better Together,new,,,,,14090,FALSE +Jack Johnson,Flake,existing,,,,,,FALSE +Jack Johnson,Good People,new,,,,,32615,FALSE +Jack Johnson,I Got You,existing,,,,,,FALSE +Jack Johnson,Sitting Waiting Wishing,existing,,,,,,FALSE +Jack Johnson,Upside Down,existing,,,,,,FALSE +Jack Johnson,You And Your Heart,existing,,,,,,FALSE +Jack White,Love Is Blindness,existing,,,,,,FALSE +Jackie Wilson,Higher & Higher,existing,,,,,,FALSE +Jackie Wilson,Reet Petite,existing,,,,,,FALSE +Jackson Browne,Doctor My Eyes,existing,,,,,,FALSE +Jackson Browne,Rock Me on the Water,new,,,,,78620,FALSE +Jackson Browne,Running On Empty,existing,,,,,,FALSE +Jackson Browne,Somebody's Baby,existing,,,,,,FALSE +Jackson Browne,Stay,existing,,,,,,FALSE +Jackson Browne,Tender Is the Night,new,,,,,57092,FALSE +Jackson Browne,The Load-Out,new,,,,,66696,FALSE +Jackson Browne,The Pretender,new,,,,,58627,FALSE +Jackson Dean,Don't Come Lookin',new,,,,,70150,FALSE +Jain,Come,new,,,,,50519,FALSE +Jain,Makeba,new,,,,,51014,FALSE +Jake Owen,American Country Love Song,new,,,,,59264,FALSE +Jake Owen,Barefoot Blue Jean Night,existing,,,,,,FALSE +Jake Owen,Beachin,existing,,,,,,FALSE +Jake Owen,Down to the Honkytonk,new,,,,,56310,FALSE +Jake Owen,I Was Jack (You Were Diane),new,,,,,55520,FALSE +Jake Owen,Made for You,new,,,,,61508,FALSE +James,Sit Down,existing,,,,,,FALSE +James Arthur,Can I Be Him,new,,,,,53329,FALSE +James Arthur,Car's Outside,new,,,,,77186,FALSE +James Arthur,Falling like the Stars,new,,,,,58438,FALSE +James Arthur,Impossible,existing,,,,,,FALSE +James Arthur,Naked,new,,,,,54683,FALSE +James Arthur,Say You Won't Let Go,new,,,,,51857,FALSE +James Arthur,Train Wreck,new,,,,,37378,FALSE +James Bay,Hold Back the River,new,,,,,48195,FALSE +James Bay,If You Ever Want to Be in Love,new,,,,,49987,FALSE +James Bay,Let It Go,new,,,,,48767,FALSE +James Bay,Us,new,,,,,61677,FALSE +James Blunt,1973,existing,,,,,,FALSE +James Blunt,Bonfire Heart,existing,,,,,,FALSE +James Blunt,Goodbye My Lover,existing,,,,,,FALSE +James Blunt,You're Beautiful,existing,,,,,,FALSE +James Brown,Cold Sweat,existing,,,,,,FALSE +James Brown,Get Up (I Feel Like Being A) Sex Machine,existing,,,,,,FALSE +James Brown,Get Up Offa That Thing,new,,,,,25377,FALSE +James Brown,I Got You (I Feel Good),existing,,,,,,FALSE +James Brown,It's a Man's Man's Man's World,new,,,,,14537,FALSE +James Brown,Living In America,existing,,,,,,FALSE +James Brown,Papa's Got A Brand New Bag,existing,,,,,,FALSE +James Morrison,Broken Strings,existing,,,,,,FALSE +James Morrison,I Won't Let You Go,existing,,,,,,FALSE +James Taylor,Carolina in My Mind,new,,,,,18065,FALSE +James Taylor,Don't Let Me Be Lonely Tonight,existing,,,,,,FALSE +James Taylor,Fire And Rain,existing,,,,,,FALSE +James Taylor,How Sweet It Is (To Be Loved By You),existing,,,,,,FALSE +James Taylor,Mexico,new,,,,,18062,FALSE +James Taylor,Shower The People,existing,,,,,,FALSE +James Taylor,Something (A Cappella),existing,,,,,,FALSE +James Taylor,Something in the Way She Moves,new,,,,,18061,FALSE +James Taylor,Sweet Baby James,existing,,,,,,FALSE +James Taylor,Walking Man,new,,,,,18064,FALSE +James Taylor,You've Got A Friend,existing,,,,,,FALSE +James Taylor,Your Smiling Face,new,,,,,18066,FALSE +Jamey Johnson,In Color,existing,,,,,,FALSE +Jamie Cullum,Don't Stop The Music,existing,,,,,,FALSE +Jamie Cullum,Everlasting Love,existing,,,,,,FALSE +Jamie Cullum,These Are the Days,existing,,,,,,FALSE +Jamie Cullum,What A Difference A Day Made,existing,,,,,,FALSE +Jamiroquai,Cosmic Girl,new,,,,,13196,FALSE +Jamiroquai,Little L,new,,,,,13227,FALSE +Jamiroquai & Jools Holland,I'm In the Mood for Love,existing,Jamiroquai,,,,,FALSE +Jane Mc Donald,Burt Bacharach Medley - Live At the London Paladium,existing,,,,,,FALSE +Jane's Addiction,Been Caught Stealing,new,,,,,69690,FALSE +Jane's Addiction,Jane Says,new,,,,,54061,FALSE +Jane's Addiction,Just Because,existing,,,,,,FALSE +Jane's Addiction,Mountain Song,new,,,,,35199,FALSE +Janelle Monae,I Like That,new,,,,,75958,FALSE +Janelle Monae,Make Me Feel,new,,,,,55217,FALSE +Janet Jackson,All for You,new,,,,,7801,FALSE +Janet Jackson,Alright,new,,,,,7233,FALSE +Janet Jackson,Control,new,,,,,29145,FALSE +Janet Jackson,Escapade,new,,,,,6098,FALSE +Janet Jackson,Let's Wait Awhile,new,,,,,35797,FALSE +Janet Jackson,Nasty,new,,,,,16238,FALSE +Janet Jackson,That's the Way Love Goes,new,,,,,6471,FALSE +Janet Jackson,Together Again,new,,,,,9725,FALSE +Janis Ian,At Seventeen,existing,,,,,,FALSE +Janis Joplin,Cry Baby,new,,,,,30822,FALSE +Janis Joplin,Me And Bobby McGee,existing,,,,,,FALSE +Janis Joplin,Move Over,existing,,,,,,FALSE +Janis Joplin,Piece Of My Heart,existing,,,,,,FALSE +Janis Joplin,Try (Just a Little Bit Harder),new,,,,,59915,FALSE +Japan,Quiet Life,existing,,,,,,FALSE +Jason Aldean,Big Green Tractor,new,,,,,23688,FALSE +Jason Aldean,Burnin' It Down,new,,,,,47932,FALSE +Jason Aldean,Dirt Road Anthem,new,,,,,63315,FALSE +Jason Aldean,Don't You Wanna Stay,existing,,,,,,FALSE +Jason Aldean,Got What I Got,new,,,,,60439,FALSE +Jason Aldean,She's Country,new,,,,,28837,FALSE +Jason Aldean,You Make It Easy,new,,,,,55139,FALSE +Jason Derulo,Acapulco,new,,,,,66838,FALSE +Jason Derulo,Savage Love (Laxed Siren Beat),new,,,,,61738,FALSE +Jason Derulo,Swalla,new,,,,,53097,FALSE +Jason Derulo,Take You Dancing,new,,,,,62251,FALSE +Jason Derulo,Talk Dirty,new,,,,,44865,FALSE +Jason Derulo,Trumpets,new,,,,,45825,FALSE +Jason Derulo,Want To Want Me,existing,,,,,,FALSE +Jason Derulo,Whatcha Say,new,,,,,24695,FALSE +Jason Isbell,24 Frames,new,,,,,76563,FALSE +Jason Isbell,Cover Me Up,new,,,,,67833,FALSE +Jason Mraz,93 Million Miles,new,,,,,40584,FALSE +Jason Mraz,Have It All,new,,,,,55643,FALSE +Jason Mraz,I Won't Give Up,existing,,,,,,FALSE +Jason Mraz,I'm Yours,existing,,,,,,FALSE +Jason Mraz,Love Someone,new,,,,,47405,FALSE +Jason Mraz,Lucky,existing,,,,,,FALSE +Jay Sean,2012 (It Ain't The End),new,,,,,33927,FALSE +Jay Sean,Do You Remember,new,,,,,26902,FALSE +Jay Sean,Down (Candle Light Remix),new,,,,,29640,FALSE +Jay Sean,Down,new,,,,,24210,FALSE +Jay Sean,Hit The Lights,new,,,,,36354,FALSE +Jay Sean,Ride It,new,,,,,14589,FALSE +Jay Sean,So High,new,,,,,42046,FALSE +Jay-Z,99 Problems,new,,,,,16260,FALSE +Jay-Z,Big Pimpin',new,,,,,55400,FALSE +Jay-Z,Can I Get a...,new,,,,,64572,FALSE +Jay-Z,Change Clothes,new,,,,,16258,FALSE +Jay-Z,Dirt Off Your Shoulder,new,,,,,16261,FALSE +Jay-Z,Empire State Of Mind,existing,,,,,,FALSE +Jay-Z,Excuse Me Miss,new,,,,,77954,FALSE +Jay-Z,Hard Knock Life (Ghetto Anthem),new,,,,,28302,FALSE +Jay-Z,Holy Grail,existing,,,,,,FALSE +Jay-Z,I Just Wanna Love You,existing,,,,,,FALSE +Jay-Z,Izzo (H.O.V.A.),new,,,,,78071,FALSE +Jay-Z,Nias in Paris,new,,,,,40143,FALSE +Jay-Z,Numb Encore,new,,,,,21592,FALSE +Jay-Z,Part II (On the Run),new,,,,,79831,FALSE +Jay-Z,Renegade,new,,,,,81711,FALSE +Jay-Z,Run This Town,new,,,,,24237,FALSE +Jay-Z,Young Forever,existing,,,,,,FALSE +Jazz Standards,(Back Home in) Pasadena,new,,,,,41083,FALSE +Jazz Standards,Don't Get Around Much Anymore,new,,,,,39270,FALSE +Jazz Standards,Frosty the Snowman,new,,,,,39281,FALSE +Jazz Standards,Have Yourself a Merry Little Christmas,new,,,,,26969,FALSE +Jazz Standards,Is You Is or Is You Ain't My Baby,new,,,,,81488,FALSE +Jazz Standards,Jingle Bells,new,,,,,39280,FALSE +Jazz Standards,Lullaby of Broadway,new,,,,,29810,FALSE +Jazz Standards,My Baby Just Cares for Me,new,,,,,55203,FALSE +Jazz Standards,Tangerine,new,,,,,41054,FALSE +Jazz Standards,That's All,new,,,,,39271,FALSE +Jazz Standards,Up a Lazy River,new,,,,,31472,FALSE +Jazzy Christmas,Frosty the Snowman,new,,,,,35159,FALSE +Jazzy Christmas,I'll Be Home for Christmas,new,,,,,54838,FALSE +Jazzy Christmas,Lindo Arbol De Navidad,new,,,,,34457,FALSE +Jazzy Christmas,Llego a mi medianoche,new,,,,,34346,FALSE +Jazzy Christmas,O Christmas Tree,new,,,,,24384,FALSE +Jazzy Gershwin,Embraceable You,existing,,,,,,FALSE +Jazzy Gershwin,Fascinatin Rhythm,existing,,,,,,FALSE +Jazzy Gershwin,I Got Rhythm,existing,,,,,,FALSE +Jazzy Gershwin,I'm Bidin My Time,existing,,,,,,FALSE +Jazzy Gershwin,I've Got A Crush On You,existing,,,,,,FALSE +Jazzy Gershwin,Let's Call The Whole Thing Off,existing,,,,,,FALSE +Jazzy Gershwin,Nice Work If You Can Get It,existing,,,,,,FALSE +Jazzy Gershwin,Of Thee I Sing,existing,,,,,,FALSE +Jazzy Gershwin,Oh Lady Be Good,existing,,,,,,FALSE +Jazzy Gershwin,S Wonderful,existing,,,,,,FALSE +Jazzy Gershwin,Someone To Watch Over Me,existing,,,,,,FALSE +Jazzy Gershwin,The Man I Love,existing,,,,,,FALSE +Jeff Beck,Going Down,new,,,,,49981,FALSE +Jeff Beck,Hi Ho Silver Lining,existing,,,,,,FALSE +Jeff Beck,I Ain't Superstitious,new,,,,,73092,FALSE +Jeff Beck,I Put A Spell On You,existing,,,,,,FALSE +Jeff Beck,Isolation,new,,,,,61226,FALSE +Jeff Beck,People Get Ready,existing,,,,,,FALSE +Jeff Buckley,Hallelujah (A Cappella),existing,,,,,,FALSE +Jeff Buckley,Hallelujah,existing,,,,,,FALSE +Jeff Buckley,Last Goodbye,new,,,,,64152,FALSE +Jeff Buckley,"Lover, You Should've Come Over",new,,,,,40990,FALSE +Jeff Buckley,So Real,existing,,,,,,FALSE +Jefferson Airplane,Somebody To Love,existing,,,,,,FALSE +Jefferson Airplane,White Rabbit,existing,,,,,,FALSE +Jefferson Starship,Find Your Way Back,new,,,,,28181,FALSE +Jefferson Starship,Jane,new,,,,,56450,FALSE +Jelly Roll,Need a Favor,new,,,,,73215,FALSE +Jelly Roll,Save Me,new,,,,,62024,FALSE +Jelly Roll,Son of a Sinner,new,,,,,67398,FALSE +Jennifer Hudson,I Love You I Do,existing,,,,,,FALSE +Jennifer Hudson,If This Isn't Love,existing,,,,,,FALSE +Jennifer Hudson,Spotlight,existing,,,,,,FALSE +Jennifer Lopez,Ain't Your Mama,new,,,,,51253,FALSE +Jennifer Lopez,Dance Again,existing,,,,,,FALSE +Jennifer Lopez,I'm Real,new,,,,,7778,FALSE +Jennifer Lopez,Jenny from the Block,new,,,,,14446,FALSE +Jennifer Lopez,Let's Get Loud,existing,,,,,,FALSE +Jennifer Lopez,Love Don't Cost a Thing,new,,,,,7732,FALSE +Jennifer Lopez,On The Floor,existing,,,,,,FALSE +Jerome Kern,All The Things You Are,existing,,,,,,FALSE +Jerry Lee Lewis,Great Balls Of Fire,existing,,,,,,FALSE +Jerry Lee Lewis,Rockin My Life Away,existing,,,,,,FALSE +Jerry Lee Lewis,Whole Lotta Shakin Goin On,existing,,,,,,FALSE +Jersey Boys,Jersey Boys Medley (A Cappella),existing,The Jersey Boys,,,,,FALSE +Jess Glynne,Don't Be So Hard On Yourself,new,,,,,49713,FALSE +Jess Glynne,Hold My Hand,existing,,,,,,FALSE +Jess Glynne,I'll Be There,new,,,,,55631,FALSE +Jess Glynne,Take Me Home,new,,,,,50126,FALSE +Jessica Rabbit,Why Don't You Do Right ?,existing,,,,,,FALSE +Jessie J,Bang Bang (acoustic),new,,,,,48762,FALSE +Jessie J,Do It Like A Dude,new,,,,,35652,FALSE +Jessie J,Domino,existing,,,,,,FALSE +Jessie J,Flashlight,existing,,,,,,FALSE +Jessie J,It's My Party,existing,,,,,,FALSE +Jessie J,Masterpiece,new,,,,,48184,FALSE +Jessie J,Price Tag,existing,,,,,,FALSE +Jessie J,Who You Are,new,,,,,35694,FALSE +Jessie Murph,How Could You,new,,,,,78645,FALSE +Jessie Murph,Wild Ones,new,,,,,77732,FALSE +Jesus Jones,Right Here Right Now,new,,,,,36265,FALSE +Jet,Are You Gonna Be My Girl,existing,,,,,,FALSE +Jet,Cold Hard Bitch,new,,,,,15713,FALSE +Jet,Look What You've Done,existing,,,,,,FALSE +Jethro Tull,Aqualung,existing,,,,,,FALSE +Jethro Tull,Bungle in the Jungle,new,,,,,56035,FALSE +Jethro Tull,Cross-Eyed Mary,new,,,,,50831,FALSE +Jethro Tull,Living in the Past,new,,,,,56107,FALSE +Jethro Tull,Locomotive Breath,existing,,,,,,FALSE +Jethro Tull,Skating Away (On the Thin Ice of the New Day),new,,,,,69415,FALSE +Jethro Tull,Thick As a Brick (Edit No. 1),new,,,,,64144,FALSE +Jethro Tull,Too Old to Rock 'n' Roll Too Young to Die,new,,,,,71784,FALSE +Jewel,Foolish Games,new,,,,,8458,FALSE +Jewel,Who Will Save Your Soul,new,,,,,11035,FALSE +Jewel,You Were Meant for Me,new,,,,,11209,FALSE +Jill Scott,A Long Walk,existing,,,,,,FALSE +Jill Scott,Golden,new,,,,,16300,FALSE +Jill Scott,He Loves Me,existing,,,,,,FALSE +Jill Scott,It's Love,new,,,,,18158,FALSE +Jilted John,Jilted John,existing,,,,,,FALSE +Jim Capaldi,Love Hurts,existing,,,,,,FALSE +Jim Croce,Bad Bad Leroy Brown,existing,,,,,,FALSE +Jim Croce,I'll Have To Say I Love You In a Song,existing,,,,,,FALSE +Jim Croce,Time In A Bottle,existing,,,,,,FALSE +Jim Reeves,I Won't Forget You,existing,,,,,,FALSE +Jim Reeves,Welcome To My World,existing,,,,,,FALSE +Jimi Hendrix,All Along the Watchtower,new,,,,,13786,FALSE +Jimi Hendrix,Are You Experienced,new,,,,,67136,FALSE +Jimi Hendrix,Crosstown Traffic,existing,,,,,,FALSE +Jimi Hendrix,Fire,new,,,,,47323,FALSE +Jimi Hendrix,Foxy Lady,new,,,,,41920,FALSE +Jimi Hendrix,Hey Joe,new,,,,,25332,FALSE +Jimi Hendrix,Little Wing,new,,,,,28805,FALSE +Jimi Hendrix,Manic Depression,new,,,,,49275,FALSE +Jimi Hendrix,Purple Haze,new,,,,,17518,FALSE +Jimi Hendrix,Voodoo Child (Slight Return),new,,,,,48123,FALSE +Jimi Hendrix,Wind Cries Mary,existing,,The Wind Cries Mary,,,,FALSE +Jimmy Boyd,I Saw Mommy Kissing Santa Claus (A Cappella),existing,,,,,,FALSE +Jimmy Buffett,"Changes in Latitudes, Changes in Attitudes",new,,,,,16314,FALSE +Jimmy Buffett,Cheeseburger In Paradise,existing,,,,,,FALSE +Jimmy Buffett,Come Monday,new,,,,,9807,FALSE +Jimmy Buffett,Margaritaville,existing,,,,,,FALSE +Jimmy Cliff,Higher And Higher,existing,,,,,,FALSE +Jimmy Cliff,I Can See Clearly Now,existing,,,,,,FALSE +Jimmy Cliff,One More (Live Version),existing,,,,,,FALSE +Jimmy Crawford,I Go To Rio,existing,,,,,,FALSE +Jimmy Eat World,Bleed American,existing,,,,,,FALSE +Jimmy Eat World,Pain,existing,,,,,,FALSE +Jimmy Eat World,The Middle,existing,,,,,,FALSE +Jimmy Ruffin,What Becomes of the Broken Hearted,existing,,,,,,FALSE +Jo Dee Messina,Heads Carolina Tails California,existing,,,,,,FALSE +Joan Jett,Bad Reputation,existing,,,,,,FALSE +Joan Jett,Cherry Bomb,new,,,,,60601,FALSE +Joan Jett,Crimson and Clover,new,,,,,18161,FALSE +Joan Jett,I Hate Myself For Loving You,existing,,,,,,FALSE +Joan Jett,I Love Rock 'N' Roll,existing,,,,,,FALSE +Joan Jett,Love Hurts,new,,,,,72047,FALSE +Joao Gilberto,Aguas de Marco,new,,,,,63291,FALSE +Joao Gilberto,Desafinado,existing,,,,,,FALSE +Joao Gilberto,Doralice,new,,,,,58868,FALSE +Joao Gilberto,O barquinho,new,,,,,74380,FALSE +Joao Gilberto,O pato,new,,,,,63238,FALSE +Jocelyn Brown,Somebody Else's Guy,existing,,,,,,FALSE +Joe Arroyo,La rebelion,new,,,,,67439,FALSE +Joe Bonamassa,Asking Around for You,new,,,,,81055,FALSE +Joe Bonamassa,Bird on a Wire,new,,,,,80674,FALSE +Joe Bonamassa,Black Night,new,,,,,65222,FALSE +Joe Bonamassa,Blues Deluxe,new,,,,,62520,FALSE +Joe Bonamassa,Different Shades of Blue,new,,,,,57780,FALSE +Joe Bonamassa,Django,existing,,,,,,FALSE +Joe Bonamassa,Drive,new,,,,,67763,FALSE +Joe Bonamassa,Driving Towards the Daylight,new,,,,,67956,FALSE +Joe Bonamassa,Dust Bowl,new,,,,,65845,FALSE +Joe Bonamassa,Give Me One Reason,new,,,,,75016,FALSE +Joe Bonamassa,Going Down (live at the Greek Theatre),new,,,,,79742,FALSE +Joe Bonamassa,I'll Play the Blues for You (live),new,,,,,66037,FALSE +Joe Bonamassa,If Heartaches Were Nickels,new,,,,,71740,FALSE +Joe Bonamassa,Just Got Paid,new,,,,,78776,FALSE +Joe Bonamassa,Let The Good Times Roll (live at the Greek Theatre),new,,,,,79663,FALSE +Joe Bonamassa,Lonesome Road Blues,new,,,,,80216,FALSE +Joe Bonamassa,Mountain Time,new,,,,,74764,FALSE +Joe Bonamassa,Sloe Gin,new,,,,,51636,FALSE +Joe Bonamassa,So Many Roads,new,,,,,80037,FALSE +Joe Bonamassa,Stop!,new,,,,,56140,FALSE +Joe Bonamassa,The Ballad of John Henry,new,,,,,65691,FALSE +Joe Bonamassa,The Thrill Is Gone (live),new,,,,,70028,FALSE +Joe Bonamassa,This Train,new,,,,,81064,FALSE +Joe Bonamassa,Twenty-Four Hour Blues,new,,,,,80671,FALSE +Joe Bonamassa,You Upset Me Baby,existing,,,,,,FALSE +Joe Bonamassa,Your Heart Is as Black as Night,new,,,,,59167,FALSE +Joe Cocker,Feelin' Alright,new,,,,,30061,FALSE +Joe Cocker,Unchain My Heart,existing,,,,,,FALSE +Joe Cocker,Up Where We Belong,existing,,,,,,FALSE +Joe Cocker,With A Little Help From My Friends,existing,,,,,,FALSE +Joe Cocker,You Are So Beautiful,existing,,,,,,FALSE +Joe Cocker,You Can Leave Your Hat On,new,,,,,13157,FALSE +Joe Jackson,Different for Girls,existing,,,,,,FALSE +Joe Jackson,Is She Really Going Out With Him ?,existing,,,,,,FALSE +Joe Jackson,Steppin' Out,existing,,,,,,FALSE +Joe Jackson,You Can't Get What You Want (Till You Know What You Want),existing,,,,,,FALSE +Joe Mcelderry,Ambitions,existing,,,,,,FALSE +Joe Nichols,Brokenheartsville,existing,,,,,,FALSE +Joe Nichols,Tequila Makes Her Clothes Fall Off,existing,,,,,,FALSE +Joe Ramone,What a Wonderful World,existing,,,,,,FALSE +Joe Walsh,A Life of Illusion,new,,,,,80495,FALSE +Joe Walsh,All Night Long,existing,,,,,,FALSE +Joe Walsh,Life's Been Good,new,,,,,25139,FALSE +Joe Walsh,Rocky Mountain Way,new,,,,,16343,FALSE +John Cougar Mellencamp,Jack & Diane,existing,,,,,,FALSE +John Denver,Annie's Song,existing,,,,,,FALSE +John Denver,Back Home Again,existing,,,,,,FALSE +John Denver,Follow Me,new,,,,,18252,FALSE +John Denver,For Baby (For Bobbie),new,,,,,73727,FALSE +John Denver,Goodbye Again,new,,,,,78706,FALSE +John Denver,Leaving on a Jet Plane,new,,,,,14099,FALSE +John Denver,Rocky Mountain High,new,,,,,18246,FALSE +John Denver,Sunshine On My Shoulders,existing,,,,,,FALSE +John Denver,Take Me Home,existing,,,,,,FALSE +John Denver,Thank God I'm A Country Boy,existing,,,,,,FALSE +John Goodman, Dan Aykroyd & The Blues Brothers,existing,,,,,,FALSE +John Hiatt,Feels Like Rain,new,,,,,75432,FALSE +John Hiatt,Have a Little Faith in Me,new,,,,,40581,FALSE +John Lee Hooker,Boom Boom,new,,,,,11262,FALSE +John Legend,All Of Me,existing,,,,,,FALSE +John Legend,Conversations in the Dark,new,,,,,73774,FALSE +John Legend,Love Me Now,new,,,,,52232,FALSE +John Legend,Ordinary People,existing,,,,,,FALSE +John Legend,Tonight (Best You Ever Had),new,,,,,41244,FALSE +John Legend,You And I (Nobody In The World),existing,,,,,,FALSE +John Lennon,#9 Dream,new,,,,,18263,FALSE +John Lennon,(Just Like) Starting Over,new,,,,,18270,FALSE +John Lennon,Beautiful Boy (Darling Boy),new,,,,,33297,FALSE +John Lennon,Happy Christmas (War Is Over),existing,,,,,,FALSE +John Lennon,Imagine,existing,,,,,,FALSE +John Lennon,Instant Karma! (We All Shine On),new,,,,,12631,FALSE +John Lennon,Jealous Guy,new,,,,,14031,FALSE +John Lennon,Watching the Wheels,new,,,,,18268,FALSE +John Lennon,Whatever Gets You Thru the Night,new,,,,,18275,FALSE +John Lennon,Woman,existing,,,,,,FALSE +John Mayer,Crossroads,existing,,,,,,FALSE +John Mayer,Daughters,existing,,,,,,FALSE +John Mayer,Gravity,new,,,,,22863,FALSE +John Mayer,Half Of My Heart,existing,,,,,,FALSE +John Mayer,Heartbreak Warfare,existing,,,,,,FALSE +John Mayer,New Light,new,,,,,55595,FALSE +John Mayer,Slow Dancing in a Burning Room,new,,,,,26019,FALSE +John Mayer,Waiting On the World to Change,new,,,,,14600,FALSE +John Mayer,XO,new,,,,,81504,FALSE +John Mayer,Your Body Is A Wonderland,existing,,,,,,FALSE +John Mellencamp,Authority Song,new,,,,,42500,FALSE +John Mellencamp,Cherry Bomb,new,,,,,38225,FALSE +John Mellencamp,Hurts So Good,existing,,,,,,FALSE +John Mellencamp,Jack & Diane,new,,,,,16352,FALSE +John Mellencamp,Lonely Ol' Night,new,,,,,61992,FALSE +John Mellencamp,Paper in Fire,new,,,,,56008,FALSE +John Mellencamp,Pink Houses,new,,,,,41576,FALSE +John Mellencamp,R.O.C.K. In The U.S.A.,existing,,,,,,FALSE +John Mellencamp,Small Town,existing,,,,,,FALSE +John Newman,Love Me Again,existing,,,,,,FALSE +John Prine,Angel From Montgomery,new,,,,,58873,FALSE +John Prine,Clay Pigeons,new,,,,,76420,FALSE +John Prine,In Spite of Ourselves,new,,,,,51434,FALSE +John Prine,Souvenirs,new,,,,,63628,FALSE +John Prine,That's the Way That the World Goes Round,new,,,,,61667,FALSE +John Rowles,If I Only Had Time,existing,,,,,,FALSE +John Travolta,Greased Lightning,existing,,,,,,FALSE +John Williamson,Waltzing Matilda,existing,,,,,,FALSE +Johnny & The Hurricanes,Red River Rock,existing,,,,,,FALSE +Johnny Burnette,You're Sixteen,existing,,,,,,FALSE +Johnny Cash,(Ghost) Riders in the Sky,new,,,,,11584,FALSE +Johnny Cash,Boy Named Sue,existing,,,,,,FALSE +Johnny Cash,Don't Take Your Guns to Town,new,,,,,64346,FALSE +Johnny Cash,Folsom Prison Blues,existing,,,,,,FALSE +Johnny Cash,God's Gonna Cut You Down,new,,,,,52625,FALSE +Johnny Cash,Hurt,new,,,,,14438,FALSE +Johnny Cash,I Walk The Line,existing,,,,,,FALSE +Johnny Cash,I've Been Everywhere,existing,,,,,,FALSE +Johnny Cash,One,existing,,,,,,FALSE +Johnny Cash,Ring Of Fire,existing,,,,,,FALSE +Johnny Cash,Thing Called Love,existing,,,,,,FALSE +Johnny Green,Body and Soul,existing,,,,,,FALSE +Johnny Kidd & The Pirates,Shakin' All Over,existing,,,,,,FALSE +Johnny Mathis,Misty,existing,,,,,,FALSE +Johnny Mathis,Send In the Clowns,existing,,,,,,FALSE +Johnny Mathis & Deniece Williams,Too Much,existing,Johnny Mathis,,,,,FALSE +Johnny Nash,Cupid,existing,,,,,,FALSE +Johnny Nash,I Can See Clearly Now,existing,,,,,,FALSE +Johnny Paycheck,Take This Job And Shove It,existing,,,,,,FALSE +Johnny Preston,Running Bear,existing,,,,,,FALSE +Johnny Ray,Just Walkin' In the Rain,existing,,,,,,FALSE +Johnny Tillotson,Poetry In Motion,existing,,,,,,FALSE +Joji,Die for You,new,,,,,72435,FALSE +Joji,Glimpse of Us,new,,,,,70038,FALSE +Joji,Sanctuary,new,,,,,75959,FALSE +Joji,Slow Dancing in the Dark,new,,,,,69129,FALSE +Joji,Yeah Right,new,,,,,77237,FALSE +Jon Bellion,All Time Low,new,,,,,52511,FALSE +Jon Pardi,Dirt on My Boots,new,,,,,52117,FALSE +Jon Pardi,Head Over Boots,new,,,,,50183,FALSE +Jon Pardi,Heartache Medication,new,,,,,58560,FALSE +Jon Pardi,Heartache on the Dance Floor,new,,,,,53260,FALSE +Jon Pardi,Night Shift,new,,,,,56521,FALSE +Jona Lewie,Stop the Cavalry,existing,,,,,,FALSE +Jonas Blue,Fast Car,new,,,,,50559,FALSE +Jonas Blue,Mama,new,,,,,53717,FALSE +Jonas Blue,Perfect Strangers,new,,,,,51649,FALSE +Jonas Blue,Rise,new,,,,,56291,FALSE +Jonas Brothers,Burnin' Up,new,,,,,21320,FALSE +Jonas Brothers,Only Human,new,,,,,59158,FALSE +Jonas Brothers,Sucker,new,,,,,57730,FALSE +Jonas Brothers,What a Man Gotta Do,new,,,,,60451,FALSE +Joni Mitchell,All I Want,new,,,,,78280,FALSE +Joni Mitchell,Big Yellow Taxi,new,,,,,16390,FALSE +Joni Mitchell,Blue,existing,,,,,,FALSE +Joni Mitchell,Both Sides Now (2000 version),new,,,,,14608,FALSE +Joni Mitchell,"Both Sides, Now",new,,,,,71196,FALSE +Jools Holland & Prince Buster,Enjoy YourSelf,existing,Jools Holland,,,,,FALSE +Jools Holland & Rumer,Acc-Cent-Tchu-Ate the Positive,existing,Jools Holland,,,,,FALSE +Jordin Sparks,No Air,new,,,,,16813,FALSE +Joseph & The Amazing Technicolor Dreamcoat,Any Dream Will Do,existing,,,,,,FALSE +Joseph Kosma,Autumn Leaves,existing,,,,,,FALSE +Josh Groban,You Are Loved (Don't Give Up),existing,,,,,,FALSE +Josh Groban,You Raise Me Up,existing,,,,,,FALSE +Josh Turner,Hometown Girl,new,,,,,53218,FALSE +Josh Turner,Time Is Love,existing,,,,,,FALSE +Josh Turner,Why Don't We Just Dance,new,,,,,25355,FALSE +Josh Turner,Would You Go With Me,existing,,,,,,FALSE +Josh Turner,Your Man,existing,,,,,,FALSE +Joss Stone,Don't Cha Wanna Ride,existing,,,,,,FALSE +Joss Stone,Right To Be Wrong,existing,,,,,,FALSE +Joss Stone,Super Duper Love,existing,,,,,,FALSE +Journey,After the Fall,new,,,,,65417,FALSE +Journey,Any Way You Want It,existing,,,,,,FALSE +Journey,Don't Stop Believing,existing,,,,,,FALSE +Journey,Escape,new,,,,,67492,FALSE +Journey,Faithfully,new,,,,,19318,FALSE +Journey,Feeling That Way,new,,,,,57850,FALSE +Journey,I'll Be Alright Without You,new,,,,,62412,FALSE +Journey,Just the Same Way,new,,,,,62701,FALSE +Journey,Lights,existing,,,,,,FALSE +Journey,"Lovin', Touchin', Squeezin'",new,,,,,18342,FALSE +Journey,Open Arms,new,,,,,11231,FALSE +Journey,Patiently,new,,,,,48094,FALSE +Journey,Send Her My Love,new,,,,,18348,FALSE +Journey,Separate Ways (Worlds Apart),existing,,,,,,FALSE +Journey,Stone In Love,existing,,,,,,FALSE +Journey,The Party's Over (Hopelessly in Love),new,,,,,64991,FALSE +Journey,Wheel In The Sky,existing,,,,,,FALSE +Journey,Who's Crying Now,new,,,,,18350,FALSE +Joy Division,Atmosphere,new,,,,,76424,FALSE +Joy Division,Disorder,new,,,,,75801,FALSE +Joy Division,Love Will Tear Us Apart,new,,,,,37605,FALSE +Joy Division,She's Lost Control,new,,,,,38090,FALSE +Joy Division,Transmission,new,,,,,67007,FALSE +Juan Luis Guerra,Bachata En Fukuoka,existing,,,,,,FALSE +Judas Priest,Breaking The Law,existing,,,,,,FALSE +Judas Priest,Living After Midnight,new,,,,,46359,FALSE +Judas Priest,Painkiller,new,,,,,63418,FALSE +Judas Priest,You've Got Another Thing Comin',new,,,,,52173,FALSE +Judy Clay & William Bell,Private Number,existing,,,,,,FALSE +Judy Garland,Get Happy,existing,,,,,,FALSE +Julia Michaels,Heaven,new,,,,,55198,FALSE +Julia Michaels,Hurt Somebody,new,,,,,56054,FALSE +Julia Michaels,Issues,new,,,,,52880,FALSE +Julia Michaels,What a Time,new,,,,,59514,FALSE +Julie London,Cry Me a River,existing,,,,,,FALSE +Jungkook (),Seven,new,Jungkook,,,,76203,FALSE +Jungkook (),Standing Next to You,new,Jungkook,,,,78189,FALSE +Junior Mervin,Police & Thieves,existing,,,,,,FALSE +Junior Walker,Road Runner,existing,,,,,,FALSE +Justin Bieber,As Long As You Love Me,existing,,,,,,FALSE +Justin Bieber,Baby,existing,,,,,,FALSE +Justin Bieber,Beauty And A Beat,existing,,,,,,FALSE +Justin Bieber,Boyfriend,existing,,,,,,FALSE +Justin Bieber,Ghost,new,,,,,66897,FALSE +Justin Bieber,Love Yourself,new,,,,,50244,FALSE +Justin Bieber,Peaches,new,,,,,64270,FALSE +Justin Bieber,Sorry,new,,,,,50130,FALSE +Justin Bieber,What Do You Mean,new,,,,,49767,FALSE +Justin Hayward,Forever Autumn,existing,,,,,,FALSE +Justin Hayward & John Lodge,Blue Guitar,existing,Justin Hayward,,,,,FALSE +Justin Timberlake,Cry Me a River,existing,,,,,,FALSE +Justin Timberlake,Mirrors,existing,,,,,,FALSE +Justin Timberlake,Rock Your Body,existing,,,,,,FALSE +Justin Timberlake,Senorita,existing,,,,,,FALSE +Justin Timberlake,Sexyback,existing,,,,,,FALSE +K'NAAN,Wavin Flag,existing,,,,,,FALSE +K'naan,Bang Bang,new,K'NAAN,,,,33284,FALSE +K'naan,Is Anybody Out There,new,K'NAAN,,,,40367,FALSE +K'naan,Wavin' Flag,new,K'NAAN,,,,25807,FALSE +K.C. And The Sunshine Band,"(Shake, Shake, Shake) Shake Your Booty",existing,KC & The Sunshine Band,,,,,FALSE +K.C. And The Sunshine Band,Boogie Shoes,existing,KC & The Sunshine Band,,,,,FALSE +K.C. And The Sunshine Band,Get Down Tonight,existing,KC & The Sunshine Band,,,,,FALSE +K.C. And The Sunshine Band,That's The Way I Like It,existing,KC & The Sunshine Band,,,,,FALSE +K.Flay,Blood in the Cut,new,,,,,71800,FALSE +K.Flay,High Enough,new,,,,,74140,FALSE +KC & The Sunshine Band,"(Shake, Shake, Shake) Shake Your Booty",new,,,,,13985,FALSE +KC & The Sunshine Band,Boogie Shoes,new,,,,,39611,FALSE +KC & The Sunshine Band,Get Down Tonight,new,,,,,15581,FALSE +KC & The Sunshine Band,I'm Your Boogie Man,new,,,,,7519,FALSE +KC & The Sunshine Band,That's the Way (I Like It),new,,,,,17517,FALSE +KT Tunstall,Black Horse And The Cherry Tree,existing,,,,,,FALSE +KT Tunstall,Suddenly I See,existing,,,,,,FALSE +Kacey Musgraves,Biscuits,existing,,,,,,FALSE +Kacey Musgraves,Butterflies,new,,,,,55470,FALSE +Kacey Musgraves,Deeper Well,new,,,,,80487,FALSE +Kacey Musgraves,Follow Your Arrow,existing,,,,,,FALSE +Kacey Musgraves,Golden Hour,new,,,,,56405,FALSE +Kacey Musgraves,Merry Go Round,existing,,,,,,FALSE +Kacey Musgraves,Rainbow,new,,,,,57299,FALSE +Kacey Musgraves,Slow Burn,new,,,,,56027,FALSE +Kaiser Chiefs,I Predict a Riot,new,,,,,5381,FALSE +Kaiser Chiefs,Ruby,new,,,,,11746,FALSE +Kaleo,All the Pretty Girls,new,,,,,75455,FALSE +Kaleo,Broken Bones,new,,,,,70278,FALSE +Kaleo,I Can't Go On Without You,new,,,,,57962,FALSE +Kaleo,No Good,new,,,,,57785,FALSE +Kaleo,Way Down We Go,new,,,,,51461,FALSE +Kali Uchis,After the Storm,new,,,,,72723,FALSE +Kali Uchis,Dead to Me,new,,,,,75867,FALSE +Kali Uchis,Igual que un angel,new,,,,,79620,FALSE +Kali Uchis,Moonlight,new,,,,,75449,FALSE +Kali Uchis,Telepatia,new,,,,,64621,FALSE +Kameron Marlowe,Girl on Fire,new,,,,,73904,FALSE +Kameron Marlowe,Giving You Up,new,,,,,70209,FALSE +Kane Brown,Be Like That,new,,,,,63015,FALSE +Kane Brown,Heaven,new,,,,,55153,FALSE +Kane Brown,Miles on It,new,,,,,81259,FALSE +Kane Brown,One Thing Right,new,,,,,59036,FALSE +Kane Brown,What Ifs,new,,,,,53355,FALSE +Kansas,Carry On Wayward Son,existing,,,,,,FALSE +Kansas,Dust In The Wind,existing,,,,,,FALSE +Kansas,Point of Know Return,new,,,,,61571,FALSE +Kansas,Portrait (He Knew),new,,,,,69302,FALSE +Kanye West,All Falls Down,new,,,,,16435,FALSE +Kanye West,Bound 2,new,,,,,67694,FALSE +Kanye West,Carnival,new,,,,,79959,FALSE +Kanye West,Flashing Lights,new,,,,,18902,FALSE +Kanye West,Heartless,new,,,,,21553,FALSE +Kanye West,Runaway,new,,,,,38955,FALSE +Karen Souza,Bette Davis Eyes,existing,,,,,,FALSE +Karen Souza,Can't Help Falling In Love,existing,,,,,,FALSE +Karen Souza,Every Breath You Take,existing,,,,,,FALSE +Karen Souza,Have You Ever Seen The Rain,existing,,,,,,FALSE +Kasabian,Club Foot,new,,,,,36927,FALSE +Kasabian,Fire,new,,,,,23277,FALSE +Kasabian,Underdog,new,,,,,23489,FALSE +Kate Bush,Army Dreamers,new,,,,,31605,FALSE +Kate Bush,Babooshka,new,,,,,21964,FALSE +Kate Bush,Cloudbusting,new,,,,,41703,FALSE +Kate Bush,Running Up That Hill,existing,,,,,,FALSE +Kate Bush,Wuthering Heights,existing,,,,,,FALSE +Kathy Mattea,Eighteen Wheels & a Dozen Roses,existing,,,,,,FALSE +Katie Melua,Closest Thing to Crazy,existing,,,,,,FALSE +Katie Melua,If You Were a Sailboat,existing,,,,,,FALSE +Katie Melua,If the Lights Go Out,existing,,,,,,FALSE +Katie Melua,Nine Million Bicycles,new,,,,,5376,FALSE +Katie Melua,Wonderful Life,new,,,,,49810,FALSE +Katrina & The Waves,Walking On Sunshine,existing,,,,,,FALSE +Katrina And The Waves,That's The Way,existing,Katrina & The Waves,,,,,FALSE +Katy Perry,California Gurls,existing,,,,,,FALSE +Katy Perry,Dark Horse feat. Juicy J,existing,,,,,,FALSE +Katy Perry,Firework,existing,,,,,,FALSE +Katy Perry,Hot 'N' Cold,existing,,,,,,FALSE +Katy Perry,I Kissed A Girl,existing,,,,,,FALSE +Katy Perry,Last Friday Night,existing,,,,,,FALSE +Katy Perry,One That Got Away,existing,,,,,,FALSE +Katy Perry,Part Of Me,existing,,,,,,FALSE +Katy Perry,Roar,existing,,,,,,FALSE +Katy Perry,Teenage Dream,existing,,,,,,FALSE +Kay Starr,Rock & Roll Waltz,existing,,,,,,FALSE +Kc & The Sunshine Band,Give it Up,existing,KC & The Sunshine Band,,,,,FALSE +Kd Lang,Constant Craving,existing,,,,,,FALSE +Keane,Disconnected,existing,,,,,,FALSE +Keane,Everybody's Changing,existing,,,,,,FALSE +Keane,Fly to Me,existing,,,,,,FALSE +Keane,Somewhere Only We Know,existing,,,,,,FALSE +Keane,This Is the Last Time,new,,,,,31051,FALSE +Keith Richards & Eric Clapton,Key to the Highway,existing,,,,,,FALSE +Keith Sweat,Nobody,new,,,,,34084,FALSE +Keith Sweat,Twisted,new,,,,,34204,FALSE +Keith Urban,Blue Ain't Your Color,new,,,,,51632,FALSE +Keith Urban,Days Go By,existing,,,,,,FALSE +Keith Urban,Long Hot Summer,new,,,,,47271,FALSE +Keith Urban,One Too Many,new,,,,,62443,FALSE +Keith Urban,Somebody Like You,new,,,,,83729,FALSE +Keith Urban,Stupid Boy,existing,,,,,,FALSE +Keith Urban,The Fighter,new,,,,,51328,FALSE +Keith Urban,We Were Us,existing,,,,,,FALSE +Keith Urban,You'll Think Of Me,existing,,,,,,FALSE +Keith Whitley,Don't Close Your Eyes,new,,,,,14724,FALSE +Keith Whitley,When You Say Nothing At All,new,,,,,14733,FALSE +Kelis,Milkshake,new,,,,,13535,FALSE +Kelis,Trick Me,new,,,,,17159,FALSE +Kelly Clarkson,Because of You,new,,,,,5583,FALSE +Kelly Clarkson,Behind These Hazel Eyes,new,,,,,5580,FALSE +Kelly Clarkson,Breakaway,existing,,,,,,FALSE +Kelly Clarkson,Miss Independent,existing,,,,,,FALSE +Kelly Clarkson,My Life Would Suck Without You,existing,,,,,,FALSE +Kelly Clarkson,Piece By Piece,new,,,,,48882,FALSE +Kelly Clarkson,Since U Been Gone,existing,,,,,,FALSE +Kelly Clarkson,Stronger (What Doesn't Kill You),new,,,,,39638,FALSE +Kelly Clarkson,Underneath The Tree,new,,,,,45535,FALSE +Kelly Clarson,Heartbeat Song,existing,Kelly Clarkson,,,,,FALSE +Kelly Rowland,Commander,new,,,,,31140,FALSE +Kelly Rowland,Like This,new,,,,,12211,FALSE +Kelly Rowland,Motivation,existing,,,,,,FALSE +Kelly Rowland,Work (Freemasons Radio Mix),existing,,,,,,FALSE +Kelsea Ballerini,Half of My Hometown,new,,,,,60999,FALSE +Kelsea Ballerini,I Quit Drinking,new,,,,,65457,FALSE +Kelsea Ballerini,If You Go Down (I'm Goin' Down Too),new,,,,,71949,FALSE +Kelsea Ballerini,Miss Me More,new,,,,,54572,FALSE +Kelsea Ballerini,Peter Pan,new,,,,,51385,FALSE +Kendrick Lamar,All the Stars,new,,,,,56176,FALSE +Kendrick Lamar,Alright,new,,,,,74095,FALSE +Kendrick Lamar,Auntie Diaries,new,,,,,69572,FALSE +Kendrick Lamar,Backseat Freestyle,new,,,,,78678,FALSE +Kendrick Lamar,Bitch Don't Kill My Vibe,new,,,,,44995,FALSE +Kendrick Lamar,DNA.,new,,,,,75747,FALSE +Kendrick Lamar,Euphoria,new,,,,,81370,FALSE +Kendrick Lamar,HUMBLE.,new,,,,,53612,FALSE +Kendrick Lamar,King Kunta,new,,,,,63986,FALSE +Kendrick Lamar,Love,new,,,,,82261,FALSE +Kendrick Lamar,Meet the Grahams,new,,,,,81503,FALSE +Kendrick Lamar,Money Trees,new,,,,,74929,FALSE +Kendrick Lamar,N95,new,,,,,70456,FALSE +Kendrick Lamar,Not Like Us,new,,,,,81318,FALSE +Kendrick Lamar,Poetic Justice,new,,,,,43476,FALSE +Kendrick Lamar,Silent Hill,new,,,,,69696,FALSE +Kendrick Lamar,Swimming Pools (Drank),new,,,,,54918,FALSE +Kendrick Lamar,i,new,,,,,48102,FALSE +Kendrick Lamar,m.A.A.d city,new,,,,,78855,FALSE +Kenny Chesney,All the Pretty Girls,new,,,,,55067,FALSE +Kenny Chesney,American Kids,existing,,,,,,FALSE +Kenny Chesney,Come Over,existing,,,,,,FALSE +Kenny Chesney,Get Along,new,,,,,55527,FALSE +Kenny Chesney,I Go Back,new,,,,,8395,FALSE +Kenny Chesney,She Thinks My Tractor's Sexy,new,,,,,8781,FALSE +Kenny Chesney,Summertime,new,,,,,16462,FALSE +Kenny Chesney,When the Sun Goes Down,new,,,,,5799,FALSE +Kenny Chesney,Wild Child,existing,,,,,,FALSE +Kenny Chesney,You And Tequila,existing,,,,,,FALSE +Kenny Loggins,Footloose,existing,,,,,,FALSE +Kenny Loggins,Meet Me Half Way,new,,,,,65045,FALSE +Kenny Loggins,This Is It (Duet),existing,,,,,,FALSE +Kenny Rogers,Coward of the County,new,,,,,21073,FALSE +Kenny Rogers,Gambler,existing,,,,,,FALSE +Kenny Rogers,Lady,existing,,,,,,FALSE +Kenny Rogers,Ruby,existing,,,,,,FALSE +Kenny Rogers,We've Got Tonight,new,,,,,11427,FALSE +Kesha,Backstabber,new,,,,,82385,FALSE +Kesha,Blow,new,,,,,36302,FALSE +Kesha,Cannibal,new,,,,,35446,FALSE +Kesha,Die Young,existing,,,,,,FALSE +Kesha,TiK ToK,new,,,,,25855,FALSE +Kesha,We R Who We R,new,,,,,34910,FALSE +Kesha,Your Love Is My Drug,new,,,,,28197,FALSE +Keyshia Cole,Let It Go,new,,,,,14458,FALSE +Keyshia Cole,Love,new,,,,,14406,FALSE +Khalid,Better,new,,,,,58270,FALSE +Khalid,Location,new,,,,,53533,FALSE +Khalid,Silence,new,,,,,54566,FALSE +Khalid,Talk,new,,,,,58097,FALSE +Khalid,"Young, Dumb & Broke",new,,,,,54194,FALSE +Khruangbin,Texas Sun,new,,,,,75906,FALSE +Kid Cudi,Day 'n' Nite,new,,,,,21818,FALSE +Kid Cudi,Erase Me,new,,,,,33332,FALSE +Kid Cudi,Pursuit of Happiness (Steve Aoki remix),new,,,,,51597,FALSE +Kid Cudi,Pursuit of Happiness,new,,,,,28535,FALSE +Kid Cudi,Soundtrack 2 My Life,new,,,,,77047,FALSE +Kid Ink,Body Language,new,,,,,47704,FALSE +Kid Ink,Main Chick,new,,,,,47488,FALSE +Kid Ink,Show Me,new,,,,,46163,FALSE +Kid Rock,All Summer Long,existing,,,,,,FALSE +Kid Rock,Bawitdaba,new,,,,,35072,FALSE +Kid Rock,Cowboy,new,,,,,43065,FALSE +Kid Rock,Picture,existing,,,,,,FALSE +Killer Mike,A.D.I.D.A.S.,new,,,,,16488,FALSE +Killswitch Engage,End of Heartache,existing,,,,,,FALSE +Killswitch Engage,Holy Diver,new,,,,,27908,FALSE +Killswitch Engage,My Curse,new,,,,,69781,FALSE +Kim Carnes,Bette Davis Eyes,existing,,,,,,FALSE +Kim Wilde,Kids In America,existing,,,,,,FALSE +King Crimson,21st Century Schizoid Man,new,,,,,71124,FALSE +King Crimson,Epitaph,new,,,,,72579,FALSE +King Crimson,I Talk to the Wind,new,,,,,73799,FALSE +King Crimson,In the Court of the Crimson King,new,,,,,65493,FALSE +King Crimson,Starless,new,,,,,74460,FALSE +King Princess,1950,new,,,,,61539,FALSE +Kings Of Leon,Closer,existing,,,,,,FALSE +Kings Of Leon,Notion,existing,,,,,,FALSE +Kings Of Leon,Radioactive,existing,,,,,,FALSE +Kings Of Leon,Sex On Fire,existing,,,,,,FALSE +Kings Of Leon,Use Somebody,existing,,,,,,FALSE +Kings of Leon,Revelry,new,Kings Of Leon,,,,22228,FALSE +Kings of Leon,Walls,new,Kings Of Leon,,,,52061,FALSE +Kip Moore,Hey Pretty Girl,new,,,,,44593,FALSE +Kip Moore,Somethin' 'bout A Truck,new,,,,,39902,FALSE +Kirsty Ma Ccoll,A New England ,existing,Kirsty MacColl,,,,,FALSE +Kiss,Beth,new,KISS,,,,10291,FALSE +Kiss,Detroit Rock City,new,KISS,,,,21897,FALSE +Kiss,Heaven's On Fire,new,KISS,,,,21902,FALSE +Kiss,I Was Made For Lovin' You,new,KISS,,,,17659,FALSE +Kiss,Lick It Up,existing,KISS,,,,,FALSE +Kiss,Love Gun,new,KISS,,,,21904,FALSE +Kiss,Rock and Roll All Nite,new,KISS,,,,16497,FALSE +Kiss,Strutter,new,KISS,,,,21906,FALSE +Kitty Wells,Heaven's Just a Sin Away,existing,,,,,,FALSE +Kodaline,All I Want,new,,,,,43865,FALSE +Kodaline,Brother,new,,,,,74604,FALSE +Kodaline,The One,new,,,,,49038,FALSE +Koko Taylor & Buddy Guy,Born Under a Bad Sign,existing,,,,,,FALSE +Kook And The Gang,Ladies Night,existing,Kool & The Gang,,,,,FALSE +Kool & The Gang,Cherish,existing,,,,,,FALSE +Kool And The Gang,Celebration,existing,Kool & The Gang,,,,,FALSE +Kool And The Gang,Get Down On It,existing,Kool & The Gang,,,,,FALSE +Kool And The Gang,Jungle Boogie,existing,Kool & The Gang,,,,,FALSE +Kool and the Gang,Joanna,new,Kool & The Gang,,,,14043,FALSE +Kool and the Gang,Ladies Night,new,Kool & The Gang,,,,7446,FALSE +Kool and the Gang,Too Hot,new,Kool & The Gang,,,,8970,FALSE +Korn,Blind,new,,,,,64898,FALSE +Korn,Coming Undone,new,,,,,16503,FALSE +Korn,Falling Away from Me,new,,,,,53541,FALSE +Korn,Freak on a Leash,new,,,,,54791,FALSE +Korn,Got the Life,new,,,,,72027,FALSE +Korn,Twisted Transistor,new,,,,,16502,FALSE +Korn,Y'All Want a Single,new,,,,,73043,FALSE +Kraftwerk,Autobahn,new,,,,,48221,FALSE +Kraftwerk,Das Modell,new,,,,,19994,FALSE +Kraftwerk,Die Roboter,new,,,,,19995,FALSE +Kraftwerk,Radioactivity,new,,,,,34746,FALSE +Kraftwerk,The Model,new,,,,,14181,FALSE +Kris Kross,Jump,new,,,,,6403,FALSE +Kris Kross,Warm It Up,new,,,,,36218,FALSE +Kungs,Clap Your Hands,new,,,,,68697,FALSE +Kungs,Don't You Know,new,,,,,51642,FALSE +Kungs,I Feel So Bad,new,,,,,52311,FALSE +Kungs,Never Going Home,new,,,,,65248,FALSE +Kungs,This Girl,new,,,,,51013,FALSE +Kurt Nilsen,Gambler,existing,,,,,,FALSE +Kurt Vile,Pretty Pimpin,new,,,,,80328,FALSE +Kygo,Firestone,new,,,,,49011,FALSE +Kygo,It Ain't Me,new,,,,,52898,FALSE +Kygo,Lose Somebody,new,,,,,62193,FALSE +Kygo,Remind Me to Forget,new,,,,,55935,FALSE +Kygo,Stole The Show,new,,,,,49455,FALSE +Kygo,Whatever,new,,,,,79381,FALSE +Kylie Minogue,All the Lovers,existing,,,,,,FALSE +Kylie Minogue,Better the Devil You Know,existing,,,,,,FALSE +Kylie Minogue,Can't Get You Outta My Head,existing,,,,,,FALSE +Kylie Minogue,Get Outta My Way,existing,,,,,,FALSE +Kylie Minogue,I Believe In You,existing,,,,,,FALSE +Kylie Minogue,I Should Be so Lucky,existing,,,,,,FALSE +Kylie Minogue,I Was Gonna Cancel,existing,,,,,,FALSE +Kylie Minogue,In Your Eyes,existing,,,,,,FALSE +Kylie Minogue,Into the Blue,existing,,,,,,FALSE +Kylie Minogue,Locomotion,existing,,,,,,FALSE +Kylie Minogue,Love At First Sight,existing,,,,,,FALSE +Kylie Minogue,Shocked,existing,,,,,,FALSE +Kylie Minogue,Spinning Around,existing,,,,,,FALSE +Kylie Minogue,Step Back In Time,existing,,,,,,FALSE +Kylie Minogue,Two Hearts,existing,,,,,,FALSE +Kylie Minogue,Wow,existing,,,,,,FALSE +Kylie Vs New Order,Can't Get You Outta My Head,existing,,,,,,FALSE +LCD Soundsystem,All My Friends,new,,,,,38833,FALSE +LCD Soundsystem,Daft Punk is Playing at My House,new,,,,,80136,FALSE +LCD Soundsystem,Dance Yrself Clean,new,,,,,78793,FALSE +LCD Soundsystem,I Can Change,new,,,,,75430,FALSE +LCD Soundsystem,"New York, I Love You But You're Bringing Me Down",new,,,,,77671,FALSE +LCD Soundsystem,North American Scum,new,,,,,39152,FALSE +LEN,Steal My Sunshine,new,,,,,8736,FALSE +LL Cool J,Ain't Nobody,new,,,,,30525,FALSE +LL Cool J,Around The Way Girl,new,,,,,30116,FALSE +LL Cool J,Doin' It,new,,,,,57094,FALSE +LL Cool J,Freeze,new,,,,,16607,FALSE +LL Cool J,Hey Lover,new,,,,,32427,FALSE +LL Cool J,I'm Bad,new,,,,,63804,FALSE +LL Cool J,Loungin' (Who Do Ya Luv Remix),new,,,,,30554,FALSE +LL Cool J,Mama Said Knock You Out,new,,,,,57036,FALSE +LL Cool J,Murdergram Deux,new,,,,,83687,FALSE +LL Cool J,Phenomenon,new,,,,,35055,FALSE +LMFAO,Party Rock Anthem,existing,,,,,,FALSE +LMFAO,Sexy And I Know It,new,,,,,38264,FALSE +LMFAO,Shots,new,,,,,37360,FALSE +LMFAO,Sorry For Party Rocking,new,,,,,40136,FALSE +LP,Lost On You,new,,,,,43220,FALSE +LP,When We're High,new,,,,,75991,FALSE +La Roux,Bulletproof,existing,,,,,,FALSE +Labelle,Lady Marmalade,existing,,,,,,FALSE +Labi Sifre,Something Inside so Strong,existing,,,,,,FALSE +Labrinth,Beneath Your Beautiful feat. Emeli Sande,existing,,,,,,FALSE +Lady A,Bartender,new,,,,,47015,FALSE +Lady A,Just A Kiss,new,,,,,37110,FALSE +Lady A,Need You Now,new,,,,,25407,FALSE +Lady Antebellum,Bartender,existing,,,,,,FALSE +Lady Antebellum,Just A Kiss,existing,,,,,,FALSE +Lady Antebellum,Need You Now,existing,,,,,,FALSE +Lady Gaga,Applause,existing,,,,,,FALSE +Lady Gaga,Bad Romance,existing,,,,,,FALSE +Lady Gaga,Born This Way,existing,,,,,,FALSE +Lady Gaga,Die with a Smile,new,,,,,83192,FALSE +Lady Gaga,Edge of Glory,existing,,,,,,FALSE +Lady Gaga,Judas,new,,,,,36531,FALSE +Lady Gaga,Just Dance,existing,,,,,,FALSE +Lady Gaga,Marry the Night,existing,,,,,,FALSE +Lady Gaga,Paparazzi,existing,,,,,,FALSE +Lady Gaga,Poker Face,existing,,,,,,FALSE +Lady Gaga,Telephone,existing,,,,,,FALSE +Lady Gaga,You & I,existing,,,,,,FALSE +Lainey Wilson,Heart Like a Truck,new,,,,,69771,FALSE +Lainey Wilson,Things a Man Oughta Know,new,,,,,64296,FALSE +Lainey Wilson,Watermelon Moonshine,new,,,,,71634,FALSE +Lamb of God,Laid to Rest,new,Lamb Of God,,,,68535,FALSE +Lamb of God,Redneck,new,Lamb Of God,,,,71612,FALSE +Lana Del Rey,Born To Die,existing,,,,,,FALSE +Lana Del Rey,Brooklyn Baby,new,,,,,67727,FALSE +Lana Del Rey,Cinnamon Girl,new,,,,,59269,FALSE +Lana Del Rey,Diet Mountain Dew,new,,,,,39820,FALSE +Lana Del Rey,Say Yes to Heaven,new,,,,,75358,FALSE +Lana Del Rey,Summertime Sadness (Cedric Gervais Remix),existing,,,,,,FALSE +Lana Del Rey,Summertime Sadness,existing,,,,,,FALSE +Lana Del Rey,Video Games,existing,,,,,,FALSE +Lana Del Rey,West Coast,new,,,,,46894,FALSE +Lana Del Rey,Young And Beautiful,existing,,,,,,FALSE +Larry Williams,Bony Moronie,existing,,,,,,FALSE +Latto,Big Energy (remix),new,,,,,69334,FALSE +Latto,Big Energy,new,,,,,68008,FALSE +Latto,Lottery,new,,,,,74141,FALSE +Latto,Put It on da Floor Again,new,,,,,76045,FALSE +Latto,Sunday Service,new,,,,,80656,FALSE +Laura Branigan,Gloria,existing,,,,,,FALSE +Laurel Aitken,Brown Eyed Girl,existing,,,,,,FALSE +Lauren Alaina,Road Less Traveled,new,,,,,51874,FALSE +Lauren Spencer-Smith,Fingers Crossed,new,,,,,67817,FALSE +Lauren Spencer-Smith,Flowers,new,,,,,69379,FALSE +Lauryn Hill,Can't Take My Eyes Off Of You,new,,,,,19910,FALSE +Lauryn Hill,Doo Wop (That Thing),new,,,,,17608,FALSE +Lauryn Hill,Ex-Factor,new,,,,,21147,FALSE +Le Sserafim (),Perfect Night,new,Le Sserafim,,,,78221,FALSE +Le Sserafim (),Smart,new,Le Sserafim,,,,80725,FALSE +LeAnn Rimes,Can't Fight the Moonlight,new,,,,,7581,FALSE +LeAnn Rimes,I Need You,new,,,,,7374,FALSE +League of Legends,Enemy,new,,,,,67145,FALSE +League of Legends,Gods,new,,,,,77983,FALSE +League of Legends,Legends Never Die,new,,,,,69319,FALSE +League of Legends,Our Love,new,,,,,67604,FALSE +League of Legends,Paranoia,new,,,,,78837,FALSE +League of Legends,Playground,new,,,,,67349,FALSE +League of Legends,Rise,new,,,,,81683,FALSE +League of Legends,Star Walkin',new,,,,,71706,FALSE +League of Legends,The Baddest,new,,,,,77171,FALSE +League of Legends,Villain,new,,,,,77868,FALSE +League of Legends,What Could Have Been,new,,,,,67758,FALSE +Leann Rimes,How Do I Live Without You ?,existing,LeAnn Rimes,,,,,FALSE +Led Zeppelin,All My Love,new,,,,,46367,FALSE +Led Zeppelin,Babe I'm Gonna Leave You,existing,,,,,,FALSE +Led Zeppelin,Black Dog,new,,,,,30527,FALSE +Led Zeppelin,Bron-Y-Aur Stomp,new,,,,,62033,FALSE +Led Zeppelin,Celebration Day,new,,,,,68173,FALSE +Led Zeppelin,Communication Breakdown,new,,,,,25373,FALSE +Led Zeppelin,Custard Pie,new,,,,,62743,FALSE +Led Zeppelin,D'yer Mak'er,new,,,,,25135,FALSE +Led Zeppelin,Dancing Days,existing,,,,,,FALSE +Led Zeppelin,Dazed And Confused,existing,,,,,,FALSE +Led Zeppelin,Fool in the Rain,new,,,,,60304,FALSE +Led Zeppelin,Going To California,new,,,,,19915,FALSE +Led Zeppelin,Good Times Bad Times,new,,,,,24446,FALSE +Led Zeppelin,Heartbreaker,existing,,,,,,FALSE +Led Zeppelin,"Hey, Hey, What Can I Do",new,,,,,52335,FALSE +Led Zeppelin,Hot Dog,new,,,,,65083,FALSE +Led Zeppelin,Houses of the Holy,new,,,,,55526,FALSE +Led Zeppelin,I'm Gonna Crawl,new,,,,,75575,FALSE +Led Zeppelin,Immigrant Song,new,,,,,24880,FALSE +Led Zeppelin,In the Evening,new,,,,,61337,FALSE +Led Zeppelin,Kashmir,existing,,,,,,FALSE +Led Zeppelin,Living Loving Maid (She's Just a Woman),new,,,,,29941,FALSE +Led Zeppelin,Misty Mountain Hop,existing,,,,,,FALSE +Led Zeppelin,Over the Hills and Far away,new,,,,,51287,FALSE +Led Zeppelin,Ramble On,existing,,,,,,FALSE +Led Zeppelin,Rock And Roll,existing,,,,,,FALSE +Led Zeppelin,Rock and Roll,new,,,,,20862,FALSE +Led Zeppelin,Stairway To Heaven,existing,,,,,,FALSE +Led Zeppelin,Tangerine,new,,,,,62955,FALSE +Led Zeppelin,Ten Years Gone,existing,,,,,,FALSE +Led Zeppelin,The Battle Of Evermore,new,,,,,36980,FALSE +Led Zeppelin,The Crunge,new,,,,,25275,FALSE +Led Zeppelin,The Lemon Song,new,,,,,60296,FALSE +Led Zeppelin,The Ocean,existing,,,,,,FALSE +Led Zeppelin,The Rain Song,new,,,,,49811,FALSE +Led Zeppelin,The Rover,new,,,,,61573,FALSE +Led Zeppelin,The Song Remains the Same,new,,,,,57031,FALSE +Led Zeppelin,What Is and What Should Never Be,new,,,,,53103,FALSE +Led Zeppelin,When The Levee Breaks,new,,,,,29219,FALSE +Led Zeppelin,Whole Lotta Love,existing,,,,,,FALSE +Led Zeppelin,You Shook Me,new,,,,,68969,FALSE +Led Zeppelin,Your Time Is Gonna Come,new,,,,,68056,FALSE +Lee Ann Womack,I Hope You Dance,existing,,,,,,FALSE +Lee Greenwood,God Bless The U.S.A.,new,,,,,8190,FALSE +Lenny Kravitz,Again,new,,,,,7590,FALSE +Lenny Kravitz,American Woman,existing,,,,,,FALSE +Lenny Kravitz,Are You Gonna Go My Way ?,existing,,,,,,FALSE +Lenny Kravitz,Fly Away,existing,,,,,,FALSE +Lenny Kravitz,I Belong to You,new,,,,,7370,FALSE +Lenny Kravitz,It Ain't Over Till It's Over,existing,,,,,,FALSE +Leo Sayer,You Make Me Feel Like Dancing,existing,,,,,,FALSE +Leon Bridges,Bad Bad News,new,,,,,77649,FALSE +Leon Bridges,Better Man,new,,,,,81975,FALSE +Leon Bridges,Beyond,new,,,,,56298,FALSE +Leon Bridges,Coming Home,new,,,,,49850,FALSE +Leon Bridges,Motorbike,new,,,,,65420,FALSE +Leon Bridges,River,new,,,,,58115,FALSE +Leon Bridges,Smooth Sailin',new,,,,,64496,FALSE +Leon Jackson,When You Believe,existing,,,,,,FALSE +Leona Lewis,Better In Time,existing,,,,,,FALSE +Leona Lewis,Run,existing,,,,,,FALSE +Leonard Cohen,Dance Me to the End of Love,new,,,,,30710,FALSE +Leonard Cohen,Famous Blue Raincoat,new,,,,,68205,FALSE +Leonard Cohen,Hallelujah,existing,,,,,,FALSE +Leonard Cohen,Suzanne,new,,,,,20803,FALSE +Leonard Cohen,You Want It Darker,new,,,,,79993,FALSE +Leroy Van Dyke,Walk On By,existing,,,,,,FALSE +Level 42,Something About You,new,,,,,31833,FALSE +Lewis Capaldi,Before You Go,new,,,,,60020,FALSE +Lewis Capaldi,Bruises,new,,,,,57410,FALSE +Lewis Capaldi,Forever,new,,,,,59045,FALSE +Lewis Capaldi,Forget Me,new,,,,,71443,FALSE +Lewis Capaldi,Grace,new,,,,,57177,FALSE +Lewis Capaldi,Hold Me While You Wait,new,,,,,58319,FALSE +Lewis Capaldi,Someone You Loved,new,,,,,57377,FALSE +Lewis Capaldi,Wish You the Best,new,,,,,74635,FALSE +Liberty X,Night To Remember,existing,,,,,,FALSE +Lifehouse,Everything,new,,,,,28835,FALSE +Lifehouse,Hanging by a Moment,new,,,,,16539,FALSE +Lifehouse,You and Me,new,,,,,11573,FALSE +Lil Baby,Close Friends,new,,,,,83767,FALSE +Lil Baby,Freestyle,new,,,,,73564,FALSE +Lil Baby,Yes Indeed,new,,,,,60649,FALSE +Lil Durk,All My Life,new,,,,,75683,FALSE +Lil Durk,Broadway Girls,new,,,,,67719,FALSE +Lil Durk,Stand by Me,new,,,,,76761,FALSE +Lil Durk,Who Want Smoke,new,,,,,28410,FALSE +Lil Mama,Lip Gloss,new,,,,,78736,FALSE +Lil Mama,Shawty Get Loose,new,,,,,26631,FALSE +Lil Nas X,Am I Dreaming,new,,,,,66388,FALSE +Lil Nas X,Dont Want It,new,,,,,66861,FALSE +Lil Nas X,Industry Baby Montero (live at the 2021 MTV Video Music Awards),new,,,,,66333,FALSE +Lil Nas X,Industry Baby,new,,,,,65714,FALSE +Lil Nas X,Lost in the Citadel,new,,,,,66693,FALSE +Lil Nas X,Montero (Call Me By Your Name) (Satan's Extended Version),new,,,,,64459,FALSE +Lil Nas X,Montero (Call Me By Your Name) (live at the 2021 BET Awards),new,,,,,65973,FALSE +Lil Nas X,Montero (Call Me By Your Name),new,,,,,64458,FALSE +Lil Nas X,Old Town Road (Seoul Town Road remix),new,,,,,73317,FALSE +Lil Nas X,Old Town Road (remix),new,,,,,58131,FALSE +Lil Nas X,Old Town Road,new,,,,,58022,FALSE +Lil Nas X,Panini,new,,,,,58704,FALSE +Lil Nas X,Rodeo,new,,,,,58865,FALSE +Lil Nas X,Sun Goes Down,new,,,,,65185,FALSE +Lil Nas X,Thats What I Want,new,,,,,66343,FALSE +Lil Peep,Awful Things,new,,,,,79562,FALSE +Lil Peep,Falling Down,new,,,,,74953,FALSE +Lil Peep,I've Been Waiting,new,,,,,58153,FALSE +Lil Peep,Star Shopping,new,,,,,79802,FALSE +Lil Peep,Witchblades,new,,,,,75456,FALSE +Lil Pump,Gucci Gang,new,,,,,64009,FALSE +Lil Rob,Summer Nights,new,,,,,80002,FALSE +Lil Suzy,Take Me in Your Arms,new,,,,,80158,FALSE +Lil Tecca,Ransom,new,,,,,60073,FALSE +Lil Uzi Vert,Just Wanna Rock,new,,,,,73125,FALSE +Lil Uzi Vert,XO Tour Llif3,new,,,,,63691,FALSE +Lil Wayne,6 Foot 7 Foot,new,,,,,35748,FALSE +Lil Wayne,A Milli,new,,,,,60652,FALSE +Lil Wayne,Believe Me,new,,,,,47149,FALSE +Lil Wayne,Bitches Love Me,new,,,,,42988,FALSE +Lil Wayne,Blunt Blowin',new,,,,,76759,FALSE +Lil Wayne,Drop The World,new,,,,,27197,FALSE +Lil Wayne,Go D.J.,new,,,,,16545,FALSE +Lil Wayne,How To Love,new,,,,,37548,FALSE +Lil Wayne,Ice Cream,new,,,,,67338,FALSE +Lil Wayne,Lollipop,new,,,,,17955,FALSE +Lil Wayne,Mirror,new,,,,,39899,FALSE +Lil Wayne,Mona Lisa,new,,,,,82922,FALSE +Lil Wayne,Mrs. Officer,new,,,,,21354,FALSE +Lil Wayne,Rich as Fuck,new,,,,,7179,FALSE +Lil Wayne,Right Above It,new,,,,,32920,FALSE +Lil Wayne,She Will,new,,,,,83492,FALSE +Lil Wyte,Oxy Cotton,new,,,,,83750,FALSE +Lil Yachty,Poland,new,,,,,72214,FALSE +Lil' Boosie,Set It Off,new,,,,,75037,FALSE +Lil' Bow Wow,Basketball,new,,,,,5824,FALSE +Lil' Bow Wow,Let Me Hold You,new,,,,,15187,FALSE +Lil' Flip,Sunshine (clean),new,,,,,41107,FALSE +Lil' Flip,Sunshine,new,,,,,16546,FALSE +Lil' Jon,Get Low,new,,,,,16542,FALSE +Lil' Jon,Lovers and Friends,new,,,,,16543,FALSE +Lil' Jon,Snap Yo Fingers,new,,,,,79003,FALSE +Lil' Kim,Crush on You,new,,,,,77151,FALSE +Lil' Kim,How Many Licks,new,,,,,75052,FALSE +Lil' Kim,Magic Stick (clean),new,,,,,36777,FALSE +Lil' Kim,Magic Stick,new,,,,,16548,FALSE +Lil' Kim,No Time,new,,,,,34386,FALSE +Lil' Kim,Not Tonight (Ladies Night Remix),new,,,,,34845,FALSE +Lil' Kim,The Jump Off (clean),new,,,,,36820,FALSE +Lil' Kleine,Drank en Drugs,new,,,,,73928,FALSE +Lil' Kleine,Krantenwijk,new,,,,,78827,FALSE +Lil' Romeo,My Baby,new,,,,,16544,FALSE +Lil' Troy,Wanna Be a Baller,new,,,,,66587,FALSE +Lilly Allen,Somewhere Only We Know,existing,Lily Allen,,,,,FALSE +Lilly Wood & The Prick & Robin Schulz,Prayer In C Robin Schulz Remix,existing,,,,,,FALSE +Lily Allen,Not Fair,existing,,,,,,FALSE +Lily Allen,Smile,existing,,,,,,FALSE +Limp Bizkit,Behind Blue Eyes,new,,,,,21084,FALSE +Limp Bizkit,Break Stuff,new,,,,,56675,FALSE +Limp Bizkit,Faith,new,,,,,73093,FALSE +Limp Bizkit,Hot Dog,new,,,,,27753,FALSE +Limp Bizkit,My Generation,new,,,,,72887,FALSE +Limp Bizkit,My Way,new,,,,,29092,FALSE +Limp Bizkit,Nookie,new,,,,,27257,FALSE +Limp Bizkit,Rollin' (Air Raid Vehicle),new,,,,,58351,FALSE +Limp Bizkit,Take a Look Around,new,,,,,35406,FALSE +Linda Ronstadt,Blue Bayou,existing,,,,,,FALSE +Linda Ronstadt,Don't Know Much,new,,,,,6133,FALSE +Linda Ronstadt,It's So Easy,existing,,,,,,FALSE +Linda Ronstadt,You're No Good,existing,,,,,,FALSE +Lindisfarne,Meet Me On the Corner,existing,,,,,,FALSE +Linkin Park,Bleed it Out,new,,,,,12719,FALSE +Linkin Park,Crawling,new,,,,,24198,FALSE +Linkin Park,Faint,new,,,,,23076,FALSE +Linkin Park,In the End,new,,,,,14538,FALSE +Linkin Park,Numb,existing,,,,,,FALSE +Linkin Park,One Step Closer,new,,,,,42521,FALSE +Linkin Park,Somewhere I Belong,new,,,,,41101,FALSE +Linkin Park,The Emptiness Machine,new,,,,,83536,FALSE +Linkin Park,What I've Done,new,,,,,12005,FALSE +Lionel Richie,All Night Long,existing,,,,,,FALSE +Lionel Richie,Dancing On The Ceiling (Live Version),existing,,,,,,FALSE +Lionel Richie,Easy,existing,,,,,,FALSE +Lionel Richie,Endless Love (With Shania Twain),existing,,,,,,FALSE +Lionel Richie,Hello,existing,,,,,,FALSE +Lionel Richie,My Love,existing,,,,,,FALSE +Lionel Richie,Penny Lover,existing,,,,,,FALSE +Lionel Richie,Running With the Night,existing,,,,,,FALSE +Lionel Richie,Stuck On You,existing,,,,,,FALSE +Lionel Richie,Three Times A Lady,existing,,,,,,FALSE +Little Big Town,Better Man,new,,,,,52098,FALSE +Little Big Town,Boondocks,new,,,,,16570,FALSE +Little Big Town,Girl Crush,new,,,,,48087,FALSE +Little Big Town,Pontoon,new,,,,,40811,FALSE +Little Big Town,"Wine, Beer, Whiskey",new,,,,,60882,FALSE +Little Eva,Locomotion,existing,,,,,,FALSE +Little Feat,Dixie Chicken,new,,,,,16572,FALSE +Little Feat,Willin',new,,,,,61731,FALSE +Little Richard,Girl Can't Help It,existing,,,,,,FALSE +Little Richard,Long Tall Sally,existing,,,,,,FALSE +Little Richard,Tutti Frutti,existing,,,,,,FALSE +Little River Band,Cool Change,new,,,,,40149,FALSE +Little River Band,Lady,existing,,,,,,FALSE +Little River Band,Lonesome Loser,existing,,,,,,FALSE +Little River Band,Reminiscing,new,,,,,24792,FALSE +Little Walter,My Babe,existing,,,,,,FALSE +Live,I Alone,new,,,,,46439,FALSE +Live,Lightning Crashes,existing,,,,,,FALSE +Live,Selling the Drama,new,,,,,23987,FALSE +Living Colour,Cult Of Personality,existing,,,,,,FALSE +Liz Phair,Everything to Me,new,,,,,16602,FALSE +Liz Phair,Extraordinary,new,,,,,16603,FALSE +Liz Phair,Supernova,new,,,,,83711,FALSE +Liz Phair,Why Can't I,new,,,,,6265,FALSE +Lizzo,2 Be Loved (Am I Ready),new,,,,,70695,FALSE +Lizzo,About Damn Time,new,,,,,69196,FALSE +Lizzo,Boys,new,,,,,58628,FALSE +Lizzo,Good As Hell,new,,,,,58280,FALSE +Lizzo,Juice,new,,,,,57415,FALSE +Lizzo,Rumors,new,,,,,23031,FALSE +Lizzo,Tempo,new,,,,,58365,FALSE +Lizzo,Truth Hurts,new,,,,,58304,FALSE +Lobo,Me & You & a Dog Named Boo,existing,,,,,,FALSE +Loggins and Messina,Danny's Song,new,,,,,62141,FALSE +Logic,1-800-273-8255,new,,,,,54620,FALSE +Logic,Buried Alive,new,,,,,47815,FALSE +Logic,Homicide,new,,,,,73393,FALSE +London Grammar,Hey Now,new,,,,,79795,FALSE +London Grammar,Strong,new,,,,,44994,FALSE +London Grammar,Wasting My Young Years,new,,,,,46374,FALSE +Lonestar,Amazed,existing,,,,,,FALSE +Lord Huron,I Lied,new,,,,,67433,FALSE +Lord Huron,Meet Me in the Woods,new,,,,,77373,FALSE +Lord Huron,The Night We Met,new,,,,,53152,FALSE +Lord Rockingham's Xi,Hoots Mon,existing,,,,,,FALSE +Lorde,Buzzcut Season,new,,,,,46036,FALSE +Lorde,Green Light,new,,,,,31648,FALSE +Lorde,Liability,new,,,,,53225,FALSE +Lorde,Perfect Places,new,,,,,54244,FALSE +Lorde,Ribs,new,,,,,72803,FALSE +Lorde,Royals,existing,,,,,,FALSE +Lorde,Supercut,new,,,,,82848,FALSE +Lorde,Team,existing,,,,,,FALSE +Loretta Lynn,Coal Miner's Daughter,existing,,,,,,FALSE +Los Bravos,Black Is Black,existing,,,,,,FALSE +Los Cafres,Nice Time,existing,,,,,,FALSE +Los Del Rio,Macarena (Bayside Boys Remix),existing,,,,,,FALSE +Los Lobos,La Bamba,existing,,,,,,FALSE +Los Lonely Boys,Heaven,existing,,,,,,FALSE +Lost Frequencies,Are You With Me,new,,,,,48949,FALSE +Lost Frequencies,Crazy,new,,,,,55040,FALSE +Lost Frequencies,Reality,new,,,,,49476,FALSE +Lost Frequencies,Where Are You Now,new,,,,,66741,FALSE +Lou Reed,Perfect Day,existing,,,,,,FALSE +Lou Reed,Walk On the Wild Side,existing,,,,,,FALSE +Louis Armstrong,We Have All the Time In the World,existing,,,,,,FALSE +Louis Armstrong,What a Wonderful World,existing,,,,,,FALSE +Love Affair,Everlasting Love,existing,,,,,,FALSE +Loverboy,Turn Me Loose,existing,,,,,,FALSE +Loverboy,Working For The Weekend,existing,,,,,,FALSE +Lovin' Spoonful,Daydream,existing,,,,,,FALSE +Lucinda Williams,Can't Let Go,new,,,,,31172,FALSE +Lucinda Williams,Drunken Angel,existing,,,,,,FALSE +Lucinda Williams,Righteously,existing,,,,,,FALSE +Ludacris,Area Codes,new,,,,,16646,FALSE +Ludacris,How Low,existing,,,,,,FALSE +Ludacris,Move Bitch,new,,,,,68187,FALSE +Ludacris,My Chick Bad,existing,,,,,,FALSE +Ludacris,Number One Spot,new,,,,,16651,FALSE +Ludacris,Rollout (My Business),new,,,,,18724,FALSE +Ludacris,Southern Hospitality,new,,,,,68885,FALSE +Ludacris,Stand Up,new,,,,,16647,FALSE +Ludacris,What's Your Fantasy,new,,,,,68640,FALSE +Lukas Graham,7 Years,new,,,,,50548,FALSE +Lukas Graham,Love Someone,new,,,,,56413,FALSE +Lukas Graham,Mama Said,new,,,,,51866,FALSE +Luke Bryan,Country Girl (Shake It For Me),new,,,,,37118,FALSE +Luke Bryan,Drunk On You,existing,,,,,,FALSE +Luke Bryan,Kiss Tomorrow Goodbye,new,,,,,42107,FALSE +Luke Bryan,Knockin' Boots,new,,,,,58021,FALSE +Luke Bryan,One Margarita,new,,,,,61229,FALSE +Luke Bryan,Play It Again,existing,,,,,,FALSE +Luke Bryan,Rain Is a Good Thing,new,,,,,26994,FALSE +Luke Bryan,That's My Kind Of Night,new,,,,,44844,FALSE +Luke Combs,Beautiful Crazy,new,,,,,55574,FALSE +Luke Combs,Beer Never Broke My Heart,new,,,,,58251,FALSE +Luke Combs,Fast Car,new,,,,,74245,FALSE +Luke Combs,Hurricane,new,,,,,53017,FALSE +Luke Combs,She Got the Best of Me,new,,,,,55980,FALSE +Luke Combs,The Kind of Love We Make,new,,,,,70060,FALSE +Luke Combs,When It Rains It Pours,new,,,,,53788,FALSE +Luke Combs,Where the Wild Things Are,new,,,,,74391,FALSE +Lulu,Shout,existing,,,,,,FALSE +Lupe Fiasco,Kick Push,new,,,,,33964,FALSE +Lupe Fiasco,Old School Love,new,,,,,46074,FALSE +Lupe Fiasco,Shining Down,new,,,,,24041,FALSE +Lupe Fiasco,The Show Goes On,new,,,,,36491,FALSE +Luther Vandross,Always & Forever,existing,,,,,,FALSE +Luther Vandross,Dance With My Father,existing,,,,,,FALSE +Luther Vandross,Endless Love,new,,,,,14230,FALSE +Luther Vandross,Never Too Much,new,,,,,14092,FALSE +Luther Vandross,Reflections,existing,,,,,,FALSE +Lyle Lovett,Funny How Time Slips Away,new,,,,,10115,FALSE +Lyle Lovett,If I Had a Boat,new,,,,,70376,FALSE +Lyle Lovett,She's No Lady,new,,,,,70986,FALSE +Lyle Lovett,That's Right You're Not From Texas,existing,,,,,,FALSE +Lynyrd Skynyrd,Call Me The Breeze,existing,,,,,,FALSE +Lynyrd Skynyrd,Down South Jukin',new,,,,,70400,FALSE +Lynyrd Skynyrd,Free Bird,existing,,,,,,FALSE +Lynyrd Skynyrd,Gimme Back My Bullets,existing,,,,,,FALSE +Lynyrd Skynyrd,Gimme Three Steps,new,,,,,7127,FALSE +Lynyrd Skynyrd,I Know a Little,new,,,,,57272,FALSE +Lynyrd Skynyrd,Saturday Night Special,existing,,,,,,FALSE +Lynyrd Skynyrd,Simple Man,existing,,,,,,FALSE +Lynyrd Skynyrd,Sweet Home Alabama,existing,,,,,,FALSE +Lynyrd Skynyrd,That Smell,new,,,,,52741,FALSE +Lynyrd Skynyrd,Tuesday's Gone,new,,,,,24024,FALSE +Lynyrd Skynyrd,What's Your Name,existing,,,,,,FALSE +Lynyrd Skynyrd,You Got That Right,existing,,,,,,FALSE +M,Pop Musik,existing,,,,,,FALSE +M.I.A.,Bad Girls,new,,,,,72344,FALSE +M.I.A.,Paper Planes,new,,,,,20618,FALSE +M.I.A.,XXXO,new,,,,,32039,FALSE +M83,Midnight City,new,,,,,39551,FALSE +M83,Oblivion,new,,,,,43723,FALSE +MC Breed,Ain't No Future in Yo' Frontin',new,,,,,83071,FALSE +MC Chris,Fett's Vette,new,,,,,76828,FALSE +MC Hammer,Addams Groove,new,,,,,33831,FALSE +MC Hammer,Do Not Pass Me By,new,,,,,24857,FALSE +MC Hammer,Pray,new,,,,,30132,FALSE +MC Hammer,U Can't Touch This,new,,,,,13657,FALSE +MGK,Bad Things,new,,,,,52809,FALSE +MGK,Bloody Valentine,new,,,,,66856,FALSE +MGK,Forget Me Too,new,,,,,67357,FALSE +MGK,Home,new,,,,,82021,FALSE +MGK,I Think I'm Okay,new,,,,,28061,FALSE +MGK,My Ex's Best Friend,new,,,,,63692,FALSE +MGMT,Electric Feel,new,,,,,20747,FALSE +MGMT,Kids,existing,,,,,,FALSE +MGMT,Time to Pretend,new,,,,,26108,FALSE +Mac DeMarco,Chamber of Reflection,new,,,,,72799,FALSE +Mac DeMarco,Freaking Out the Neighborhood,new,,,,,74822,FALSE +Mac Miller,2009,new,,,,,80507,FALSE +Mac Miller,Dang!,new,,,,,69197,FALSE +Mac Miller,Donald Trump,new,,,,,70467,FALSE +Mac Miller,Good News,new,,,,,79070,FALSE +Mac Miller,Knock Knock,new,,,,,74665,FALSE +Mac Miller,My Favorite Part,new,,,,,26396,FALSE +Mac Miller,Self Care,new,,,,,76843,FALSE +Mac Miller,The Spins,new,,,,,67781,FALSE +Mac Miller,What's the Use,new,,,,,70020,FALSE +Macklemore,Glorious,new,,,,,54144,FALSE +Macklemore,Good Old Days,new,,,,,55038,FALSE +Macklemore & Ryan Lewis,Can't Hold Us,new,,,,,43126,FALSE +Macklemore & Ryan Lewis,Downtown,new,,,,,49812,FALSE +Macklemore & Ryan Lewis,Same Love,new,,,,,44565,FALSE +Macklemore & Ryan Lewis,White Walls,new,,,,,46248,FALSE +Macklemore And Ryan Lewis,Thrift Shop,existing,Macklemore & Ryan Lewis,,,,,FALSE +Macy Gray,I Try,new,,,,,8938,FALSE +Maddie & Tae,Die From a Broken Heart,new,,,,,57352,FALSE +Maddie & Tae,Friends Don't,new,,,,,55934,FALSE +Madeleine Peyroux,Dance Me To The End Of Love,existing,,,,,,FALSE +Madeleine Peyroux,Don't Wait Too Long,existing,,,,,,FALSE +Madeleine Peyroux,J'Ai Deux Amours,existing,,,,,,FALSE +Madness,Baggy Trousers,existing,,,,,,FALSE +Madness,Embarrassment,existing,,,,,,FALSE +Madness,House of Fun,existing,,,,,,FALSE +Madness,It Must Be Love,existing,,,,,,FALSE +Madness,Madness,existing,,,,,,FALSE +Madness,My Girl,existing,,,,,,FALSE +Madness,Prince,existing,,,,,,FALSE +Madness,Wings of a Dove,existing,,,,,,FALSE +Madonna,Borderline,existing,,,,,,FALSE +Madonna,Cherish,existing,,,,,,FALSE +Madonna,Crazy for You,existing,,,,,,FALSE +Madonna,Give It To Me,existing,,,,,,FALSE +Madonna,Holiday,existing,,,,,,FALSE +Madonna,Hung Up,existing,,,,,,FALSE +Madonna,Into the Groove,existing,,,,,,FALSE +Madonna,La Isla Bonita,existing,,,,,,FALSE +Madonna,Like A Prayer,existing,,,,,,FALSE +Madonna,Like a Virgin,existing,,,,,,FALSE +Madonna,Live To Tell,existing,,,,,,FALSE +Madonna,Masterpiece,existing,,,,,,FALSE +Madonna,Material Girl,existing,,,,,,FALSE +Madonna,Open Your Heart,existing,,,,,,FALSE +Madonna,Papa Don't Preach,existing,,,,,,FALSE +Madonna,Sorry,existing,,,,,,FALSE +Madonna,True Blue,existing,,,,,,FALSE +Madonna,Vogue,existing,,,,,,FALSE +Magic,Rude,existing,,,,,,FALSE +Major Lazer,Cold Water,new,,,,,51591,FALSE +Major Lazer,Know No Better,new,,,,,53651,FALSE +Major Lazer,Lean On,new,,,,,49193,FALSE +Major Lazer,Light It Up (remix),new,,,,,50820,FALSE +Major Lazer,Que calor,new,,,,,60464,FALSE +Mama's & Papa's,Dream a Little Dream of Me,existing,The Mamas And The Papas,,,,,FALSE +Maneskin,Beggin',new,,,,,65555,FALSE +Maneskin,Gossip,new,,,,,73224,FALSE +Maneskin,I Wanna Be Your Slave,new,,,,,65162,FALSE +Maneskin,The Loneliest,new,,,,,71913,FALSE +Maneskin,Zitti e Buoni,new,,,,,64117,FALSE +Manfred Mann,Blinded By the Light,existing,,,,,,FALSE +Manfred Mann,Do Wah Diddy,existing,,,,,,FALSE +Manfred Mann,If You Gotta Go,existing,,,,,,FALSE +Manfred Mann,Pretty Flamingo,existing,,,,,,FALSE +Manfred Mann,The Mighty Quinn (Quinn The Eskimo),existing,,,,,,FALSE +Marc Anthony,Ahora quien (salsa version),new,,,,,61996,FALSE +Marc Anthony,Flor palida,new,,,,,61855,FALSE +Marc Anthony,Tu amor me hace bien,new,,,,,21514,FALSE +Marc Anthony,Valio La Pena (Salsa Version),existing,,,,,,FALSE +Marc Anthony,Vivir Mi Vida,existing,,,,,,FALSE +Marc Anthony,Vivir lo nuestro,new,,,,,61076,FALSE +Marcus King,Beautiful Stranger,new,,,,,83459,FALSE +Marcus King,The Well,new,,,,,83121,FALSE +Marcus King,Wildflowers & Wine,new,,,,,77899,FALSE +Marcy Playground,Sex And Candy,existing,,,,,,FALSE +Maren Morris,I Could Use a Love Song,new,,,,,51475,FALSE +Maren Morris,My Church,new,,,,,50555,FALSE +Maren Morris,The Bones,new,,,,,57929,FALSE +Mariah Carey,All I Want for Christmas,existing,,,,,,FALSE +Mariah Carey,Always Be My Baby,new,,,,,10784,FALSE +Mariah Carey,Fantasy,new,,,,,21733,FALSE +Mariah Carey,Fly Like a Bird,existing,,,,,,FALSE +Mariah Carey,Hero,existing,,,,,,FALSE +Mariah Carey,O Holy Night,existing,,,,,,FALSE +Mariah Carey,Obsessed,new,,,,,23931,FALSE +Mariah Carey,We Belong Together,new,,,,,5594,FALSE +Mariah Carey,Without You,new,,,,,10070,FALSE +Marillion,Kayleigh,existing,,,,,,FALSE +Marilyn Manson,Sweet Dreams (Are Made of This),new,,,,,35595,FALSE +Marilyn Manson,Tainted Love,new,,,,,25860,FALSE +Marilyn Manson,The Beautiful People,new,,,,,55218,FALSE +Marilyn Manson,This Is the New Shit,new,,,,,71250,FALSE +Marilyn Monroe,Diamonds Are Girls Best Friend,existing,,,,,,FALSE +Mario,Let Me Love You,existing,,,,,,FALSE +Mario Winans,I Don't Wanna Know,existing,,,,,,FALSE +Mark Cohn,Walking In Memphis,existing,,,,,,FALSE +Mark Ronson Feat. Lilly Allen,Oh My God,existing,,,,,,FALSE +Marmalade,Ob-La-Di-Ob-La-Da,existing,,,,,,FALSE +Marmalade,Reflections of My Life,existing,,,,,,FALSE +Maroon 5,Animals,existing,,,,,,FALSE +Maroon 5,Harder To Breathe,existing,,,,,,FALSE +Maroon 5,Maps,new,,,,,47212,FALSE +Maroon 5,Memories,new,,,,,59413,FALSE +Maroon 5,Moves Like Jagger,existing,,,,,,FALSE +Maroon 5,One More Night,existing,,,,,,FALSE +Maroon 5,Payphone,new,,,,,40348,FALSE +Maroon 5,She Will Be Loved,existing,,,,,,FALSE +Maroon 5,Sugar,existing,,,,,,FALSE +Maroon 5,Sunday Morning,existing,,,,,,FALSE +Maroon 5,This Love,existing,,,,,,FALSE +Martha Reeves,Heatwave,existing,,,,,,FALSE +Martha Reeves & The Vandellas,Dancing In the Street,existing,,,,,,FALSE +Martha Reeves & The Vandellas,Nowhere To Run,existing,,,,,,FALSE +Martika,I Feel the Earth Move,existing,,,,,,FALSE +Martin Garrix,In The Name of Love,new,,,,,52015,FALSE +Martin Garrix,Ocean,new,,,,,56640,FALSE +Martin Garrix,Scared to Be Lonely,new,,,,,52724,FALSE +Martin Garrix,There for You,new,,,,,53484,FALSE +Martin Solveig,All Day and Night,new,,,,,59096,FALSE +Martin Solveig,All Stars,new,,,,,54088,FALSE +Martin Solveig,Hello,new,,,,,35291,FALSE +Martin Solveig,Intoxicated,new,,,,,49362,FALSE +Martina McBride,This One's For The Girls,existing,,,,,,FALSE +Martina Mcbride,White Christmas,existing,Martina McBride,,,,,FALSE +Marty Wilde,Sea of Love,existing,,,,,,FALSE +Marvin Gaye,Ain't Nothin' Like The Real Thing,new,,,,,29131,FALSE +Marvin Gaye,Ain't That Peculiar,new,,,,,35464,FALSE +Marvin Gaye,How Sweet It Is,existing,,,,,,FALSE +Marvin Gaye,I Heard It Through the Grapevine,existing,,,,,,FALSE +Marvin Gaye,Inner City Blues (Make Me Wanna Holler),new,,,,,62154,FALSE +Marvin Gaye,Let's Get It On,existing,,,,,,FALSE +Marvin Gaye,Mercy Mercy Me (The Ecology),existing,,,,,,FALSE +Marvin Gaye,Sexual Healing,existing,,,,,,FALSE +Marvin Gaye,Too Busy Thinking About My Baby,existing,,,,,,FALSE +Marvin Gaye,Trouble Man,new,,,,,66003,FALSE +Marvin Gaye,What's Going On,existing,,,,,,FALSE +Marvin Gaye,Wherever I Lay My Hat,existing,,,,,,FALSE +Marvin Gaye,You're All I Need to Get by,new,,,,,68994,FALSE +Marvin Gaye & Kim Weston,It Takes Two,existing,,,,,,FALSE +Marvin Gaye & Tammi Terrell,Ain't No Mountain High Enough,existing,,,,,,FALSE +Marvin Gaye & Tammi Terrell,Onion Song,existing,,,,,,FALSE +Mary J. Blige,Be Without You,new,,,,,19424,FALSE +Mary J. Blige,Family Affair,new,,,,,19426,FALSE +Mary J. Blige,One,new,,,,,11777,FALSE +Mary J. Blige,Real Love,new,,,,,6436,FALSE +Mary Mary,Shackles,existing,,,,,,FALSE +Mary Wells,My Guy,existing,,,,,,FALSE +Massive Attack,Live with Me,new,,,,,38222,FALSE +Massive Attack,Teardrop,new,,,,,20302,FALSE +Massive Attack,Unfinished Sympathy,new,,,,,70339,FALSE +Matchbox Twenty,3am,existing,,,,,,FALSE +Matchbox Twenty,How Far We've Come,new,,,,,12979,FALSE +Matchbox Twenty,Push,new,,,,,10422,FALSE +Matchbox Twenty,Unwell,existing,,,,,,FALSE +Matt Cardle,When We Collide,existing,,,,,,FALSE +Matt Monroe,Gonna Build a Mountain,existing,,,,,,FALSE +Matt Simons,Catch & Release (Deepend Remix),new,,,,,50468,FALSE +Matt Simons,Catch & Release,new,,,,,50408,FALSE +Matt Simons,We Can Do Better,new,,,,,56036,FALSE +Max Bygraves,Gilly Gilly Ossenfeffer Katzenellen Bogen By the Sea,existing,,,,,,FALSE +Max Bygraves,Somewhere My Love,existing,,,,,,FALSE +Mazzy Star,Fade into You,new,,,,,57579,FALSE +Mc Fadden & Whitehead,Ain't No Stoppin' Us Now,existing,McFadden & Whitehead,,,,,FALSE +Mc Guiness Flint,When I'm Dead & Gone,existing,McGuiness Flint,,,,,FALSE +Mcfly,All About You,existing,McFly,,,,,FALSE +Meatloaf,Bat Out of Hell (shortened version),existing,,,,,,FALSE +Meatloaf,I'd Do Anything for Love (but I Won't Do That),existing,,,,,,FALSE +Meatloaf,Paradise By The Dashboard Light,existing,,,,,,FALSE +Meatloaf,Two Out of Three Ain't Bad,existing,,,,,,FALSE +Meatloaf,You Took the Words Right Out of My Mouth,existing,,,,,,FALSE +Megadeth,A Tout le Monde,new,,,,,66522,FALSE +Megadeth,Hangar 18,new,,,,,65817,FALSE +Megadeth,Holy Wars... The Punishment Due,new,,,,,68060,FALSE +Megadeth,Moto Psycho,existing,,,,,,FALSE +Megadeth,Peace Sells,new,,,,,65275,FALSE +Megadeth,Sweating Bullets,new,,,,,61497,FALSE +Megadeth,Symphony Of Destruction,existing,,,,,,FALSE +Megadeth,Tornado of Souls,new,,,,,69470,FALSE +Megan Thee Stallion,Boa,new,,,,,81919,FALSE +Megan Thee Stallion,Cobra (rock remix),new,,,,,78980,FALSE +Megan Thee Stallion,Hiss,new,,,,,79630,FALSE +Megan Thee Stallion,Mamushi,new,,,,,82550,FALSE +Megan Thee Stallion,Neva Play,new,,,,,83787,FALSE +Megan Thee Stallion,Otaku Hot Girl,new,,,,,82533,FALSE +Megan Thee Stallion,Sweetest Pie,new,,,,,68774,FALSE +Meghan Trainor,All About That Bass,existing,,,,,,FALSE +Meghan Trainor,Better When I'm Dancin',new,,,,,50083,FALSE +Meghan Trainor,Dear Future Husband,existing,,,,,,FALSE +Meghan Trainor,Like I'm Gonna Lose You,new,,,,,48669,FALSE +Meghan Trainor,Lips Are Movin,existing,,,,,,FALSE +Meghan Trainor,Made You Look,new,,,,,72033,FALSE +Meghan Trainor,Me Too,new,,,,,51284,FALSE +Meghan Trainor,No,new,,,,,50906,FALSE +Mel Torme,I'm Coming Home Baby,existing,,,,,,FALSE +Melanie Martinez,Dollhouse,new,,,,,49772,FALSE +Melanie Martinez,Pacify Her,new,,,,,71705,FALSE +Melanie Martinez,Play Date,new,,,,,76290,FALSE +Melissa Etheridge,Bring Me Some Water,new,,,,,28283,FALSE +Melissa Etheridge,Come To My Window,new,,,,,11459,FALSE +Melissa Etheridge,Like The Way I Do,new,,,,,20703,FALSE +Melissa Etheridge,Similar Features,new,,,,,75081,FALSE +Men At Work,Down Under,existing,,,,,,FALSE +Men At Work,Who Can It Be Now,existing,,,,,,FALSE +Men Without Hats,The Safety Dance,new,,,,,6739,FALSE +Merle Haggard,I Think I'll Just Stay Here and Drink,new,,,,,46469,FALSE +Merle Haggard,Mama Tried,new,,,,,7708,FALSE +Merle Haggard,Okie From Muskogee,existing,,,,,,FALSE +Merle Haggard,Silver Wings,existing,,,,,,FALSE +Metallica,Enter Sandman,existing,,,,,,FALSE +Metallica,Fade To Black,existing,,,,,,FALSE +Metallica,For Whom The Bell Tolls,existing,,,,,,FALSE +Metallica,Fuel,new,,,,,57129,FALSE +Metallica,Master Of Puppets,existing,,,,,,FALSE +Metallica,Nothing Else Matters,existing,,,,,,FALSE +Metallica,One,existing,,,,,,FALSE +Metallica,Sad But True,new,,,,,33723,FALSE +Metallica,Seek & Destroy,new,,,,,55909,FALSE +Metallica,The Unforgiven,new,,,,,28856,FALSE +Metallica,Wherever I May Roam,existing,,,,,,FALSE +Metallica,Whiskey in the Jar,new,,,,,38064,FALSE +Metric,Gimme Sympathy,new,,,,,79775,FALSE +Metric,Gold Guns Girls,new,,,,,76464,FALSE +Metric,Help I'm Alive,new,,,,,70378,FALSE +Michael Buble,Always On My Mind,existing,,,,,,FALSE +Michael Buble,Come Fly With Me,existing,,,,,,FALSE +Michael Buble,Cry Me a River,existing,,,,,,FALSE +Michael Buble,Everything (A Cappella),existing,,,,,,FALSE +Michael Buble,Everything,existing,,,,,,FALSE +Michael Buble,Feeling Good,new,,,,,17888,FALSE +Michael Buble,Foggy Day,existing,,,,,,FALSE +Michael Buble,Haven't Met You Yet (A Cappella),existing,,,,,,FALSE +Michael Buble,Haven't Met You Yet,new,,,,,24676,FALSE +Michael Buble,Haven't Met You yet,existing,,,,,,FALSE +Michael Buble,Hollywood,existing,,,,,,FALSE +Michael Buble,Home,existing,,,,,,FALSE +Michael Buble,It's a Beautiful Day,existing,,,,,,FALSE +Michael Buble,Moondance,existing,,,,,,FALSE +Michael Buble,Put Your Head On My Shoulder,existing,,,,,,FALSE +Michael Buble,Save the Last Dance for Me,existing,,,,,,FALSE +Michael Buble,Sway,new,,,,,5264,FALSE +Michael Buble,That's All,existing,,,,,,FALSE +Michael Buble,To Love Somebody,existing,,,,,,FALSE +Michael Buble,Try A Little Tenderness (A Cappella),existing,,,,,,FALSE +Michael Franti & Spearhead,Say Hey (I Love You),new,,,,,25570,FALSE +Michael Franti & Spearhead,The Sound of Sunshine,new,,,,,71632,FALSE +Michael Holliday,Story of My Life,existing,,,,,,FALSE +Michael Jackson,Bad,new,,,,,12900,FALSE +Michael Jackson,Beat It,existing,,,,,,FALSE +Michael Jackson,Ben,existing,,,,,,FALSE +Michael Jackson,Billie Jean,existing,,,,,,FALSE +Michael Jackson,Black or White,existing,,,,,,FALSE +Michael Jackson,Don't Stop 'Til You Get Enough,existing,,,,,,FALSE +Michael Jackson,Get on the Floor,new,,,,,70545,FALSE +Michael Jackson,Got to Be There,new,,,,,67931,FALSE +Michael Jackson,Human Nature,new,,,,,14743,FALSE +Michael Jackson,I Can't Help It,existing,,,,,,FALSE +Michael Jackson,Man in the Mirror,new,,,,,13650,FALSE +Michael Jackson,Off The Wall,new,,,,,14156,FALSE +Michael Jackson,One Day In Your Life,existing,,,,,,FALSE +Michael Jackson,P.Y.T. (Pretty Young Thing),existing,,,,,,FALSE +Michael Jackson,Remember The Time,new,,,,,6391,FALSE +Michael Jackson,Rock with You,new,,,,,7667,FALSE +Michael Jackson,Smooth Criminal,new,,,,,14405,FALSE +Michael Jackson,The Way You Make Me Feel,existing,,,,,,FALSE +Michael Jackson,They Don't Really Care About Us,existing,,,,,,FALSE +Michael Jackson,Thriller (Live),existing,,,,,,FALSE +Michael Jackson,Wanna Be Startin' Somethin',new,,,,,14411,FALSE +Michael Jackson,You Are Not Alone,existing,,,,,,FALSE +Michael Jackson & Justin Timberlake,Love Never Felt so Good,existing,Michael Jackson,,,,,FALSE +Michael Jackson & Siedah Garrett,I Just Can't Stop Loving You,existing,Michael Jackson,,,,,FALSE +Michael McDonald,What A Fool Believes,existing,,,,,,FALSE +Michael Mcdonald,Higher & Higher (Live),existing,Michael McDonald,,,,,FALSE +Michael Sembello,Maniac,existing,,,,,,FALSE +Middle Of The Road,Chirpy Chirpy Cheep Cheep,existing,,,,,,FALSE +Midland,Burn Out,new,,,,,54076,FALSE +Midnight Oil,Beds Are Burning,existing,,,,,,FALSE +Migos,Bad and Boujee,new,,,,,55008,FALSE +Migos,MotorSport,new,,,,,57229,FALSE +Migos,Stir Fry,new,,,,,80108,FALSE +Migos,T-Shirt,new,,,,,56207,FALSE +Migos,Talk It Walk It,new,,,,,83264,FALSE +Miguel,Adorn,new,,,,,43014,FALSE +Miguel,All I Want Is You,new,,,,,64537,FALSE +Miguel,How Many Drinks,new,,,,,72098,FALSE +Miguel,Sky Walker,new,,,,,80024,FALSE +Miguel,Sure Thing,new,,,,,57215,FALSE +Mika,Big Girl (You Are Beautiful),existing,,,,,,FALSE +Mika,Grace Kelly,existing,,,,,,FALSE +Mika,Happy Ending,existing,,,,,,FALSE +Mike Oldfield,Moonlight Shadow ft. Maggie Reilly,existing,,,,,,FALSE +Mike and The Mechanics,The Living Years,new,,,,,6323,FALSE +Miles Davis,So What,existing,,,,,,FALSE +Miley Cyrus,Angels Like You,new,,,,,63110,FALSE +Miley Cyrus,Flowers,new,,,,,73087,FALSE +Miley Cyrus,Malibu,new,,,,,53201,FALSE +Miley Cyrus,Party in the U.S.A.,new,,,,,24207,FALSE +Miley Cyrus,Prisoner,new,,,,,63084,FALSE +Miley Cyrus,Used to Be Young,new,,,,,76701,FALSE +Miley Cyrus,We Can't Stop,existing,,,,,,FALSE +Miley Cyrus,Wrecking Ball,existing,,,,,,FALSE +Milky Chance,Down by the River,new,,,,,48319,FALSE +Milky Chance,Living in a Haze,new,,,,,80617,FALSE +Milky Chance,Stolen Dance,new,,,,,46608,FALSE +Milow,Ayo Technology,new,,,,,22638,FALSE +Mink Deville,Spanish Stroll,existing,,,,,,FALSE +Miranda Lambert,Bluebird,new,,,,,59541,FALSE +Miranda Lambert,Gunpowder & Lead,new,,,,,16129,FALSE +Miranda Lambert,Mama's Broken Heart,existing,,,,,,FALSE +Miranda Lambert,Roots And Wings,existing,,,,,,FALSE +Miranda Lambert,Somethin Bad,existing,,,,,,FALSE +Miranda Lambert,Somethin' Bad,new,,,,,47056,FALSE +Miranda Lambert,The House That Built Me,new,,,,,26771,FALSE +Misfits,Hybrid Moments,new,,,,,70154,FALSE +Misfits,Last Caress,new,,,,,69523,FALSE +Missing Persons,Walking in L.A.,new,,,,,71582,FALSE +Missing Persons,Words,new,,,,,68424,FALSE +Missy Elliott,Get Ur Freak On,new,,,,,55687,FALSE +Missy Elliott,Hot Boyz,new,,,,,35381,FALSE +Missy Elliott,Lose Control,new,,,,,65903,FALSE +Missy Elliott,One Minute Man,new,,,,,75782,FALSE +Missy Elliott,Sock It 2 Me,new,,,,,35057,FALSE +Missy Elliott,The Rain (Supa Dupa Fly),new,,,,,71352,FALSE +Missy Elliott,We Run This,new,,,,,24814,FALSE +Missy Elliott,Work It,new,,,,,12659,FALSE +Mitski,First Love Late Spring,new,,,,,83090,FALSE +Mitski,Francis Forever,new,,,,,71635,FALSE +Mitski,I Bet on Losing Dogs,new,,,,,81444,FALSE +Mitski,Liquid Smooth,new,,,,,79095,FALSE +Mitski,My Love Mine All Mine,new,,,,,77497,FALSE +Mitski,Nobody,new,,,,,69418,FALSE +Mitski,Washing Machine Heart,new,,,,,74038,FALSE +Mitski,Your Best American Girl,new,,,,,81876,FALSE +Moby,Extreme Ways,new,,,,,29776,FALSE +Moby,Lift Me Up,new,,,,,21185,FALSE +Moby,Natural Blues (reprise 2021),new,,,,,65911,FALSE +Moby,Natural Blues,new,,,,,18082,FALSE +Moby,Porcelain,new,,,,,22122,FALSE +Moby,South Side,new,,,,,27846,FALSE +Moby,We Are All Made of Stars,new,,,,,8277,FALSE +Moby,Why Does My Heart Feel So Bad,new,,,,,12370,FALSE +Modern English,I Melt With You (album version),new,,,,,11469,FALSE +Modest Mouse,3rd Planet,new,,,,,79379,FALSE +Modest Mouse,Dashboard,new,,,,,71649,FALSE +Modest Mouse,Float On,new,,,,,29515,FALSE +Modest Mouse,Lampshades on Fire,new,,,,,82973,FALSE +Modest Mouse,Missed the Boat,new,,,,,78871,FALSE +Modest Mouse,Ocean Breathes Salty,new,,,,,26628,FALSE +Moe Bandy,Someday Soon,existing,,,,,,FALSE +Molly Hatchet,Flirtin' with Disaster,new,,,,,64237,FALSE +Morcheeba,Enjoy the Ride,new,,,,,46533,FALSE +Morcheeba,Rome Wasn't Built in a Day,new,,,,,35924,FALSE +Morcheeba,The Sea,new,,,,,23252,FALSE +Morgan Wallen,Chasin' You,new,,,,,60299,FALSE +Morgan Wallen,Cowgirls,new,,,,,74053,FALSE +Morgan Wallen,Last Night,new,,,,,73508,FALSE +Morgan Wallen,Lies Lies Lies,new,,,,,82565,FALSE +Morgan Wallen,Thinkin' Bout Me,new,,,,,74202,FALSE +Morgan Wallen,Wasted on You,new,,,,,63585,FALSE +Morgan Wallen,Whiskey Glasses,new,,,,,56667,FALSE +Morgan Wallen,You Proof,new,,,,,69674,FALSE +Morrissey,Everyday Is Like Sunday,existing,,,,,,FALSE +Mother Mother,Hayloft,new,,,,,75870,FALSE +Mother Mother,Verbatim,new,,,,,82659,FALSE +Motionless in White,Another Life,new,Motionless In White,,,,73271,FALSE +Motionless in White,Voices,new,Motionless In White,,,,83240,FALSE +Motley Crue,Dr. Feelgood,new,,,,,21252,FALSE +Motley Crue,Girls Girls Girls,existing,,,,,,FALSE +Motley Crue,Home Sweet Home,existing,,,,,,FALSE +Motley Crue,Kickstart my Heart,new,,,,,56211,FALSE +Motley Crue,Live Wire,new,,,,,53794,FALSE +Motley Crue,Looks That Kill,new,,,,,59960,FALSE +Motley Crue,Shout at the Devil,new,,,,,51299,FALSE +Motley Crue,Wild Side,existing,,,,,,FALSE +Motorhead,Ace Of Spades,existing,,,,,,FALSE +Motorhead,Overkill,new,,,,,69694,FALSE +Motorhead,The Game,new,,,,,67457,FALSE +Mott The Hoople,All the Way from Memphis,existing,,,,,,FALSE +Mott The Hoople,All the Young Dudes,existing,,,,,,FALSE +Mountain,Mississippi Queen,existing,,,,,,FALSE +Mozart,Mozart String Quartet No. 17,existing,,,,,,FALSE +Mozart,Mozart String Quartet No. 17,existing,,,,,,FALSE +Mr. Big,To Be With You,new,,,,,7189,FALSE +Mr. Big,Wild World,new,,,,,11397,FALSE +Mr. Mister,Broken Wings,new,,,,,13167,FALSE +Mr. Mister,Kyrie,new,,,,,27640,FALSE +Mt. Joy,Astrovan,new,,,,,81708,FALSE +Mt. Joy,Silver Lining,new,,,,,79020,FALSE +Mud,Lonely This Christmas,existing,,,,,,FALSE +Mud,Tiger Feet,existing,,,,,,FALSE +Muddy Waters,"Baby, Please Don't Go",new,,,,,77957,FALSE +Muddy Waters,Got My Mojo Working,new,,,,,47786,FALSE +Muddy Waters,Hoochie Coochie Man,new,,,,,19045,FALSE +Muddy Waters,I'm Ready,new,,,,,82519,FALSE +Muddy Waters,Mannish Boy,new,,,,,70497,FALSE +Mudvayne,Fall Into Sleep,existing,,,,,,FALSE +Mudvayne,Forget To Remember,existing,,,,,,FALSE +Mumford & Sons,Awake My Soul,new,,,,,46249,FALSE +Mumford & Sons,Babel,new,,,,,64245,FALSE +Mumford & Sons,Believe,new,,,,,49153,FALSE +Mumford & Sons,Guiding Light,new,,,,,56727,FALSE +Mumford & Sons,Hopeless Wanderer,new,,,,,73364,FALSE +Mumford & Sons,I Will Wait,new,,,,,41480,FALSE +Mumford & Sons,Little Lion Man,new,,,,,25703,FALSE +Muse,Hysteria,new,,,,,14683,FALSE +Muse,Knights of Cydonia,new,,,,,21683,FALSE +Muse,Madness,existing,,,,,,FALSE +Muse,Plug In Baby,new,,,,,26289,FALSE +Muse,Psycho,existing,,,,,,FALSE +Muse,Starlight,existing,,,,,,FALSE +Muse,Supermassive Black Hole,existing,,,,,,FALSE +Muse,Time is Running Out,new,,,,,19933,FALSE +Muse,Undisclosed Desires,new,,,,,25631,FALSE +Muse,Uprising,existing,,,,,,FALSE +My Chemical Romance,Cancer,new,,,,,69110,FALSE +My Chemical Romance,Disenchanted,new,,,,,71825,FALSE +My Chemical Romance,Famous Last Words,new,,,,,11713,FALSE +My Chemical Romance,Helena,new,,,,,5633,FALSE +My Chemical Romance,I'm Not Okay (I Promise),existing,,,,,,FALSE +My Chemical Romance,Na Na Na (Na Na Na Na Na Na Na Na Na),new,,,,,69915,FALSE +My Chemical Romance,Teenagers,existing,,,,,,FALSE +My Chemical Romance,The Ghost Of You,existing,,,,,,FALSE +My Chemical Romance,Welcome to the Black Parade,new,,,,,13667,FALSE +Mystikal,Danger (Been So Long),new,,,,,80043,FALSE +Mystikal,Shake Ya Ass,new,,,,,68718,FALSE +Mystikal,Shake it Fast,new,,,,,68717,FALSE +N-Dubz,Best Behaviour,new,,,,,34283,FALSE +N-Dubz,Girls,new,,,,,35655,FALSE +N-Dubz,I Need You,new,,,,,26212,FALSE +N-Dubz,Morning Star,new,,,,,36713,FALSE +N-Dubz,Playing With Fire,new,,,,,27109,FALSE +N-Dubz,Say It's Over,new,,,,,29751,FALSE +N-Dubz,We Dance On,new,,,,,30792,FALSE +N.E.R.D.,She Wants to Move,new,,,,,80403,FALSE +N.O.R.E.,Nothin',new,,,,,30783,FALSE +N.O.R.E.,Oye mi canto,new,,,,,37527,FALSE +N.W.A.,8 Ball,new,,,,,82488,FALSE +N.W.A.,Dope Man,new,,,,,69824,FALSE +N.W.A.,Express Yourself,new,,,,,69910,FALSE +N.W.A.,Fuck Tha Police,new,,,,,38911,FALSE +N.W.A.,Gangsta Gangsta,new,,,,,76116,FALSE +N.W.A.,Straight Outta Compton,new,,,,,31310,FALSE +N2Deep,Back to the Hotel,new,,,,,78572,FALSE +NF,Happy,new,,,,,74867,FALSE +NF,Hope,new,,,,,73828,FALSE +NF,If You Want Love,new,,,,,83018,FALSE +NF,Just Like You,new,,,,,39536,FALSE +NF,Let You Down,new,,,,,55184,FALSE +NF,Lost,new,,,,,82792,FALSE +NF,Mansion,new,,,,,75202,FALSE +NF,Motto,new,,,,,74257,FALSE +NF,Paralyzed,new,,,,,77678,FALSE +NF,The Search,new,,,,,71283,FALSE +NF,Time,new,,,,,67961,FALSE +NF,When I Grow Up,new,,,,,74602,FALSE +NLE Choppa,Shotta Flow (remix),new,,,,,80621,FALSE +NLE Choppa,Slut Me Out 2,new,,,,,81715,FALSE +NLE Choppa,Slut Me Out,new,,,,,74703,FALSE +NSYNC,"Bye, Bye, Bye",new,,,,,8939,FALSE +NSYNC,I Want You Back,new,,,,,8509,FALSE +NSYNC,It's Gonna Be Me,new,,,,,7424,FALSE +NSYNC,Tearin' Up My Heart,new,,,,,9156,FALSE +NSYNC,This I Promise You,new,,,,,7380,FALSE +Naked Eyes,Always Something There To Remind Me,new,,,,,52208,FALSE +Naked Eyes,"Promises, Promises",new,,,,,28408,FALSE +Nanci Griffith,The Speed Of The Sound Of Loneliness,existing,,,,,,FALSE +Nancy Sinatra,These Boots Are Made For Walkin,existing,,,,,,FALSE +Nancy Sinatra,You Only Live Twice,existing,,,,,,FALSE +Nas,I Can,new,,,,,28306,FALSE +Nas,If I Ruled the World (Imagine That),new,,,,,27633,FALSE +Nas,Made You Look,new,,,,,29544,FALSE +Nas,One Mic,new,,,,,78138,FALSE +Nas,Street Dreams,new,,,,,34403,FALSE +Nat King Cole,(I Love You) For Sentimental Reasons,existing,,,,,,FALSE +Nat King Cole,Down By The Old Mill Stream (A Cappella),existing,,,,,,FALSE +Nat King Cole,Handful Of Stars (A Cappella),existing,,,,,,FALSE +Nat King Cole,L-O-V-E,existing,,,,,,FALSE +Nat King Cole,Let There Be Love,existing,,,,,,FALSE +Nat King Cole,On the Street Where You Live,existing,,,,,,FALSE +Nat King Cole,Route 66,existing,,,,,,FALSE +Nat King Cole,Straighten Up And Fly Right,existing,,,,,,FALSE +Nat King Cole,Unforgettable,existing,,,,,,FALSE +Natalie Cole,Almost Like Being In Love,existing,,,,,,FALSE +Natalie Cole,Don't Get Around Much Anymore,existing,,,,,,FALSE +Natalie Cole,I Wish You Love,existing,,,,,,FALSE +Natalie Cole,L-O-V-E,existing,,,,,,FALSE +Natalie Cole,Lush Life,existing,,,,,,FALSE +Natalie Cole,Our Love Is Here To Stay,existing,,,,,,FALSE +Natalie Cole,Route 66,existing,,,,,,FALSE +Natalie Cole,Unforgettable (Duet),existing,,,,,,FALSE +Natalie Imbruglia,Torn,existing,,,,,,FALSE +Natalie Merchant,Carnival,new,,,,,10791,FALSE +Natalie Merchant,Jealousy,new,,,,,11003,FALSE +Natalie Merchant,Wonder,new,,,,,11338,FALSE +Nathaniel Rateliff,S.O.B.,new,,,,,49823,FALSE +Nathaniel Rateliff,You Worry Me,new,,,,,55375,FALSE +Naughty Boy,La La La feat. Sam Smith,existing,,,,,,FALSE +Naughty Boy,La La La,new,,,,,44047,FALSE +Naughty Boy,Runnin' (Lose It All),new,,,,,50032,FALSE +Naughty By Nature,Craziest,new,,,,,29032,FALSE +Naughty By Nature,Hip Hop Hooray,new,,,,,72743,FALSE +Naughty By Nature,O.P.P.,existing,,,,,,FALSE +Nazareth,Hair of the Dog,new,,,,,50149,FALSE +Nazareth,Love Hurts,existing,,,,,,FALSE +Nazareth,This Flight Tonight,existing,,,,,,FALSE +Ne-Yo,Because of You,new,,,,,11952,FALSE +Ne-Yo,Closer,existing,,,,,,FALSE +Ne-Yo,Mad,existing,,,,,,FALSE +Ne-Yo,Miss Independent,new,,,,,21001,FALSE +Ne-Yo,Sexy Love,new,,,,,13445,FALSE +Ne-Yo,She Knows,new,,,,,77807,FALSE +Ne-Yo,So Sick,new,,,,,12660,FALSE +Neil Diamond,America,new,,,,,8189,FALSE +Neil Diamond,Beautiful Noise,existing,,,,,,FALSE +Neil Diamond,Cherry Cherry,existing,,,,,,FALSE +Neil Diamond,Cracklin' Rosie,existing,,,,,,FALSE +Neil Diamond,Forever In Blue Jeans,existing,,,,,,FALSE +Neil Diamond,I Am I Said,existing,,,,,,FALSE +Neil Diamond,Love On The Rocks,existing,,,,,,FALSE +Neil Diamond,Midnight Train To Georgia,existing,,,,,,FALSE +Neil Diamond,September Morn,existing,,,,,,FALSE +Neil Diamond,Solitary Man - Live Arrangement,existing,,,,,,FALSE +Neil Diamond,Something Blue,existing,,,,,,FALSE +Neil Diamond,Song Sung Blue,existing,,,,,,FALSE +Neil Diamond,Sweet Caroline,existing,,,,,,FALSE +Neil Sedaka,Breaking Up Is Hard To Do,existing,,,,,,FALSE +Neil Sedaka,Oh Carol,existing,,,,,,FALSE +Neil Young,Cinnamon Girl,existing,,,,,,FALSE +Neil Young,Harvest Moon,existing,,,,,,FALSE +Neil Young,Heart Of Gold,existing,,,,,,FALSE +Neil Young,Helpless,existing,,,,,,FALSE +Neil Young,Like A Hurricane,existing,,,,,,FALSE +Neil Young,Long May You Run,existing,,,,,,FALSE +Neil Young,Needle And The Damage Done,existing,,,,,,FALSE +Neil Young,Old Man,existing,,,,,,FALSE +Neil Young,Only Love Can Break Your Heart,existing,,,,,,FALSE +Neil Young,Rockin In The Free World,existing,,,,,,FALSE +Neil Young,Southern Man,existing,,,,,,FALSE +Nelly,Dilemma,new,,,,,19156,FALSE +Nelly,Grillz,new,,,,,32077,FALSE +Nelly,Hot In Herre,existing,,,,,,FALSE +Nelly,Just A Dream,existing,,,,,,FALSE +Nelly,Lil Bit,new,,,,,64576,FALSE +Nelly,Ride wit Me,new,,,,,17214,FALSE +Nelly & Kelly,Dilemma,existing,,,,,,FALSE +Nelly Furtado,I'm Like A Bird,existing,,,,,,FALSE +Nena,99 Luftballons,existing,,,,,,FALSE +Neneh Cherry,Buffalo Stance,new,,,,,14061,FALSE +Neon Trees,Animal,new,,,,,32927,FALSE +Neon Trees,Everybody Talks,existing,,,,,,FALSE +Neon Trees,Sleeping With A Friend,new,,,,,47094,FALSE +Neutral Milk Hotel,In the Aeroplane Over the Sea,new,,,,,72675,FALSE +Neutral Milk Hotel,Two Headed Boy,new,,,,,77681,FALSE +New Edition,Cool It Now,existing,,,,,,FALSE +New Found Glory,All Downhill From Here,existing,,,,,,FALSE +New Found Glory,My Friends Over You,existing,,,,,,FALSE +New Kids On The Block,You Got It (The Right Stuff),existing,,,,,,FALSE +New Order,Age of Consent,new,,,,,72709,FALSE +New Order,Bizarre Love Triangle,new,,,,,55920,FALSE +New Order,Blue Monday,new,,,,,27905,FALSE +New Order,Regret,existing,,,,,,FALSE +New Order,True Faith,existing,,,,,,FALSE +New York City,I'm Doin' Fine Now,existing,,,,,,FALSE +NewJeans (),Ditto,new,NewJeans,,,,73822,FALSE +NewJeans (),OMG,new,NewJeans,,,,73823,FALSE +NewJeans (),Super Shy,new,NewJeans,,,,76395,FALSE +Newton Faulkner,Dream Catch Me,existing,,,,,,FALSE +Nick Cave,Henry Lee,new,,,,,75412,FALSE +Nick Cave,Into My Arms,new,,,,,64569,FALSE +Nick Cave,Red Right Hand,new,,,,,55781,FALSE +Nick Cave,Stagger Lee,new,,,,,72986,FALSE +Nick Cave,The Ship Song,new,,,,,82034,FALSE +Nick Cave,Where the Wild Roses Grow,new,,,,,20804,FALSE +Nick Jonas,Chains,new,,,,,49034,FALSE +Nick Jonas,Close,new,,,,,51075,FALSE +Nick Jonas,Jealous,new,,,,,48007,FALSE +Nickelback,Burn It To The Ground,existing,,,,,,FALSE +Nickelback,How You Remind Me,existing,,,,,,FALSE +Nickelback,If Today Was Your Last Day,existing,,,,,,FALSE +Nickelback,Lullaby,existing,,,,,,FALSE +Nickelback,Someday,existing,,,,,,FALSE +Nickelback,When We Stand Together,existing,,,,,,FALSE +Nicki Minaj,Anaconda,new,,,,,47713,FALSE +Nicki Minaj,FTCU,new,,,,,78982,FALSE +Nicki Minaj,Starships,new,,,,,39993,FALSE +Nicki Minaj,Super Bass,new,,,,,37170,FALSE +Nicki Minaj,Super Freaky Girl,new,,,,,71069,FALSE +Nicki Minaj,The Night Is Still Young,new,,,,,82205,FALSE +Nicki Minaj,Va Va Voom,new,,,,,42626,FALSE +Night Ranger,(You Can Still) Rock in America,new,,,,,64550,FALSE +Night Ranger,Sister Christian,new,,,,,41701,FALSE +Nightmare Before Christmas,What's This (A Cappella),existing,,,,,,FALSE +Nightwish,Amaranth,existing,,,,,,FALSE +Nightwish,Nemo,new,,,,,30574,FALSE +Nightwish,Wish I Had An Angel,existing,,,,,,FALSE +Nik Kershaw,Wouldn't It Be Good,existing,,,,,,FALSE +Nina Simone,Don't Let Me Be Misunderstood,new,,,,,48589,FALSE +Nina Simone,Feeling Good,existing,,,,,,FALSE +Nina Simone,I Love You Porgy,existing,,,,,,FALSE +Nina Simone,I Put A Spell On You,existing,,,,,,FALSE +Nina Simone,I Want a Little Sugar in My Bowl,new,,,,,29442,FALSE +Nina Simone,I Wish I Knew How It Would Feel to Be Free,new,,,,,61097,FALSE +Nina Simone,My Baby Just Cares For Me,existing,,,,,,FALSE +Nina Simone,Sinnerman,new,,,,,55949,FALSE +Nine Inch Nails,Closer,new,,,,,53080,FALSE +Nine Inch Nails,Hand That Feeds,new,,,,,25250,FALSE +Nine Inch Nails,Head Like a Hole,new,,,,,63758,FALSE +Nine Inch Nails,Hurt,new,,,,,39196,FALSE +Nirvana,About a Girl (live acoustic),new,,,,,39838,FALSE +Nirvana,All Apologies,new,,,,,37430,FALSE +Nirvana,Come As You Are,existing,,,,,,FALSE +Nirvana,Dumb,new,,,,,67466,FALSE +Nirvana,Heart-Shaped Box,existing,,,,,,FALSE +Nirvana,In Bloom,new,,,,,42006,FALSE +Nirvana,Lithium,existing,,,,,,FALSE +Nirvana,Rape Me,existing,,,,,,FALSE +Nirvana,Smells Like Teen Spirit,existing,,,,,,FALSE +Nirvana,Something in the Way,new,,,,,68120,FALSE +Nirvana,The Man Who Sold The World,existing,,,,,,FALSE +Nirvana,The Man Who Sold the World,new,,,,,26239,FALSE +No Doubt,Don't Speak,new,,,,,10600,FALSE +No Doubt,Hella Good,existing,,,,,,FALSE +No Doubt,It's My Life,existing,,,,,,FALSE +No Doubt,Just A Girl,existing,,,,,,FALSE +No Doubt,Settle Down,existing,,,,,,FALSE +No Doubt,Spiderwebs,existing,,,,,,FALSE +No Doubt,Underneath It All,existing,,,,,,FALSE +Noah Kahan,All My Love,new,,,,,81568,FALSE +Noah Kahan,Call Your Mom,new,,,,,82578,FALSE +Noah Kahan,Dial Drunk (feat. Post Malone),new,,,,,76972,FALSE +Noah Kahan,Northern Attitude (with Hozier),new,,,,,78410,FALSE +Noah Kahan,Orange Juice,new,,,,,80763,FALSE +Noah Kahan,Stick Season,new,,,,,70975,FALSE +Noah Kahan,You're Gonna Go Far,new,,,,,80034,FALSE +Noel Gallagher's High Flying Birds,Death of You & Me,existing,,,,,,FALSE +Noisettes,Don't Upset the Rhythm,existing,,,,,,FALSE +Noisettes,Never Forget You,existing,,,,,,FALSE +Noisettes,That Girl,existing,,,,,,FALSE +Norah Jones,Come Away With Me,existing,,,,,,FALSE +Norah Jones,Don't Know Why,existing,,,,,,FALSE +Norah Jones,Sunrise,existing,,,,,,FALSE +Norah Jones,Turn Me On,new,,,,,12887,FALSE +Nothing But Thieves,Amsterdam,new,,,,,69375,FALSE +Nothing But Thieves,Sorry,new,,,,,64787,FALSE +OK Go,Here It Goes Again,new,,,,,44003,FALSE +Oasis,Champagne Supernova,existing,,,,,,FALSE +Oasis,Don't Look Back In Anger,existing,,,,,,FALSE +Oasis,Importance of Being Idol,existing,,,,,,FALSE +Oasis,Little By Little,existing,,,,,,FALSE +Oasis,Lyla,existing,,,,,,FALSE +Oasis,Morning Glory,existing,,,,,,FALSE +Oasis,Some Might Say,existing,,,,,,FALSE +Oasis,Stop Crying Your Heart Out,existing,,,,,,FALSE +Oasis,Supersonic,existing,,,,,,FALSE +Oasis,Wonderwall,existing,,,,,,FALSE +Ocean Colour Scene,Riverboat Song,existing,,,,,,FALSE +Odyssey,Going Back to My Roots,existing,,,,,,FALSE +Odyssey,Use It Up,existing,,,,,,FALSE +Of Monsters And Men,King And Lionheart,existing,,,,,,FALSE +Of Monsters And Men,Mountain Sound,existing,,,,,,FALSE +Of Monsters and Men,Little Talks,existing,Of Monsters And Men,,,,,FALSE +Oingo Boingo,Dead Man's Party,new,,,,,72087,FALSE +Oingo Boingo,Weird Science,new,,,,,71162,FALSE +Old Crow Medicine Show,Wagon Wheel,existing,,,,,,FALSE +Old Dominion,Break Up With Him,new,,,,,51436,FALSE +Old Dominion,Hotel Key,new,,,,,55658,FALSE +Old Dominion,Memory Lane,new,,,,,73218,FALSE +Old Dominion,No Such Thing as a Broken Heart,new,,,,,53369,FALSE +Old Dominion,One Man Band,new,,,,,57591,FALSE +Old Dominion,Snapback,new,,,,,51208,FALSE +Old Dominion,Written In The Sand,new,,,,,53734,FALSE +Oleta Adams,Get Here,existing,,,,,,FALSE +Oliver,Consider Yourself (A Cappella),existing,,,,,,FALSE +Olivia Newton John,Banks of the Ohio,existing,Olivia Newton-John,,,,,FALSE +Olivia Newton John,Take Me Home,existing,Olivia Newton-John,,,,,FALSE +Olivia Newton-John,A Little More Love,new,,,,,21732,FALSE +Olivia Newton-John,Physical,new,,,,,19117,FALSE +Olivia Rodrigo,Bad Idea Right,new,,,,,76557,FALSE +Olivia Rodrigo,Deja Vu,new,,,,,64581,FALSE +Olivia Rodrigo,Drivers License,new,,,,,63552,FALSE +Olivia Rodrigo,Favorite Crime,new,,,,,65063,FALSE +Olivia Rodrigo,Good 4 U,new,,,,,65009,FALSE +Olivia Rodrigo,Happier,new,,,,,65141,FALSE +Olivia Rodrigo,"Jealousy, Jealousy",new,,,,,65494,FALSE +Olivia Rodrigo,Obsessed,new,,,,,80593,FALSE +Olivia Rodrigo,Traitor,new,,,,,65038,FALSE +Olivia Rodrigo,Vampire,new,,,,,75856,FALSE +Olly Murs,Dance With Me Tonight,existing,,,,,,FALSE +Olly Murs,Dear Darlin,existing,,,,,,FALSE +Olly Murs,Up,new,,,,,48560,FALSE +Olly Murs,Wrapped Up,existing,,,,,,FALSE +Olly Murs,You Don't Know Love,new,,,,,51933,FALSE +Olly Murs Feat. Flo Rida,Troublemaker,existing,Olly Murs,,,,,FALSE +One Direction,18,new,,,,,75677,FALSE +One Direction,Best Song Ever,existing,,,,,,FALSE +One Direction,Drag Me Down,new,,,,,49641,FALSE +One Direction,Everything About You,existing,,,,,,FALSE +One Direction,Kiss You,existing,,,,,,FALSE +One Direction,Little Things,existing,,,,,,FALSE +One Direction,Live While We're Young,existing,,,,,,FALSE +One Direction,Night Changes,existing,,,,,,FALSE +One Direction,Perfect,new,,,,,50302,FALSE +One Direction,Steal My Girl,existing,,,,,,FALSE +One Direction,Story Of My Life,existing,,,,,,FALSE +One Direction,What Makes You Beautiful,existing,,,,,,FALSE +One Direction,You And I,new,,,,,45827,FALSE +OneRepublic,All The Right Moves,existing,,,,,,FALSE +OneRepublic,Counting Stars,existing,,,,,,FALSE +OneRepublic,Good Life,existing,,,,,,FALSE +OneRepublic,I Ain't Worried,new,,,,,69857,FALSE +OneRepublic,I Lived,existing,,,,,,FALSE +OneRepublic,Love Runs Out,existing,,,,,,FALSE +OneRepublic,Run,new,,,,,66978,FALSE +OneRepublic,Secrets,new,,,,,26650,FALSE +OneRepublic,Stop And Stare,existing,,,,,,FALSE +OneRepublic,Sunshine,new,,,,,83668,FALSE +Orchestral Manoeuvres In The Dark,Enola Gay,existing,,,,,,FALSE +Orchestral Manoeuvres In The Dark,Pandora's Box,existing,,,,,,FALSE +Orchestral Manoeuvres in the Dark,(Forever) Live and Die,new,Orchestral Manoeuvres In The Dark,,,,73431,FALSE +Orchestral Manoeuvres in the Dark,Electricity,new,Orchestral Manoeuvres In The Dark,,,,73999,FALSE +Orchestral Manoeuvres in the Dark,If You Leave,new,Orchestral Manoeuvres In The Dark,,,,63317,FALSE +Orchestral Manoeuvres in the Dark,So in Love,new,Orchestral Manoeuvres In The Dark,,,,73067,FALSE +Orchestral Manoeuvres in the Dark,Souvenir,new,Orchestral Manoeuvres In The Dark,,,,73585,FALSE +Orleans,Dance With Me,existing,,,,,,FALSE +Orleans,Still The One,existing,,,,,,FALSE +Otis Day And The Knights,Shama Lama Ding Dong,existing,,,,,,FALSE +Otis Day And The Knights,Shout,existing,,,,,,FALSE +Otis Redding,Dock of the Bay,existing,,,,,,FALSE +Otis Redding,Love Man,existing,,,,,,FALSE +Otis Redding,Sittin On The Dock Of The Bay,existing,,,,,,FALSE +Ottawan,D.I.S.C.O,existing,,,,,,FALSE +Ottis Redding,Hard To Handle,existing,,,,,,FALSE +OutKast,ATLiens,new,Outkast,,,,78412,FALSE +OutKast,B.O.B. (Bombs Over Baghdad),new,Outkast,,,,69884,FALSE +OutKast,Elevators (Me & You),new,Outkast,,,,29509,FALSE +OutKast,Land of a Million Drums,new,Outkast,,,,19108,FALSE +OutKast,Mighty 'O',new,Outkast,,,,25194,FALSE +OutKast,Prototype,new,Outkast,,,,49102,FALSE +OutKast,Rosa Parks,new,Outkast,,,,73239,FALSE +OutKast,Roses,new,Outkast,,,,52623,FALSE +OutKast,"So Fresh, So Clean",new,Outkast,,,,65744,FALSE +OutKast,The Way You Move,new,Outkast,,,,56662,FALSE +OutKast,The Whole World,new,Outkast,,,,82957,FALSE +Outkast,Hey Ya,existing,,,,,,FALSE +Outkast,Ms. Jackson,existing,,,,,,FALSE +Outlaws,Ghost Riders In The Sky,existing,,,,,,FALSE +Outlaws (US),Green Grass and High Tides,new,Outlaws,,,,19431,FALSE +Outlaws (US),There Goes Another Love Song,new,Outlaws,,,,67831,FALSE +Owl City,Fireflies,existing,,,,,,FALSE +Owl City,Good Time,existing,,,,,,FALSE +Owl City,Vanilla Twilight,existing,,,,,,FALSE +Owl City,When Can I See You Again,new,,,,,49046,FALSE +Ozark Mountain Daredevils,Jackie Blue,existing,,,,,,FALSE +Ozzy Osbourne,Bark at the Moon,new,,,,,57748,FALSE +Ozzy Osbourne,Crazy Train,existing,,,,,,FALSE +Ozzy Osbourne,Diary of a Madman,new,,,,,65020,FALSE +Ozzy Osbourne,Dreamer,existing,,,,,,FALSE +Ozzy Osbourne,Flying High Again,new,,,,,62242,FALSE +Ozzy Osbourne,I Don't Know,new,,,,,19093,FALSE +Ozzy Osbourne,I Don't Wanna Stop,new,,,,,70161,FALSE +Ozzy Osbourne,Mama I'm Coming Home,existing,,,,,,FALSE +Ozzy Osbourne,No More Tears,existing,,,,,,FALSE +Ozzy Osbourne,S.A.T.O,new,,,,,71732,FALSE +Ozzy Osbourne,Shot In The Dark,existing,,,,,,FALSE +P.O.D. Payable On Death,Alive,existing,,,,,,FALSE +P.O.D. Payable On Death,Boom,existing,,,,,,FALSE +Paint Your Wagon,They Call The Wind Mariah (A Cappella),existing,,,,,,FALSE +Paloma Faith,30 Minute Love Affair,existing,,,,,,FALSE +Paloma Faith,Beauty Remains,existing,,,,,,FALSE +Paloma Faith,New York,existing,,,,,,FALSE +Paloma Faith,Only Love Can Hurt Like This,new,,,,,46777,FALSE +Paloma Faith,Picking Up the Pieces,existing,,,,,,FALSE +Panic At The Disco,Lying Is The Most Fun A Girl Can Have Without Taking Her Clothes Off,existing,Panic! At the Disco,,,,,FALSE +Panic At The Disco,Nine In The Afternoon,existing,Panic! At the Disco,,,,,FALSE +Panic! At the Disco,Death of a Bachelor,new,,,,,51243,FALSE +Panic! At the Disco,Don't Threaten Me with a Good Time,new,,,,,67477,FALSE +Panic! At the Disco,Emperor's New Clothes,new,,,,,51757,FALSE +Panic! At the Disco,High Hopes,new,,,,,55945,FALSE +Panic! At the Disco,House of Memories,new,,,,,69964,FALSE +Panic! At the Disco,I Write Sins Not Tragedies,new,,,,,21204,FALSE +Panic! At the Disco,Victorious,new,,,,,50963,FALSE +Pantera,Cemetery Gates,new,,,,,21676,FALSE +Pantera,Cowboys From Hell,existing,,,,,,FALSE +Pantera,Domination,new,,,,,21913,FALSE +Pantera,I'm Broken,new,,,,,21916,FALSE +Pantera,Walk,existing,,,,,,FALSE +Paolo Nutini,42287,existing,,,,,,FALSE +Paolo Nutini,Candy,new,,,,,23014,FALSE +Paolo Nutini,Iron Sky,new,,,,,63323,FALSE +Paolo Nutini,Jenny Don't Be Hasty,existing,,,,,,FALSE +Paolo Nutini,Last Request,existing,,,,,,FALSE +Paolo Nutini,Pencil Full of Lead,existing,,,,,,FALSE +Paolo Nutini,Scream (Funk Your Life Up),existing,,,,,,FALSE +Paolo Nutinin,New Shoes,existing,Paolo Nutini,,,,,FALSE +Papa Roach,Between Angels and Insects,new,,,,,25369,FALSE +Papa Roach,Getting Away with Murder,new,,,,,75174,FALSE +Papa Roach,Help,new,,,,,81117,FALSE +Papa Roach,Last Resort,existing,,,,,,FALSE +Papa Roach,Scars,new,,,,,5635,FALSE +Paramore,Ain't It Fun,existing,,,,,,FALSE +Paramore,All I Wanted,new,,,,,25502,FALSE +Paramore,Crush Crush Crush,existing,,,,,,FALSE +Paramore,Decode,new,,,,,21420,FALSE +Paramore,Hard Times,new,,,,,11856,FALSE +Paramore,Misery Business,new,,,,,16599,FALSE +Paramore,Still Into You,existing,,,,,,FALSE +Paramore,That's What You Get,new,,,,,20924,FALSE +Paramore,The Only Exception,existing,,,,,,FALSE +Parker McCollum,Handle on You,new,,,,,71401,FALSE +Parker McCollum,Hell of a Year,new,,,,,69510,FALSE +Parker McCollum,I Can't Breathe,new,,,,,27760,FALSE +Parker McCollum,Pretty Heart,new,,,,,61041,FALSE +Parliament,Aqua Boogie (A Psychoalphadiscobetabioaquadoloop),new,,,,,73943,FALSE +Parliament,Flash Light,new,,,,,57774,FALSE +Parliament,Give Up the Funk (Tear the Roof off the Sucker),new,,,,,55314,FALSE +Parliament,P. Funk (Wants to Get Funked Up),new,,,,,72133,FALSE +Parmalee,Take My Name,new,,,,,67904,FALSE +Passenger,Anywhere,new,,,,,61339,FALSE +Passenger,Let Her Go,existing,,,,,,FALSE +Pat Benatar,Fire and Ice,new,,,,,19071,FALSE +Pat Benatar,Heartbreaker,new,,,,,9454,FALSE +Pat Benatar,Hell Is for Children,new,,,,,63242,FALSE +Pat Benatar,Hit Me With Your Best Shot,existing,,,,,,FALSE +Pat Benatar,Love Is a Battlefield,new,,,,,14292,FALSE +Pat Benatar,Promises in the Dark,new,,,,,57099,FALSE +Pat Benatar,Shadows Of The Night,existing,,,,,,FALSE +Pat Benatar,Treat Me Right,new,,,,,19070,FALSE +Pat Benatar,We Belong,existing,,,,,,FALSE +Pat Boone,Speedy Gonzalez,existing,,,,,,FALSE +Pat Travers,Boom Boom (Out Goes the Lights),new,,,,,70472,FALSE +Pat Travers,Snortin Whiskey,existing,,,,,,FALSE +Pato Banton,Baby Come Back,existing,,,,,,FALSE +Patrick Swayze,She's Like the Wind,existing,,,,,,FALSE +Patsy Cline,Crazy,existing,,,,,,FALSE +Patsy Cline,I Fall To Pieces,existing,,,,,,FALSE +Patsy Cline,Leavin On Your Mind,existing,,,,,,FALSE +Patsy Cline,Sweet Dreams,existing,,,,,,FALSE +Patsy Cline,Walkin After Midnight,existing,,,,,,FALSE +Patsy Cline,You Belong To Me,existing,,,,,,FALSE +Patsy Cline,You Made Me Love You (I Didn't Want To Do It),existing,,,,,,FALSE +Patti Smith,Because The Night,existing,,,,TRUE,,FALSE +Patti Smith,Dancing Barefoot,new,,,,,44341,FALSE +Patti Smith,Gloria,new,,,,,68673,FALSE +Patty Griffin,Up To The Mountain,existing,,,,,,FALSE +Patty Loveless,Blame It On Your Heart,existing,,,,,,FALSE +Paul Anka,Diana,existing,,,,,,FALSE +Paul Cauthen,Cocaine Country Dancing,new,,,,,68365,FALSE +Paul Cauthen,Country as Fuck,new,,,,,68957,FALSE +Paul Jones,I've Been a Bad Bad Boy,existing,,,,,,FALSE +Paul McCartney,Live And Let Die,existing,,,,,,FALSE +Paul McCartney,Maybe I'm Amazed,existing,,,,,,FALSE +Paul McCartney,Say Say Say,existing,,,,,,FALSE +Paul McCartney & Wings,Band on the Run,new,Wings,,,,7508,FALSE +Paul McCartney & Wings,Jet,new,Wings,,,,53608,FALSE +Paul McCartney & Wings,Listen to What the Man Said,new,Wings,,,,45112,FALSE +Paul McCartney & Wings,My Love,new,Wings,,,,21086,FALSE +Paul McCartney & Wings,With a Little Luck,new,Wings,,,,69241,FALSE +Paul Simon,50 Ways To Leave Your Lover,existing,,,,,,FALSE +Paul Simon,Graceland,new,,,,,28982,FALSE +Paul Simon,Kodachrome,existing,,,,,,FALSE +Paul Simon,Late In The Evening,existing,,,,,,FALSE +Paul Simon,Me And Julio Down By The Schoolyard,existing,,,,,,FALSE +Paul Simon,You Can Call Me Al,existing,,,,,,FALSE +Paul Weller,Broken Stones,existing,,,,,,FALSE +Paul Weller,Thinking of You,existing,,,,,,FALSE +Paul Weller,Wishing On a Star,existing,,,,,,FALSE +Paul Weller,You Do Something To Me,existing,,,,,,FALSE +Pavement,Cut Your Hair,new,,,,,75435,FALSE +Peaches And Herb,Reunited,new,,,,,33794,FALSE +Pearl Jam,Alive,existing,,,,,,FALSE +Pearl Jam,Better Man,new,,,,,18999,FALSE +Pearl Jam,Black,existing,,,,,,FALSE +Pearl Jam,Daughter,new,,,,,19001,FALSE +Pearl Jam,Even Flow,existing,,,,,,FALSE +Pearl Jam,Jeremy,new,,,,,14056,FALSE +Pearl Jam,Just Breathe,new,,,,,29328,FALSE +Pearl Jam,Last Kiss,new,,,,,8623,FALSE +Pearl Jam,Yellow Ledbetter,new,,,,,18994,FALSE +Peggy Lee,Black Coffee,existing,,,,,,FALSE +Peggy Lee,Fever,existing,,,,,,FALSE +Peggy Lee,How Long Has This Been Going On,existing,,,,,,FALSE +Peggy Lee,I'm A Woman,existing,,,,,,FALSE +Peggy Lee,Why Don't You Do Right,existing,,,,,,FALSE +Pentatonix,Bohemian Rhapsody,new,,,,,62074,FALSE +Pentatonix,Can You Feel the Love Tonight,new,,,,,59751,FALSE +Pentatonix,Can't Sleep Love,new,,,,,50331,FALSE +Pentatonix,Daft Punk,new,,,,,72998,FALSE +Pentatonix,Hallelujah,new,,,,,52030,FALSE +Pentatonix,Jolene,new,,,,,55548,FALSE +Pentatonix,Mad World,new,,,,,62462,FALSE +Pentatonix,Radioactive,new,,,,,50392,FALSE +Pentatonix,Say Something,new,,,,,50394,FALSE +Pentatonix,The Sound of Silence,new,,,,,57643,FALSE +Percy Sledge,Warm & Tender Love,existing,,,,,,FALSE +Percy Sledge,When A Man Loves A Woman,existing,,,,,,FALSE +Perry Como,And I Love Her so,existing,,,,,,FALSE +Perry Como,Catch a Falling Star,existing,,,,,,FALSE +Perry Como,My Cup Runneth Over With Love (A Cappella),existing,,,,,,FALSE +Pet Shop Boys,Always On My Mind,existing,,,,,,FALSE +Pet Shop Boys,Domino Dancing,new,,,,,79747,FALSE +Pet Shop Boys,It's a Sin,new,,,,,14104,FALSE +Pet Shop Boys,West End Girls,new,,,,,14234,FALSE +Pet Shop Boys Feat. Dusty Springfield,What Have I Done To Deserve This ?,existing,Pet Shop Boys,,,,,FALSE +Pete Townshend,Let My Love Open the Door,new,,,,,56710,FALSE +Pete Townshend,Rough Boys,new,,,,,77022,FALSE +Pete's Dragon,It's Not Easy (A Cappella),existing,,,,,,FALSE +"Peter, Paul and Mary",Blowin' in the Wind,new,,,,,11293,FALSE +"Peter, Paul and Mary",Leaving on a Jet Plane,new,,,,,11292,FALSE +"Peter, Paul and Mary","Puff, the Magic Dragon",new,,,,,30045,FALSE +"Peter, Paul and Mary",Where Have All the Flowers Gone,new,,,,,68619,FALSE +Peter & Gordon,World Without Love,existing,,,,,,FALSE +Peter Andre,Behind Closed Doors,existing,,,,,,FALSE +Peter Andre,Mysterious Girl,existing,,,,,,FALSE +Peter Frampton,Baby I Love Your Way,new,,,,,21267,FALSE +Peter Frampton,Do You Feel Like I Do,existing,,,,,,FALSE +Peter Frampton,Show Me The Way,existing,,,,,,FALSE +Peter Gabriel,Big Time,new,,,,,53191,FALSE +Peter Gabriel,Digging in the Dirt,new,,,,,58038,FALSE +Peter Gabriel,Don't Give Up,new,,,,,25158,FALSE +Peter Gabriel,Games Without Frontiers,new,,,,,65783,FALSE +Peter Gabriel,In Your Eyes,new,,,,,18970,FALSE +Peter Gabriel,Mercy Street,existing,,,,,,FALSE +Peter Gabriel,Red Rain,existing,,,,,,FALSE +Peter Gabriel,Shock the Monkey,new,,,,,61491,FALSE +Peter Gabriel,Sledgehammer,existing,,,,,,FALSE +Peter Gabriel,Solsbury Hill,existing,,,,,,FALSE +Peter Gabriel,Steam,existing,,,,,,FALSE +Peter Pan,Never,existing,,,,,,FALSE +Peter Pan,You Can Fly (A Cappella),existing,,,,,,FALSE +Peter Paul And Mary,Don't Think Twice It's All Right,existing,"Peter, Paul & Mary",,,,,FALSE +Peter Paul And Mary,If I Had A Hammer,existing,"Peter, Paul & Mary",,,,,FALSE +Peter Sarstedt,Where Do You Go To My Lovely,existing,,,,,,FALSE +Peter Tosh,Legalize It,existing,,,,,,FALSE +Petula Clark,Colour My World,existing,,,,,,FALSE +Petula Clark,Downtown ,existing,,,,,,FALSE +Phantogram,When I'm Small,new,,,,,80157,FALSE +Phantogram,You Don't Get Me High Anymore,new,,,,,75654,FALSE +Pharrell Williams,Happy (A Cappella),existing,,,,,,FALSE +Pharrell Williams,Happy,existing,,,,,,FALSE +Phil Collins,Against All Odds (Take A Look At Me Now),existing,,,,,,FALSE +Phil Collins,Another Day in Paradise,new,,,,,13668,FALSE +Phil Collins,Easy Lover,existing,,,,,,FALSE +Phil Collins,In the Air Tonight,existing,,,,,,FALSE +Phil Collins,One More Night,new,,,,,14050,FALSE +Phil Collins,Sussudio,new,,,,,14049,FALSE +Phil Collins,You Can't Hurry Love,existing,,,,,,FALSE +Phil Oakey,Together In Electric Dreams,existing,,,,,,FALSE +Phish,Bouncing Around the Room,new,,,,,73076,FALSE +Phish,Sample in a Jar,new,,,,,83134,FALSE +Phoebe Bridgers,Funeral,new,,,,,82544,FALSE +Phoebe Bridgers,I Know the End,new,,,,,83557,FALSE +Phoebe Bridgers,Kyoto,new,,,,,76003,FALSE +Phoebe Bridgers,Motion Sickness,new,,,,,23268,FALSE +Phoebe Bridgers,Savior Complex,new,,,,,78547,FALSE +Phoenix,1901,new,,,,,77185,FALSE +Phoenix,If I Ever Feel Better,new,,,,,37059,FALSE +Phoenix,Lisztomania,new,,,,,75270,FALSE +Pilot,Magic,existing,,,,,,FALSE +Pink,Cover Me in Sunshine,new,,,,,63870,FALSE +Pink,Fkin' Perfect,new,,,,,34988,FALSE +Pink,Funhouse,existing,,,,,,FALSE +Pink,Get The Party Started,existing,,,,,,FALSE +Pink,Just Give Me a Reason,new,,,,,41790,FALSE +Pink,Perfect,existing,,,,,,FALSE +Pink,Please Don't Leave Me,existing,,,,,,FALSE +Pink,Raise Your Glass,existing,,,,,,FALSE +Pink,So What,new,,,,,20654,FALSE +Pink,Sober,existing,,,,,,FALSE +Pink,Trustfall,new,,,,,73407,FALSE +Pink,Try,existing,,,,,,FALSE +Pink,What About Us,new,,,,,53954,FALSE +Pink,Who Knew,existing,,,,,,FALSE +Pink Floyd,A Pillow of Winds,new,,,,,62845,FALSE +Pink Floyd,Another Brick In The Wall Part 2,existing,,,,,,FALSE +Pink Floyd,Another Brick in the Wall (Part 1),new,,,,,46915,FALSE +Pink Floyd,Another Brick in the Wall (Part 3),new,,,,,48202,FALSE +Pink Floyd,Astronomy Domine,new,,,,,62914,FALSE +Pink Floyd,Brain Damage,existing,,,,,,FALSE +Pink Floyd,Breathe In The Air,existing,,,,,,FALSE +Pink Floyd,Comfortably Numb,existing,,,,,,FALSE +Pink Floyd,Coming Back To Life,existing,,,,,,FALSE +Pink Floyd,Dogs (full song),new,,,,,49379,FALSE +Pink Floyd,Dogs,existing,,,,,,FALSE +Pink Floyd,Don't Leave Me Now,new,,,,,48723,FALSE +Pink Floyd,Echoes,existing,,,,,,FALSE +Pink Floyd,Eclipse,new,,,,,40450,FALSE +Pink Floyd,Fearless,new,,,,,65707,FALSE +Pink Floyd,Goodbye Blue Sky,new,,,,,37902,FALSE +Pink Floyd,Goodbye Cruel World,existing,,,,,,FALSE +Pink Floyd,Have A Cigar,existing,,,,,,FALSE +Pink Floyd,Hey You,existing,,,,,,FALSE +Pink Floyd,In the Flesh,new,,,,,38515,FALSE +Pink Floyd,Learning to Fly,new,,,,,30192,FALSE +Pink Floyd,Money,existing,,,,,,FALSE +Pink Floyd,Mother,existing,,,,,,FALSE +Pink Floyd,Nobody Home,new,,,,,48686,FALSE +Pink Floyd,Not Now John,new,,,,,71219,FALSE +Pink Floyd,On The Turning Away,existing,,,,,,FALSE +Pink Floyd,One Of My Turns,existing,,,,,,FALSE +Pink Floyd,Pigs (Three Different Ones),existing,,,,,,FALSE +Pink Floyd,Pigs on the Wing,new,,,,,48756,FALSE +Pink Floyd,"Pigs on the Wing, Pt. 1",new,,,,,48758,FALSE +Pink Floyd,"Pigs on the Wing, Pt. 2",new,,,,,48757,FALSE +Pink Floyd,Run Like Hell,existing,,,,,,FALSE +Pink Floyd,San Tropez,new,,,,,65495,FALSE +Pink Floyd,Set the Controls for the Heart of the Sun,new,,,,,73270,FALSE +Pink Floyd,Sheep,existing,,,,,,FALSE +Pink Floyd,Shine On You Crazy Diamond (Parts I-V),existing,,,,,,FALSE +Pink Floyd,Shine On You Crazy Diamond (Parts VI-IX),existing,,,,,,FALSE +Pink Floyd,Sorrow,new,,,,,48530,FALSE +Pink Floyd,The Dogs of War,new,,,,,50367,FALSE +Pink Floyd,The Final Cut,new,,,,,57590,FALSE +Pink Floyd,The Fletcher Memorial Home,new,,,,,28185,FALSE +Pink Floyd,The Great Gig In The Sky,existing,,,,,,FALSE +Pink Floyd,The Show Must Go On,new,,,,,48692,FALSE +Pink Floyd,The Thin Ice,existing,,,,,,FALSE +Pink Floyd,The Trial,new,,,,,57255,FALSE +Pink Floyd,Time,existing,,,,,,FALSE +Pink Floyd,Us And Them,existing,,,,,,FALSE +Pink Floyd,Vera,new,,,,,49006,FALSE +Pink Floyd,Waiting For The Worms,existing,,,,,,FALSE +Pink Floyd,Welcome To The Machine,existing,,,,,,FALSE +Pink Floyd,What Do You Want from Me,new,,,,,48376,FALSE +Pink Floyd,Wish You Were Here,existing,,,,,,FALSE +Pink Floyd,Young Lust,existing,,,,,,FALSE +Pink Martini,Amado Mio,existing,,,,,,FALSE +Pistol Annies,Hell On Heels,existing,Pistol Annies,,,,,FALSE +Pistol Annies,Dear Sobriety,existing,,,,,,FALSE +Pitbull,Feel This Moment,new,,,,,42969,FALSE +Pitbull,Fireball,new,,,,,47548,FALSE +Pitbull,Give Me Everything Tonight,new,,,,,36763,FALSE +Pitbull,Hey Baby (Drop It to the Floor),new,,,,,36030,FALSE +Pitbull,Hotel Room Service,new,,,,,24209,FALSE +Pitbull,I Know You Want Me (Calle Ocho),new,,,,,22712,FALSE +Pitbull,International Love,new,,,,,39520,FALSE +Pitbull,Timber,new,,,,,45633,FALSE +Pitbull,Time Of Our Lives,new,,,,,48584,FALSE +Pitbull,We Are One (Ole Ola) (The Official 2014 FIFA World Cup Song),new,,,,,46721,FALSE +Pitch Perfect,Bella's Finals,existing,,,,,,FALSE +Pitch Perfect,Cups (You're Gonna Miss Me When I'm Gone),existing,,,,,,FALSE +Pitch Perfect,Since U Been Gone,existing,,,,,,FALSE +Pitch Perfect,Trebles Finals,existing,,,,,,FALSE +Pixie Lott,Boys & Girls,existing,,,,,,FALSE +Pixie Lott,Cry Me Out,existing,,,,,,FALSE +Pixie Lott,Gravity,existing,,,,,,FALSE +Pixies,Debaser,new,,,,,69866,FALSE +Pixies,Gigantic,new,,,,,31256,FALSE +Pixies,Gouge Away,new,,,,,81665,FALSE +Pixies,Here Comes Your Man,new,,,,,35930,FALSE +Pixies,Hey,new,,,,,28711,FALSE +Pixies,Monkey Gone to Heaven,new,,,TRUE,,56034,FALSE +Pixies,"Que Sera, Sera (Whatever Will Be, Will Be)",new,,,,,68895,FALSE +Pixies,Velouria,new,,,,,83160,FALSE +Pixies,Wave of Mutilation,new,,,,,71624,FALSE +Pixies,Where Is My Mind,new,,,,,50544,FALSE +Placebo,Every You Every Me,new,,,,,34556,FALSE +Placebo,Pure Morning,new,,,,,42597,FALSE +Placebo,Running Up That Hill,new,,,,,28526,FALSE +Plain White T's,"1, 2, 3, 4",new,,,,,22487,FALSE +Plain White T's,Hey There Delilah (single version),new,,,,,74193,FALSE +Plain White T's,Rhythm of Love,new,,,,,35180,FALSE +Plain White T's,The Rhythm Of Love (A Cappella),existing,,,,,,FALSE +Player,Baby Come Back,new,,,,,10919,FALSE +Plies,Shawty,new,,,,,12505,FALSE +Poison,Every Rose Has Its Thorn,existing,,,,,,FALSE +Poison,Nothin But A Good Time,existing,,,,,,FALSE +Poison,Talk Dirty to Me,new,,,,,42001,FALSE +Poison,Unskinny Bop,new,,,,,57573,FALSE +Pokemon,Pokemon (Attrapez-les tous !),new,,,,,51677,FALSE +Pokemon,Pokemon Theme,new,,,,,42344,FALSE +Pokemon,Pokerap (version francaise),new,,,,,74410,FALSE +Pokemon,Pokerap,new,,,,,71675,FALSE +Pokemon,Polkamon,new,,,,,82868,FALSE +Pop Smoke,Dior,new,,,,,70426,FALSE +Pop Smoke,Welcome to the Party,new,,,,,83752,FALSE +Pop Smoke,What You Know Bout Love,new,,,,,64642,FALSE +Porcupine Tree,Arriving Somewhere but Not Here,new,,,,,76156,FALSE +Porcupine Tree,Blackest Eyes,new,,,,,63975,FALSE +Porcupine Tree,Lazarus,new,,,,,75161,FALSE +Porcupine Tree,Trains,new,,,,,69955,FALSE +Portishead,Glory Box,new,,,,,18086,FALSE +Portishead,Machine Gun,new,,,,,65897,FALSE +Portishead,Numb,new,,,,,72788,FALSE +Portishead,Roads,new,,,,,31366,FALSE +Portugal. The Man,Feel It Still,new,,,,,53498,FALSE +Portugal. The Man,Live in the Moment,new,,,,,61003,FALSE +Post Malone,Circles,new,,,,,59218,FALSE +Post Malone,Congratulations,new,,,,,60911,FALSE +Post Malone,Guy for That,new,,,,,82843,FALSE +Post Malone,Pour Me a Drink,new,,,,,82141,FALSE +Post Malone,Rockstar,new,,,,,54650,FALSE +Post Malone,Wow.,new,,,,,57525,FALSE +Prefab Sprout,King of Rock & Roll,existing,,,,,,FALSE +Primal Scream,Rocks,existing,,,,,,FALSE +Primus,Jerry Was a Race Car Driver,new,,,,,65792,FALSE +Primus,John the Fisherman,new,,,,,71741,FALSE +Primus,My Name Is Mud,new,,,,,71071,FALSE +Primus,Tommy the Cat,new,,,,,70392,FALSE +Primus,Too Many Puppies,new,,,,,73849,FALSE +Primus,Wynona's Big Brown Beaver,new,,,,,74155,FALSE +Prince,1999,new,,,,,12702,FALSE +Prince,Darling Nikki,new,,,,,55431,FALSE +Prince,Delirious,new,,,,,51142,FALSE +Prince,Erotic City,new,,,,,51206,FALSE +Prince,I Wanna Be Your Lover,new,,,,,18927,FALSE +Prince,I Would Die 4 U,new,,,,,37614,FALSE +Prince,Kiss,existing,,,,,,FALSE +Prince,Let's Go Crazy,new,,,,,14023,FALSE +Prince,Little Red Corvette,new,,,,,12703,FALSE +Prince,Nothing Compares 2 U,new,,,,,55562,FALSE +Prince,Purple Rain,existing,,,,,,FALSE +Prince,Raspberry Beret,new,,,,,14150,FALSE +Prince,Sign o' the Times,new,,,,,14020,FALSE +Prince,U Got the Look,new,,,,,30906,FALSE +Prince,When Doves Cry,new,,,,,13763,FALSE +Procol Harum,A Whiter Shade Of Pale,existing,,,,,,FALSE +Psy,Gangnam Style,existing,,,,,,FALSE +Public Enemy,Fight The Power,new,,,,,31672,FALSE +Public Enemy,Harder Than You Think,new,,,,,41589,FALSE +Public Enemy,He Got Game,new,,,,,25837,FALSE +Puddle Of Mudd,Blurry,existing,,,,,,FALSE +Puddle Of Mudd,Control,existing,,,,,,FALSE +Puddle Of Mudd,She Hates Me,existing,,,,,,FALSE +Puddle of Mudd,Blurry,new,Puddle Of Mudd,,,,8152,FALSE +Puddle of Mudd,Control,new,Puddle Of Mudd,,,,24196,FALSE +Puddle of Mudd,Psycho,new,Puddle Of Mudd,,,,18505,FALSE +Puddle of Mudd,She Hates Me,new,Puddle Of Mudd,,,,6952,FALSE +Puff Daddy Feat. Faith Evans,I'll Be Missing You,existing,,,,,,FALSE +Pulp,Common People,existing,,,,,,FALSE +Pure Prairie League,Let Me Love You Tonight,new,,,,,55925,FALSE +Pussycat,Mississippi ,existing,,,,,,FALSE +Quarterflash,Harden My Heart,new,,,,,6135,FALSE +Quavo,Tough,new,,,,,82536,FALSE +Queen,Another One Bites The Dust,existing,,,,,,FALSE +Queen,Bicycle Race,existing,,,,,,FALSE +Queen,Bohemian Rhapsody,existing,,,,,,FALSE +Queen,Crazy Little Thing Called Love,existing,,,,,,FALSE +Queen,Don't Stop Me Now (A Cappella),existing,,,,,,FALSE +Queen,Don't Stop Me Now,existing,,,,,,FALSE +Queen,Fat Bottomed Girls (A Cappella),existing,,,,,,FALSE +Queen,Fat Bottomed Girls,existing,,,,,,FALSE +Queen,Flash,new,,,,,12969,FALSE +Queen,I Want To Break Free,existing,,,,,,FALSE +Queen,Keep Yourself Alive,new,,,,,56890,FALSE +Queen,Killer Queen (A Cappella),existing,,,,,,FALSE +Queen,Killer Queen,existing,,,,,,FALSE +Queen,Play the Game,new,,,,,21212,FALSE +Queen,Radio Ga Ga,new,,,,,6780,FALSE +Queen,Save Me,new,,,,,23764,FALSE +Queen,Seaside Rendezvous (A Cappella),existing,,,,,,FALSE +Queen,Show Must Go On,existing,,,,,,FALSE +Queen,Somebody To Love,existing,,,,,,FALSE +Queen,Too Much Love Will Kill You,existing,,,,,,FALSE +Queen,Under Pressure (A Cappella),existing,,,,,,FALSE +Queen,Under Pressure,existing,,,,,,FALSE +Queen,We Are The Champions (A Cappella),existing,,,,,,FALSE +Queen,We Are The Champions,existing,,,,,,FALSE +Queen,We Will Rock You,existing,,,,,,FALSE +Queen,Who Wants To Live Forever,existing,,,,,,FALSE +Queen Latifah,Big,existing,,,,,,FALSE +Queen Latifah,U.N.I.T.Y.,new,,,,,36166,FALSE +Queens of the Stone Age,3's & 7's,new,Queens Of The Stone Age,,,,12196,FALSE +Queens of the Stone Age,Go with the Flow,new,Queens Of The Stone Age,,,,52764,FALSE +Queens of the Stone Age,I Sat by the Ocean,new,Queens Of The Stone Age,,,,27827,FALSE +Queens of the Stone Age,Little Sister,new,Queens Of The Stone Age,,,,29538,FALSE +Queens of the Stone Age,Make It wit Chu,new,Queens Of The Stone Age,,,,63743,FALSE +Queens of the Stone Age,No One Knows,new,Queens Of The Stone Age,,,,13981,FALSE +Queensryche,Jet City Woman,new,,,,,27367,FALSE +Queensryche,Silent Lucidity,existing,,,,,,FALSE +Quiet Riot,Cum on Feel the Noize,new,,,,,57030,FALSE +Quiet Riot,Metal Health (Bang Your Head),new,,,,,62807,FALSE +R Dean Taylor,Indiana Wants Me,existing,,,,,,FALSE +R. Kelly,Bump N Grind,existing,,,,,,FALSE +R. Kelly,I Believe I Can Fly,existing,,,,,,FALSE +R. Kelly,I'm a Flirt (remix),new,,,,,11932,FALSE +R. Kelly,Ignition,existing,,,,,,FALSE +R. Kelly,Same Girl,new,,,,,12590,FALSE +R.E.M,Shiny Happy People,existing,R.E.M.,,,,,FALSE +R.E.M.,(Don't Go Back to) Rockville,new,,,,,74119,FALSE +R.E.M.,Drive,new,,,,,33006,FALSE +R.E.M.,Driver 8,new,,,,,70810,FALSE +R.E.M.,Everybody Hurts,existing,,,,,,FALSE +R.E.M.,Fall on Me,new,,,,,71783,FALSE +R.E.M.,Imitation Of Life,existing,,,,,,FALSE +R.E.M.,It's The End Of The World As We Know It (And I Feel Fine),existing,,,,,,FALSE +R.E.M.,Losing My Religion,existing,,,,,,FALSE +R.E.M.,Man On The Moon,existing,,,,,,FALSE +R.E.M.,Nightswimming,new,,,,,38281,FALSE +R.E.M.,Orange Crush,new,,,,,69614,FALSE +R.E.M.,Radio Free Europe,new,,,,,31731,FALSE +R.E.M.,Stand,new,,,,,18911,FALSE +R.E.M.,The Finest Worksong,existing,,,,,,FALSE +R.E.M.,The One I Love,existing,,,,,,FALSE +R.E.M.,The Sidewinder Sleeps Tonite,new,,,,,33004,FALSE +R.E.M.,What's The Frequency Kenneth,existing,,,,,,FALSE +REO Speedwagon,Don't Let Him Go,new,,,,,67990,FALSE +REO Speedwagon,I Can't Fight This Feeling Anymore,existing,,,,,,FALSE +REO Speedwagon,Keep On Loving You,existing,,,,,,FALSE +REO Speedwagon,Roll with the Changes,new,,,,,55990,FALSE +REO Speedwagon,Take It On The Run,existing,,,,,,FALSE +REO Speedwagon,Time for Me to Fly,new,,,,,55414,FALSE +Racey,Some Girls Will,existing,,,,,,FALSE +Rachel Platten,Fight Song,new,,,,,49157,FALSE +Rachel Platten,Stand By You,new,,,,,50156,FALSE +Radiohead,Airbag,new,,,,,76101,FALSE +Radiohead,Burn the Witch,new,,,,,61437,FALSE +Radiohead,Climbing Up The Walls,existing,,,,,,FALSE +Radiohead,Creep (acoustic),new,,,,,37299,FALSE +Radiohead,Creep,existing,,,,,,FALSE +Radiohead,Everything in Its Right Place,new,,,,,79508,FALSE +Radiohead,Exit Music For A Film,existing,,,,,,FALSE +Radiohead,Fake Plastic Trees,existing,,,,,,FALSE +Radiohead,High And Dry,existing,,,,,,FALSE +Radiohead,Karma Police,existing,,,,,,FALSE +Radiohead,Let Down,new,,,,,37530,FALSE +Radiohead,Lotus Flower,new,,,,,74530,FALSE +Radiohead,Lucky,existing,,,,,,FALSE +Radiohead,My Iron Lung,new,,,,,74466,FALSE +Radiohead,No Surprises,new,,,,,25919,FALSE +Radiohead,Nude,new,,,,,18701,FALSE +Radiohead,Optimistic,new,,,,,68168,FALSE +Radiohead,Paranoid Android,new,,,,,12546,FALSE +Radiohead,Pyramid Song,new,,,,,73351,FALSE +Radiohead,Street Spirit (Fade Out),new,,,,,21270,FALSE +Radiohead,Subterranean Homesick Alien,existing,,,,,,FALSE +Radiohead,The Bends,new,,,,,59428,FALSE +Radiohead,The Tourist,existing,,,,,,FALSE +Radiohead,Weird Fishes Arpeggi,new,,,,,76794,FALSE +Raekwon,Ice Cream,new,,,,,35590,FALSE +Rag'n'Bone Man,Anywhere Away from Here,new,,,,,64578,FALSE +Rag'n'Bone Man,Human,new,,,,,51837,FALSE +Rag'n'Bone Man,Skin,new,,,,,52553,FALSE +Rage Against The Machine,Killing In The Name,existing,,,,,,FALSE +Rage Against the Machine,Bombtrack,new,Rage Against The Machine,,,,42307,FALSE +Rage Against the Machine,Bullet in the Head,new,Rage Against The Machine,,,,59933,FALSE +Rage Against the Machine,Bulls on Parade,new,Rage Against The Machine,,,,44248,FALSE +Rage Against the Machine,Guerrilla Radio,new,Rage Against The Machine,,,,70491,FALSE +Rage Against the Machine,Know Your Enemy,new,Rage Against The Machine,,,,66878,FALSE +Rage Against the Machine,People of the Sun,new,Rage Against The Machine,,,,73137,FALSE +Rage Against the Machine,Renegades of Funk,new,Rage Against The Machine,,,,73862,FALSE +Rage Against the Machine,Sleep Now in the Fire,new,Rage Against The Machine,,,,71099,FALSE +Rage Against the Machine,Take the Power Back,new,Rage Against The Machine,,,,70359,FALSE +Rage Against the Machine,Testify,new,Rage Against The Machine,,,,71430,FALSE +Rage Against the Machine,Wake Up,new,Rage Against The Machine,,,,44235,FALSE +Rainbow,Man on the Silver Mountain,new,,,,,63448,FALSE +Rainbow,Since You've Been Gone,existing,,,,,,FALSE +Rainbow,The Temple of the King,new,,,,,63838,FALSE +Rainbow Kitten Surprise,Cocaine Jesus,new,,,,,75808,FALSE +Rainbow Kitten Surprise,It's Called Freefall,new,,,,,74244,FALSE +Rainbow Kitten Surprise,Lady Lie,new,,,,,79885,FALSE +Rainbow Kitten Surprise,Painkillers,new,,,,,83280,FALSE +Ram Jam,Black Betty,existing,,,,,,FALSE +Ramones,Blitzkrieg Bop,new,,,,,40987,FALSE +Ramones,I Wanna Be Sedated,new,,,,,46366,FALSE +Ramones,Pet Sematary,new,,,,,71980,FALSE +Ramones,Rock 'n' Roll High School,new,,,,,65826,FALSE +Ramones,Sheena Is a Punk Rocker,new,,,,,21271,FALSE +Rancid,Ruby Soho,new,,,,,63792,FALSE +Rancid,Time Bomb,new,,,,,56355,FALSE +Randy Crawford,Almaz,existing,,,,,,FALSE +Randy Crawford,Street Life,existing,,,,,,FALSE +Randy Houser,How Country Feels,new,,,,,68665,FALSE +Randy Houser,Runnin' Outta Moonlight,new,,,,,69604,FALSE +Randy Newman,I Love L.A.,existing,,,,,,FALSE +Randy Newman,Short People,existing,,,,,,FALSE +Randy Travis,Deeper Than the Holler,new,,,,,44244,FALSE +Randy Travis,Diggin' Up Bones,new,,,,,6705,FALSE +Randy Travis,Forever And Ever Amen,existing,,,,,,FALSE +Randy Travis,Swing Down Chariot (A Cappella),existing,,,,,,FALSE +Randy Travis,Three Wooden Crosses,existing,,,,,,FALSE +Randy Van Warmer,Just When I Needed You Most,existing,,,,,,FALSE +Rare Earth,I Just Want to Celebrate,new,,,,,29158,FALSE +Rascal Flatts,Bless The Broken Road,existing,,,,,,FALSE +Rascal Flatts,Life Is A Highway,existing,,,,,,FALSE +Rascal Flatts,Rewind,existing,,,,,,FALSE +Rascal Flatts,What Hurts The Most,existing,,,,,,FALSE +Ratt,Body Talk,new,,,,,70785,FALSE +Ratt,Lay It Down,new,,,,,58783,FALSE +Ratt,Lovin' You's a Dirty Job,new,,,,,69586,FALSE +Ratt,Round and Round,new,,,,,56908,FALSE +Ratt,Wanted Man,new,,,,,65722,FALSE +Ratt,Way Cool Jr.,new,,,,,70334,FALSE +Ratt,You're in Love,new,,,,,68350,FALSE +Ray Charles,Busted,existing,,,,,,FALSE +Ray Charles,Georgia On My Mind,existing,,,,,,FALSE +Ray Charles,I Can't Stop Loving You,existing,,,,,,FALSE +Ray Charles,I Got A Woman,existing,,,,,,FALSE +Ray Charles,That Lucky Old Sun (A Cappella),existing,,,,,,FALSE +Ray Charles,What'd I Say,existing,,,,,,FALSE +Ray Charles,You Don't Know Me (Duet),existing,,,,,,FALSE +Ray Lamontagne,Jolene,existing,,,,,,FALSE +Ray Lamontagne,Let It Be Me,existing,,,,,,FALSE +Ray Lamontagne,Trouble,existing,,,,,,FALSE +Ray Lamontagne,You Are The Best Thing,existing,,,,,,FALSE +Ray Parker Junior,Ghostbusters,existing,,,,,,FALSE +Raye,Escapism.,new,,,,,27764,FALSE +Raye,Ice Cream Man.,new,,,,,73997,FALSE +Raye,Oscar Winning Tears.,new,,,,,74080,FALSE +Raye,Worth It.,new,,,,,81049,FALSE +Razorlight,America,existing,,,,,,FALSE +Razorlight,Before I Fall To Pieces,existing,,,,,,FALSE +Reba McEntire,Consider Me Gone,existing,,,,,,FALSE +Reba McEntire,Fancy,existing,,,,,,FALSE +Reba McEntire,Going Out Like That,existing,,,,,,FALSE +Reba McEntire,If I Were A Boy,existing,,,,,,FALSE +Reba McEntire,The Night the Lights Went Out in Georgia,new,,,,,6742,FALSE +Red Hot C Hili Peppers,Hump De Bump,existing,Red Hot Chili Peppers,,,,,FALSE +Red Hot C Hili Peppers,Universally Speaking,existing,Red Hot Chili Peppers,,,,,FALSE +Red Hot Chili Peppers,Blood Sugar Sex Magik,new,,,,,65044,FALSE +Red Hot Chili Peppers,Breaking The Girl,existing,,,,,,FALSE +Red Hot Chili Peppers,By The Way,existing,,,,,,FALSE +Red Hot Chili Peppers,Californication,existing,,,,,,FALSE +Red Hot Chili Peppers,Can't Stop,new,,,,,21235,FALSE +Red Hot Chili Peppers,Dani California,new,,,,,10812,FALSE +Red Hot Chili Peppers,Dark Necessities,new,,,,,51333,FALSE +Red Hot Chili Peppers,Give It Away,new,,,,,13560,FALSE +Red Hot Chili Peppers,Higher Ground,existing,,,,,,FALSE +Red Hot Chili Peppers,Otherside,existing,,,,,,FALSE +Red Hot Chili Peppers,Scar Tissue,new,,,,,8624,FALSE +Red Hot Chili Peppers,Snow (Hey Oh),new,,,,,13618,FALSE +Red Hot Chili Peppers,Suck My Kiss,new,,,,,65019,FALSE +Red Hot Chili Peppers,The Zephyr Song,new,,,,,7073,FALSE +Red Hot Chili Peppers,Under the Bridge,new,,,,,6415,FALSE +Red Velvet (),Bad Boy,new,Red Velvet,,,,59403,FALSE +Red Velvet (),Psycho,new,Red Velvet,,,,60338,FALSE +Red Velvet (),Red Flavor ( ),new,Red Velvet,,,,59434,FALSE +Red Velvet (),Russian Roulette ( ),new,Red Velvet,,,,59435,FALSE +Redbone,Come And Get Your Love,existing,,,,,,FALSE +Reel Big Fish,Sell Out,existing,,,,,,FALSE +Regard,Hallucination,new,,,,,68714,FALSE +Regard,Ride It,new,,,,,60431,FALSE +Regard,Secrets,new,,,,,61959,FALSE +Regard,You,new,,,,,64980,FALSE +Regina Spektor,Fidelity,new,,,,,20138,FALSE +Regina Spektor,Hotel Song,existing,,,,,,FALSE +Regina Spektor,On The Radio,existing,,,,,,FALSE +Regina Spektor,Samson,existing,,,,,,FALSE +Regina Spektor,The Call,new,,,,,23531,FALSE +Regina Spektor,Two Birds,new,,,,,79022,FALSE +Renee Rapp,Not My Fault,new,,,,,79209,FALSE +Renee Rapp,Too Well,new,,,,,81491,FALSE +Rex Orange County,Best Friend,new,,,,,27758,FALSE +Rex Orange County,Loving Is Easy,new,,,,,65740,FALSE +Rex Orange County,Pluto Projector,new,,,,,78086,FALSE +Rex Orange County,Sunflowers,new,,,,,72941,FALSE +Rhema Marvanne,Prayer,existing,,,,,,FALSE +Richard Marx,Right Here Waiting,existing,,,,,,FALSE +Richie Stephens,Rain From The Sky,existing,,,,,,FALSE +Rick Astley,Never Gonna Give You Up,existing,,,,,,FALSE +Rick James,Superfreak,existing,,,,,,FALSE +Rick Springfield,Jessie's Girl,new,,,,,20640,FALSE +Ricky Martin,Cancion bonita,new,,,,,64632,FALSE +Ricky Martin,La Mordidita,new,,,,,49585,FALSE +Ricky Martin,Livin' La Vida Loca,existing,,,,,,FALSE +Ricky Martin,Vente pa' ca,new,,,,,52002,FALSE +Ricky Martin,Vuelve,new,,,,,76015,FALSE +Ricky Nelson,Garden Party,existing,,,,,,FALSE +Ricky Nelson,Hello Mary Lou (A Cappella),existing,,,,,,FALSE +Ricky Nelson,Hello Mary Lou,existing,,,,,,FALSE +Ricky Nelson,It's Late,existing,,,,,,FALSE +Right Said Fred,I'm Too Sexy,existing,,,,,,FALSE +Rihanna,California King Bed,existing,,,,,,FALSE +Rihanna,Diamonds,existing,,,,,,FALSE +Rihanna,Disturbia,existing,,,,,,FALSE +Rihanna,Don't Stop the Music,existing,,,,,,FALSE +Rihanna,Love on the Brain,new,,,,,50948,FALSE +Rihanna,Needed Me,new,,,,,51165,FALSE +Rihanna,Only Girl In The World,existing,,,,,,FALSE +Rihanna,Rude Boy,existing,,,,,,FALSE +Rihanna,S&M,new,,,,,35327,FALSE +Rihanna,Stay,existing,,,,,,FALSE +Rihanna,Take a Bow,existing,,,,,,FALSE +Rihanna,Umbrella,existing,,,,,,FALSE +Rihanna,We Found Love,existing,,,,,,FALSE +Rihanna,What's My Name,existing,,,,,,FALSE +Rihanna,Where Have You Been,existing,,,,,,FALSE +Rihanna Feat. Jay Z,Umbrella,existing,Rihanna,,,,,FALSE +Riley Green,Different 'Round Here,new,,,,,77890,FALSE +Riley Green,I Wish Grandpas Never Died,new,,,,,59050,FALSE +Riley Green,There Was This Girl,new,,,,,57307,FALSE +Rilo Kiley,Portions for Foxes,new,,,,,70714,FALSE +Rise Against,Prayer of the Refugee,new,,,,,31175,FALSE +Rise Against,Satellite,new,,,,,72867,FALSE +Rise Against,Savior,new,,,,,69952,FALSE +Rita Coolidge,We're All Alone,existing,,,,,,FALSE +Rita Ora,For You,new,,,,,55108,FALSE +Rita Ora,I Will Never Let You Down,existing,,,,,,FALSE +Rita Ora,Let You Love Me,new,,,,,56615,FALSE +Rita Ora,Ritual,new,,,,,59162,FALSE +Rita Ora,Shine Ya Light,existing,,,,,,FALSE +Rita Ora,Your Song,new,,,,,53778,FALSE +Ritchie Valens,La Bamba,existing,,,,,,FALSE +Rizzle Kicks,Down With The Trumpets,new,,,,,37785,FALSE +Rizzle Kicks,Mama Do the Hump,new,,,,,39369,FALSE +Rizzle Kicks,Skip To The Good Bit,new,,,,,45823,FALSE +Rizzle Kicks,Traveller's Chant,new,,,,,41374,FALSE +Rizzle Kicks,When I Was a Youngster,new,,,,,38735,FALSE +Roachford,Cuddly Toy,existing,,,,,,FALSE +Rob Zombie,Dragula,new,,,,,57396,FALSE +Rob Zombie,Living Dead Girl,new,,,,,63874,FALSE +Rob Zombie,Superbeast,new,,,,,70095,FALSE +Robbie Williams,Advertising Space,existing,,,,,,FALSE +Robbie Williams,Angels,existing,,,,,,FALSE +Robbie Williams,Bodies,existing,,,,,,FALSE +Robbie Williams,Candy,existing,,,,,,FALSE +Robbie Williams,Feel,existing,,,,,,FALSE +Robbie Williams,Go Gentle,existing,,,,,,FALSE +Robbie Williams,Hot Fudge,existing,,,,,,FALSE +Robbie Williams,Karma Killer,existing,,,,,,FALSE +Robbie Williams,Let Love Be Your Energy,existing,,,,,,FALSE +Robbie Williams,Let Me Entertain You,existing,,,,,,FALSE +Robbie Williams,Me & My Monkey,existing,,,,,,FALSE +Robbie Williams,Morning Sun,existing,,,,,,FALSE +Robbie Williams,Mr. Bojangles,existing,,,,,,FALSE +Robbie Williams,No Regrets,existing,,,,,,FALSE +Robbie Williams,One for the Road,existing,,,,,,FALSE +Robbie Williams,Radio,existing,,,,,,FALSE +Robbie Williams,Rock DJ,existing,,,,,,FALSE +Robbie Williams,Something Beautiful,existing,,,,,,FALSE +Robbie Williams,Straighten Up & Fly Right,existing,,,,,,FALSE +Robbie Williams,Strong,existing,,,,,,FALSE +Robbie Williams,Swing Supreme,existing,,,,,,FALSE +Robbie Williams,Trippin',existing,,,,,,FALSE +Robbie Williams & Lily Allen,Dream a Little Dream of Me,existing,Robbie Williams,,,,,FALSE +Robert Cray,Don't Be Afraid Of The Dark,existing,,,,,,FALSE +Robert Cray,Phone Booth,existing,,,,,,FALSE +Robert Cray,Smoking Gun,existing,,,,,,FALSE +Robert Earl Keen,Corpus Christi Bay,new,,,,,72830,FALSE +Robert Earl Keen,Feelin' Good Again,new,,,,,78067,FALSE +Robert Earl Keen,The Road Goes on Forever,new,,,,,69209,FALSE +Robert John,Sad Eyes,existing,,,,,,FALSE +Robert Palmer,Addicted To Love,existing,,,,,,FALSE +Robert Palmer,Bad Case Of Loving You (Doctor Doctor),existing,,,,,,FALSE +Robert Palmer,Every Kinda People (Remix),existing,,,,,,FALSE +Robert Palmer,Every Kinda People,existing,,,,,,FALSE +Robert Palmer,I'll Be Your Baby Tonight,existing,,,,,,FALSE +Robert Palmer,She Makes My Day,existing,,,,,,FALSE +Robert Palmer,Simply Irresistable,existing,,,,,,FALSE +Robert Plant,Can't Let Go,new,,,,,67211,FALSE +Robert Plant,In the Mood,new,,,,,63847,FALSE +Robert Plant,Killing the Blues,new,,,,,71850,FALSE +Robert Plant,Please Read the Letter,new,,,,,74868,FALSE +Roberta Flack,Killing Me Softly With His Song,existing,,,,,,FALSE +Roberta Flack,The First Time Ever I Saw Your Face,existing,,,,,,FALSE +Roberta Flack,You've Got A Friend,existing,,,,,,FALSE +Robin Schulz,In Your Eyes,new,,,,,60696,FALSE +Robin Schulz,Sugar,new,,,,,49700,FALSE +Robin Schulz,Sun Goes Down,new,,,,,47955,FALSE +Robin Thicke,Blurred Lines,existing,,,,,,FALSE +Robyn,Show Me Love,new,,,,,9571,FALSE +Rod Stewart,Do Ya Think I'm Sexy,existing,,,,,,FALSE +Rod Stewart,Downtown Train,existing,,,,,,FALSE +Rod Stewart,Every Beat of My Heart,existing,,,,,,FALSE +Rod Stewart,First Cut Is the Deepest,existing,,,,,,FALSE +Rod Stewart,Have I Told You Lately,existing,,,,,,FALSE +Rod Stewart,Hot Legs,existing,,,,,,FALSE +Rod Stewart,I Don't Want To Talk About It,existing,,,,,,FALSE +Rod Stewart,I Was Only Joking,existing,,,,,,FALSE +Rod Stewart,Maggie May,existing,,,,,,FALSE +Rod Stewart,Some Guys Have All The Luck,new,,,,,8966,FALSE +Rod Stewart,Tonight's The Night (Gonna Be Alright),existing,,,,,,FALSE +Rod Stewart,You Wear It Well,existing,,,,,,FALSE +Rod Stewart,Young Turks,new,,,,,50796,FALSE +Rod Stewart & Ron Isley,This Old Heart of Mine,existing,Rod Stewart,,,,,FALSE +Roger Miller,King Of The Road,existing,,,,,,FALSE +Ronan Keating,Life Is A Rollercoaster,existing,,,,,,FALSE +Ronan Keating,She Believes In Me,existing,,,,,,FALSE +Rose Royce,Car Wash,existing,,,,,,FALSE +Roxette,It Must Have Been Love,existing,,,,,,FALSE +Roxette,The Look,existing,,,,,,FALSE +Roxy Music,Avalon,existing,,,,,,FALSE +Roxy Music,Jealous Guy (Live),existing,,,,,,FALSE +Roxy Music,Love Is The Drug,existing,,,,,,FALSE +Roxy Music,More than This,new,,,,,13950,FALSE +Roy Orbison,Crying (A Cappella),existing,,,,,,FALSE +Roy Orbison,Heartache,existing,,,,,,FALSE +Roy Orbison,I Drove All Night,existing,,,,,,FALSE +Roy Orbison,Mean Woman Blues,existing,,,,,,FALSE +Roy Orbison,Oh Pretty Woman,existing,,,,,,FALSE +Roy Orbison,Only The Lonely,existing,,,,,,FALSE +Roy Orbison,Penny Arcade,existing,,,,,,FALSE +Roy Orbison,Scarlett Ribbons,existing,,,,,,FALSE +Roy Orbison,Too Soon To Know,existing,,,,,,FALSE +Roy Orbison,You Got It,existing,,,,,,FALSE +Roy Wood & Wizzard,I Wish It Could Be Christmas Every Day,existing,,,,,,FALSE +Roy Wood & Wizzard,See My Baby Jive,existing,,,,,,FALSE +Ruby Turner,Stay With Me Baby,existing,,,,,,FALSE +Rudimental,Feel The Love,new,,,,,40820,FALSE +Rudimental,Lay It All On Me,new,,,,,50281,FALSE +Rudimental,These Days,new,,,,,55162,FALSE +Rudimental,Waiting All Night,new,,,,,43543,FALSE +Rufus,Tell Me Something Good,new,,,,,8633,FALSE +Rufus Du Sol,Next to Me,new,,,,,67912,FALSE +Rufus Wainwright,Hallelujah,existing,,,,,,FALSE +Rumer,Am I Forgiven?,existing,,,,,,FALSE +Rumer,Aretha,existing,,,,,,FALSE +Rumer,Goodbye Girl,existing,,,,,,FALSE +Run The Jewels,Legend Has It,new,,,,,79154,FALSE +Run The Jewels,Ooh La La,new,,,,,63825,FALSE +Run-DMC,Down With The King,new,,,,,33146,FALSE +Run-DMC,It's Like That (Jason Nevins remix),new,,,,,52369,FALSE +Run-DMC,It's Like That,new,,,,,82982,FALSE +Run-DMC,It's Tricky,new,,,,,54889,FALSE +Run-DMC,King of Rock,new,,,,,68158,FALSE +Run-DMC,My Adidas,new,,,,,83857,FALSE +Run-DMC,Peter Piper,new,,,,,83235,FALSE +Run-DMC,You Be Illin',new,,,,,68188,FALSE +Rupert Holmes,Escape - the Piña Colada Song,existing,,,,,,FALSE +Rush,2112 Overture The Temples of Syrinx,new,,,,,49537,FALSE +Rush,A Passage to Bangkok,new,,,,,66840,FALSE +Rush,Bastille Day,new,,,,,67690,FALSE +Rush,Closer to the Heart,new,,,,,56265,FALSE +Rush,Distant Early Warning,new,,,,,32587,FALSE +Rush,Entre Nous,new,,,,,23670,FALSE +Rush,Fly by Night,new,,,,,60803,FALSE +Rush,Freewill,existing,,,,,,FALSE +Rush,Jacob's Ladder,new,,,,,70732,FALSE +Rush,Limelight,existing,,,,,,FALSE +Rush,Natural Science,new,,,,,68500,FALSE +Rush,New World Man,new,,,,,64464,FALSE +Rush,Presto,new,,,,,71992,FALSE +Rush,Red Barchetta,new,,,,,57823,FALSE +Rush,Red Sector A,new,,,,,69100,FALSE +Rush,Roll the Bones,new,,,,,67045,FALSE +Rush,Subdivisions,new,,,,,57439,FALSE +Rush,The Analog Kid,new,,,,,73307,FALSE +Rush,The Big Money,new,,,,,69810,FALSE +Rush,The Camera Eye,new,,,,,71757,FALSE +Rush,The Spirit of Radio,new,,,,,49489,FALSE +Rush,The Trees,existing,,,,,,FALSE +Rush,Time Stand Still,new,,,,,61182,FALSE +Rush,Tom Sawyer,existing,,,,,,FALSE +Rush,Vital Signs,new,,,,,70737,FALSE +Rush,Witch Hunt,new,,,,,70823,FALSE +Rush,Working Man,existing,,,,,,FALSE +Russ,Are You Entertained,new,,,,,71027,FALSE +Russ,Handsomer (remix),new,,,,,69085,FALSE +Russ,Handsomer,new,,,,,69086,FALSE +Russ,Losin Control,new,,,,,78640,FALSE +Russell Dickerson,Blue Tacoma,new,,,,,56709,FALSE +Russell Dickerson,Every Little Thing,new,,,,,59070,FALSE +Russell Dickerson,Love You Like I Used To,new,,,,,60705,FALSE +Russell Dickerson,She Likes It,new,,,,,68620,FALSE +Russell Dickerson,Yours,new,,,,,54700,FALSE +Ruth B.,Lost Boy,new,,,,,50623,FALSE +Ry Cooder,Little Sister,existing,,,,,,FALSE +Ryan Adams,Come Pick Me Up,new,,,,,45683,FALSE +Ryan Adams,"New York, New York",new,,,,,24416,FALSE +Ryan Adams,Oh My Sweet Carolina,new,,,,,78170,FALSE +Ryan Adams,Wonderwall,new,,,,,75934,FALSE +Ryan Bingham,The Weary Kind,new,,,,,29446,FALSE +S Club 7,Reach,existing,,,,,,FALSE +SWV,Anything,new,,,,,11433,FALSE +SWV,Can We,new,,,,,10419,FALSE +SWV,I'm So Into You,new,,,,,11265,FALSE +SWV,Rain,new,,,,,31994,FALSE +SWV,Right Here (Human Nature Radio Mix),new,,,,,39277,FALSE +SWV,Someone,new,,,,,34569,FALSE +SWV,Use Your Heart,new,,,,,77410,FALSE +SWV,Weak,new,,,,,6474,FALSE +SWV,You're The One,new,,,,,32577,FALSE +SZA,Broken Clocks,new,,,,,70221,FALSE +SZA,Kill Bill,new,,,,,72780,FALSE +SZA,Nobody Gets Me,new,,,,,72755,FALSE +SZA,Open Arms,new,,,,,47042,FALSE +SZA,Saturn,new,,,,,80210,FALSE +SZA,Snooze,new,,,,,73129,FALSE +Sabaton,Primo Victoria,new,,,,,71611,FALSE +Sabaton,The Last Stand,new,,,,,71153,FALSE +Sabaton,To Hell and Back,new,,,,,80661,FALSE +Sabrina Carpenter,Espresso,new,,,,,80891,FALSE +Sabrina Carpenter,Feather,new,,,,,75178,FALSE +Sabrina Carpenter,Nonsense,new,,,,,73243,FALSE +Sabrina Carpenter,Please Please Please,new,,,,,81927,FALSE +Sabrina Carpenter,Taste,new,,,,,83258,FALSE +Sad Cafe,Every Day Hurts,existing,,,,,,FALSE +Sade,By Your Side,existing,,,,,,FALSE +Sade,Kiss of Life,new,,,,,27980,FALSE +Sade,Like a Tattoo,new,,,,,67565,FALSE +Sade,No Ordinary Love,new,,,,,6434,FALSE +Sade,Smooth Operator,existing,,,,,,FALSE +Sade,The Sweetest Taboo,new,,,,,10913,FALSE +Sade,Your Love Is King,new,,,,,14499,FALSE +Safri Duo,La Bamba (Remix 2008),existing,,,,,,FALSE +Saint Motel,Cold Cold Man,new,,,,,81361,FALSE +Saint Motel,My Type,new,,,,,47946,FALSE +Saliva,Click Click Boom,existing,,,,,,FALSE +Salt N Pepa,Shoop,existing,Salt-N-Pepa,,,,,FALSE +Salt' N' Pepa,Ain't Nuthin' But A She Thing,new,Salt-N-Pepa,,,,29282,FALSE +Salt' N' Pepa,Champagne,new,Salt-N-Pepa,,,,28286,FALSE +Salt' N' Pepa,Let's Talk About Sex,new,Salt-N-Pepa,,,,12694,FALSE +Salt' N' Pepa,None of Your Business (clean),new,Salt-N-Pepa,,,,39591,FALSE +Salt' N' Pepa,None of Your Business,new,Salt-N-Pepa,,,,33559,FALSE +Salt' N' Pepa,Push It,new,Salt-N-Pepa,,,,13912,FALSE +Salt' N' Pepa,Shoop,new,Salt-N-Pepa,,,,30607,FALSE +Sam & Dave,Soul Man,existing,,,,,,FALSE +Sam Bailey,Skyscraper,existing,,,,,,FALSE +Sam Brown,Can I Get a Witness,existing,,,,,,FALSE +Sam Brown,Stop,existing,,,,,,FALSE +Sam Cooke,Bring It On Home To Me,existing,,,,,,FALSE +Sam Cooke,Twistin The Night Away,existing,,,,,,FALSE +Sam Cooke,Wonderful World,existing,,,,,,FALSE +Sam Fender,Hypersonic Missiles,new,,,,,59170,FALSE +Sam Fender,Seventeen Going Under,new,,,,,67779,FALSE +Sam Fender,Will We Talk,new,,,,,59171,FALSE +Sam Hunt,Body Like a Back Road,new,,,,,52620,FALSE +Sam Hunt,Break Up in a Small Town,new,,,,,50927,FALSE +Sam Hunt,House Party,new,,,,,49677,FALSE +Sam Hunt,Kinfolks,new,,,,,79203,FALSE +Sam Hunt,Leave the Night On,new,,,,,49555,FALSE +Sam Hunt,Take Your Time,new,,,,,48814,FALSE +Sam Smith,Dancing with a Stranger,new,,,,,57283,FALSE +Sam Smith,Fire on Fire,new,,,,,57188,FALSE +Sam Smith,I'm Not The Only One,existing,,,,,,FALSE +Sam Smith,Latch (Acoustic),new,,,,,46969,FALSE +Sam Smith,Like I Can,existing,,,,,,FALSE +Sam Smith,Stay With Me,existing,,,,,,FALSE +Sam Smith,Too Good at Goodbyes,new,,,,,54078,FALSE +Sam Smith,Unholy,new,,,,,71614,FALSE +Sam Sparro,Black & Gold,existing,,,,,,FALSE +Sammy Davis Junior,Candy Man,existing,,,,,,FALSE +Sammy Hagar,Heavy Metal,new,,,,,68853,FALSE +Sammy Hagar,I Can't Drive 55,new,,,,,53479,FALSE +Sammy Hagar,There's Only One Way to Rock,new,,,,,68215,FALSE +Sandie Shaw,(There's) Always Something There To Remind Me,existing,,,,,,FALSE +Sandy Posey,Single Girl,existing,,,,,,FALSE +Santana,Black Magic Woman,existing,,,,,,FALSE +Santana,Changes,new,,,,,53421,FALSE +Santana,Corazon Espinado,existing,,,,,,FALSE +Santana,Dance Sister Dance (Baila Mi Hermana),new,,,,,7634,FALSE +Santana,Europa (Earth's Cry,existing,,,,,,FALSE +Santana,Everybody's Everything,new,,,,,7635,FALSE +Santana,Evil Ways,existing,,,,,,FALSE +Santana,Guajira,new,,,,,62870,FALSE +Santana,I Love You Much Too Much,existing,,,,,,FALSE +Santana,Let the Children Play,new,,,,,68162,FALSE +Santana,Maria Maria,new,,,,,8910,FALSE +Santana,No One To Depend On,existing,,,,,,FALSE +Santana,Oye Como Va,existing,,,,,,FALSE +Santana,Persuasion,new,,,,,7639,FALSE +Santana,Samba Pa Ti,existing,,,,,,FALSE +Santana,She's Not There,new,,,,,7628,FALSE +Santana,Smooth,existing,,,,,,FALSE +Santana,The Game Of Love,existing,,,,,,FALSE +Santana,The Sensitive Kind,existing,,,,,,FALSE +Santana,While My Guitar Gently Weeps,existing,,,,,,FALSE +Santana,Winning,new,,,,,7632,FALSE +Sara Bareilles,Brave,existing,,,,,,FALSE +Sara Bareilles,Gravity,existing,,,,,,FALSE +Sara Bareilles,I Choose You,existing,,,,,,FALSE +Sara Bareilles,Love Song,existing,,,,,,FALSE +Sara Bareilles,She Used to Be Mine,new,,,,,49946,FALSE +Sara Evans,A Little Bit Stronger,existing,,,,,,FALSE +Sara Evans,Suds In The Bucket,existing,,,,,,FALSE +Sara Evans,Suds in the Bucket,new,,,,,8466,FALSE +Sarah Brightman,Memory,existing,,,,,,FALSE +Sarah McLachlan,Angel,existing,,,,,,FALSE +Sarah McLachlan,Blackbird,existing,,,,,,FALSE +Sarah McLachlan,Ice Cream,existing,,,,,,FALSE +Sarah Vaughan,Lullaby Of Birdland,existing,,,,,,FALSE +Sarah Vaughan,Moonlight In Vermont,existing,,,,,,FALSE +Sarah Vaughan,My Funny Valentine,existing,,,,,,FALSE +Sarah Vaughan,Whatever Lola Wants Lola Gets,existing,,,,,,FALSE +Saweetie,Best Friend,new,,,,,65272,FALSE +Saweetie,Closer,new,,,,,68281,FALSE +Saweetie,Icy Grl,new,,,,,82084,FALSE +Saweetie,My Type,new,,,,,75571,FALSE +Scandal,Goodbye to You,new,,,,,22871,FALSE +Scandal,The Warrior,new,,,,,6546,FALSE +Scissor Sisters,I Don't Feel Like Dancin,existing,,,,,,FALSE +Scissor Sisters,Take Your Mama,existing,,,,,,FALSE +Scorpions,Blackout,new,,,,,64181,FALSE +Scorpions,No One Like You,new,,,,,41774,FALSE +Scorpions,Rock You Like A Hurricane,existing,,,,,,FALSE +Scorpions,Send Me an Angel,new,,,,,22051,FALSE +Scorpions,Still Loving You,existing,,,,,,FALSE +Scorpions,Wind Of Change,existing,,,,,,FALSE +Scott Mckenzie,San Francisco (Be Sure To Wear Flowers In Your Hair),existing,,,,,,FALSE +Scotty McCreery,Five More Minutes,new,,,,,53428,FALSE +Scotty McCreery,This Is It,new,,,,,67828,FALSE +Scouting For Girls,She's So Lovely,existing,,,,,,FALSE +Seal,Crazy,new,,,,,13158,FALSE +Seal,Kiss From a Rose,new,,,,,10816,FALSE +Seals And Crofts,Summer Breeze,existing,,,,,,FALSE +Sean Paul,Get Busy,new,,,,,13935,FALSE +Sean Paul,She Doesn't Mind,new,,,,,40051,FALSE +Sean Paul,Temperature,new,,,,,21934,FALSE +Secret Affair,My World,existing,,,,,,FALSE +Seether,Broken,existing,,,,,,FALSE +Seether,Careless Whisper,new,,,,,26103,FALSE +Seether,Country Song,existing,,,,,,FALSE +Seether,Fake It,new,,,,,52678,FALSE +Seether,Fine Again,new,,,,,53419,FALSE +Seether,Remedy,new,,,,,69700,FALSE +Selena,Amor prohibido,new,,,,,18676,FALSE +Selena,Como la flor,new,,,,,18674,FALSE +Selena,El chico del apartamento 512,new,,,,,57429,FALSE +Selena,No me queda mas,new,,,,,61034,FALSE +Selena,Si una vez,new,,,,,59048,FALSE +Selena Gomez,Back to You,new,,,,,55746,FALSE +Selena Gomez,Come And Get It,existing,,,,,,FALSE +Selena Gomez,Fetish,new,,,,,53851,FALSE +Selena Gomez,Good For You,new,,,,,49525,FALSE +Selena Gomez,Lose You to Love Me,new,,,,,59688,FALSE +Selena Gomez,Love You Like a Love Song,existing,,,,,,FALSE +Selena Gomez,Same Old Love,new,,,,,49903,FALSE +Selena Gomez,Single Soon,new,,,,,76985,FALSE +Selena Gomez,The Heart Wants What It Wants,existing,,,,,,FALSE +Selena Gomez,Wolves,new,,,,,54652,FALSE +September,Cry for You,existing,,,,,,FALSE +Sergio Mendes,Berimbau,existing,,,,,,FALSE +Sergio Mendes,Mas Que Nada,existing,,,,,,FALSE +Sex Pistols,Anarchy in the U.K.,new,,,,,55852,FALSE +Sex Pistols,God Save The Queen,new,,,,,42389,FALSE +Sexyy Red,Bow Bow Bow (F My Baby Dad),new,,,,,79156,FALSE +Sexyy Red,Get It Sexyy,new,,,,,80682,FALSE +Sexyy Red,Hellcats SRTs 2 (with Lil Durk),new,,,,,81420,FALSE +Sexyy Red,Hellcats SRTs,new,,,,,81419,FALSE +Sexyy Red,Looking for the Hoes (Ain't My Fault),new,,,,,80161,FALSE +Sexyy Red,Pound Town 2,new,,,,,75472,FALSE +Sexyy Red,Pound Town,new,,,,,75741,FALSE +Sexyy Red,Skeeyee,new,,,,,77004,FALSE +Sexyy Red,U My Everything,new,,,,,81993,FALSE +Sha Na Na,Blue Moon,existing,,,,,,FALSE +Shaggy,Boombastic,new,,,,,13619,FALSE +Shakin' Stevens,Blue Christmas,existing,,,,,,FALSE +Shakin' Stevens,Fire Down Below,existing,,,,,,FALSE +Shakin' Stevens,Green Door,existing,,,,,,FALSE +Shakin' Stevens,Merry Christmas Everyone,existing,,,,,,FALSE +Shakin' Stevens,Ready Teddy,existing,,,,,,FALSE +Shakin' Stevens,Rockin' Good Way,existing,,,,,,FALSE +Shakin' Stevens,Teardrops,existing,,,,,,FALSE +Shakin' Stevens,This Ole House,existing,,,,,,FALSE +Shakin' Stevens,You Drive Me Crazy,existing,,,,,,FALSE +Shakira,Antologia,new,,,,,56334,FALSE +Shakira,Can't Remember To Forget You feat. Rihanna,existing,,,,,,FALSE +Shakira,Chantaje,new,,,,,52096,FALSE +Shakira,Dia de Enero,new,,,,,83602,FALSE +Shakira,Hips Don't Lie,new,,,,,7230,FALSE +Shakira,Inevitable,new,,,,,21334,FALSE +Shakira,Waka Waka (This Time for Africa),new,,,,,30412,FALSE +Shakira,"Whenever, Wherever",new,,,,,8071,FALSE +Sham Rock,Tell Me Ma,existing,,,,,,FALSE +Shania Twain,Any Man of Mine,new,,,,,11087,FALSE +Shania Twain,Forever And For Always,existing,,,,,,FALSE +Shania Twain,From This Moment On,new,,,,,40089,FALSE +Shania Twain,Honey I'm Home,existing,,,,,,FALSE +Shania Twain,Man I Feel Like A Woman,existing,,,,,,FALSE +Shania Twain,That Don't Impress Me Much,new,,,,,8522,FALSE +Shania Twain,You're Still The One,existing,,,,,,FALSE +Shawn Mendes,If I Can't Have You,new,,,,,58274,FALSE +Shawn Mendes,Imagination,new,,,,,64053,FALSE +Shawn Mendes,In My Blood,new,,,,,55366,FALSE +Shawn Mendes,Mercy,new,,,,,51776,FALSE +Shawn Mendes,Senorita,new,,,,,58670,FALSE +Shawn Mendes,Stitches,new,,,,,49342,FALSE +Shawn Mendes,There's Nothing Holdin' Me Back,new,,,,,53068,FALSE +Shawn Mendes,Treat You Better,new,,,,,51474,FALSE +Shawn Mendes,Wonder,new,,,,,62572,FALSE +She And Him,Fools Rush In,existing,,,,,,FALSE +Sheena Easton,For Your Eyes Only,existing,,,,,,FALSE +Sheena Easton,Strut,new,,,,,10004,FALSE +Sheppard,Coming Home,new,,,,,55166,FALSE +Sheppard,Geronimo,new,,,,,46911,FALSE +Sheryl Crow,A Change Would Do You Good,new,,,,,18606,FALSE +Sheryl Crow,All I Wanna Do,new,,,,,11455,FALSE +Sheryl Crow,Everyday Is a Winding Road,new,,,,,11330,FALSE +Sheryl Crow,If It Makes You Happy,existing,,,,,,FALSE +Sheryl Crow,My Favorite Mistake,existing,,,,,,FALSE +Sheryl Crow,Soak Up The Sun,new,,,,,8273,FALSE +Sheryl Crow,Strong Enough,existing,,,,,,FALSE +Sheryl Crow,The First Cut Is The Deepest,existing,,,,,,FALSE +Sheryl Crow & Sting,Always On Your Side,existing,Sheryl Crow,,,,,FALSE +Shinedown,45,existing,,,,,,FALSE +Shinedown,Call Me,existing,,,,,,FALSE +Shinedown,Cut the Cord,new,,,,,68235,FALSE +Shinedown,Devil,new,,,,,66008,FALSE +Shinedown,Enemies,new,,,,,68442,FALSE +Shinedown,Monsters,new,,,,,63915,FALSE +Shinedown,Second Chance,new,,,,,25424,FALSE +Shinedown,Simple Man,existing,,,,,,FALSE +Shinedown,Sound of Madness,new,,,,,67672,FALSE +Shirley Bassey,Diamonds Are Forever,existing,,,,,,FALSE +Shirley Bassey,Get the Party Started,existing,,,,,,FALSE +Shirley Bassey,Goldfinger,existing,,,,,,FALSE +Shola Ama,You Might Need Somebody,existing,,,,,,FALSE +Showaddywaddy,Hey Rock & Roll,existing,,,,,,FALSE +Showaddywaddy,Under the Moon of Love,existing,,,,,,FALSE +Sia,Chandelier (Piano Version),existing,,,,,,FALSE +Sia,Chandelier,existing,,,,,,FALSE +Sia,Cheap Thrills (feat. Sean Paul),new,,,,,51130,FALSE +Sia,Cheap Thrills,new,,,,,50662,FALSE +Sia,Elastic Heart,existing,,,,,,FALSE +Sia,Snowman,new,,,,,54631,FALSE +Sia,Unstoppable,new,,,,,50673,FALSE +Sick Puppies,Maybe,existing,,,,,,FALSE +Sick Puppies,You're Going Down,existing,,,,,,FALSE +Sigala,Came Here for Love,new,,,,,53732,FALSE +Sigala,Easy Love,new,,,,,50378,FALSE +Sigala,Sweet Lovin',new,,,,,55246,FALSE +Sigrid,Strangers,new,,,,,55511,FALSE +Silk Sonic,After Last Night,new,,,,,67036,FALSE +Silk Sonic,Leave the Door Open,new,,,,,64116,FALSE +Silk Sonic,Love's Train,new,,,,,68310,FALSE +Silk Sonic,Skate,new,,,,,65789,FALSE +Silk Sonic,Smokin Out the Window,new,,,,,66926,FALSE +Silversun Pickups,Lazy Eye,new,,,,,66517,FALSE +Silversun Pickups,Panic Switch,new,,,,,73611,FALSE +Simon & Garfunkel,A Hazy Shade of Winter,new,,,,,24251,FALSE +Simon & Garfunkel,America,existing,,,,,,FALSE +Simon & Garfunkel,Homeward Bound,existing,,,,,,FALSE +Simon & Garfunkel,I Am a Rock,existing,,,,,,FALSE +Simon & Garfunkel,My Little Town,new,,,,,71322,FALSE +Simon & Garfunkel,Old Friends,new,,,,,81802,FALSE +Simon & Garfunkel,The Only Living Boy in New York,new,,,,,31780,FALSE +Simon And Garfunkel,Bridge Over Troubled Water,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,Cecilia,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,El Condor Pasa (If I Could),existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,Mrs. Robinson,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,Scarborough Fair (Canticle),existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,The 59th Street Bridge Song (Feelin Groovy),existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,The Boxer,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,The Sound Of Silence,existing,Simon & Garfunkel,,,,,FALSE +Simple Minds,Alive & Kicking,existing,,,,,,FALSE +Simple Minds,Don't You Forget About Me,existing,,,,,,FALSE +Simple Minds,Glittering Prize,existing,,,,,,FALSE +Simple Minds,Promised You a Miracle,existing,,,,,,FALSE +Simple Minds,Waterfront,existing,,,,,,FALSE +Simple Plan,I'm Just a Kid,new,,,,,43640,FALSE +Simple Plan,Jet Lag (feat. Natasha Bedingfield),new,,,,,37264,FALSE +Simple Plan,Perfect,new,,,,,5744,FALSE +Simple Plan,Summer Paradise,new,,,,,40151,FALSE +Simple Plan,Welcome To My Life,new,,,,,19925,FALSE +Simply Red,For Your Babies,existing,,,,,,FALSE +Simply Red,Holding Back The Years,existing,,,,,,FALSE +Simply Red,If You Don't Know Me By Now,existing,,,,,,FALSE +Simply Red,Something Got Me Started,existing,,,,,,FALSE +Simply Red,You Make Me Feel Brand New,existing,,,,,,FALSE +Simpsons,Coney Island Baby (A Cappella),existing,,,,,,FALSE +Sinead O'Connor,Nothing Compares 2 U,existing,,,,,,FALSE +Siouxsie & The Banshees,Kiss Them for Me,new,,,,,73346,FALSE +Sir Mix-A-Lot,Baby Got Back,existing,,,,,,FALSE +Sir Mix-a-Lot,Baby Got Back,new,Sir Mix-A-Lot,,,,14483,FALSE +Sir Mix-a-Lot,Buttermilk Biscuits (Keep on Square Dancin'),new,Sir Mix-A-Lot,,,,69423,FALSE +Sir Mix-a-Lot,Jump On It,new,Sir Mix-A-Lot,,,,53308,FALSE +Sir Mix-a-Lot,Posse on Broadway,new,Sir Mix-A-Lot,,,,52351,FALSE +Sir Mix-a-Lot,Square Dance Rap,new,Sir Mix-A-Lot,,,,70238,FALSE +Sir Sly,High,new,,,,,78848,FALSE +Sister Hazel,All For You,existing,,,,,,FALSE +Sister Sledge,Lost In Music,existing,,,,,,FALSE +Sister Sledge,Thinking of You,existing,,,,,,FALSE +Sister Sledge,We Are Family,existing,,,,,,FALSE +Sixpence None The Richer,Kiss Me,existing,,,,,,FALSE +Sixpence None The Richer,There She Goes,existing,,,,,,FALSE +Ska-P,Cannabis,existing,,,,,,FALSE +Ska-P,El Vals Del Obrero,existing,,,,,,FALSE +Skeeter Davis,End of the World,existing,,,,,,FALSE +Skid Row,18 And Life,existing,,,,,,FALSE +Skid Row,I Remember You,new,,,,,58484,FALSE +Skid Row,Youth Gone Wild,new,,,,,63353,FALSE +Skillet,Awake And Alive,existing,,,,,,FALSE +Skillet,Hero,existing,,,,,,FALSE +Skunk Anansie,Hedonism (Just Because You Feel Good),existing,,,,,,FALSE +Skunk Anansie,Weak,existing,,,,,,FALSE +Slade,Mama We're All Crazy Now,existing,,,,,,FALSE +Slade,Merry Christmas Everybody,existing,,,,,,FALSE +Slayer,Angel of Death,new,,,,,71324,FALSE +Slayer,Raining Blood,new,,,,,70010,FALSE +Sleep Token,The Summoning,new,,,,,73535,FALSE +Slim Dusty,Where Country Is,existing,,,,,,FALSE +Slipknot,Before I Forget,new,,,,,66649,FALSE +Slipknot,Custer,new,,,,,78222,FALSE +Slipknot,Duality,new,,,,,28474,FALSE +Slipknot,Psychosocial,existing,,,,,,FALSE +Slipknot,Snuff,existing,,,,,,FALSE +Slipknot,The Devil in I,new,,,,,70007,FALSE +Slipknot,Unsainted,new,,,,,70897,FALSE +Slipknot,Wait & Bleed,new,,,,,70145,FALSE +Sly And The Family Stone,Everyday People,existing,Sly & The Family Stone,,,,,FALSE +Sly And The Family Stone,Family Affair,existing,Sly & The Family Stone,,,,,FALSE +Sly And The Family Stone,Hot Fun In The Summertime,existing,Sly & The Family Stone,,,,,FALSE +Sly and the Family Stone,Dance to the Music,new,Sly & The Family Stone,,,,6386,FALSE +Sly and the Family Stone,Thank You,new,Sly & The Family Stone,,,,18576,FALSE +Smash Mouth,All Star,existing,,,,,,FALSE +Smash Mouth,Walkin On The Sun,existing,,,,,,FALSE +Smokey Robinson,I Second That Emotion,existing,,,,,,FALSE +Smokey Robinson,The Tracks Of My Tears,existing,,,,,,FALSE +Smokie,Living Next Door To Alice,existing,,,,,,FALSE +Snakehips,All My Friends,new,,,,,83582,FALSE +Sneaker Pimps,6 Underground,new,,,,,10460,FALSE +Snoop Dogg,Ain't No Fun (If the Homies Can't Have None),new,,,,,55743,FALSE +Snoop Dogg,Beautiful,new,,,,,81667,FALSE +Snoop Dogg,Boom,new,,,,,38155,FALSE +Snoop Dogg,Candy (Drippin' Like Water),new,,,,,11911,FALSE +Snoop Dogg,Drop It Like It's Hot,existing,,,,,,FALSE +Snoop Dogg,Gin And Juice,existing,,,,,,FALSE +Snoop Dogg,Lodi Dodi,new,,,,,35588,FALSE +Snoop Dogg,Murder Was the Case (1993 version),new,,,,,72312,FALSE +Snoop Dogg,Sensual Seduction,new,,,,,14995,FALSE +Snoop Dogg,Signs,new,,,,,25723,FALSE +Snoop Dogg,Sweat (David Guetta Remix),existing,,,,,,FALSE +Snoop Dogg,Who Am I (What's My Name),new,,,,,13764,FALSE +Snow Patrol,Chasing Cars,existing,,,,,,FALSE +Snow Patrol,Run,existing,,,,,,FALSE +Snow Patrol,Spitting Games,existing,,,,,,FALSE +Snow Patrol,You're All I Have,existing,,,,,,FALSE +Social Distortion,Ball and Chain,new,,,,,54951,FALSE +Social Distortion,Story of My Life,new,,,,,27851,FALSE +Soft Cell,Tainted Love,existing,,,,,,FALSE +Soggy Bottom Boys,I Am A Man Of Constant Sorrow,existing,,,,,,FALSE +Soggy Bottom Boys,In The Jailhouse Now,existing,,,,,,FALSE +Sonic Youth,Kool Thing,new,,,,,75591,FALSE +Sonic Youth,Teen Age Riot,new,,,,,75816,FALSE +Sonny And Cher,I Got You Babe,existing,,,,,,FALSE +Sonny Rollins,Tenor Madness,existing,,,,,,FALSE +Sophie B Hawkins,Damn I Wish I Was Your Lover,existing,,,,,,FALSE +Soul Asylum,Misery,existing,,,,,,FALSE +Soul Asylum,Runaway Train,existing,,,,,,FALSE +Soulja Boy,Crank That,new,,,,,12625,FALSE +Soulja Boy,Kiss Me Thru the Phone,new,,,,,22192,FALSE +Soulja Boy,Pretty Boy Swag,new,,,,,80644,FALSE +Soulja Boy,Turn My Swag On,new,,,,,22910,FALSE +Soundgarden,Black Hole Sun,existing,,,,,,FALSE +Soundgarden,Burden in My Hand,new,,,,,55015,FALSE +Soundgarden,Fell on Black Days,new,,,,,54880,FALSE +Soundgarden,Outshined,existing,,,,,,FALSE +Soundgarden,Rusty Cage,new,,,,,55957,FALSE +Soundgarden,Spoonman,new,,,,,52579,FALSE +Space,Female of the Species,existing,,,,,,FALSE +Spandau Ballet,Gold,existing,,,,,,FALSE +Spandau Ballet,Through the Barricades,existing,,,,,,FALSE +Spandau Ballet,TRUE,existing,,,,,,FALSE +Spiller,Groovejet,existing,,,,,,FALSE +Spin Doctors,Two Princes,existing,,,,,,FALSE +Split Enz,I Got You,existing,,,,,,FALSE +Spoon,The Underdog,new,,,,,74881,FALSE +Squeeze,Another Nail Through My Heart,existing,,,,,,FALSE +Squeeze,Black Coffee in Bed,new,,,,,11480,FALSE +Squeeze,Cool for Cats,existing,,,,,,FALSE +Squeeze,If I Didn't Love You,existing,,,,,,FALSE +Squeeze,Is That Love,existing,,,,,,FALSE +Squeeze,Labelled With Love,existing,,,,,,FALSE +Squeeze,Pulling Mussels from a Shell,existing,,,,,,FALSE +Squeeze,Tempted,existing,,,,,,FALSE +Squeeze,Up the Junction,existing,,,,,,FALSE +St. Vincent,Los Ageless,new,,,,,73778,FALSE +Staind,For You,new,,,,,22331,FALSE +Staind,It's Been Awhile,new,,,,,7926,FALSE +Staind,Mudshovel,new,,,,,74992,FALSE +Staind,Outside,existing,,,,,,FALSE +Staind,Right Here,existing,,,,,,FALSE +Staind,So Far Away,existing,,,,,,FALSE +Stan Getz,Insensatez,new,,,,,63160,FALSE +Stan Getz,So Danco Samba,existing,,,,,,FALSE +Stan Getz,So danco samba,new,,,,,43488,FALSE +Stan Getz,Vivo sonhando,new,,,,,67540,FALSE +Starship,Nothing's Gonna Stop Us Now,existing,,,,,,FALSE +Starship,We Built This City,existing,,,,,,FALSE +Status Quo,Anniversary Waltz,existing,,,,,,FALSE +Status Quo,Rockin' All Over the World,existing,,,,,,FALSE +Status Quo,Whatever You Want,existing,,,,,,FALSE +Stealers Wheel,Stuck In The Middle With You,existing,,,,,,FALSE +Steel Panther,Eyes of a Panther,new,,,,,71433,FALSE +Steel Panther,Fat Girl (Thar She Blows),new,,,,,35833,FALSE +Steely Dan,Aja,new,,,,,57578,FALSE +Steely Dan,Any Major Dude Will Tell You,new,,,,,62113,FALSE +Steely Dan,Babylon Sisters,new,,,,,58442,FALSE +Steely Dan,Bad Sneakers,new,,,,,58493,FALSE +Steely Dan,Black Cow,new,,,,,56755,FALSE +Steely Dan,Black Friday,new,,,,,18474,FALSE +Steely Dan,Bodhisattva,new,,,,,18463,FALSE +Steely Dan,Deacon Blues,existing,,,,,,FALSE +Steely Dan,Dirty Work,existing,,,,,,FALSE +Steely Dan,Do It Again,existing,,,,,,FALSE +Steely Dan,Don't Take me Alive,new,,,,,58163,FALSE +Steely Dan,FM (No Static At All),existing,,,,,,FALSE +Steely Dan,Gaucho,new,,,,,63459,FALSE +Steely Dan,Hey Nineteen,existing,,,,,,FALSE +Steely Dan,Home at Last,new,,,,,61634,FALSE +Steely Dan,Josie,existing,,,,,,FALSE +Steely Dan,Kid Charlemagne,existing,,,,,,FALSE +Steely Dan,My Old School,existing,,,,,,FALSE +Steely Dan,Peg,existing,,,,,,FALSE +Steely Dan,Pretzel Logic,new,,,,,57035,FALSE +Steely Dan,Reelin In The Years,existing,,,,,,FALSE +Steely Dan,Rikki Don't Lose That Number,existing,,,,,,FALSE +Steely Dan,Time Out of Mind,new,,,,,18462,FALSE +Stephanie Mills,Never Knew Love Like This Before,existing,,,,,,FALSE +Stephen 'Tin Tin' Duffy,Kiss Me,existing,,,,,,FALSE +Stephen Bishop,On And On,new,,,,,31468,FALSE +Stephen Foster,If You've Only Got A Mustache (A Cappella),existing,,,,,,FALSE +Stephen Sanchez,High,new,,,,,77252,FALSE +Stephen Sanchez,Until I Found You,new,,,,,70031,FALSE +Steppenwolf,Born To Be Wild,existing,,,,,,FALSE +Steppenwolf,Magic Carpet Ride,existing,,,,,,FALSE +Steps,Tragedy,existing,,,,,,FALSE +Stereophonics,Dakota,existing,,,,,,FALSE +Stereophonics,Graffiti On the Train,existing,,,,,,FALSE +Stereophonics,Handbags & Gladrags,existing,,,,,,FALSE +Stereophonics,Maybe Tomorrow,existing,,,,,,FALSE +Steve Earle,Copperhead Road,existing,,,,,,FALSE +Steve Earle,Galway Girl,existing,,,,,,FALSE +Steve Earle,Goodbye,existing,,,,,,FALSE +Steve Earle,Guitar Town,existing,,,,,,FALSE +Steve Earle,The Devil's Right Hand,existing,,,,,,FALSE +Steve Harley & Cockney Rebel,Make Me Smile (Come Up & See Me),existing,,,,,,FALSE +Steve Miller Band,Abracadabra,existing,,,,,,FALSE +Steve Miller Band,Dance Dance Dance,new,,,,,69279,FALSE +Steve Miller Band,Fly Like An Eagle,existing,,,,,,FALSE +Steve Miller Band,Jet Airliner,existing,,,,,,FALSE +Steve Miller Band,Jungle Love,new,,,,,18029,FALSE +Steve Miller Band,Rock'n Me,existing,,,,,,FALSE +Steve Miller Band,Space Cowboy,new,,,,,55144,FALSE +Steve Miller Band,Swingtown,existing,,,,,,FALSE +Steve Miller Band,Take The Money And Run,existing,,,,,,FALSE +Steve Miller Band,The Joker,existing,,,,,,FALSE +Steve Winwood,Back in the High Life Again,new,,,,,46951,FALSE +Steve Winwood,Can't Find My Way Home (live Crossroads),new,,,,,71728,FALSE +Steve Winwood,Higher Love,existing,,,,,,FALSE +Steve Winwood,Valerie '87,new,,,,,33679,FALSE +Stevie Nicks,Edge Of Seventeen,existing,,,,,,FALSE +Stevie Nicks,Leather And Lace,existing,,,,,,FALSE +Stevie Nicks,Rhiannon,existing,,,,,,FALSE +Stevie Nicks,Stop Draggin My Heart Around,existing,,,,,,FALSE +Stevie Ray Vaughan,Cold Shot,existing,,,,,,FALSE +Stevie Ray Vaughan,Couldn't Stand the Weather,new,,,,,57150,FALSE +Stevie Ray Vaughan,Crossfire,existing,,,,,,FALSE +Stevie Ray Vaughan,Life By The Drop,existing,,,,,,FALSE +Stevie Ray Vaughan,Little Wing,existing,,,,,,FALSE +Stevie Ray Vaughan,Look At Little Sister,existing,,,,,,FALSE +Stevie Ray Vaughan,Love Struck Baby,existing,,,,,,FALSE +Stevie Ray Vaughan,Pride And Joy,existing,,,,,,FALSE +Stevie Ray Vaughan,Superstition,existing,,,,,,FALSE +Stevie Ray Vaughan,Texas Flood,existing,,,,,,FALSE +Stevie Ray Vaughan,The House Is Rockin,existing,,,,,,FALSE +Stevie Ray Vaughan,Tightrope,existing,,,,,,FALSE +Stevie Ray Vaughan,Voodoo Child (Slight Return),new,,,,,49610,FALSE +Stevie Wonder,Boogie on Reggae Woman,new,,,,,21303,FALSE +Stevie Wonder,Don't You Worry 'bout a Thing,new,,,,,12883,FALSE +Stevie Wonder,For Once In My Life,existing,,,,,,FALSE +Stevie Wonder,He's Misstra Know It All,existing,,,,,,FALSE +Stevie Wonder,Higher Ground,existing,,,,,,FALSE +Stevie Wonder,I Believe (When I Fall in Love It Will Be Forever),new,,,,,64369,FALSE +Stevie Wonder,I Just Called To Say I Love You,existing,,,,,,FALSE +Stevie Wonder,I Wish,existing,,,,,,FALSE +Stevie Wonder,Isn't She Lovely (A Cappella),existing,,,,,,FALSE +Stevie Wonder,Isn't She Lovely,existing,,,,,,FALSE +Stevie Wonder,Living for the City,new,,,,,18447,FALSE +Stevie Wonder,Love's in Need of Love Today,new,,,,,25579,FALSE +Stevie Wonder,My Cherie Amour,new,,,,,12885,FALSE +Stevie Wonder,Part Time Lover,existing,,,,,,FALSE +Stevie Wonder,Pastime Paradise,new,,,,,25844,FALSE +Stevie Wonder,Signed Sealed And Delivered I'm Yours,existing,,,,,,FALSE +Stevie Wonder,Sir Duke,existing,,,,,,FALSE +Stevie Wonder,Superstition,existing,,,,,,FALSE +Stevie Wonder,Uptight Everything's Alright,existing,,,,,,FALSE +Stevie Wonder,You Are The Sunshine Of My Life,existing,,,,,,FALSE +Sting,Desert Rose,existing,,,,,,FALSE +Sting,Englishman In New York,existing,,,,,,FALSE +Sting,Fields Of Gold,existing,,,,,,FALSE +Sting,Fragile,existing,,,,,,FALSE +Sting,Shape Of My Heart,existing,,,,,,FALSE +Sting,Someone To Watch Over Me,existing,,,,,,FALSE +Stone Sour,Absolute Zero,new,,,,,77605,FALSE +Stone Sour,Bother,new,,,,,7204,FALSE +Stone Sour,Through Glass,existing,,,,,,FALSE +Stone Sour,Wicked Game (acoustic),new,,,,,35047,FALSE +Stone Temple Pilots,Big Empty,new,,,,,54939,FALSE +Stone Temple Pilots,Creep,existing,,,,,,FALSE +Stone Temple Pilots,Dancing Days,existing,,,,,,FALSE +Stone Temple Pilots,Dead And Bloated,new,,,,,52333,FALSE +Stone Temple Pilots,Interstate Love Song,existing,,,,,,FALSE +Stone Temple Pilots,Plush (Acoustic),existing,,,,,,FALSE +Stone Temple Pilots,Plush,existing,,,,,,FALSE +Stone Temple Pilots,Sex Type Thing,existing,,,,,,FALSE +Stone Temple Pilots,Vasoline,new,,,,,49538,FALSE +Stone Temple Pilots,Wicked Garden,existing,,,,,,FALSE +Stooshe,Black Heart,existing,,,,,,FALSE +Stooshe,Slip,existing,,,,,,FALSE +Story Of The Year,Until The Day I Die,existing,,,,,,FALSE +Strawberry Alarm Clock,Incense & Peppermints,existing,,,,,,FALSE +Style Council,My Ever Changing Mood,existing,,,,,,FALSE +Style Council,Shout To the Top,existing,,,,,,FALSE +Style Council,Walls Come Tumbling Down,existing,,,,,,FALSE +Style Council,You're the Best Thing,existing,,,,,,FALSE +Styx,Babe,new,,,,,29927,FALSE +Styx,Blue Collar Man,new,,,,,55290,FALSE +Styx,Come Sail Away,existing,,,,,,FALSE +Styx,Fooling Yourself (The Angry Young Man),new,,,,,53162,FALSE +Styx,Lady,new,,,,,51989,FALSE +Styx,Miss America,new,,,,,68439,FALSE +Styx,Pieces of Eight,new,,,,,65536,FALSE +Styx,Renegade,existing,,,,,,FALSE +Styx,Rockin' the Paradise,new,,,,,60194,FALSE +Styx,Show Me The Way,existing,,,,,,FALSE +Styx,Sing for the Day,new,,,,,64098,FALSE +Styx,Snowblind,new,,,,,28184,FALSE +Styx,Suite Madame Blue,existing,,,,,,FALSE +Styx,The Best of Times,new,,,,,56980,FALSE +Styx,The Grand Illusion,new,,,,,62108,FALSE +Styx,Too Much Time On My Hands,existing,,,,,,FALSE +Sublime,Caress Me Down,existing,,,,,,FALSE +Sublime,Garden Grove,existing,,,,,,FALSE +Sublime,Santeria,existing,,,,,,FALSE +Sublime,Smoke Two Joints,existing,,,,,,FALSE +Sublime,What I Got,existing,,,,,,FALSE +Sublime,With Rome Panic,existing,,,,,,FALSE +Sufjan Stevens,Chicago,new,,,,,72889,FALSE +Sufjan Stevens,Mystery of Love,new,,,,,74964,FALSE +Sugababes,Girls,existing,,,,,,FALSE +Sugababes,Push the Button,existing,,,,,,FALSE +Sugar Minott,Good Thing Going,existing,,,,,,FALSE +Sugar Ray,Answer The Phone,existing,,,,,,FALSE +Sugar Ray,Fly,existing,,,,,,FALSE +Sugar Ray,Someday,existing,,,,,,FALSE +Sugarland,Stay,existing,,,,,,FALSE +Sugarland,Stuck Like Glue,existing,,,,,,FALSE +Sugarloaf,Green-Eyed Lady,existing,,,,,,FALSE +Suggs,Cecilia,existing,,,,,,FALSE +Sum 41,Hell Song,existing,,,,,,FALSE +Sum 41,In Too Deep,existing,,,,,,FALSE +Sum 41,Pieces,existing,,,,,,FALSE +Supertramp,Bloody Well Right,existing,,,,,,FALSE +Supertramp,Dreamer,new,,,,,20737,FALSE +Supertramp,Give A Little Bit,existing,,,,,,FALSE +Supertramp,Goodbye Stranger,existing,,,,,,FALSE +Supertramp,Take The Long Way Home,existing,,,,,,FALSE +Supertramp,The Logical Song,existing,,,,,,FALSE +Survivor,Burning Heart,existing,,,,,,FALSE +Survivor,Eye Of The Tiger,existing,,,,,,FALSE +Susan Tedeschi,Angel from Montgomery,new,,,,,51464,FALSE +Susan Tedeschi,"Don't Think Twice, It's All Right",new,,,,,65644,FALSE +Susan Tedeschi,It Hurt So Bad,existing,,,,,,FALSE +Susan Tedeschi,Little by Little,new,,,,,56196,FALSE +Susan Tedeschi,"Mama, He Treats Your Daughter Mean",new,,,,,36260,FALSE +Susan Tedeschi,Rock Me Right,existing,,,,,,FALSE +Susan Tedeschi,Voodoo Woman (live),new,,,,,49139,FALSE +Sutherland Brothers & Quiver,Arms of Mary,existing,,,,,,FALSE +Suzanne Vega,Luka,new,,,,,5118,FALSE +Suzanne Vega,Tom's Diner,new,,,,,10007,FALSE +Sweeney Todd,Not While I'm Around (A Cappella),existing,,,,,,FALSE +Sweet,Ballroom Blitz,existing,,,,,,FALSE +Swing Out Sister,Breakout,existing,,,,,,FALSE +Swinging Blue Jeans,Hippy Hippy Shake,existing,,,,,,FALSE +Switchfoot,Dare You To Move,existing,,,,,,FALSE +Switchfoot,Meant To Live,existing,,,,,,FALSE +System Of A Down,Aerials,existing,,,,,,FALSE +System Of A Down,Lonely Day,existing,,,,,,FALSE +System Of A Down,Toxicity,existing,,,,,,FALSE +System of a Down,B.Y.O.B,new,System Of A Down,,,,43958,FALSE +System of a Down,Chop Suey!,new,System Of A Down,,,,19872,FALSE +System of a Down,Hypnotize,new,System Of A Down,,,,26861,FALSE +System of a Down,Sugar,new,System Of A Down,,,,56684,FALSE +System of a Down,Violent Pornography,new,System Of A Down,,,,28051,FALSE +T Rex,20th Century Boy,existing,,,,,,FALSE +T Rex,Get It On,existing,,,,,,FALSE +T Rex,Hot Love,existing,,,,,,FALSE +T Rex,I Love To Boogie,existing,,,,,,FALSE +T Rex,Jeepster,existing,,,,,,FALSE +T Rex,Ride a White Swan,existing,,,,,,FALSE +T'pau,China In Your Hand,existing,,,,,,FALSE +T-Pain,5 O'Clock,new,,,,,39179,FALSE +T-Pain,Bartender,new,,,,,12362,FALSE +T-Pain,Best Love Song,new,,,,,82966,FALSE +T-Pain,Buy U A Drank (Shawty Snappin),new,,,,,12051,FALSE +T-Pain,Can't Believe It,new,,,,,21014,FALSE +T-Pain,I'm 'n Luv (wit a Stripper),new,,,,,60612,FALSE +T-Pain,I'm Sprung,new,,,,,32580,FALSE +T.I.,Big Things Poppin' (Do It),new,,,,,12363,FALSE +T.I.,Go Get It,new,,,,,41317,FALSE +T.I.,Got Your Back,new,,,,,32381,FALSE +T.I.,Live Your Life,new,,,,,21353,FALSE +T.I.,No Mediocre,existing,,,,,,FALSE +T.I.,Remember Me,new,,,,,24617,FALSE +T.I.,That's All She Wrote,new,,,,,35483,FALSE +T.I.,Whatever You Like,new,,,,,20754,FALSE +T.I.,Why You Wanna,new,,,,,32377,FALSE +TLC,Creep,existing,,,,,,FALSE +TLC,No Scrubs (with rap),new,,,,,83038,FALSE +TLC,No Scrubs,new,,,,,8520,FALSE +TLC,Red Light Special,existing,,,,,,FALSE +TLC,Waterfalls,new,,,,,10836,FALSE +TV On The Radio,Will Do,new,,,,,39103,FALSE +TV On The Radio,Wolf Like Me,new,,,,,73663,FALSE +Take That,A Million Love Songs,existing,,,,,,FALSE +Take That,Back for Good (Live - Progress Tour 2011),existing,,,,,,FALSE +Take That,Back for Good,existing,,,,,,FALSE +Take That,Could It Be Magic,existing,,,,,,FALSE +Take That,Eight Letters,existing,,,,,,FALSE +Take That,Everything Changes,existing,,,,,,FALSE +Take That,Everything Changes/Relight My Fire (from an Audience With Take That),existing,,,,,,FALSE +Take That,Flood,existing,,,,,,FALSE +Take That,Greatest Day,existing,,,,,,FALSE +Take That,Hold Up a Light,existing,,,,,,FALSE +Take That,Never Forget (from ITV's Take That Come To Town) ,existing,,,,,,FALSE +Take That,Patience,existing,,,,,,FALSE +Take That,Pray (from an Audience With Take That),existing,,,,,,FALSE +Take That,Relight My Fire,existing,,,,,,FALSE +Take That,Rule the World,existing,,,,,,FALSE +Take That,Said It All,existing,,,,,,FALSE +Take That,Shine,existing,,,,,,FALSE +Take That,These Days,existing,,,,,,FALSE +Take That,Up All Night,existing,,,,,,FALSE +Take That,When They Were Young Medley,existing,,,,,,FALSE +Taking Back Sunday,A Decade Under The Influence,existing,,,,,,FALSE +Taking Back Sunday,Cute Without The E Cut From The Team,existing,,,,,,FALSE +Tal Bachman,She's So High,existing,,,,,,FALSE +Talk Talk,It's My Life,existing,,,,,,FALSE +Talking Heads,And She Was,existing,,,,,,FALSE +Talking Heads,Burning Down The House,existing,,,,,,FALSE +Talking Heads,Crosseyed and Painless,new,,,,,79367,FALSE +Talking Heads,Once in a Lifetime,new,,,,,54913,FALSE +Talking Heads,Psycho Killer,new,,,,,40301,FALSE +Talking Heads,Road to Nowhere,new,,,,,55894,FALSE +Talking Heads,Take Me To The River,existing,,,,,,FALSE +Talking Heads,This Must Be The Place (Naive Melody),new,,,,,36976,FALSE +Tame Impala,Borderline,new,,,,,79055,FALSE +Tame Impala,Elephant,new,,,,,73540,FALSE +Tame Impala,Feels Like We Only Go Backwards,new,,,,,58209,FALSE +Tame Impala,Let It Happen,new,,,,,58210,FALSE +Tame Impala,"New Person, Same Old Mistakes",new,,,,,78899,FALSE +Tame Impala,The Less I Know the Better,new,,,,,58203,FALSE +Tammi Terrell,Your Precious Love,existing,,,,,,FALSE +Tammy Wynette,Stand By Your Man,existing,,,,,,FALSE +Tanya Tucker,Delta Dawn,existing,,,,,,FALSE +Tarrus Riley,Human Nature,existing,,,,,,FALSE +Tate McRae,Exes,new,,,,,78714,FALSE +Tate McRae,Greedy,new,,,,,77281,FALSE +Tate McRae,She's All I Wanna Be,new,,,,,68332,FALSE +Tate McRae,That Way,new,,,,,82366,FALSE +Tate McRae,You Broke Me First,new,,,,,39939,FALSE +Tavares,Heaven Must Be Missing an Angel,existing,,,,,,FALSE +Tavares,More Than a Woman,existing,,,,,,FALSE +Taylor Dane,Tell It To My Heart,existing,,,,,,FALSE +Taylor Swift,A Perfectly Good Heart,existing,,,,,,FALSE +Taylor Swift,Anti-Hero,new,,,,,72013,FALSE +Taylor Swift,August,new,,,,,62142,FALSE +Taylor Swift,Beautiful Eyes,existing,,,,,,FALSE +Taylor Swift,Blank Space,existing,,,,,,FALSE +Taylor Swift,Breathe,existing,,,,,,FALSE +Taylor Swift,Cardigan,new,,,,,62003,FALSE +Taylor Swift,Cruel Summer,new,,,,,59150,FALSE +Taylor Swift,Don't Blame Me,new,,,,,54844,FALSE +Taylor Swift,Down Bad,new,,,,,80978,FALSE +Taylor Swift,Everything Has Changed feat. Ed Sheeran,existing,,,,,,FALSE +Taylor Swift,Fearless,existing,,,,,,FALSE +Taylor Swift,Forever And Always (Piano Version),existing,,,,,,FALSE +Taylor Swift,Fortnight,new,,,,,80965,FALSE +Taylor Swift,Guilty as Sin,new,,,,,81098,FALSE +Taylor Swift,Hey Stephen,existing,,,,,,FALSE +Taylor Swift,I Can Do It with a Broken Heart,new,,,,,80971,FALSE +Taylor Swift,I Knew You Were Trouble,existing,,,,,,FALSE +Taylor Swift,Innocent,existing,,,,,,FALSE +Taylor Swift,Jump Then Fall,existing,,,,,,FALSE +Taylor Swift,Love Story,existing,,,,,,FALSE +Taylor Swift,Lover,new,,,,,59141,FALSE +Taylor Swift,Mean,existing,,,,,,FALSE +Taylor Swift,Mine,existing,,,,,,FALSE +Taylor Swift,Never Grow Up,existing,,,,,,FALSE +Taylor Swift,Our Song,existing,,,,,,FALSE +Taylor Swift,Picture To Burn,existing,,,,,,FALSE +Taylor Swift,Sad Beautiful Tragic,existing,,,,,,FALSE +Taylor Swift,Safe And Sound,existing,,,,,,FALSE +Taylor Swift,Shake It Off,existing,,,,,,FALSE +Taylor Swift,Style,existing,,,,,,FALSE +Taylor Swift,Teardrops On My Guitar,existing,,,,,,FALSE +Taylor Swift,Tell Me Why,existing,,,,,,FALSE +Taylor Swift,The Moment I Knew,existing,,,,,,FALSE +Taylor Swift,The Other Side Of The Door,existing,,,,,,FALSE +Taylor Swift,You Belong With Me,existing,,,,,,FALSE +Team America World Police,America F*#k Yeah!,existing,,,,,,FALSE +Team America World Police,Freedom Isn't Free,existing,,,,,,FALSE +Team America World Police,I'm So Ronery,existing,,,,,,FALSE +Tears For Fears,Advice For The Young At Heart,existing,,,,,,FALSE +Tears For Fears,Everybody Wants To Rule The World,existing,,,,,,FALSE +Tears For Fears,Shout,existing,,,,,,FALSE +Tears For Fears,Sowing The Seeds Of Love,existing,,,,,,FALSE +Tears for Fears,Head Over Heels,new,Tears For Fears,,,,39003,FALSE +Ted Nugent,Cat Scratch Fever,new,,,,,60107,FALSE +Ted Nugent,Stranglehold,new,,,,,60059,FALSE +Teddy Swims,Devil in a Dress,new,,,,,73568,FALSE +Teddy Swims,Hammer to the Heart,new,,,,,81228,FALSE +Teddy Swims,Lose Control,new,,,,,75892,FALSE +Teddy Swims,The Door,new,,,,,77253,FALSE +Teddy Swims,You're Still the One,new,,,,,83099,FALSE +Tedeschi Trucks Band,Midnight in Harlem,new,,,,,55740,FALSE +Tegan and Sara,Closer,new,,,,,47598,FALSE +Temptations,My Girl (A Cappella),existing,The Temptations,,,,,FALSE +Tenacious D,Beelzeboss (The Final Showdown),new,,,,,35598,FALSE +Tenacious D,Kickapoo,new,,,,,30466,FALSE +Tenacious D,The Metal,new,,,,,70097,FALSE +Tenacious D,Tribute,new,,,,,29229,FALSE +Tennessee Ernie Ford,Sixteen Tons,existing,,,,,,FALSE +Tenpole Tudor,Swords of 1000 Men,existing,,,,,,FALSE +Terence Trent D'Arby,Dance Little Sister,existing,,,,,,FALSE +Terence Trent D'Arby,Sign Your Name,existing,,,,,,FALSE +Terence Trent D'Arby,Wishing Well,existing,,,,,,FALSE +Terry Jacks,Seasons In the Sun,existing,,,,,,FALSE +Tesla,Modern Day Cowboy,new,,,,,69675,FALSE +Tevin Campbell,Can We Talk,existing,,,,,,FALSE +Texas,Say What You Want,existing,,,,,,FALSE +Texas,Summer Son,new,,,,,13000,FALSE +Texas Tornados,(Hey Baby) Que Paso,new,,,,,36428,FALSE +Texas Tornados,A Little Bit Is Better Than Nada,existing,,,,,,FALSE +Texas Tornados,Hey Baby Que Paso,existing,,,,,,FALSE +That Thing You Do! (film),That Thing You Do,new,That Thing You Do! (Movie),,,,56067,FALSE +The 1975,Chocolate,existing,,,,,,FALSE +The 1975,I'm in Love with You,new,,,,,71763,FALSE +The 1975,It's Not Living (If It's Not With You),new,,,,,75139,FALSE +The 1975,Love It If We Made It,new,,,,,75857,FALSE +The 1975,Robbers,new,,,,,74927,FALSE +The 1975,Somebody Else,new,,,,,69276,FALSE +The 1975,The Sound,new,,,,,51234,FALSE +The Airborne Toxic Event,Sometime Around Midnight,new,,,,,23624,FALSE +The Alan Parsons Project,Don't Answer Me,existing,,,,,,FALSE +The Alan Parsons Project,Eye In The Sky,existing,,,,,,FALSE +The Alan Parsons Project,Games People Play,existing,,,,,,FALSE +The Alan Parsons Project,I Wouldn't Want to Be Like You,new,,,,,55721,FALSE +The Alan Parsons Project,The Raven,new,,,,,67355,FALSE +The Alan Parsons Project,"The Turn of a Friendly Card, Pt. 1",new,,,,,66000,FALSE +The Alan Parsons Project,Time,new,,,,,58905,FALSE +The All-American Rejects,Dirty Little Secret,new,,,,,5663,FALSE +The All-American Rejects,Gives You Hell,new,,,,,21819,FALSE +The All-American Rejects,It Ends Tonight,new,,,,,30538,FALSE +The All-American Rejects,Move Along,new,,,,,11587,FALSE +The All-American Rejects,"Swing, Swing",new,,,,,12118,FALSE +The Allman Brothers Band,Ain't Wastin' Time No More,new,,,,,57874,FALSE +The Allman Brothers Band,Blue Sky,existing,,,,,,FALSE +The Allman Brothers Band,Done Somebody Wrong (live),new,,,,,62716,FALSE +The Allman Brothers Band,Dreams,new,,,,,35240,FALSE +The Allman Brothers Band,Jessica,existing,,,,,,FALSE +The Allman Brothers Band,Melissa,existing,,,,,,FALSE +The Allman Brothers Band,Midnight Rider,existing,,,,,,FALSE +The Allman Brothers Band,One Way Out,new,,,,,50001,FALSE +The Allman Brothers Band,Ramblin' Man,new,,,,,6302,FALSE +The Allman Brothers Band,Soulshine,existing,,,,,,FALSE +The Allman Brothers Band,Southbound,new,,,,,61416,FALSE +The Allman Brothers Band,Statesboro Blues,existing,,,,,,FALSE +The Allman Brothers Band,Stormy Monday,existing,,,,,,FALSE +The Allman Brothers Band,Trouble No More,new,,,,,64668,FALSE +The Allman Brothers Band,Whipping Post,existing,,,,,,FALSE +The American Breed,Bend Me Shape Me,existing,,,,,,FALSE +The Andrews Sisters,Boogie Woogie Bugle Boy,existing,,,,,,FALSE +The Andrews Sisters,Chattanooga Choo Choo,existing,,,,,,FALSE +The Andrews Sisters,In The Mood,existing,,,,,,FALSE +The Angels,My Boyfriends Back,existing,,,,,,FALSE +The Animals,Bring It On Home to Me,existing,,,,,,FALSE +The Animals,Don't Let Me Be Misunderstood,existing,,,,,,FALSE +The Animals,House Of The Rising Sun,existing,,,,,,FALSE +The Animals,We Gotta Get Out Of This Place,existing,,,,,,FALSE +The Archies,Sugar Sugar,existing,,,,,,FALSE +The Avener,Castle in the Snow,new,,,,,49185,FALSE +The Avener,Fade Out Lines,new,,,,,47997,FALSE +The Avett Brothers,Ain't No Man,new,,,,,62031,FALSE +The Avett Brothers,Head Full of Doubt Road Full of Promise,new,,,,,74981,FALSE +The Avett Brothers,I and Love and You,new,,,,,72587,FALSE +The Avett Brothers,Murder in the City,new,,,,,79996,FALSE +The Avett Brothers,No Hard Feelings,new,,,,,77182,FALSE +The B-52's,Love Shack,existing,,,,,,FALSE +The B-52's,Private Idaho,new,,,,,58636,FALSE +The B-52's,Roam,existing,,,,,,FALSE +The B-52's,Rock Lobster,new,,,,,55052,FALSE +The Babys,Back on My Feet Again,new,,,,,69628,FALSE +The Babys,Every Time I Think of You,new,,,,,56251,FALSE +The Babys,Head First,new,,,,,69856,FALSE +The Babys,Isn't It Time,new,,,,,64213,FALSE +The Babys,Midnight Rendezvous,new,,,,,28180,FALSE +The Band,The Night They Drove Old Dixie Down,existing,,,,,,FALSE +The Band,The Shape I'm In,new,,,,,68760,FALSE +The Band,The Weight,existing,,,,,,FALSE +The Band,Up On Cripple Creek,existing,,,,,,FALSE +The Band Perry,Better Dig Two,existing,,,,,,FALSE +The Band Perry,Done,existing,,,,,,FALSE +The Band Perry,If I Die Young,existing,,,,,,FALSE +The Band Wagon Film,That's Entertainment (A Cappella),existing,,,,,,FALSE +The Band of Heathens,Hurricane,new,,,,,58141,FALSE +The Bangles,Eternal Flame,existing,,,,,,FALSE +The Bangles,Hazy Shade of Winter,new,,,,,42007,FALSE +The Bangles,Manic Monday,existing,,,,,,FALSE +The Bangles,Walk Like An Egyptian,existing,,,,,,FALSE +The Beach Boys,Barbara Ann,existing,,,,,,FALSE +The Beach Boys,Be True to Your School,new,,,,,29481,FALSE +The Beach Boys,California Dreamin,existing,,,,,,FALSE +The Beach Boys,California Girls,existing,,,,,,FALSE +The Beach Boys,Catch A Wave,existing,,,,,,FALSE +The Beach Boys,Don't Worry Baby,existing,,,,,,FALSE +The Beach Boys,Fun Fun Fun,existing,,,,,,FALSE +The Beach Boys,Girls On The Beach,existing,,,,,,FALSE +The Beach Boys,God Only Knows,new,,,,,30162,FALSE +The Beach Boys,Good Vibrations,existing,,,,,,FALSE +The Beach Boys,Help Me Rhonda,existing,,,,,,FALSE +The Beach Boys,I Get Around,existing,,,,,,FALSE +The Beach Boys,In My Room,existing,,,,,,FALSE +The Beach Boys,Kokomo,existing,,,,,,FALSE +The Beach Boys,Lady Lynda,existing,,,,,,FALSE +The Beach Boys,Little Deuce Coupe,existing,,,,,,FALSE +The Beach Boys,Sloop John B,existing,,,,,,FALSE +The Beach Boys,Surfer Girl,existing,,,,,,FALSE +The Beach Boys,Surfin Safari,existing,,,,,,FALSE +The Beach Boys,Surfin USA,existing,,,,,,FALSE +The Beach Boys,Warmth Of The Sun,existing,,,,,,FALSE +The Beach Boys,Wouldn't It Be Nice,new,,,,,22163,FALSE +The Beat,Can't Get Used To Losing You,existing,,,,,,FALSE +The Beat,Tears of a Clown,existing,,,,,,FALSE +The Beatles,A Day In The Life,existing,,,,,,FALSE +The Beatles,A Hard Day's Night,new,,,,,15064,FALSE +The Beatles,All My Loving,existing,,,,,,FALSE +The Beatles,All You Need Is Love,new,,,,,14143,FALSE +The Beatles,And I Love Her,existing,,,,,,FALSE +The Beatles,Back in the U.S.S.R.,existing,,,,,,FALSE +The Beatles,Birthday,new,,,,,24405,FALSE +The Beatles,Blackbird,existing,,,,,,FALSE +The Beatles,Can't Buy Me Love,existing,,,,,,FALSE +The Beatles,Carry That Weight,new,,,,,78668,FALSE +The Beatles,Come Together,existing,,,,,,FALSE +The Beatles,Day Tripper,existing,,,,,,FALSE +The Beatles,Dear Prudence,existing,,,,,,FALSE +The Beatles,Don't Let Me Down,existing,,,,,,FALSE +The Beatles,Drive My Car (A Cappella),existing,,,,,,FALSE +The Beatles,Drive My Car,existing,,,,,,FALSE +The Beatles,Eight Days A Week,existing,,,,,,FALSE +The Beatles,Eleanor Rigby,existing,,,,,,FALSE +The Beatles,Fixing a Hole,new,,,,,21415,FALSE +The Beatles,From Me To You,existing,,,,,,FALSE +The Beatles,Get Back,existing,,,,,,FALSE +The Beatles,Getting Better,existing,,,,,,FALSE +The Beatles,Glass Onion,new,,,,,64833,FALSE +The Beatles,Golden Slumbers Carry That Weight,new,,,,,23744,FALSE +The Beatles,Golden Slumbers,new,,,,,78667,FALSE +The Beatles,Good Day Sunshine,new,,,,,10484,FALSE +The Beatles,Got to Get You into My Life,new,,,,,10483,FALSE +The Beatles,Happiness Is a Warm Gun,new,,,,,30662,FALSE +The Beatles,Hard Days Night,existing,,,,,,FALSE +The Beatles,Hello Goodbye,existing,,,,,,FALSE +The Beatles,Help,existing,,,,,,FALSE +The Beatles,Helter Skelter,existing,,,,,,FALSE +The Beatles,Here Comes The Sun,existing,,,,,,FALSE +The Beatles,Hey Jude,existing,,,,,,FALSE +The Beatles,I Am The Walrus,existing,,,,,,FALSE +The Beatles,I Feel Fine,existing,,,,,,FALSE +The Beatles,I Saw Her Standing There,existing,,,,,,FALSE +The Beatles,I Should Have Known Better,new,,,,,21443,FALSE +The Beatles,I Want To Hold Your Hand,existing,,,,,,FALSE +The Beatles,I Want You (She's So Heavy),existing,,,,,,FALSE +The Beatles,I'm Looking Through You,new,,,,,60501,FALSE +The Beatles,If I Fell,existing,,,,,,FALSE +The Beatles,If I Needed Someone,new,,,,,30401,FALSE +The Beatles,In My Life,new,,,,,22727,FALSE +The Beatles,Lady Madonna,new,,,,,14170,FALSE +The Beatles,Let It Be,existing,,,,,,FALSE +The Beatles,Long And Winding Road,existing,,,,,,FALSE +The Beatles,Love Me Do,existing,,,,,,FALSE +The Beatles,Lovely Rita,new,,,,,10485,FALSE +The Beatles,Lucy In The Sky With Diamonds,existing,,,,,,FALSE +The Beatles,Magical Mystery Tour,existing,,,,,,FALSE +The Beatles,Maxwell's Silver Hammer,new,,,,,10480,FALSE +The Beatles,Michelle,existing,,,,,,FALSE +The Beatles,Norwegian Wood,existing,,,,,,FALSE +The Beatles,Nowhere Man,existing,,,,,,FALSE +The Beatles,Ob La Di Ob La Da,existing,,,,,,FALSE +The Beatles,Octopus's Garden,existing,,,,,,FALSE +The Beatles,Paperback Writer,existing,,,,,,FALSE +The Beatles,Penny Lane,new,,,,,14168,FALSE +The Beatles,Please Please Me,new,,,,,21187,FALSE +The Beatles,Revolution,new,,,,,12790,FALSE +The Beatles,Rock And Roll Music,existing,,,,,,FALSE +The Beatles,Rocky Raccoon,existing,,,,,,FALSE +The Beatles,Sgt. Pepper's Lonely Hearts Club Band,existing,,,,,,FALSE +The Beatles,She Loves You,existing,,,,,,FALSE +The Beatles,She's Leaving Home,new,,,,,54796,FALSE +The Beatles,Should've Known Better,existing,,,,,,FALSE +The Beatles,Something,existing,,,,,,FALSE +The Beatles,Strawberry Fields Forever,new,,,,,21367,FALSE +The Beatles,Sun King,new,,,,,31887,FALSE +The Beatles,Taxman,existing,,,,,,FALSE +The Beatles,The Ballad Of John And Yoko,existing,,,,,,FALSE +The Beatles,The Fool On The Hill,existing,,,,,,FALSE +The Beatles,The Long and Winding Road,new,,,,,12787,FALSE +The Beatles,This Boy,existing,,,,,,FALSE +The Beatles,Ticket to Ride,new,,,,,14166,FALSE +The Beatles,Twist And Shout,existing,,,,,,FALSE +The Beatles,We Can Work It Out,existing,,,,,,FALSE +The Beatles,When I'm Sixty-Four,existing,,,,,,FALSE +The Beatles,While My Guitar Gently Weeps,existing,,,,,,FALSE +The Beatles,With a Little Help from My Friends,new,,,,,14475,FALSE +The Beatles,Yellow Submarine,new,,,,,14165,FALSE +The Beatles,Yesterday,existing,,,,,,FALSE +The Beatles,You've Got to Hide Your Love Away,new,,,,,12792,FALSE +The Bee Gees,How Can You Mend A Broken Heart,existing,,,,,,FALSE +The Bee Gees,How Deep Is Your Love ?,existing,,,,,,FALSE +The Bee Gees,I Started a Joke,existing,,,,,,FALSE +The Bee Gees,I've Gotta Get a Message To You,existing,,,,,,FALSE +The Bee Gees,Jive Talkin',existing,,,,,,FALSE +The Bee Gees,Massachusetts,existing,,,,,,FALSE +The Bee Gees,More Than A Woman,existing,,,,,,FALSE +The Bee Gees,Night Fever,existing,,,,,,FALSE +The Bee Gees,Stayin' Alive,existing,,,,,,FALSE +The Bee Gees,To Love Somebody,existing,,,,,,FALSE +The Bee Gees,You Should Be Dancing,existing,,,,,,FALSE +The Bellamy Brothers,Let Your Love Flow,existing,,,,,,FALSE +The Belle Stars,Iko Iko,new,,,,,68987,FALSE +The Big Bopper,Chantilly Lace,existing,,,,,,FALSE +The Black Crowes,Hard to Handle,existing,,,,,,FALSE +The Black Crowes,Jealous Again,new,,,,,29163,FALSE +The Black Crowes,Remedy,existing,,,,,,FALSE +The Black Crowes,She Talks To Angels,existing,,,,,,FALSE +The Black Keys,Fever,existing,,,,,,FALSE +The Black Keys,Gold On The Ceiling,existing,,,,,,FALSE +The Black Keys,Gotta Get Away,existing,,,,,,FALSE +The Black Keys,Howlin For You,existing,,,,,,FALSE +The Black Keys,Little Black Submarines,new,,,,,46739,FALSE +The Black Keys,Lo Hi,new,,,,,67364,FALSE +The Black Keys,Lonely Boy,new,,,,,39159,FALSE +The Black Keys,Tighten Up,existing,,,,,,FALSE +The Blow Monkeys,Diggin' Your Scene,existing,,,,,,FALSE +The Blue Brothers,Expressway To Your Heart,existing,The Blues Brothers,,,,,FALSE +The Bluebells,Young At Heart,existing,,,,,,FALSE +The Blues Brothers,Do You Love Me,existing,,,,,,FALSE +The Blues Brothers,Everybody Needs Somebody To Love,existing,,,,,,FALSE +The Blues Brothers,Ghost Riders In The Sky,existing,,,,,,FALSE +The Blues Brothers,Gimme Some Lovin',existing,,,,,,FALSE +The Blues Brothers,Peter Gunn Theme,existing,,,,,,FALSE +The Blues Brothers,Shake a Tailfeather,existing,,,,,,FALSE +The Blues Brothers,She Caught The Katy,existing,,,,,,FALSE +The Blues Brothers,Shot Gun Blues,existing,,,,,,FALSE +The Blues Brothers,Soul Man,existing,,,,,,FALSE +The Blues Brothers,Sweet Home Chicago,existing,,,,,,FALSE +The Blues Brothers,Think,existing,,,,,,FALSE +The BoDeans,Closer To Free,existing,,,,,,FALSE +The Body Snatchers,Let's Do Rock Steady,existing,,,,,,FALSE +The Bodyguard,I Have Nothing,new,,,,,6903,FALSE +The Bodyguard,I Will Always Love You,new,,,,,6427,FALSE +The Bodyguard,I'm Every Woman,new,,,,,6455,FALSE +The Boomtown Rats,I Don't Like Mondays,existing,,,,,,FALSE +The Boomtown Rats,Rat Trap,existing,,,,,,FALSE +The Buggles,Video Killed The Radio Star,new,,,TRUE,,13009,FALSE +The Buzzcocks,Ever Fallen In Love With Someone?,existing,,,,,,FALSE +The Byrds,Eight Miles High,existing,,,,,,FALSE +The Byrds,Mr. Tambourine Man,existing,,,,,,FALSE +The Byrds,So You Want To Be A Rock And Roll Star,existing,,,,,,FALSE +The Byrds,Turn Turn Turn,existing,,,,,,FALSE +The Calling,Wherever You Will Go,existing,,,,,,FALSE +The Cardigans,Lovefool,existing,,,,,,FALSE +The Carpenters,For All We Know,existing,,,,,,FALSE +The Carpenters,Goodbye To Love,existing,,,,,,FALSE +The Carpenters,Jambalaya,existing,,,,,,FALSE +The Carpenters,Please Mr. Postman,existing,,,,,,FALSE +The Carpenters,Rainy Days & Mondays,existing,,,,,,FALSE +The Carpenters,Superstar,existing,,,,,,FALSE +The Carpenters,They Long To Be Close To You,existing,,,,,,FALSE +The Carpenters,Top Of The World,existing,,,,,,FALSE +The Carpenters,We've Only Just Begun,existing,,,,,,FALSE +The Cars,All Mixed Up,new,,,,,69982,FALSE +The Cars,Bye Bye Love,new,,,,,58483,FALSE +The Cars,Dangerous Type,new,,,,,68063,FALSE +The Cars,Drive,existing,,,,,,FALSE +The Cars,Good Times Roll,new,,,,,52334,FALSE +The Cars,It's All I Can Do,new,,,,,64973,FALSE +The Cars,Just What I Needed,existing,,,,,,FALSE +The Cars,Let's Go,existing,,,,,,FALSE +The Cars,Moving in Stereo,new,,,,,63111,FALSE +The Cars,My Best Friends Girl,existing,,,,,,FALSE +The Cars,Since You're Gone,new,,,,,69808,FALSE +The Cars,Tonight She Comes,new,,,,,57519,FALSE +The Cars,You're All I've Got Tonight,new,,,,,58487,FALSE +The Carter Family,Can The Circle Be Unbroken By And By,existing,,,,,,FALSE +The Carters,Apeshit,new,,,,,55883,FALSE +The Cascades,Rhythm Of The Rain,existing,,,,,,FALSE +The Chainsmokers,Closer,new,,,,,51691,FALSE +The Chainsmokers,Don't Let Me Down,new,,,,,51235,FALSE +The Chainsmokers,Paris,new,,,,,52499,FALSE +The Chainsmokers,Roses,new,,,,,50809,FALSE +The Chainsmokers,Something Just Like This,new,,,,,52738,FALSE +The Chainsmokers,Takeaway,new,,,,,61112,FALSE +The Chainsmokers,This Feeling,new,,,,,56491,FALSE +The Chambers Brothers,Time Has Come Today,existing,,,,,,FALSE +The Champs,Tequila,existing,,,,,,FALSE +The Charlie Daniels Band,Devil Went Down To Georgia,existing,,,,,,FALSE +The Charlie Daniels Band,Drinkin' My Baby Goodbye,new,,,,,11237,FALSE +The Charlie Daniels Band,Long Haired Country Boy,new,,,,,15313,FALSE +The Charlie Daniels Band,Simple Man,new,,,,,15316,FALSE +The Chemical Brothers,Let Forever Be,new,,,,,33385,FALSE +The Chicks,Cowboy Take Me Away,new,,,,,8750,FALSE +The Chicks,Goodbye Earl,new,,,,,8749,FALSE +The Chicks,Landslide,new,,,,,6959,FALSE +The Chicks,Not Ready to Make Nice,new,,,,,6779,FALSE +The Chicks,Travelin' Soldier,new,,,,,8258,FALSE +The Chicks,Wide Open Spaces,new,,,,,9175,FALSE +The Chiffons,Sweet Talking' Guy,existing,,,,,,FALSE +The Chimes,I Still Haven't Found What I'm Looking for,existing,,,,,,FALSE +The Chordettes,Lollipop,existing,,,,,,FALSE +The Chordettes,Mr. Sandman,existing,,,,,,FALSE +The Church,Under The Milky Way,existing,,,,,,FALSE +The Civil Wars,Billie Jean,new,,,,,50793,FALSE +The Civil Wars,Dance Me to the End of Love,new,,,,,72061,FALSE +The Civil Wars,Dust to Dust,new,,,,,60136,FALSE +The Civil Wars,Poison & Wine,new,,,,,39393,FALSE +The Civil Wars,The One That Got Away,existing,,,,,,FALSE +The Clash,Bank Robber,existing,,,,,,FALSE +The Clash,I Fought the Law,existing,,,,,,FALSE +The Clash,London Calling,new,,,,,13792,FALSE +The Clash,Rock The Casbah,existing,,,,,,FALSE +The Clash,Should I Stay or Should I Go,existing,,,,,,FALSE +The Coasters,Yakety Yak,existing,,,,,,FALSE +The Commitments,Chain of Fools,existing,,,,,,FALSE +The Commitments,I Can't Stand The Rain,existing,,,,,,FALSE +The Commitments,Mustang Sally,existing,,,,,,FALSE +The Commitments,Try A Little Tenderness,existing,,,,,,FALSE +The Commodores,Brick House,existing,,,,,,FALSE +The Commodores,Easy,existing,,,,,,FALSE +The Commodores,Nightshift,existing,,,,,,FALSE +The Commodores,Still,existing,,,,,,FALSE +The Commodores,Three Times A Lady,existing,,,,,,FALSE +The Common Linnets,Calm After The Storm,existing,,,,,,FALSE +The Contours,Do You Love Me,existing,,,,,,FALSE +The Cooltrane Quartet,Holding Back The Years,existing,,,,,,FALSE +The Cooltrane Quartet,Should I Stay Or Should I Go,existing,,,,,,FALSE +The Coral,Dreaming of You,existing,,,,,,FALSE +The Corrs,When The Stars Go Blue,existing,,,,,,FALSE +The Cranberries,Dreams,existing,,,,,,FALSE +The Cranberries,Linger,existing,,,,,,FALSE +The Cranberries,Zombie,existing,,,,,,FALSE +The Crew Cuts,Sh'Boom,existing,,,,,,FALSE +The Crystals,Da Do Ron Ron,existing,,,,,,FALSE +The Crystals,Santa Claus Is Coming To Town,existing,,,,,,FALSE +The Cult,She Sells Sanctuary,existing,,,,,,FALSE +The Cure,A Forest,new,,,,,38640,FALSE +The Cure,Boys Don't Cry,existing,,,,,,FALSE +The Cure,Close To Me,existing,,,,,,FALSE +The Cure,Friday I'm In Love,existing,,,,,,FALSE +The Cure,In Between Days,existing,,,,,,FALSE +The Cure,Just Like Heaven,existing,,,,,,FALSE +The Cure,Let's Go to Bed,new,,,,,71472,FALSE +The Cure,Love Cats,existing,,,,,,FALSE +The Cure,Lovesong,new,,,,,42502,FALSE +The Cure,Lullaby,existing,,,,,,FALSE +The Cure,Pictures of You,new,,,,,64893,FALSE +The Cure,Why Can't I Be You,new,,,,,27852,FALSE +The Damned,Eloise,existing,,,,,,FALSE +The Darkness,I Believe In A Thing Called Love,existing,,,,,,FALSE +The Darts,Come Back My Love,existing,,,,,,FALSE +The Darts,Daddy Cool,existing,,,,,,FALSE +The Dave Brubeck Quartet,Take Five,existing,,,,,,FALSE +The Dead South,In Hell I'll Be in Good Company,new,,,,,55823,FALSE +The Decemberists,Down by the Water,new,,,,,71835,FALSE +The Decemberists,Mariner's Revenge Song,new,,,,,73692,FALSE +The Decemberists,O Valencia!,new,,,,,78078,FALSE +The Dirty Heads,Lay Me Down,new,,,,,35353,FALSE +The Dirty Heads,Vacation,new,,,,,69580,FALSE +The Divinyls,I Touch Myself,existing,,,,,,FALSE +The Dixie Cups,Chapel of Love,existing,,,,,,FALSE +The Doobie Brothers,Black Water,existing,,,,,,FALSE +The Doobie Brothers,China Grove,existing,,,,,,FALSE +The Doobie Brothers,It Keeps You Runnin',new,,,,,56209,FALSE +The Doobie Brothers,Jesus Is Just Alright,existing,,,,,,FALSE +The Doobie Brothers,Listen To The Music,existing,,,,,,FALSE +The Doobie Brothers,Long Train Runnin,existing,,,,,,FALSE +The Doobie Brothers,Minute by Minute,new,,,,,43718,FALSE +The Doobie Brothers,Rockin' Down the Highway,new,,,,,56533,FALSE +The Doobie Brothers,South City Midnight Lady,new,,,,,56041,FALSE +The Doobie Brothers,Take Me in Your Arms (Rock Me a Little While),new,,,,,15599,FALSE +The Doobie Brothers,Takin It To The Streets,existing,,,,,,FALSE +The Doobie Brothers,What a Fool Believes,new,,,,,37172,FALSE +The Doobie Brothers,You Belong to Me,new,,,,,59761,FALSE +The Doors,Back Door Man,existing,,,,,,FALSE +The Doors,Break On Through To The Other Side,existing,,,,,,FALSE +The Doors,Hello I Love You,existing,,,,,,FALSE +The Doors,L.A. Woman,new,,,,,6511,FALSE +The Doors,Light My Fire,existing,,,,,,FALSE +The Doors,Love Her Madly,new,,,,,9839,FALSE +The Doors,Love Me Two Times,new,,,,,6516,FALSE +The Doors,People Are Strange,new,,,,,6521,FALSE +The Doors,Riders On The Storm,existing,,,,,,FALSE +The Doors,Roadhouse Blues,existing,,,,,,FALSE +The Doors,Soul Kitchen,existing,,,,,,FALSE +The Doors,Strange Days,new,,,,,33922,FALSE +The Doors,Touch Me,new,,,,,6544,FALSE +The Doors,Twentieth Century Fox,new,,,,,6478,FALSE +The Drifters,Come On Over to My Place,existing,,,,,,FALSE +The Drifters,Kissing In the Back Row of the Movies,existing,,,,,,FALSE +The Drifters,Please Stay,existing,,,,,,FALSE +The Drifters,Saturday Night At the Movies,existing,,,,,,FALSE +The Drifters,Save the Last Dance for Me,existing,,,,,,FALSE +The Drifters,Something Tells Me Something's Gonna Happen Tonight,existing,,,,,,FALSE +The Drifters,There Goes My First Love,existing,,,,,,FALSE +The Drifters,Under The Boardwalk (A Cappella),existing,,,,,,FALSE +The Drifters,Under The Boardwalk,existing,,,,,,FALSE +The Drifters,Up On the Roof,existing,,,,,,FALSE +The Dropkick Murphys,Wild Rover,existing,,,,,,FALSE +The Dubliners,Dirty Old Town,existing,,,,,,FALSE +The Dubliners,Molly Malone,existing,,,,,,FALSE +The Dubliners,The Black Velvet Band,existing,,,,,,FALSE +The Dubliners,The Fields Of Athenry,existing,,,,,,FALSE +The Dubliners,The Rare Old Mountain Dew,existing,,,,,,FALSE +The Dubliners,The Wild Rover,existing,,,,,,FALSE +The Eagles,After The Thrill Is Gone,existing,,,,,,FALSE +The Eagles,Already Gone,existing,,,,,,FALSE +The Eagles,Best Of My Love,existing,,,,,,FALSE +The Eagles,Desperado,existing,,,,,,FALSE +The Eagles,Heartache Tonight,existing,,,,,,FALSE +The Eagles,Hotel California,existing,,,,,,FALSE +The Eagles,How Long,existing,,,,,,FALSE +The Eagles,I Can't Tell You Why,existing,,,,,,FALSE +The Eagles,Life In The Fast Lane,existing,,,,,,FALSE +The Eagles,Lyin' Eyes,existing,,,,,,FALSE +The Eagles,New Kid In Town,existing,,,,,,FALSE +The Eagles,Peaceful Easy Feeling,existing,,,,,,FALSE +The Eagles,Seven Bridges Road,existing,,,,,,FALSE +The Eagles,Take It Easy,existing,,,,,,FALSE +The Eagles,Take It To the Limit,existing,,,,,,FALSE +The Eagles,Tequila Sunrise,existing,,,,,,FALSE +The Eagles,The Sad Cafe,existing,,,,,,FALSE +The Eagles,Victim Of Love,existing,,,,,,FALSE +The Eagles,Witchy Woman,existing,,,,,,FALSE +The Elgins,Heaven Must Have Sent You,existing,,,,,,FALSE +The Enemy,You're Not Alone,existing,,,,,,FALSE +The Everly Brothers,All I Have To Do Is Dream,existing,,,,,,FALSE +The Everly Brothers,Bye Bye Love,existing,,,,,,FALSE +The Everly Brothers,Claudette,existing,,,,,,FALSE +The Everly Brothers,Wake Up Little Susie,existing,,,,,,FALSE +The Fabulous Thunderbirds,Tuff Enuff,new,,,,,15709,FALSE +The Fabulous Thunderbirds,Wrap It Up,new,,,,,18235,FALSE +The Faces,Stay With Me,existing,,,,,,FALSE +The Feeling,Never Be Lonely,existing,,,,,,FALSE +The Five Man Electrical Band,Signs,existing,,,,,,FALSE +The Five Stairsteps,O-O-H Child,existing,,,,,,FALSE +The Fixx,One Thing Leads to Another,new,,,,,5622,FALSE +The Fixx,Red Skies,new,,,,,70374,FALSE +The Fixx,Saved By Zero,new,,,,,36134,FALSE +The Fixx,Stand or Fall,new,,,,,70086,FALSE +The Flaming Lips,Do You Realize,new,,,,,73350,FALSE +The Flaming Lips,She Don't Use Jelly,new,,,,,73026,FALSE +The Flaming Lips,The Yeah Yeah Yeah Song (With All Your Power),new,,,,,32092,FALSE +The Flaming Lips,"Yoshimi Battles the Pink Robots, Pt. 1",new,,,,,72756,FALSE +The Fortunes,Storm In a Teacup,existing,,,,,,FALSE +The Fortunes,You've Got Your Troubles,existing,,,,,,FALSE +The Foundations,Baby Now That I've Found You,existing,,,,,,FALSE +The Foundations,Build Me Up Buttercup,existing,,,,,,FALSE +The Four Seasons,Walk Like A Man,existing,,,,,,FALSE +The Four Tops,Ain't No Woman Like The One I've Got,existing,,,,,,FALSE +The Four Tops,Baby I Need Your Loving,existing,,,,,,FALSE +The Four Tops,I Can't Help Myself - Sugar Pie Honey Bunch,existing,,,,,,FALSE +The Four Tops,Loco In Acapulco,existing,,,,,,FALSE +The Four Tops,Reach Out,existing,,,,,,FALSE +The Four Tops,Same Old Song,existing,,,,,,FALSE +The Four Tops,Walk Away Renee,existing,,,,,,FALSE +The Fratellis,Whistle for the Choir,existing,,,,,,FALSE +The Fray,How To Save A Life,existing,,,,,,FALSE +The Fray,You Found Me,existing,,,,,,FALSE +The Fugees,Killing Me Softly,existing,,,,,,FALSE +The Gap Band,Burn Rubber on Me (Why You Wanna Hurt Me),new,,,,,64732,FALSE +The Gap Band,Outstanding,existing,,,,,,FALSE +The Gap Band,You Dropped a Bomb on Me,new,,,,,18227,FALSE +The Georgia Satellites,Keep Your Hands To Yourself,existing,,,,,,FALSE +The Gipsy Kings,A Mi Manera Comme D'Habitude,existing,,,,,,FALSE +The Gipsy Kings,Baila Me,existing,,,,,,FALSE +The Gipsy Kings,Bamaoleo,existing,,,,,,FALSE +The Gipsy Kings,Djobi Djoba,existing,,,,,,FALSE +The Gipsy Kings,El Mariachi,existing,,,,,,FALSE +The Gipsy Kings,Escucha Me,existing,,,,,,FALSE +The Gipsy Kings,Hotel California (Spanish Mix),existing,,,,,,FALSE +The Gipsy Kings,La Quiero,existing,,,,,,FALSE +The Gipsy Kings,Marina Marina,existing,,,,,,FALSE +The Gipsy Kings,Pida Me La,existing,,,,,,FALSE +The Gipsy Kings,Quiero Saber,existing,,,,,,FALSE +The Gipsy Kings,Soy,existing,,,,,,FALSE +The Gipsy Kings,Trista Pena,existing,,,,,,FALSE +The Gipsy Kings,Tu Quieres Volver,existing,,,,,,FALSE +The Gipsy Kings,Un Amor,existing,,,,,,FALSE +The Gipsy Kings,Vamos A Bailar,existing,,,,,,FALSE +The Gipsy Kings,Volare,existing,,,,,,FALSE +The Go-Go's,Head Over Heels,new,,,,,53633,FALSE +The Go-Go's,Our Lips Are Sealed,new,,,,,52598,FALSE +The Go-Go's,Vacation,new,,,,,29121,FALSE +The Go-Go's,We Got the Beat,new,,,,,30743,FALSE +The Gossip,Heavy Cross,new,,,,,23427,FALSE +The Gourds,Gin and Juice,new,,,,,64685,FALSE +The Greg Kihn Band,Breakup Song - They Don't Write 'Em,existing,,,,,,FALSE +The Guess Who,American Woman,new,,,,,15964,FALSE +The Guess Who,No Sugar Tonight New Mother Nature,new,,,,,55521,FALSE +The Guess Who,No Sugar Tonight,new,,,,,69512,FALSE +The Guess Who,No Time,existing,,,,,,FALSE +The Guess Who,These Eyes,new,,,,,10892,FALSE +The Happy Mondays,Step On,existing,,,,,,FALSE +The Highwaymen,Highwayman,new,,,,,38261,FALSE +The Hives,Hate To Say I Told You So,existing,,,,,,FALSE +The Hollies,Bus Stop,existing,,,,,,FALSE +The Hollies,Just One Look,existing,,,,,,FALSE +The Hollies,Long Cool Woman In A Black Dress,existing,,,,,,FALSE +The Honeycombs,Have I the Right,existing,,,,,,FALSE +The Hu,Wolf Totem,new,,,,,82025,FALSE +The Human League,(Keep Feeling) Fascination,new,,,,,33838,FALSE +The Human League,Don't You Want Me,new,,,,,11431,FALSE +The Hunger Games,The Hanging Tree,existing,,,,,,FALSE +The Irish Rovers,Drunken Sailor,existing,,,,,,FALSE +The Irish Rovers,Whiskey On A Sunday (The Puppet Song),existing,,,,,,FALSE +The Isley Brothers,This Old Heart of Mine,existing,,,,,,FALSE +The Jackson 5,ABC,existing,,,,,,FALSE +The Jackson 5,I Want You Back,existing,,,,,,FALSE +The Jackson 5,I'll Be There,existing,,,,,,FALSE +The Jackson 5,Shake Your Body Down To The Ground,existing,,,,,,FALSE +The Jacksons,Blame It on the Boogie,existing,,,,,,FALSE +The Jacksons,Santa Claus Is Coming To Town,existing,,,,,,FALSE +The Jags,Written On the Back of My Hand,existing,,,,,,FALSE +The Jam,Butterfly Collector,existing,,,,,,FALSE +The Jam,Down In the Tube Station At Midnight,existing,,,,,,FALSE +The Jam,Going Underground,existing,,,,,,FALSE +The Jam,In the City,existing,,,,,,FALSE +The Jam,Start,existing,,,,,,FALSE +The Jam,That's Entertainment,existing,,,,,,FALSE +The Jam,Town Called Malice,existing,,,,,,FALSE +The Jeff Healey Band,Confidence Man,existing,,,,,,FALSE +The Jeff Healey Band,I'm Tore Down,existing,,,,,,FALSE +The Jeff Healey Band,Roadhouse Blues,existing,,,,,,FALSE +The Jeff Healey Band,While My Guitar Gently Weeps,existing,,,,,,FALSE +The Jersey Boys,Rag Doll,existing,,,,,,FALSE +The Jimi Hendrix Experience,Crosstown Traffic,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Foxy Lady,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Hey Joe,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Manic Depression,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Purple Haze,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,The Wind Cries Mary,existing,,,,TRUE,,FALSE +The Kaiser Cheifs,Ruby,existing,Kaiser Chiefs,,,TRUE,,FALSE +The Kalin Twins,When,existing,,,,,,FALSE +The Kid Laroi,Girls,new,,,,,82512,FALSE +The Kid Laroi,Love Again,new,,,,,73673,FALSE +The Kid Laroi,Stay (live),new,,,,,66898,FALSE +The Kid Laroi,Stay,new,,,,,49593,FALSE +The Kid Laroi,Thousand Miles,new,,,,,69691,FALSE +The Kid Laroi,Too Much,new,,,,,78292,FALSE +The Kid Laroi,Without You (Miley Cyrus remix),new,,,,,66118,FALSE +The Kid Laroi,Without You,new,,,,,63586,FALSE +The Killers,All These Things,existing,,,,,,FALSE +The Killers,For Reasons Unknown,existing,,,,,,FALSE +The Killers,Human,existing,,,,,,FALSE +The Killers,Just Another Girl,existing,,,,,,FALSE +The Killers,Mr. Brightside,existing,,,,,,FALSE +The Killers,Read My Mind,new,,,,,11744,FALSE +The Killers,Shot At The Night,existing,,,,,,FALSE +The Killers,Smile Like You Mean It,existing,,,,,,FALSE +The Killers,Somebody Told Me,existing,,,,,,FALSE +The Killers,The Man,new,,,,,53598,FALSE +The Killers,When You Were Young,existing,,,,,,FALSE +The Kinks,All Day And All Of The Night,existing,,,,,,FALSE +The Kinks,Dedicated Follower of Fashion,existing,,,,,,FALSE +The Kinks,Lola,existing,,,,,,FALSE +The Kinks,Sunny Afternoon,existing,,,,,,FALSE +The Kinks,Tired Of Waiting For You,existing,,,,,,FALSE +The Kinks,You Really Got Me,existing,,,,,,FALSE +The Knack,My Sharona,existing,,,,,,FALSE +The Kooks,She Moves In Her Own Way,existing,,,,,,FALSE +The Korgis,Everybody's Gotta Learn Sometime,existing,,,,,,FALSE +The La's,There She Goes,existing,,,,,,FALSE +The Lambrettas,Poison Ivy,existing,,,,,,FALSE +The Legarde Twins,I've Been Everywhere,existing,,,,,,FALSE +The Lighthouse Family,I Wish I Knew How It Would Feel To Be Free,existing,,,,,,FALSE +The Lighthouse Family,Ocean Drive,existing,,,,,,FALSE +The Lumineers,Angela,new,,,,,55539,FALSE +The Lumineers,Brightside,new,,,,,68048,FALSE +The Lumineers,Cleopatra,new,,,,,55752,FALSE +The Lumineers,Gloria,new,,,,,76328,FALSE +The Lumineers,Ho Hey,new,,,,,41217,FALSE +The Lumineers,Ophelia,new,,,,,51423,FALSE +The Lumineers,Sleep on the Floor,new,,,,,70496,FALSE +The Lumineers,Slow It Down,new,,,,,82784,FALSE +The Lumineers,Stubborn Love,new,,,,,44390,FALSE +The Mamas And The Papas,California Dreamin,existing,,,,,,FALSE +The Mamas And The Papas,Monday Monday,existing,,,,,,FALSE +The Marcels,Blue Moon,existing,,,,,,FALSE +The Marshall Tucker Band,Heard It In A Love Song,existing,,,,,,FALSE +The Mavericks,Dance The Night Away,existing,,,,,,FALSE +The Mc Coys,Hang On Sloopy,existing,The McCoys,,,,,FALSE +The Mindbenders,Groovy Kind of Love,existing,,,,,,FALSE +The Miracles,You've Really Got a Hold On Me,existing,,,,,,FALSE +The Mixtures,Pushbike Song,existing,,,,,,FALSE +The Monkees,A Little Bit Of Me A Little Bit Of You,existing,,,,,,FALSE +The Monkees,Daydream Believer,existing,,,,,,FALSE +The Monkees,I'm A Believer,existing,,,,,,FALSE +The Monkees,Last Train To Clarksville,existing,,,,,,FALSE +The Monkees,Pleasant Valley Sunday,existing,,,,,,FALSE +The Moody Blues,I'm Just a Singer (In a Rock and Roll Band),new,,,,,61181,FALSE +The Moody Blues,Nights In White Satin,existing,,,,,,FALSE +The Moody Blues,Ride My See-Saw,new,,,,,75523,FALSE +The Moody Blues,Tuesday Afternoon,existing,,,,,,FALSE +The Moody Blues,Your Wildest Dreams,new,,,,,64767,FALSE +The Motels,Only The Lonely,existing,,,,,,FALSE +The Naked And Famous,Young Blood,existing,,,,,,FALSE +The Neighbourhood,Sweater Weather,existing,,,,,,FALSE +The New Radicals,You Get What You Give,existing,,,,,,FALSE +The Nolans,I'm In the Mood for Dancing,existing,,,,,,FALSE +The Notorious B.I.G.,Big Poppa,existing,,,,,,FALSE +The Notorious B.I.G.,Fuck You Tonight,new,,,,,69877,FALSE +The Notorious B.I.G.,Gimme the Loot,new,,,,,69917,FALSE +The Notorious B.I.G.,Going Back to Cali,new,,,,,64934,FALSE +The Notorious B.I.G.,Hypnotize,existing,,,,,,FALSE +The Notorious B.I.G.,Juicy,new,,,,,52271,FALSE +The Notorious B.I.G.,Mo Money Mo Problems,existing,,,,,,FALSE +The Notorious B.I.G.,Notorious Thugs,new,,,,,76213,FALSE +The Notorious B.I.G.,One More Chance Stay with Me,new,,,,,23507,FALSE +The Notorious B.I.G.,Party & Bullshit,new,,,,,80515,FALSE +The Notorious B.I.G.,Ten Crack Commandments,new,,,,,71979,FALSE +The Notorious B.I.G.,Warning,new,,,,,73107,FALSE +The O'Jays,Love Train,existing,,,,,,FALSE +The Offspring,Come Out and Play,new,,,,,63991,FALSE +The Offspring,Gone Away,new,,,,,59005,FALSE +The Offspring,Hit That,new,,,,,24730,FALSE +The Offspring,Pretty Fly (For a White Guy),new,,,,,13838,FALSE +The Offspring,Self Esteem,new,,,,,42139,FALSE +The Offspring,The Kids Aren't Alright,new,,,,,19874,FALSE +The Offspring,Want You Bad,new,,,,,35204,FALSE +The Offspring,Why Don't You Get a Job,new,,,,,21373,FALSE +The Offspring,"You're Gonna Go Far, Kid",new,,,,,22101,FALSE +The Ohio Players,Fire,new,,,,,8637,FALSE +The Ohio Players,Love Rollercoaster,new,,,,,36362,FALSE +The Osmonds,Crazy Horses,existing,,,,,,FALSE +The Osmonds,Love Me for a Reason,existing,,,,,,FALSE +The Outfield,All The Love,existing,,,,,,FALSE +The Outfield,Your Love,existing,,,,,,FALSE +The Patti Smith Group,Because the Night,existing,Patti Smith,,,TRUE,,FALSE +The Piranhas,Tom Hark,existing,,,,,,FALSE +The Pixies,Monkey Gone To Heaven,existing,Pixies,,,,,FALSE +The Platters,Great Pretender,existing,,,,,,FALSE +The Platters,Only You And You Alone,existing,,,,,,FALSE +The Platters,Smoke Gets In Your Eyes,existing,,,,,,FALSE +The Plimsouls,A Million Miles Away,new,,,,,76722,FALSE +The Pogues,Fairytale Of New York,existing,,,,,,FALSE +The Pogues,Love You 'Til the End,existing,,,,,,FALSE +The Pointer Sisters,Fire,existing,,,,,,FALSE +The Pointer Sisters,I'm so Excited,existing,,,,,,FALSE +The Pointer Sisters,Jump (for My Love),existing,,,,,,FALSE +The Police,Bed's Too Big Without You,new,,,,,65138,FALSE +The Police,Can't Stand Losing You,existing,,,,,,FALSE +The Police,Canary in a Coalmine,new,,,,,65057,FALSE +The Police,De Do Do Do,existing,,,,,,FALSE +The Police,Demolition Man,new,,,,,65618,FALSE +The Police,Don't Stand So Close To Me,existing,,,,,,FALSE +The Police,Driven to Tears,new,,,,,63102,FALSE +The Police,Every Breath You Take,existing,,,,,,FALSE +The Police,Every Little Thing She Does,existing,,,,,,FALSE +The Police,Invisible Sun,new,,,,,64378,FALSE +The Police,King of Pain,new,,,,,11475,FALSE +The Police,Message In A Bottle,existing,,,,,,FALSE +The Police,Murder by Numbers,new,,,,,65201,FALSE +The Police,Roxanne,new,,,,,11371,FALSE +The Police,So Lonely,existing,,,,,,FALSE +The Police,Spirits in the Material World,new,,,,,42003,FALSE +The Police,Synchronicity I,new,,,,,62703,FALSE +The Police,Synchronicity II,new,,,,,41773,FALSE +The Police,Tea in the Sahara,new,,,,,74535,FALSE +The Police,Walking On The Moon,existing,,,,,,FALSE +The Police,Walking in Your Footsteps,new,,,,,65949,FALSE +The Police,"When the World Is Running Down, You Make the Best of What's Still Around",new,,,,,64859,FALSE +The Police,Wrapped Around Your Finger,existing,,,,,,FALSE +The Poni Tails,Born Too Late,existing,,,,,,FALSE +The Postal Service,Such Great Heights,new,,,,,58208,FALSE +The Postal Service,The District Sleeps Alone Tonight,new,,,,,38503,FALSE +The Presidents of the United States of America,Lump,new,,,,,54986,FALSE +The Presidents of the United States of America,Peaches,new,,,,,14467,FALSE +The Pretenders,Back On The Chain Gang,existing,,,,,,FALSE +The Pretenders,Brass In Pocket,existing,,,,,,FALSE +The Pretenders,Don't Get Me Wrong,existing,,,,,,FALSE +The Pretenders,Middle of the Road,new,,,,,56202,FALSE +The Pretenders,My City Was Gone,new,,,,,69180,FALSE +The Pretenders,Talk of the Town,existing,,,,,,FALSE +The Pretty Reckless,Heaven Knows,existing,,,,,,FALSE +The Pretty Reckless,Make Me Wanna Die,existing,,,,,,FALSE +The Proclaimers,I'm Gonna Be (500 Miles),existing,,,,,,FALSE +The Proclaimers,I'm On My Way,existing,,,,,,FALSE +The Proclaimers,Sunshine On Leith,existing,,,,,,FALSE +The Psychedelic Furs,Heartbreak Beat,new,,,,,70492,FALSE +The Psychedelic Furs,Heaven,new,,,,,80889,FALSE +The Psychedelic Furs,Love My Way,new,,,,,31308,FALSE +The Psychedelic Furs,Pretty in Pink,new,,,,,62777,FALSE +The Psychedelic Furs,The Ghost in You,new,,,,,46952,FALSE +The Pussycat Dolls,Buttons (With Snoop Dogg),new,,,,,30679,FALSE +The Pussycat Dolls,Don't Cha,new,,,,,5370,FALSE +The Pussycat Dolls,I Hate This Part,new,,,,,21421,FALSE +The Pussycat Dolls,Jai Ho! (You Are My Destiny),new,,,,,22442,FALSE +The Pussycat Dolls,Stickwitu,new,,,,,5395,FALSE +The Pussycat Dolls,When I Grow Up,new,,,,,19891,FALSE +The Raconteurs,Steady As She Goes,existing,,,,,,FALSE +The Ramones,Baby I Love You,existing,Ramones,,,,,FALSE +The Rascals,Good Lovin,existing,,,,,,FALSE +The Rasmus,In the Shadows,existing,,,,,,FALSE +The Real Thing,Can't Get By Without You,existing,,,,,,FALSE +The Real Thing,You To Me Are Everything,existing,,,,,,FALSE +The Rembrandts,I'll Be There for You,existing,,,,,,FALSE +The Revivalists,All My Friends,new,,,,,56399,FALSE +The Revivalists,Soulfight,new,,,,,82030,FALSE +The Revivalists,Wish I Knew You,new,,,,,53839,FALSE +The Righteous Brothers,Unchained Melody,existing,,,,,,FALSE +The Righteous Brothers,You've Lost That Loving Feeling,existing,,,,,,FALSE +The Rocky Horror Picture Show,Time Warp,existing,,,,,,FALSE +The Rolling Stones,19th Nervous Breakdown,existing,,,,,,FALSE +The Rolling Stones,Angie,existing,,,,,,FALSE +The Rolling Stones,Around & Around,existing,,,,,,FALSE +The Rolling Stones,Beast Of Burden,existing,,,,,,FALSE +The Rolling Stones,Bitch,new,,,,,45921,FALSE +The Rolling Stones,Brown Sugar,existing,,,,,,FALSE +The Rolling Stones,Get Off Of My Cloud,existing,,,,,,FALSE +The Rolling Stones,Gimme Shelter,existing,,,,,,FALSE +The Rolling Stones,Honky Tonk Women,existing,,,,,,FALSE +The Rolling Stones,I Can't Get No Satisfaction,existing,,,,,,FALSE +The Rolling Stones,It's All Over Now,existing,,,,,,FALSE +The Rolling Stones,It's Only Rock And Roll,existing,,,,,,FALSE +The Rolling Stones,Jumpin Jack Flash,existing,,,,,,FALSE +The Rolling Stones,Let's Spend The Night Together,existing,,,,,,FALSE +The Rolling Stones,Miss You,existing,,,,,,FALSE +The Rolling Stones,Mother's Little Helper,existing,,,,,,FALSE +The Rolling Stones,Paint It Black,existing,,,,,,FALSE +The Rolling Stones,Ruby Tuesday,existing,,,,,,FALSE +The Rolling Stones,Satisfaction,existing,,,,,,FALSE +The Rolling Stones,Shattered,new,,,,,69722,FALSE +The Rolling Stones,Start Me Up,existing,,,,,,FALSE +The Rolling Stones,Street Fighting Man,new,,,,,11362,FALSE +The Rolling Stones,Sympathy For The Devil,existing,,,,,,FALSE +The Rolling Stones,The Last Time,existing,,,,,,FALSE +The Rolling Stones,Time Is On My Side,existing,,,,,,FALSE +The Rolling Stones,Tumbling Dice,existing,,,,,,FALSE +The Rolling Stones,Under My Thumb,existing,,,,,,FALSE +The Rolling Stones,Waiting On A Friend,existing,,,,,,FALSE +The Rolling Stones,Wild Horses,existing,,,,,,FALSE +The Rolling Stones,You Can't Always Get What You Want,existing,,,,,,FALSE +The Romantics,Talking In Your Sleep,existing,,,,,,FALSE +The Ronettes,Be My Baby,existing,,,,,,FALSE +The Roots,Here I Come,existing,,,,,,FALSE +The Roots,The Seed (2.0),new,,,,,72083,FALSE +The Roots,You Got Me,new,,,,,83434,FALSE +The Rubettes,Sugar Baby Love,existing,,,,,,FALSE +The S.O.S. Band,Take Your Time Do It Right,existing,,,,,,FALSE +The Saturdays,Just Can't Get Enough,existing,,,,,,FALSE +The Scissor Sisters,Don't Feel Like Dancin',existing,Scissor Sisters,,,TRUE,,FALSE +The Scissor Sisters,Fire With Fire,existing,Scissor Sisters,,,,,FALSE +The Script,Breakeven (Acoustic),existing,,,,,,FALSE +The Script,Breakeven,new,,,,,21418,FALSE +The Script,For the First Time,new,,,,,32706,FALSE +The Script,Hall Of Fame,existing,,,,,,FALSE +The Script,If You Could See Me Now,new,,,,,43123,FALSE +The Script,Rain,new,,,,,53724,FALSE +The Script,Six Degrees of Seperation,existing,,,,,,FALSE +The Script,Superheroes,existing,,,,,,FALSE +The Script,The Man Who Can't Be Moved,new,,,,,20541,FALSE +The Searchers,Needles & Pins '88,existing,,,,,,FALSE +The Searchers,Needles & Pins,existing,,,,,,FALSE +The Searchers,Sweets for My Sweet,existing,,,,,,FALSE +The Searchers,When You Walk In the Room,existing,,,,,,FALSE +The Selecter,On My Radio,existing,,,,,,FALSE +The Sex Pistols,Anarchy In the UK,existing,,,,TRUE,,FALSE +The Sex Pistols,Pretty Vacant,existing,Sex Pistols,,,,,FALSE +The Shadows,Apache,existing,,,,,,FALSE +The Shadows,Foot Tapper,existing,,,,,,FALSE +The Shadows,Telstar,existing,,,,,,FALSE +The Shins,New Slang,new,,,,,12647,FALSE +The Shins,Simple Song,new,,,,,81522,FALSE +The Shirelles,Mama Said,existing,,,,,,FALSE +The Shirelles,Will You Love Me Tomorrow,existing,,,,,,FALSE +The Shirelles,Will You Still Love Me Tomorrow,existing,,,,,,FALSE +The Skids,Into the Valley,existing,,,,,,FALSE +The Skyliners,Since I Don't Have You,existing,,,,,,FALSE +The Small Faces,All or Nothing,existing,,,,,,FALSE +The Small Faces,Itchycoo Park,existing,,,,,,FALSE +The Small Faces,Sha-La-La-La-Le,existing,,,,,,FALSE +The Smashing Pumpkins,1979,new,,,,,11039,FALSE +The Smashing Pumpkins,Bullet with Butterfly Wings,new,,,,,44633,FALSE +The Smashing Pumpkins,Cherub Rock,new,,,,,68109,FALSE +The Smashing Pumpkins,Disarm,new,,,,,55439,FALSE +The Smashing Pumpkins,Today,new,,,,,45704,FALSE +The Smashing Pumpkins,Tonight Tonight,existing,,,,,,FALSE +The Smashing Pumpkins,Zero,new,,,,,31970,FALSE +The Smithereens,A Girl Like You,existing,,,,,,FALSE +The Smithereens,Blood and Roses,new,,,,,68906,FALSE +The Smithereens,Only a Memory,new,,,,,82356,FALSE +The Smiths,Bigmouth Strikes Again,new,,,,,33112,FALSE +The Smiths,Heaven Knows I'm Miserable Now,new,,,,,32663,FALSE +The Smiths,How Soon Is Now ?,existing,,,,,,FALSE +The Smiths,I Know It's Over,new,,,,,42129,FALSE +The Smiths,"Please, Please, Please Let Me Get What I Want",new,,,,,40664,FALSE +The Smiths,There Is a Light That Never Goes Out,new,,,,,32943,FALSE +The Smiths,This Charming Man,existing,,,,,,FALSE +The Source Feat. Candi Staton,You've Got the Love,existing,,,,,,FALSE +The Spaniels,Goodnight Sweetheart,existing,,,,,,FALSE +The Specials,Do Nothing,existing,,,,,,FALSE +The Specials,Gangsters,existing,,,,,,FALSE +The Specials,Ghost Town,existing,,,,,,FALSE +The Specials,Rat Race,existing,,,,,,FALSE +The Specials,Rudy,existing,,,,,,FALSE +The Specials,Too Much Too Young,existing,,,,,,FALSE +The Spencer Davis Group,Gimme Some Lovin',new,,,,,18294,FALSE +The Spencer Davis Group,Keep On Running,existing,,,,,,FALSE +The Spice Girls,Stop,existing,,,,,,FALSE +The Staple Singers,If You're Ready (Come Go With Me),existing,,,,,,FALSE +The Stone Roses,Fools Gold,new,,,,,37434,FALSE +The Stone Roses,I Am the Resurrection,new,,,,,44170,FALSE +The Stone Roses,I Wanna Be Adored,new,,,,,45712,FALSE +The Stone Roses,I am the Resurrection (Shortened),existing,,,,,,FALSE +The Stone Roses,Love Spreads,new,,,,,82626,FALSE +The Stone Roses,Made of Stone,new,,,,,55005,FALSE +The Stone Roses,Sally Cinnamon,new,,,,,45709,FALSE +The Stone Roses,She Bangs the Drum,new,,,,,73865,FALSE +The Stone Roses,Waterfall,new,,,,,45725,FALSE +The Stooges,Gimme Danger,new,,,,,81211,FALSE +The Stooges,I Wanna Be Your Dog,new,,,,,65753,FALSE +The Stooges,Search and Destroy,new,,,,,73856,FALSE +The Stranglers,All Day & All of the Night,existing,,,,,,FALSE +The Stranglers,Golden Brown,existing,,,,,,FALSE +The Stranglers,No More Heroes,existing,,,,,,FALSE +The Stray Cats,Stray Cat Strut,existing,,,,,,FALSE +The Strokes,1251,new,,,,,25110,FALSE +The Strokes,Hard to Explain,new,,,,,18031,FALSE +The Strokes,Last Nite,new,,,,,21803,FALSE +The Strokes,Ode to the Mets,new,,,,,82394,FALSE +The Strokes,Reptilia,new,,,,,26421,FALSE +The Strokes,Selfless,new,,,,,82770,FALSE +The Strokes,Someday,new,,,,,53481,FALSE +The Strokes,The Adults Are Talking,new,,,,,71221,FALSE +The Strokes,You Only Live Once,new,,,,,52648,FALSE +The Struts,Body Talks (feat. Kesha),new,,,,,56902,FALSE +The Struts,Body Talks,new,,,,,56923,FALSE +The Struts,Could Have Been Me,new,,,,,51673,FALSE +The Struts,Kiss This,new,,,,,51684,FALSE +The Sugarhill Gang,Apache (Jump On It),new,,,,,58061,FALSE +The Sugarhill Gang,Rapper's Delight,new,,,,,13875,FALSE +The Supremes,Baby Love,existing,,,,,,FALSE +The Supremes,You Can't Hurry Love,existing,,,,,,FALSE +The Sweet,Ballroom Blitz,existing,,,,,,FALSE +The Sweet,Blockbuster,existing,,,,,,FALSE +The Sweet,Wig Wam Bam,existing,,,,,,FALSE +The Tams,Be Young,existing,,,,,,FALSE +The Tams,Hey Girl Don't Bother Me,existing,,,,,,FALSE +The Teardrop Explodes,Reward,existing,,,,,,FALSE +The Teddy Bears,To Know Him Is To Love Him,existing,,,,,,FALSE +The Temper Trap,Sweet Disposition,new,,,,,24591,FALSE +The Temptations,Ain't Too Proud To Beg,existing,,,,,,FALSE +The Temptations,Get Ready,existing,,,,,,FALSE +The Temptations,Just My Imagination,existing,,,,,,FALSE +The Temptations,My Girl,existing,,,,,,FALSE +The Temptations,Papa Was A Rolling Stone,existing,,,,,,FALSE +The Teskey Brothers,Pain and Misery,new,,,,,77077,FALSE +The Teskey Brothers,So Caught Up,new,,,,,76847,FALSE +The Three Degrees,When Will I See You Again ?,existing,,,,,,FALSE +The Ting Tings,Only Love,new,,,,,48293,FALSE +The Ting Tings,Shut Up And Let Me Go,new,,,,,19814,FALSE +The Ting Tings,That's Not My Name,new,,,,,16703,FALSE +The Toadies,I Come from the Water,new,,,,,82787,FALSE +The Toadies,Possum Kingdom,new,,,,,54956,FALSE +The Toadies,Tyler,new,,,,,71832,FALSE +The Tokens,The Lion Sleeps Tonight,existing,,,,,,FALSE +The Trammps,Disco Inferno,existing,,,,,,FALSE +The Traveling Wilburys,End Of The Line,existing,Traveling Wilburys,,,,,FALSE +The Traveling Wilburys,Handle With Care,existing,Traveling Wilburys,,,,,FALSE +The Traveling Wilburys,Last Night,existing,Traveling Wilburys,,,,,FALSE +The Tremeloes,Here Comes My Baby,existing,,,,,,FALSE +The Tremeloes,Silence Is Golden,existing,,,,,,FALSE +The Troggs,Wild Thing,existing,,,,,,FALSE +The Troggs,With a Girl Like You,existing,,,,,,FALSE +The Tubes,She's A Beauty,existing,,,,,,FALSE +The Turtles,Happy Together,existing,,,,,,FALSE +The Undertones,Here Comes the Summer,existing,,,,,,FALSE +The Undertones,Teenage Kicks,existing,,,,,,FALSE +The Urban Cookie Collective,Key,existing,,,,,,FALSE +The Used,Pretty Handsome Awkward,new,,,,,83484,FALSE +The Used,The Taste of Ink,new,,,,,71101,FALSE +The Vamps,Can We Dance,new,,,,,45335,FALSE +The Vamps,Somebody to You,new,,,,,47278,FALSE +The Vapors,Turning Japanese,new,,,,,20209,FALSE +The Ventures,Wipeout,existing,,,,,,FALSE +The Verve,Bitter Sweet Symphony,existing,,,,,,FALSE +The Verve Pipe,The Freshmen,new,,,,,10376,FALSE +The View,Same Jeans,existing,,,,,,FALSE +The Village People,Can't Stop the Music,existing,Village People,,,,,FALSE +The Village People,In the Navy,existing,Village People,,,,,FALSE +The Village People,Y.M.C.A,existing,Village People,,,TRUE,,FALSE +The Violent Femmes,Blister In The Sun,existing,,,,,,FALSE +The Walker Brothers,Sun Ain't Gonna Shine Anymore,existing,,,,,,FALSE +The Wallflowers,6th Avenue Heartache,new,,,,,10209,FALSE +The Wallflowers,One Headlight,existing,,,,,,FALSE +The Wallflowers,Three Marlenas,new,,,,,80538,FALSE +The Wanted,Glad You Came,existing,,,,,,FALSE +The Wanted,I Found You,existing,,,,,,FALSE +The War and Treaty,Stealing a Kiss,new,,,,,81277,FALSE +The War on Drugs,I Don't Live Here Anymore,new,,,,,67819,FALSE +The Waterboys,Fisherman's Blues,existing,,,,,,FALSE +The Weather Girls,It's Raining Men,existing,,,,,,FALSE +The Weeknd,Blinding Lights,new,,,,,60088,FALSE +The Weeknd,Die for You (remix),new,,,,,74051,FALSE +The Weeknd,Die for You,new,,,,,59755,FALSE +The Weeknd,Popular,new,,,,,75674,FALSE +The Weeknd,Save Your Tears,new,,,,,63378,FALSE +The Weeknd,Starboy,new,,,,,51878,FALSE +The Weeknd,The Hills,new,,,,,49815,FALSE +The White Stripes,Apple Blossom,new,,,,,41833,FALSE +The White Stripes,Blue Orchid,existing,,,,,,FALSE +The White Stripes,Denial Twist,new,,,,,29499,FALSE +The White Stripes,Fell in Love with a Girl,new,,,,,56138,FALSE +The White Stripes,Hotel Yorba,new,,,,,80395,FALSE +The White Stripes,I Just Don't Know What to Do with Myself,new,,,,,28796,FALSE +The White Stripes,Icky Thump,new,,,,,12200,FALSE +The White Stripes,Jolene (live),new,,,,,74074,FALSE +The White Stripes,My Doorbell,new,,,,,12549,FALSE +The White Stripes,Seven Nation Army,existing,,,,,,FALSE +The White Stripes,We're Going to Be Friends,new,,,,,70888,FALSE +The White Stripes,You Don't Know What Love Is (You Just Do as You're Told),new,,,,,12855,FALSE +The Who,Baba O'Riley,existing,,,,,,FALSE +The Who,Bargain,new,,,,,65882,FALSE +The Who,Behind Blue Eyes,existing,,,,,,FALSE +The Who,Eminence Front,new,,,,,61668,FALSE +The Who,Getting in Tune,new,,,,,79342,FALSE +The Who,Going Mobile,new,,,,,69870,FALSE +The Who,Happy Jack,new,,,,,30121,FALSE +The Who,I Can See For Miles,new,,,,,30124,FALSE +The Who,I Can't Explain,existing,,,,,,FALSE +The Who,Join Together,new,,,,,74310,FALSE +The Who,Long Live Rock,new,,,,,79016,FALSE +The Who,"Love, Reign o'er Me",new,,,,,67601,FALSE +The Who,Magic Bus,existing,,,,,,FALSE +The Who,My Generation,existing,,,,,,FALSE +The Who,Pinball Wizard,new,,,,,5486,FALSE +The Who,See Me Feel Me,existing,,,,,,FALSE +The Who,Squeeze Box,new,,,,,33018,FALSE +The Who,Substitute,existing,,,,,,FALSE +The Who,Summertime Blues,new,,,,,33265,FALSE +The Who,The Real Me,new,,,,,51598,FALSE +The Who,The Song Is Over,new,,,,,69885,FALSE +The Who,Who Are You,existing,,,,,,FALSE +The Who,Won't Get Fooled Again,existing,,,,,,FALSE +The Who,You Better You Bet,new,,,,,30335,FALSE +The Wonderstuff,Size of a Cow,existing,,,,,,FALSE +The Wurzels,Combine Harvester,existing,,,,,,FALSE +The Yardbirds,For Your Love,existing,,,,,,FALSE +The Yardbirds,Heart Full Of Soul,existing,,,,,,FALSE +The Zombies,She's Not There,existing,,,,,,FALSE +The xx,Crystalised,existing,,,,,,FALSE +Them Crooked Vultures,"Mind Eraser, No Chaser",new,,,,,41010,FALSE +Theory Of A Deadman,Bad Girlfriend,existing,,,,,,FALSE +They Might Be Giants,Birdhouse in Your Soul,new,,,,,13815,FALSE +Thin Lizzy,Dancing In the Moonlight,existing,,,,,,FALSE +Thin Lizzy,Jailbreak,new,,,,,40937,FALSE +Thin Lizzy,The Boys Are Back In Town,existing,,,,,,FALSE +Thin Lizzy,Whiskey In the Jar,existing,,,,,,FALSE +Third Eye Blind,How's It Going To Be,new,,,,,9690,FALSE +Third Eye Blind,Jumper,existing,,,,,,FALSE +Third Eye Blind,Semi-Charmed Life,existing,,,,,,FALSE +Thomas Rhett,Beer Can't Fix,new,,,,,58940,FALSE +Thomas Rhett,Die a Happy Man,new,,,,,50287,FALSE +Thomas Rhett,Look What God Gave Her,new,,,,,57886,FALSE +Thomas Rhett,Make Me Wanna,new,,,,,51006,FALSE +Thomas Rhett,Marry Me,new,,,,,54845,FALSE +Thomas Rhett,What's Your Country Song,new,,,,,63279,FALSE +Thompson Twins,Doctor! Doctor !,existing,,,,,,FALSE +Thompson Twins,Hold Me Now,existing,,,,,,FALSE +Thompson Twins,Lay Your Hands on Me,new,,,,,80989,FALSE +Three Days Grace,Animal I Have Become,new,,,,,68659,FALSE +Three Days Grace,I Am Machine,new,,,,,77758,FALSE +Three Days Grace,I Hate Everything About You,new,,,,,44563,FALSE +Three Days Grace,Never Too Late,new,,,,,19928,FALSE +Three Days Grace,Pain,new,,,,,64174,FALSE +Three Days Grace,Riot,new,,,,,70953,FALSE +Three Dog Night,Joy To The World,existing,,,,,,FALSE +Three Dog Night,One,existing,,,,,,FALSE +Tiesto,1035,new,,,,,73032,FALSE +Tiesto,Don't Be Shy,new,,,,,66434,FALSE +Tiesto,The Business,new,,,,,64242,FALSE +Tiesto,The Motto,new,,,,,68136,FALSE +Tim McGraw,Highway Don't Care,existing,,,,,,FALSE +Tim McGraw,Humble And Kind,new,,,,,51011,FALSE +Tim McGraw,"I Like It, I Love It",new,,,,,8356,FALSE +Tim McGraw,Indian Outlaw,new,,,,,10132,FALSE +Tim McGraw,Just To See You Smile,existing,,,,,,FALSE +Tim McGraw,Live Like You Were Dying,existing,,,,,,FALSE +Tim McGraw,Shotgun Rider,existing,,,,,,FALSE +Tim McGraw,Something Like That,new,,,,,8659,FALSE +Tim McGraw,Southern Girl,existing,,,,,,FALSE +Tim McGraw,Where the Green Grass Grows,new,,,,,9180,FALSE +Timbaland,Apologize,existing,,,,,,FALSE +Timbaland,Carry Out,new,,,,,28478,FALSE +Timbaland,Give It to Me,new,,,,,11915,FALSE +Timbaland,If We Ever Meet Again,existing,,,,,,FALSE +Timbaland,Morning After Dark,new,,,,,26620,FALSE +Timbaland,The Way I Are,new,,,,,12311,FALSE +Tina Arena,Chains,existing,,,,,,FALSE +Tina Charles,I Love To Love,existing,,,,,,FALSE +Tina Turner,Best,existing,,,,,,FALSE +Tina Turner,Better Be Good to Me,new,,,,,41131,FALSE +Tina Turner,Disco Inferno,new,,,,,21730,FALSE +Tina Turner,I Don't Wanna Fight,new,,,,,29157,FALSE +Tina Turner,Let's Stay Together,existing,,,,,,FALSE +Tina Turner,Missing You,existing,,,,,,FALSE +Tina Turner,Nutbush City Limits,new,,,,,25618,FALSE +Tina Turner,Private Dancer,new,,,,,13807,FALSE +Tina Turner,Proud Mary,existing,,,,,,FALSE +Tina Turner,River Deep Mountain High,existing,,,,,,FALSE +Tina Turner,Shake a Tailfeather,new,,,,,67766,FALSE +Tina Turner,Try A Little Tenderness (Live Wembley),existing,,,,,,FALSE +Tina Turner,We Don't Need Another Hero,new,,,,,9456,FALSE +Tina Turner,What's Love Got To Do With It,existing,,,,,,FALSE +Tina Turner & Rod Stewart,It Takes Two,existing,Tina Turner,,,,,FALSE +Tinashe,2 On,new,,,,,79843,FALSE +Tinashe,Nasty,new,,,,,82033,FALSE +Tinie Tempah,Children Of The Sun,new,,,,,45579,FALSE +Tinie Tempah,Frisky,new,,,,,30922,FALSE +Tinie Tempah,Invincible,new,,,,,35653,FALSE +Tinie Tempah,Lover Not a Fighter,new,,,,,46448,FALSE +Tinie Tempah,Pass Out,new,,,,,28878,FALSE +Tinie Tempah,Till I'm Gone,new,,,,,38012,FALSE +Tinie Tempah,Trampoline,new,,,,,44679,FALSE +Tinie Tempah,Wonderman,new,,,,,36039,FALSE +Tinie Tempah,Written In The Stars,new,,,,,34180,FALSE +Toby Keith,Beer For My Horses,existing,,,,,,FALSE +Toby Keith,Courtesy Of The Red White And Blue (The Angry American),existing,,,,,,FALSE +Toby Keith,I Love This Bar,existing,,,,,,FALSE +Toby Keith,Red Solo Cup,existing,,,,,,FALSE +Todd Rundgren,Bang The Drum All Day,existing,,,,,,FALSE +Todd Rundgren,Hello It's Me,new,,,,,55325,FALSE +Tom Baxter,Better,existing,,,,,,FALSE +Tom Jones,Celebration - Live 80's US TV Special,existing,,,,,,FALSE +Tom Jones,Delilah - Live Arrangement,existing,,,,,,FALSE +Tom Jones,Delilah,existing,,,,,,FALSE +Tom Jones,Green Green Grass of Home,existing,,,,,,FALSE +Tom Jones,Help Yourself,existing,,,,,,FALSE +Tom Jones,It's Not Unusual,existing,,,,,,FALSE +Tom Jones,Knock On Wood - Live 80's US TV Special,existing,,,,,,FALSE +Tom Jones,She's a Lady,existing,,,,,,FALSE +Tom MacDonald,Clown World,new,,,,,80275,FALSE +Tom MacDonald,Facts,new,,,,,79814,FALSE +Tom MacDonald,Ghost,new,,,,,73236,FALSE +Tom MacDonald,No Lives Matter,new,,,,,77749,FALSE +Tom MacDonald,Snowflakes,new,,,,,81746,FALSE +Tom Odell,Real Love,existing,,,,,,FALSE +Tom Petty,A Woman in Love (It's Not Me),new,,,,,58007,FALSE +Tom Petty,American Girl,existing,,,,,,FALSE +Tom Petty,Breakdown,new,,,,,39723,FALSE +Tom Petty,Don't Come Around Here No More,new,,,,,51386,FALSE +Tom Petty,Don't Do Me Like That,new,,,,,10909,FALSE +Tom Petty,Even the Losers,new,,,,,54153,FALSE +Tom Petty,Free Fallin (A Cappella),existing,,,,,,FALSE +Tom Petty,Free Fallin,existing,,,,,,FALSE +Tom Petty,Here Comes My Girl,existing,,,,,,FALSE +Tom Petty,I Need to Know,new,,,,,54757,FALSE +Tom Petty,I Won't Back Down,existing,,,,,,FALSE +Tom Petty,Into The Great Wide Open,existing,,,,,,FALSE +Tom Petty,Learning To Fly,existing,,,,,,FALSE +Tom Petty,Mary Jane's Last Dance,existing,,,,,,FALSE +Tom Petty,Refugee,existing,,,,,,FALSE +Tom Petty,Runnin Down A Dream,existing,,,,,,FALSE +Tom Petty,The Waiting,existing,,,,,,FALSE +Tom Petty,Yer So Bad,new,,,,,38642,FALSE +Tom Petty,You Don't Know How It Feels,new,,,,,52342,FALSE +Tom Petty,You Got Lucky,new,,,,,55440,FALSE +Tom Petty,You Wreck Me,existing,,,,,,FALSE +Tom Waits,(Looking for) The Heart of Saturday Night,new,,,,,77943,FALSE +Tom Waits,Christmas Card from a Hooker in Minneapolis,new,,,,,65853,FALSE +Tom Waits,Downtown Train,new,,,,,73497,FALSE +Tom Waits,I Hope That I Don't Fall in Love with You,new,,,,,64130,FALSE +Tom Waits,Jockey Full Of Bourbon,new,,,,,39136,FALSE +Tom Waits,Ol' 55,new,,,,,75396,FALSE +Tom Waits,Step Right Up,new,,,,,39087,FALSE +Tommy James & The Shondells,Mony Mony,existing,,,,,,FALSE +Tommy James And The Shondells,Crimson And Clover,existing,Tommy James & The Shondells,,,,,FALSE +Tommy Tutone,867-5309 Jenny,existing,,,,,,FALSE +Tone Loc,Wild Thing,new,,,,,36170,FALSE +Tones and I,Cloudy Day,new,,,,,65508,FALSE +Tones and I,Dance Monkey,new,,,,,59020,FALSE +Tones and I,Fly Away,new,,,,,64040,FALSE +Tones and I,Never Seen the Rain,new,,,,,59455,FALSE +Toni Braxton,Unbreak My Heart,existing,,,,,,FALSE +Tonic,If You Could Only See,existing,,,,,,FALSE +Tony Bennett,Blue Velvet (A Cappella),existing,,,,,,FALSE +Tony Bennett & Michael Buble,Don't Get Around Much Anymore,existing,,,,,,FALSE +Tony Christie,Avenues & Alleyways,existing,,,,,,FALSE +Tony Christie,Daddy Don't You Walk So Fast,existing,,,,,,FALSE +Tool,Eulogy,new,,,,,69564,FALSE +Tool,Fear Inoculum,new,,,,,74362,FALSE +Tool,Forty Six & 2,new,,,,,57446,FALSE +Tool,H.,new,,,,,27899,FALSE +Tool,Hooker with a Penis,new,,,,,69042,FALSE +Tool,Jambi,new,,,,,70824,FALSE +Tool,Lateralus,new,,,,,70731,FALSE +Tool,Opiate,new,,,,,71120,FALSE +Tool,Parabola,new,,,,,53519,FALSE +Tool,Pneuma,new,,,,,75402,FALSE +Tool,Prison Sex,new,,,,,39321,FALSE +Tool,Right in Two,new,,,,,72363,FALSE +Tool,Schism,new,,,,,28894,FALSE +Tool,Sober,new,,,,,54912,FALSE +Tool,Stinkfist,new,,,,,65481,FALSE +Tool,The Grudge,new,,,,,74605,FALSE +Tool,The Pot,new,,,,,61519,FALSE +Tool,Vicarious,new,,,,,67994,FALSE +Tool,nema,new,,,,,55417,FALSE +Toots And The Maytals,Do The Reggay,existing,,,,,,FALSE +Toploader,Dancing In the Moonlight,existing,,,,,,FALSE +Tori Amos,Cornflake Girl,new,,,,,21376,FALSE +Tori Kelly,Dear No One,new,,,,,49766,FALSE +Tori Kelly,I Was Made for Loving You,new,,,,,49758,FALSE +Tori Kelly,Paper Hearts,new,,,,,73478,FALSE +Total,Can't You See,new,,,,,78145,FALSE +Total,Kissin' You,new,,,,,68888,FALSE +Total,Trippin',new,,,,,34572,FALSE +Total,What About Us,new,,,,,34207,FALSE +Toto,Africa,existing,,,,,,FALSE +Toto,Hold The Line,existing,,,,,,FALSE +Toto,Rosanna,existing,,,,,,FALSE +Tove Lo,Cool Girl,new,,,,,51723,FALSE +Tove Lo,Habits (Stay High),new,,,,,47954,FALSE +Tove Lo,Talking Body,new,,,,,48998,FALSE +Tower Of Power,Diggin On James Brown,existing,,,,,,FALSE +Tower Of Power,What Is Hip,existing,,,,,,FALSE +Townes Van Zandt,Dead Flowers,new,,,,,77654,FALSE +Townes Van Zandt,Pancho and Lefty,new,,,,,72585,FALSE +Townes Van Zandt,Waiting Around to Die,new,,,,,77699,FALSE +Trace Adkins,Honky Tonk Badonkadonk,existing,,,,,,FALSE +Trace Adkins,You're Gonna Miss This,existing,,,,,,FALSE +Tracy Chapman,Fast Car,new,,,,,13511,FALSE +Tracy Chapman,Give Me One Reason,new,,,,,10798,FALSE +Train,Drive By,existing,,,,,,FALSE +Train,Drops of Jupiter (Tell Me),existing,,,,,,FALSE +Train,Hey Soul Sister,existing,,,,,,FALSE +Traveling Wilburys,Handle with Care,new,,,TRUE,,30408,FALSE +Travis Scott,Fe!n,new,,,,,81219,FALSE +Travis Scott,Goosebumps (HVME remix),new,,,,,64247,FALSE +Travis Scott,Goosebumps,new,,,,,64256,FALSE +Travis Scott,Highest in the Room,new,,,,,78358,FALSE +Travis Scott,K-POP,new,,,,,76431,FALSE +Travis Scott,Sicko Mode,new,,,,,58490,FALSE +Travis Scott,Telekinesis,new,,,,,76803,FALSE +Travis Tritt,Here's a Quarter (Call Someone Who Cares),new,,,,,6592,FALSE +Travis Tritt,It's A Great Day To Be Alive,existing,,,,,,FALSE +Triumph,A World of Fantasy,new,,,,,72123,FALSE +Triumph,Fight the Good Fight,new,,,,,67074,FALSE +Triumph,Hold On,new,,,,,70700,FALSE +Triumph,Lay It on the Line,new,,,,,57971,FALSE +Triumph,Magic Power,new,,,,,64601,FALSE +Triumph,Somebody's Out There,new,,,,,77785,FALSE +Troye Sivan,Angel Baby,new,,,,,73841,FALSE +Troye Sivan,One of Your Girls,new,,,,,77776,FALSE +Troye Sivan,Rush,new,,,,,76153,FALSE +Troye Sivan,Youth,new,,,,,76892,FALSE +Twenty One Pilots,Chlorine,new,,,,,70905,FALSE +Twenty One Pilots,HeavyDirtySoul,new,,,,,51357,FALSE +Twenty One Pilots,Ride,new,,,,,51082,FALSE +Twenty One Pilots,Stressed Out,new,,,,,50478,FALSE +Twenty One Pilots,Tear in My Heart,new,,,,,50842,FALSE +Twista,Overnight Celebrity,new,,,,,69143,FALSE +Twista,Slow Jamz,new,,,,,58732,FALSE +Twisted Sister,We're Not Gonna Take It,existing,,,,,,FALSE +Two Door Cinema Club,Sleep Alone,existing,,,,,,FALSE +Ty Dolla Sign,Or Nah,new,,,,,67848,FALSE +Tyga,Rack City,new,,,,,81150,FALSE +Tyga,Taste,new,,,,,32582,FALSE +Tyla,Art,new,,,,,81666,FALSE +Tyla,Jump,new,,,,,81389,FALSE +Tyla,Truth or Dare,new,,,,,79696,FALSE +Tyla,Water,new,,,,,77359,FALSE +"Tyler, The Creator",Earfquake,new,,,,,74656,FALSE +"Tyler, The Creator",New Magic Wand,new,,,,,79578,FALSE +"Tyler, The Creator",See You Again,new,,,,,71668,FALSE +"Tyler, The Creator",Yonkers,new,,,,,82678,FALSE +Tyler Childers,All Your'n,new,,,,,60822,FALSE +Tyler Childers,Charleston Girl (live),new,,,,,68641,FALSE +Tyler Childers,Coal,new,,,,,75949,FALSE +Tyler Childers,Feathered Indians,new,,,,,60301,FALSE +Tyler Childers,Follow You to Virgie,new,,,,,66685,FALSE +Tyler Childers,Lady May,new,,,,,60989,FALSE +Tyler Childers,Nose on the Grindstone,new,,,,,60943,FALSE +Tyler Childers,Shake the Frost (live),new,,,,,66604,FALSE +U2,A Sort of Homecoming,new,,,,,81891,FALSE +U2,All I Want Is You,existing,,,,,,FALSE +U2,Angel Of Harlem,existing,,,,,,FALSE +U2,Atomic City,new,,,,,78012,FALSE +U2,Beautiful Day,existing,,,,,,FALSE +U2,Bullet The Blue Sky,existing,,,,,,FALSE +U2,Christmas (Baby Please Come Home),existing,,,,,,FALSE +U2,City of Blinding Lights,existing,,,,,,FALSE +U2,Desire,existing,,,,,,FALSE +U2,Even Better Than the Real Thing,new,,,,,68042,FALSE +U2,I Still Haven't Found What I'm Looking For,new,,,,,11771,FALSE +U2,I Will Follow,new,,,,,42214,FALSE +U2,In God's Country,new,,,,,65604,FALSE +U2,Love Is Blindness,new,,,,,39262,FALSE +U2,Mysterious Ways,new,,,,,30072,FALSE +U2,New Year's Day,new,,,,,12563,FALSE +U2,One Tree Hill,new,,,,,65771,FALSE +U2,One,new,,,,,16186,FALSE +U2,Pride (In the Name of Love),existing,,,,,,FALSE +U2,Red Hill Mining Town,existing,,,,,,FALSE +U2,Running To Stand Still,new,,,,,26998,FALSE +U2,Sometimes You Can't Make It On Your Own,existing,,,,,,FALSE +U2,Stuck in a Moment You Can't Get Out of,new,,,,,7970,FALSE +U2,Sunday Bloody Sunday,existing,,,,,,FALSE +U2,Sweetest Thing,new,,,,,9299,FALSE +U2,The Fly,new,,,,,68986,FALSE +U2,The Unforgettable Fire,new,,,,,33449,FALSE +U2,Two Hearts Beat as One,new,,,,,71658,FALSE +U2,Ultraviolet (Light My Way),new,,,,,38803,FALSE +U2,Vertigo,existing,,,,,,FALSE +U2,When Love Comes to Town,new,,,,,49346,FALSE +U2,Where The Streets Have No Name,new,,,,,11770,FALSE +U2,Who's Gonna Ride Your Wild Horses,new,,,,,54792,FALSE +U2,With Or Without You,existing,,,,,,FALSE +U2,Zoo Station,new,,,,,73069,FALSE +Ub40,Boom Shaka Lacka,existing,UB40,,,,,FALSE +Ub40,Bring It On Home to Me,existing,UB40,,,,,FALSE +Ub40,Don't Do the Crime,existing,UB40,,,,,FALSE +Ub40,Get Along Without You Now,existing,UB40,,,,,FALSE +Ub40,If It Happens Again,existing,UB40,,,,,FALSE +Ub40,Kingston Town,existing,UB40,,,,,FALSE +Ub40,Watchdogs,existing,UB40,,,,,FALSE +Ultravox,Dancing With Tears In My Eyes,existing,,,,,,FALSE +Uncle Kracker,Drift Away,existing,,,,,,FALSE +Uncle Kracker,Follow Me,existing,,,,,,FALSE +Uncle Kracker,Good To Be Me,existing,,,,,,FALSE +Uncle Kracker,Smile,existing,,,,,,FALSE +Unit Four Plus Two,Concrete & Clay,existing,,,,,,FALSE +Usher,Burn,new,,,,,13208,FALSE +Usher,Caught Up,existing,,,,,,FALSE +Usher,DJ Got Us Fallin' In Love,new,,,,,32373,FALSE +Usher,Hey Daddy (Daddy's Home),new,,,,,66609,FALSE +Usher,"Love in This Club, Part II",new,,,,,19790,FALSE +Usher,My Boo,new,,,,,55025,FALSE +Usher,OMG,new,,,,,29579,FALSE +Usher,Scream,existing,,,,,,FALSE +Usher,U Got It Bad,new,,,,,8075,FALSE +Usher,U Remind Me,new,,,,,19929,FALSE +Usher,Yeah,existing,,,,,,FALSE +Vampire Weekend,A-Punk,new,,,,,63768,FALSE +Vampire Weekend,Diane Young,new,,,,,82076,FALSE +Vampire Weekend,Harmony Hall,new,,,,,74540,FALSE +Vampire Weekend,Oxford Comma,new,,,,,78658,FALSE +Van Halen,Ain't Talkin Bout Love,existing,,,,,,FALSE +Van Halen,And the Cradle Will Rock...,new,,,,,17708,FALSE +Van Halen,Atomic Punk,new,,,,,69397,FALSE +Van Halen,Beautiful Girls,new,,,,,17759,FALSE +Van Halen,Best of Both Worlds,new,,,,,23070,FALSE +Van Halen,Bottoms Up!,new,,,,,70738,FALSE +Van Halen,Can't Stop Lovin' You,new,,,,,25751,FALSE +Van Halen,Dance the Night Away,new,,,,,17711,FALSE +Van Halen,Dancing in the Street,new,,,,,62615,FALSE +Van Halen,Dreams,new,,,,,17712,FALSE +Van Halen,Feel Your Love Tonight,new,,,,,17700,FALSE +Van Halen,Finish What Ya Started,new,,,,,17758,FALSE +Van Halen,Hear About It Later,new,,,,,62916,FALSE +Van Halen,Hot for Teacher,new,,,,,17704,FALSE +Van Halen,I'll Wait,new,,,,,28105,FALSE +Van Halen,I'm the One,new,,,,,32018,FALSE +Van Halen,Ice Cream Man,existing,,,,,,FALSE +Van Halen,Jamie's Cryin,existing,,,,,,FALSE +Van Halen,Judgement Day,new,,,,,40091,FALSE +Van Halen,Jump,existing,,,,,,FALSE +Van Halen,Light Up the Sky,new,,,,,63101,FALSE +Van Halen,Little Dreamer,new,,,,,61712,FALSE +Van Halen,Love Walks In,new,,,,,17812,FALSE +Van Halen,Mean Street,new,,,,,53262,FALSE +Van Halen,Not Enough,new,,,,,71619,FALSE +Van Halen,On Fire,new,,,,,78609,FALSE +Van Halen,Panama,existing,,,,,,FALSE +Van Halen,Right Now,existing,,,,,,FALSE +Van Halen,Runnin' with the Devil,new,,,,,17760,FALSE +Van Halen,So This Is Love,new,,,,,64781,FALSE +Van Halen,Somebody Get Me a Doctor,new,,,,,65150,FALSE +Van Halen,Take Your Whiskey Home,new,,,,,69565,FALSE +Van Halen,Top of the World,new,,,,,69683,FALSE +Van Halen,Unchained,new,,,,,17814,FALSE +Van Halen,When It's Love,new,,,,,17710,FALSE +Van Halen,Why Can't This Be Love,existing,,,,,,FALSE +Van Halen,You Really Got Me,existing,,,,,,FALSE +Van Halen,You're No Good,new,,,,,71135,FALSE +Van Morrison,Baby Please Don't Go,existing,,,,,,FALSE +Van Morrison,Bright Side of the Road,existing,,,,,,FALSE +Van Morrison,Brown Eyed Girl,existing,,,,,,FALSE +Van Morrison,Crazy Love,existing,,,,,,FALSE +Van Morrison,Days Like This,existing,,,,,,FALSE +Van Morrison,Domino,existing,,,,,,FALSE +Van Morrison,Gloria,existing,,,,,,FALSE +Van Morrison,Have I Told You Lately,existing,,,,,,FALSE +Van Morrison,Here Comes the Night,existing,,,,,,FALSE +Van Morrison,Into The Mystic,existing,,,,,,FALSE +Van Morrison,Moondance (A Cappella),existing,,,,,,FALSE +Van Morrison,Moondance,existing,,,,,,FALSE +Van Morrison,Tupelo Honey,existing,,,,,,FALSE +Vance Joy,Fire And The Flood,new,,,,,49975,FALSE +Vance Joy,Mess Is Mine,new,,,,,83179,FALSE +Vance Joy,Missing Piece,new,,,,,67230,FALSE +Vance Joy,Riptide,new,,,,,45250,FALSE +Vance Joy,Saturday Sun,new,,,,,81706,FALSE +Vance Joy,We're Going Home,new,,,,,55486,FALSE +Vance Joy,You,new,,,,,64322,FALSE +Vanessa Williams,Save The Best For Last,existing,,,,,,FALSE +Vangelis,Conquest of Paradise,new,,,,,64380,FALSE +Velvet Revolver,Come On Come In,new,,,,,25237,FALSE +Velvet Revolver,Dirty Little Thing,new,,,,,24856,FALSE +Velvet Revolver,Fall To Pieces,existing,,,,,,FALSE +Velvet Revolver,Slither,existing,,,,,,FALSE +Vera Lynn,A Nightengale Sang In Berkeley Square (A Cappella),existing,,,,,,FALSE +Vera Lynn,We'll Meet Again,existing,,,,,,FALSE +Veruca Salt,Awesome,new,,,,,39171,FALSE +Veruca Salt,Seether,new,,,,,73095,FALSE +Veruca Salt,Volcano Girls,new,,,,,76755,FALSE +Vic Reeves & The Wonderstuff,Dizzy,existing,,,,,,FALSE +Victor Young,Stella By Starlight,existing,,,,,,FALSE +Village People,In The Navy,new,,,TRUE,,8161,FALSE +Village People,Macho Man,new,,,,,8162,FALSE +Village People,Y.M.C.A.,existing,,,,,,FALSE +Visage,Fade To Grey,existing,,,,,,FALSE +Volbeat,A Warrior's Call,new,,,,,69309,FALSE +Volbeat,For Evigt,new,,,,,55725,FALSE +Volbeat,Lola Montez,new,,,,,51611,FALSE +Volbeat,Still Counting,new,,,,,51634,FALSE +Volbeat,The Devil's Bleeding Crown,new,,,,,67976,FALSE +Vulfpeck,1612,new,,,,,28888,FALSE +Vulfpeck,Back Pocket,new,,,,,75009,FALSE +Vulfpeck,Wait for the Moment,new,,,,,76439,FALSE +W.A.S.P.,I Wanna Be Somebody,new,,,,,69736,FALSE +Waitresses,I Know What Boys Like,existing,,,,,,FALSE +Waka Flocka Flame,No Hands,new,,,,,68748,FALSE +Wall of Voodoo,Mexican Radio,new,,,,,19179,FALSE +Wanda Jackson,Let Me Go Lover,existing,,,,,,FALSE +Wang Chung,Everybody Have Fun Tonight,new,,,,,32823,FALSE +Wang Chung,Let's Go,new,,,,,70904,FALSE +Wang Chung,To Live and Die in L.A.,new,,,,,70756,FALSE +War,Low Rider,new,,,,,6293,FALSE +War,Why Can't We Be Friends,new,,,,,58512,FALSE +Warrant,Cherry Pie,existing,,,,,,FALSE +Warren G,I Shot the Sheriff,new,,,,,34518,FALSE +Warren G,Regulate,existing,,,,,,FALSE +Warren G,The Rhapsody from Polovtsian Dances From Prince Igor,new,,,,,41123,FALSE +Warren G,What's Love Got To Do With It,new,,,,,34425,FALSE +Warren Zevon,"Lawyers, Guns and Money",new,,,,,55863,FALSE +Warren Zevon,Werewolves of London,new,,,,,11468,FALSE +Waterboys,Whole of the Moon,existing,The Waterboys,,,,,FALSE +Waylon Jennings,Are You Sure Hank Done it This Way,new,,,,,30633,FALSE +Waylon Jennings,Good Hearted Woman,new,,,,,74847,FALSE +Waylon Jennings,Luckenbach Texas,existing,,,,,,FALSE +Waylon Jennings,Theme from The Dukes of Hazzard (Good Ol' Boys),new,,,,,8565,FALSE +Ween,Ocean Man,new,,,,,58205,FALSE +Weezer,Beverly Hills,new,,,,,25370,FALSE +Weezer,Buddy Holly,new,,,,,45680,FALSE +Weezer,Hash Pipe,new,,,,,29303,FALSE +Weezer,Island In The Sun,existing,,,,,,FALSE +Weezer,Undone The Sweater Song,new,,,,,54896,FALSE +West Side Story,Something's Coming (A Cappella),existing,,,,,,FALSE +West Side Story,Somewhere (A Cappella),existing,,,,,,FALSE +Wham,Club Tropicana,existing,,,,,,FALSE +Wham,Freedom,existing,,,,,,FALSE +Wham,I'm Your Man,existing,,,,,,FALSE +Wham,Last Christmas,existing,,,,,,FALSE +Wham,Wake Me Up Before You Go Go,existing,,,,,,FALSE +Wheatus,Teenage Dirtbag,existing,,,,,,FALSE +Whiskey Myers,Ballad of a Southern Man,new,,,,,60399,FALSE +Whiskey Myers,Broken Window Serenade,new,,,,,67533,FALSE +Whiskey Myers,Stone,new,,,,,66192,FALSE +White Lion,Wait,new,,,,,64987,FALSE +Whitesnake,Here I Go Again '87,new,,,,,64783,FALSE +Whitesnake,Here I Go Again (Album Version),new,,,,,56275,FALSE +Whitesnake,Here I Go Again,new,,,,,13749,FALSE +Whitesnake,Is This Love,existing,,,,,,FALSE +Whitesnake,Still of the Night,new,,,,,41880,FALSE +Whitney Houston,All The Man That I Need,existing,,,,,,FALSE +Whitney Houston,Didn't We Almost Have It All,existing,,,,,,FALSE +Whitney Houston,I Have Nothing,existing,,,,,,FALSE +Whitney Houston,I Wanna Dance With Somebody,existing,,,,,,FALSE +Whitney Houston,I Will Always Love You,existing,,,,,,FALSE +Whitney Houston,One Moment In Time,existing,,,,,,FALSE +Whitney Houston,Saving All My Love For You,existing,,,,,,FALSE +Wilco,"Jesus, Etc.",new,,,,,39539,FALSE +Wilco,You Never Know,new,,,,,24628,FALSE +Wild Cherry,Play That Funky Music,existing,,,,,,FALSE +Will Smith,Gettin' Jiggy wit It,new,,,,,16982,FALSE +Will Smith,Miami,new,,,,,13795,FALSE +Will Smith,Wild Wild West,new,,,,,8626,FALSE +Will Young,Evergreen,existing,,,,,,FALSE +Will Young,Leave Right Now,existing,,,,,,FALSE +Will.I.Am Feat. Justin Bieber,#That Power,existing,Will.I.Am,,,,,FALSE +Willie Nelson,Always On My Mind,existing,,,,,,FALSE +Willie Nelson,Angel Flying Too Close to the Ground,new,,,,,40574,FALSE +Willie Nelson,Blue Eyes Crying In The Rain,existing,,,,,,FALSE +Willie Nelson,Blue Eyes Crying in the Rain,new,,,,,6629,FALSE +Willie Nelson,Blue Skies,existing,,,,,,FALSE +Willie Nelson,City Of New Orleans,existing,,,,,,FALSE +Willie Nelson,Georgia on My Mind,new,,,,,17016,FALSE +Willie Nelson,Good Hearted Woman,new,,,,,11583,FALSE +Willie Nelson,Last Thing I Needed First Thing This Morning,new,,,,,53430,FALSE +Willie Nelson,Mammas Don't Let Your Babies Grow Up to Be Cowboys,new,,,,,10259,FALSE +Willie Nelson,My Heroes Have Always Been Cowboys,existing,,,,,,FALSE +Willie Nelson,Nothing I Can Do About It Now,new,,,,,67185,FALSE +Willie Nelson,On The Road Again,existing,,,,,,FALSE +Willie Nelson,Pancho and Lefty,new,,,,,22182,FALSE +Willie Nelson,Roll Me Up and Smoke Me When I Die,new,,,,,44503,FALSE +Willie Nelson,Seven Spanish Angels,new,,,,,22395,FALSE +Willie Nelson,To All The Girls I've Loved Before,new,,,,,17003,FALSE +Willie Nelson,Whiskey River (Live),existing,,,,,,FALSE +Willie Nelson,Whiskey River,new,,,,,46637,FALSE +Wilson Phillips,Hold On,new,,,,,21657,FALSE +Wilson Pickett,Land of 1000 Dances,existing,,,,,,FALSE +Wilson Pickett,Midnight Hour,existing,,,,,,FALSE +Wings,Band On The Run,existing,,,,,,FALSE +Wings,Mull of Kintyre,existing,,,,,,FALSE +Wings,Silly Love Songs,existing,,,,,,FALSE +Within Temptation,Angels,existing,,,,,,FALSE +Within Temptation,Faster,existing,,,,,,FALSE +Wiz Khalifa,Black and Yellow,new,,,,,36317,FALSE +Wiz Khalifa,No Sleep,new,,,,,36709,FALSE +Wiz Khalifa,Roll Up,new,,,,,36996,FALSE +Wiz Khalifa,See You Again,existing,,,,,,FALSE +Wiz Khalifa,"Work Hard, Play Hard",new,,,,,40436,FALSE +Wiz Khalifa,Young Wild And Free,existing,,,,,,FALSE +Wizard Of Oz,Over The Rainbow (A Cappella),existing,,,,,,FALSE +Wu-Tang Clan,C.R.E.A.M.,new,,,,,60956,FALSE +Wu-Tang Clan,Gravel Pit,new,,,,,82585,FALSE +Wu-Tang Clan,Protect Ya Neck,new,,,,,72327,FALSE +Wu-Tang Clan,Triumph,new,,,,,75058,FALSE +Wu-Tang Clan,Wu-Tang Clan Ain't Nuthing Ta F' Wit,new,,,,,80028,FALSE +X Ambassadors,Jungle (Remix),new,,,,,47414,FALSE +X Ambassadors,Renegades,new,,,,,49693,FALSE +X Ambassadors,Unsteady,new,,,,,50305,FALSE +XTC,Dear God,new,,,,,70686,FALSE +XTC,Making Plans for Nigel,new,,,,,57216,FALSE +XTC,Mayor of Simpleton,new,,,,,71829,FALSE +XTC,Senses Working Overtime,new,,,,,61141,FALSE +XXXTentacion,Changes,new,,,,,56411,FALSE +XXXTentacion,Hope,new,,,,,76272,FALSE +XXXTentacion,Look at Me!,new,,,,,68692,FALSE +XXXTentacion,Moonlight,new,,,,,67081,FALSE +XXXTentacion,Sad!,new,,,,,64122,FALSE +YG,My Nigga (remix),new,,,,,80856,FALSE +YG,Toot It and Boot It (remix),new,,,,,82810,FALSE +YG,Toot It and Boot It,new,,,,,82838,FALSE +Yazoo,Don't Go,existing,,,,,,FALSE +Yazoo,Situation,existing,,,,,,FALSE +Yazz & The Plastic Population,The Only Way Is Up,existing,,,,,,FALSE +Yeah Yeah Yeahs,Cheated Hearts,new,,,,,29878,FALSE +Yeah Yeah Yeahs,Gold Lion,new,,,,,21789,FALSE +Yeah Yeah Yeahs,Heads Will Roll,new,,,,,23443,FALSE +Yeah Yeah Yeahs,Maps,existing,,,,,,FALSE +Yeah Yeah Yeahs,Y Control,new,,,,,77985,FALSE +Years & Years,King,existing,,,,,,FALSE +Yes,And You and I,new,,,,,75274,FALSE +Yes,Changes,new,,,,,65167,FALSE +Yes,Heart of the Sunrise,new,,,,,71026,FALSE +Yes,Hold On,new,,,,,70356,FALSE +Yes,I've Seen All Good People,new,,,,,58447,FALSE +Yes,It Can Happen,new,,,,,71269,FALSE +Yes,Leave It,new,,,,,39071,FALSE +Yes,Long Distance Runaround,new,,,,,65168,FALSE +Yes,Love Will Find a Way,new,,,,,71039,FALSE +Yes,Owner of a Lonely Heart,new,,,,,13793,FALSE +Yes,Roundabout,new,,,,,57672,FALSE +Yes,Starship Trooper,new,,,,,66142,FALSE +Yes,Your Move,new,,,,,58693,FALSE +Yes,Yours Is No Disgrace,new,,,,,66495,FALSE +Ying Yang Twins,Salt Shaker,new,,,,,63032,FALSE +Ying Yang Twins,Wait (The Whisper Song),new,,,,,28401,FALSE +Yola,Faraway Look,new,,,,,61543,FALSE +You+Me,You And Me,existing,,,,,,FALSE +Young Jeezy,Go Getta (clean),new,,,,,39673,FALSE +Young Jeezy,Go Getta,new,,,,,12001,FALSE +Young Jeezy,I Luv It (clean),new,,,,,41034,FALSE +Young Jeezy,I Luv It,new,,,,,11717,FALSE +Young Jeezy,Soul Survivor,new,,,,,64626,FALSE +Young M.A,Ooouuu,new,,,,,68881,FALSE +Young MC,Bust a Move,new,,,,,32819,FALSE +Young Money Entertainment,Bedrock,new,,,,,27047,FALSE +Yung Berg,Sexy Lady,new,,,,,12630,FALSE +Yung Gravy,Betty (Get Money),new,,,,,70535,FALSE +Yung Gravy,Mr. Clean,new,,,,,71880,FALSE +Yung Gravy,Oops!!! (with Lil Wayne),new,,,,,73551,FALSE +Yung Gravy,Oops!,new,,,,,73552,FALSE +Yung Joc,I Know You See It,new,,,,,25675,FALSE +Yung Joc,It's Goin' Down,new,,,,,25595,FALSE +Yvonne Elliman,If I Can't Have You,existing,,,,,,FALSE +ZZ Top,A Fool For Your Stockings,existing,,,,,,FALSE +ZZ Top,Beer Drinkers And Hell Raisers,existing,,,,,,FALSE +ZZ Top,Blue Jean Blues,existing,,,,,,FALSE +ZZ Top,Cheap Sunglasses,existing,,,,,,FALSE +ZZ Top,Gimme All Your Lovin,existing,,,,,,FALSE +ZZ Top,Heard It On The X,existing,,,,,,FALSE +ZZ Top,I Got the Six,new,,,,,73515,FALSE +ZZ Top,I Thank You,new,,,,,58594,FALSE +ZZ Top,"I'm Bad, I'm Nationwide",new,,,,,56000,FALSE +ZZ Top,Jesus Just Left Chicago,existing,,,,,,FALSE +ZZ Top,Just Got Paid,existing,,,,,,FALSE +ZZ Top,La Grange,existing,,,,,,FALSE +ZZ Top,Legs,new,,,,,29429,FALSE +ZZ Top,Pearl Necklace,new,,,,,63461,FALSE +ZZ Top,Sharp Dressed Man,existing,,,,,,FALSE +ZZ Top,TV Dinners,existing,,,,,,FALSE +ZZ Top,Tube Snake Boogie,existing,,,,,,FALSE +ZZ Top,Tush,existing,,,,,,FALSE +ZZ Top,Viva Las Vegas,new,,,,,31881,FALSE +ZZ Top,Waitin For The Bus,existing,,,,,,FALSE +ZZ Ward,365 Days,existing,,,,,,FALSE +Zac Brown Band,As She's Walking Away,new,,,,,34931,FALSE +Zac Brown Band,Chicken Fried,existing,,,,,,FALSE +Zac Brown Band,Colder Weather,existing,,,,,,FALSE +Zac Brown Band,Free,new,,,,,32438,FALSE +Zac Brown Band,Homegrown,existing,,,,,,FALSE +Zac Brown Band,Jolene,existing,,,,,,FALSE +Zac Brown Band,Keep Me In Mind,new,,,,,36437,FALSE +Zac Brown Band,Knee Deep,existing,,,,,,FALSE +Zac Brown Band,Toes,existing,,,,,,FALSE +Zac Brown Band,Whatever It Is,new,,,,,22657,FALSE +Zac Effron,Ladies Choice,existing,,,,,,FALSE +Zach Bryan,28,new,,,,,82566,FALSE +Zach Bryan,"Burn, Burn, Burn",new,,,,,72760,FALSE +Zach Bryan,Heading South,new,,,,,68662,FALSE +Zach Bryan,Hey Driver,new,,,,,76865,FALSE +Zach Bryan,I Remember Everything,new,,,,,77007,FALSE +Zach Bryan,Oklahoma Smokeshow,new,,,,,71354,FALSE +Zach Bryan,Pink Skies,new,,,,,81710,FALSE +Zach Bryan,Something in the Orange,new,,,,,40215,FALSE +Zach Bryan,Spotless,new,,,,,77361,FALSE +Zach Bryan,Sun to Me,new,,,,,75660,FALSE +Zara Larsson,Ain't My Fault,new,,,,,52286,FALSE +Zara Larsson,Lush Life,new,,,,,49924,FALSE +Zara Larsson,Never Forget You,new,,,,,50414,FALSE +Zara Larsson,On My Love,new,,,,,77849,FALSE +Zara Larsson,Ruin My Life,new,,,,,57444,FALSE +Zedd,Beautiful Now,new,,,,,49668,FALSE +Zedd,Clarity,new,,,,,42972,FALSE +Zedd,I Want You To Know,new,,,,,48855,FALSE +Zedd,Stay The Night,new,,,,,45319,FALSE +Zedd,Stay the Night feat Hayley Williams,existing,,,,,,FALSE +Zedd,Stay,new,,,,,52981,FALSE +Zedd,The Middle,new,,,,,55191,FALSE +Zero 7,Destiny,new,,,,,79882,FALSE +Zero 7,In the Waiting Line,new,,,,,23047,FALSE +Ziggy Marley,Concrete Jungle (Live Arrangement),existing,,,,,,FALSE +Ziggy Marley,Drive,existing,,,,,,FALSE +Ziggy Marley And The Melody Makers,Conscious Party,existing,,,,,,FALSE +Ziggy Marley And The Melody Makers,Look Who's Dancing,existing,,,,,,FALSE +Ziggy Marley And The Melody Makers,One Bright Day,existing,,,,,,FALSE +k.d. lang,Constant Craving,new,K.D. Lang,,,,11261,FALSE +k.d. lang,Miss Chatelaine,new,K.D. Lang,,,,43612,FALSE +will.i.am,Feelin' Myself,new,Will.I.Am,,,,46159,FALSE +will.i.am,It's My Birthday,new,Will.I.Am,,,,47217,FALSE +will.i.am,Scream And Shout,existing,Will.I.Am,,,,,FALSE +will.i.am,Thatpower,existing,Will.I.Am,,,,,FALSE +will.i.am,This Is Love,new,Will.I.Am,,,,40704,FALSE +A Star is Born,Out of Time,new,,,,,56676,FALSE +Alan Jackson,A Woman's Love,new,,,,,20581,FALSE +Alejandro Fernandez,Si Tu Supieras,new,,,,,75486,FALSE +Amy Grant,Have Yourself A Merry Little Christmas,new,,,,,54258,FALSE +Antonio Carlos Jobim,Chega De Saudade,new,,,,,36812,FALSE +Antonio Carlos Jobim,Quiet Nights of Quiet Stars (Corcovado),new,,,,,30821,FALSE +Antonio Carlos Jobim,Desafinado,new,,,,,25706,FALSE +Antonio Carlos Jobim,Meditation (Meditacao),new,,,,,55647,FALSE +Antonio Carlos Jobim,Triste,new,,,,,61166,FALSE +Antonio Carlos Jobim,Wave,new,,,,,38714,FALSE +Antonio Vivaldi,"The Four Seasons, Op. 8 La Primavera ""Spring"": I. Allegro",new,,,,,65041,FALSE +Arcade Fire,The Suburbs,new,,,,,75835,FALSE +Aretha Franklin,Amazing Grace,new,,,,,31376,FALSE +bbno$,edamame,new,,,,,67822,FALSE +bbno$,it boy,new,,,,,82920,FALSE +bbno$,Lalala,new,,,,,75119,FALSE +Billy Squier,My Kinda Lover,new,,,,,63062,FALSE +Bob Wills & His Texas Playboys,Take Me Back to Tulsa,new,,,,,75427,FALSE +Booker T. & The MG's,Green Onions,new,,,,,29153,FALSE +Bow Wow Wow,I Want Candy,new,,,,,75977,FALSE +BOYS LIKE GIRLS,Thunder,new,,,,,84387,FALSE +BOYS LIKE GIRLS,Two Is Better Than One,new,,,,,27108,FALSE +Brad Paisley,Waitin' On a Woman,new,,,,,24648,FALSE +Buddy Holly,Everyday,new,,,,,28017,FALSE +Cheap Trick,She's Tight,new,,,,,70320,FALSE +Christmas Carol,O Little Town of Bethlehem (slow version),new,,,,,24889,FALSE +Chuck Berry,Maybellene,new,,,,,7151,FALSE +Chuck Berry,"Memphis, Tennessee",new,,,,,34713,FALSE +Chuck Mangione,Feels So Good,new,,,,,66717,FALSE +Colbie Caillat,Fallin' For You,new,,,,,23614,FALSE +Coldplay,Don't Panic,new,,,,,42216,FALSE +Cole Porter,In the Still of the Night,new,,,,,27634,FALSE +Cole Porter,Just One of Those Things,new,,,,,28951,FALSE +Cole Porter,Let's Do It Let's Fall In Love,new,,,,,29536,FALSE +Cole Porter,Love For Sale,new,,,,,29665,FALSE +Cole Porter,Night and Day,new,,,,,27647,FALSE +Cole Porter,What Is This Thing Called Love,new,,,,,41050,FALSE +Cole Porter,You're the Top,new,,,,,27682,FALSE +Daft Punk,Da Funk,new,,,,,58504,FALSE +David Bowie,Ashes to Ashes,new,,,,,12735,FALSE +David Bowie,Diamond Dogs,new,,,,,44982,FALSE +David Gilmour,5 A.M.,new,,,,,50054,FALSE +David Nail,Red Light,new,,,,,22705,FALSE +Deep Blue Something,Breakfast At Tiffany's,new,,,,,13164,FALSE +Def Leppard,"Mirror, Mirror (Look Into My Eyes)",new,,,,,84607,FALSE +Dierks Bentley,Every Mile a Memory,new,,,,,15533,FALSE +Django Reinhardt,Les yeux noirs,new,,,,,64910,FALSE +Django Reinhardt,Nuages,new,,,,,66594,FALSE +Duane Eddy,Peter Gunn,new,,,,,62927,FALSE +Eagle-Eye Cherry,Save Tonight,new,,,,,9193,FALSE +"Earth, Wind & Fire",Boogie Wonderland,new,,,,,12681,FALSE +Eddie Cochran,Summertime Blues,new,,,,,13678,FALSE +Elvis Presley,(You're So Square) Baby I Don't Care,new,,,,,10856,FALSE +"Emerson, Lake & Palmer",Fanfare for the Common Man,new,,,,,65468,FALSE +Eric Johnson,Manhattan,new,,,,,74495,FALSE +Fergie,M.I.L.F. $,new,,,,,51563,FALSE +Gene Chandler,Duke of Earl,new,,,,,30858,FALSE +Genesis,Firth of Fifth,new,,,,,63850,FALSE +George Benson,Breezin',new,,,,,29364,FALSE +Greta Van Fleet,Light My Love,new,,,,,71018,FALSE +"Hank Williams, Sr.",Jambalaya (On The Bayou),new,,,,,20062,FALSE +Hannah Montana,The Climb,new,,,,,22241,FALSE +Harry Belafonte,Day-O (The Banana Boat Song),new,,,,,14519,FALSE +Harry Nilsson,Coconut,new,,,,,11054,FALSE +Henry Mancini,Peter Gunn,new,,,,,31992,FALSE +Herbie Hancock,Cantaloupe Island,new,,,,,72200,FALSE +Herbie Hancock,Watermelon Man,new,,,,,76923,FALSE +Iggy Pop,The Passenger,new,,,,,13304,FALSE +Iron Maiden,Flight of Icarus,new,,,,,61303,FALSE +Jace Everett,Bad Things,new,,,,,25625,FALSE +James Bond,James Bond Theme,new,,,,,31496,FALSE +Janet Jackson,Rhythm Nation,new,,,,,18080,FALSE +Jazz Standards,All of Me,new,,,,,81557,FALSE +Jazz Standards,All the Things You Are,new,,,,,81558,FALSE +Jazz Standards,Autumn Leaves,new,,,,,81560,FALSE +Jazz Standards,Blue Bossa,new,,,,,81556,FALSE +Jazz Standards,Donna Lee,new,,,,,81564,FALSE +Jazz Standards,Misty,new,,,,,81562,FALSE +Jazz Standards,Stella by Starlight,new,,,,,81559,FALSE +Jazz Standards,Summertime,new,,,,,81563,FALSE +Jazz Standards,The Girl from Ipanema,new,,,,,81561,FALSE +Jazz Standards,There Will Never Be Another You,new,,,,,81385,FALSE +Jazzy Christmas,Auld Lang Syne,new,,,,,24425,FALSE +Jazzy Christmas,Blue Christmas,new,,,,,34800,FALSE +Jazzy Christmas,Deck the Halls,new,,,,,34395,FALSE +Jazzy Christmas,Dradel (The Dradel Song),new,,,,,24720,FALSE +Jazzy Christmas,Feliz Navidad,new,,,,,24442,FALSE +Jazzy Christmas,Frosty the Snowman (Instrumental),new,,,,,34801,FALSE +Jazzy Christmas,Greensleeves,new,,,,,34804,FALSE +Jazzy Christmas,"Happy Chanukah, My Friend",new,,,,,24449,FALSE +Jazzy Christmas,Have Yourself a Merry Little Christmas (instrumental),new,,,,,34733,FALSE +Jazzy Christmas,I'll Be Home for Christmas (instrumental),new,,,,,34802,FALSE +Jazzy Christmas,Jingle Bells (instrumental),new,,,,,24540,FALSE +Jazzy Christmas,Joy to the World,new,,,,,24541,FALSE +Jazzy Christmas,Kwanza Song,new,,,,,24543,FALSE +Jazzy Christmas,Let It Snow! Let It Snow! Let It Snow!,new,,,,,24763,FALSE +Jazzy Christmas,Little Drummer Boy,new,,,,,34796,FALSE +Jazzy Christmas,My Favorite Things,new,,,,,24561,FALSE +Jazzy Christmas,"Rudolph, the Red Nosed Reindeer",new,,,,,34799,FALSE +Jazzy Christmas,Santa Claus Is Comin' to Town (Instrumental),new,,,,,34798,FALSE +Jazzy Christmas,Silent Night,new,,,,,24582,FALSE +Jazzy Christmas,Sleigh Ride,new,,,,,34803,FALSE +Jazzy Christmas,The Christmas Song (Chestnuts Roasting),new,,,,,24426,FALSE +Jazzy Christmas,Twelve Days of Christmas,new,,,,,34396,FALSE +Jazzy Christmas,We Wish You a Merry Christmas,new,,,,,34397,FALSE +Jazzy Christmas,White Christmas,new,,,,,34732,FALSE +Jazzy Christmas,Winter Wonderland,new,,,,,24660,FALSE +Jeff Beck,Beck's Bolero,new,,,,,73360,FALSE +Jeff Beck,Cause We've Ended as Lovers,new,,,,,64490,FALSE +Jeff Beck,Freeway Jam,new,,,,,67863,FALSE +Jeff Beck,Nessun Dorma,new,,,,,73864,FALSE +Jimmy Dean,Big Bad John,new,,,,,14819,FALSE +Joan Osborne,One Of Us,new,,,,,10822,FALSE +Joe Satriani,"Always with Me, Always with You",new,,,,,58709,FALSE +Joe Satriani,Circles,new,,,,,72290,FALSE +Joe Satriani,Cryin',new,,,,,76182,FALSE +Joe Satriani,Flying in a Blue Dream,new,,,,,71520,FALSE +Joe Satriani,If I Could Fly,new,,,,,70493,FALSE +Joe Satriani,Love Thing,new,,,,,63755,FALSE +Joe Satriani,Rubina,new,,,,,65052,FALSE +Joe Satriani,Satch Boogie,new,,,,,58407,FALSE +Joe Satriani,Summer Song,new,,,,,62967,FALSE +Joe Satriani,Surfing with the Alien,new,,,,,71036,FALSE +Joe Satriani,War,new,,,,,65151,FALSE +John Mayer,Who Says,new,,,,,25594,FALSE +John Mellencamp,Wild Night,new,,,,,11414,FALSE +Johnny Horton,Battle Of New Orleans,new,,,,,9812,FALSE +Johnny Rivers,Secret Agent Man,new,,,,,32865,FALSE +Jonathan Edwards,Sunshine,new,,,,,18315,FALSE +Josh Turner,Firecracker,new,,,,,21050,FALSE +Katy Perry,Thinking of You,new,,,,,21800,FALSE +Keith Urban,Making Memories Of Us,new,,,,,16449,FALSE +Kings of Leon,The Bucket,new,,,,,16496,FALSE +Led Zeppelin,Moby Dick,new,,,,,66598,FALSE +Led Zeppelin,Trampled Under Foot,new,,,,,58446,FALSE +Lindsey Buckingham,Holiday Road - National Lampoon's Vacation,new,,,,,29156,FALSE +Link Wray & The Wraymen,Rumble,new,,,,,29102,FALSE +Luke Bryan,Drink A Beer,new,,,,,45595,FALSE +MARINA,Oh No!,new,,,,,31895,FALSE +Marty Robbins,Big Iron,new,,,,,18863,FALSE +Matt Nathanson,Come On Get Higher,new,,,,,22664,FALSE +Men At Work,Overkill,new,,,,,14085,FALSE +Metallica,Welcome Home (Sanitarium),new,,,,,60331,FALSE +Michael Jackson,The Girl Is Mine (with Paul McCartney),new,,,,,6990,FALSE +Michael Penn,No Myth,new,,,,,70383,FALSE +Midland,Drinkin' Problem,new,,,,,52859,FALSE +Miley Cyrus,7 Things,new,,,,,20091,FALSE +Miranda Lambert,New Strings,new,,,,,22386,FALSE +Miranda Lambert,Only Prettier,new,,,,,28285,FALSE +My Chemical Romance,Desolation Row,new,,,,,22224,FALSE +My Chemical Romance,I Don't Love You,new,,,,,11907,FALSE +Nancy Sinatra,Bang Bang (My Baby Shot Me Down),new,,,,,30836,FALSE +Norman Greenbaum,Spirit In The Sky,new,,,,,7530,FALSE +Oliver Anthony,Rich Men North of Richmond,new,,,,,76556,FALSE +Osborne Brothers,Rocky Top,new,,,,,19110,FALSE +Ozzy Osbourne,Mr. Crowley,new,,,,,19103,FALSE +Paul McCartney & Wings,Mrs Vandebilt,new,,,,,68736,FALSE +Peter Schilling,Major Tom (Coming Home),new,,,,,57261,FALSE +Pink Floyd,Any Colour You Like,new,,,,,48635,FALSE +Pink Floyd,Is There Anybody Out There?,new,,,,,38984,FALSE +Pink Floyd,On the Run,new,,,,,67417,FALSE +Pink Floyd,One of These Days,new,,,,,48552,FALSE +Pink Floyd,Signs of Life,new,,,,,64076,FALSE +Porcupine Tree,The Sound Of Muzak,new,,,,,73755,FALSE +Ray Charles,Hit the Road Jack,new,,,,,6497,FALSE +Roy Orbison,Crying,new,,,,,18754,FALSE +Rush,La villa Strangiato,new,,,,,66360,FALSE +Rush,YYZ,new,,,,,64813,FALSE +Sam Cooke,Wonderful World,new,,,,,7672,FALSE +Santana,El Farol,new,,,,,60969,FALSE +Santana,Flor d'Luna (Moonflower),new,,,,,45493,FALSE +Secondhand Serenade,Fall For You,new,,,,,21523,FALSE +Snow Patrol,You Could Be Happy,new,,,,,26581,FALSE +Squirrel Nut Zippers,Hell,new,,,,,35076,FALSE +Stan Getz,Desafinado,new,,,,,25740,FALSE +Stevie Ray Vaughan,Lenny,new,,,,,65021,FALSE +T. Rex,Get It On,new,,,,,20140,FALSE +Taylor Swift,Back to December,new,,,,,34357,FALSE +Taylor Swift,Fifteen,new,,,,,22568,FALSE +Taylor Swift,Look What You Made Me Do,new,,,,,54013,FALSE +Taylor Swift,Out Of The Woods,new,,,,,47852,FALSE +Taylor Swift,The Best Day,new,,,,,23883,FALSE +Taylor Swift,Tim McGraw,new,,,,,17161,FALSE +Taylor Swift,We Are Never Ever Getting Back Together,new,,,,,41537,FALSE +Taylor Swift,White Horse,new,,,,,21563,FALSE +Tedeschi Trucks Band,Anyhow,new,,,,,78425,FALSE +The Allman Brothers Band,In Memory of Elizabeth Reed (live at Fillmore East),new,,,,,68279,FALSE +The Beatles,Act Naturally,new,,,,,25842,FALSE +The Beatles,Girl,new,,,,,18044,FALSE +The Beatles,Tomorrow Never Knows,new,,,,,34765,FALSE +The Clash,The Guns of Brixton,new,,,,,72480,FALSE +The Doors,The Crystal Ship,new,,,,,9840,FALSE +The Fray,Over My Head (Cable Car),new,,,,,15807,FALSE +The Human League,Human,new,,,,,61809,FALSE +The Kingsmen,Louie Louie,new,,,,,14037,FALSE +The Kingston Trio,Tom Dooley,new,,,,,10562,FALSE +The Kooks,Shine On,new,,,,,19871,FALSE +The Moldy Peaches,Anyone Else But You,new,,,,,65067,FALSE +The Rolling Stones,Emotional Rescue,new,,,,,35857,FALSE +The Spinners,The Rubberband Man,new,,,,,52436,FALSE +The Surfaris,Wipe Out,new,,,,,35913,FALSE +The Ventures,Pipeline,new,,,,,31299,FALSE +Train,50 Ways to Say Goodbye,new,,,,,40929,FALSE +Train,Marry Me,new,,,,,36434,FALSE +Trisha Yearwood,"Heaven, Heartache and the Power of Love",new,,,,,25669,FALSE +UB40,Red Red Wine,new,,,,,5450,FALSE +Van Halen,Eruption,new,,,,,74101,FALSE +Vangelis,Chariots of Fire,new,,,,,41082,FALSE +Vulfpeck,Dean Town,new,,,,,80516,FALSE +Wang Chung,Dance Hall Days,new,,,,,42309,FALSE +We The Kings,Check Yes Juliet,new,,,,,71828,FALSE +Weezer,My Name Is Jonas,new,,,,,62158,FALSE +Weezer,Surf Wax America,new,,,,,78659,FALSE +Wynton Marsalis,Blues,new,,,,,28871,FALSE +Yes,Close to the Edge,new,,,,,72436,FALSE +ZZ Top,Dust My Broom,new,,,,,65285,FALSE diff --git a/lambda/jamtrack-importer/lambdas/unzipper/test_import.sh b/lambda/jamtrack-importer/lambdas/unzipper/test_import.sh new file mode 100755 index 000000000..4e12e0cf1 --- /dev/null +++ b/lambda/jamtrack-importer/lambdas/unzipper/test_import.sh @@ -0,0 +1 @@ +bundle exec ruby ../../main.rb diff --git a/lambda/jamtrack-importer/locals3/pom.xml b/lambda/jamtrack-importer/locals3/pom.xml new file mode 100644 index 000000000..6a7727a3e --- /dev/null +++ b/lambda/jamtrack-importer/locals3/pom.xml @@ -0,0 +1,46 @@ + + + 4.0.0 + + com.example + local-s3-server + 1.0-SNAPSHOT + jar + + + + io.github.robothy + local-s3-rest + 1.19 + + + com.amazonaws + aws-java-sdk + 1.12.780 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + + + + org.codehaus.mojo + exec-maven-plugin + 3.1.0 + + Main + + + + + + diff --git a/lambda/jamtrack-importer/locals3/scripts/compile_and_run b/lambda/jamtrack-importer/locals3/scripts/compile_and_run new file mode 100755 index 000000000..767f506e7 --- /dev/null +++ b/lambda/jamtrack-importer/locals3/scripts/compile_and_run @@ -0,0 +1,2 @@ +#!/bin/bash +mvn compile exec:java diff --git a/lambda/jamtrack-importer/locals3/src/main/java/Main.java b/lambda/jamtrack-importer/locals3/src/main/java/Main.java new file mode 100644 index 000000000..65299c3c4 --- /dev/null +++ b/lambda/jamtrack-importer/locals3/src/main/java/Main.java @@ -0,0 +1,99 @@ +import com.robothy.s3.rest.LocalS3; +import com.robothy.s3.rest.bootstrap.LocalS3Mode; +import com.amazonaws.services.s3.*; +import com.amazonaws.*; +import com.amazonaws.client.builder.*; +import com.amazonaws.services.s3.model.*; +import java.io.*; + +public class Main { + public static void main(String[] args) { + LocalS3 localS3 = LocalS3.builder() + .port(19090) + .mode(LocalS3Mode.PERSISTENCE) + .dataPath("./local-s3") + .build(); + + Runtime.getRuntime().addShutdownHook(new Thread(() -> { + System.out.println("Shutting down Local S3 server..."); + localS3.shutdown(); + System.out.println("Local S3 server shut down gracefully."); + })); + + localS3.start(); + System.out.println("Local S3 server started on port 19090"); + + int port = 19090; + AmazonS3 s3 = AmazonS3ClientBuilder.standard() + .enablePathStyleAccess() + .withClientConfiguration(new ClientConfiguration().withClientExecutionTimeout(0)) + .withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration( + "http://localhost:" + port, "local" + )).build(); + + String bucketName = "jamkazam-tency-uploads"; + + try { + // Check if the bucket exists + if (s3.doesBucketExistV2(bucketName)) { + System.out.println("Bucket already exists: " + bucketName); + } else { + // Create the bucket + Bucket bucket = s3.createBucket(bucketName); + System.out.println("Bucket created successfully: " + bucket.getName()); + } + } catch (Exception e) { + System.err.println("Error occurred while creating or checking the bucket: " + e.getMessage()); + e.printStackTrace(); + } + + String filePath = "ace-of-base_the-sign_10111.zip"; +// String filePath = "tester.file"; + String s3Key = filePath; + + try { + // Check if the object already exists + boolean objectExists = doesObjectExist(s3, bucketName, s3Key); + if (objectExists) { + System.out.println("Object already exists in S3: " + s3Key); + } else { + // Upload the file + File file = new File(filePath); + if (!file.exists()) { + System.out.println("File not found: " + filePath); + return; + } + + PutObjectRequest request = new PutObjectRequest(bucketName, s3Key, file); + System.out.println("Uploading file " + s3Key); + s3.putObject(request); + + System.out.println("File uploaded successfully to S3: " + s3Key); + } + } catch (Exception e) { + System.err.println("Error occurred while checking or uploading to S3: " + e.getMessage()); + e.printStackTrace(); + } + + // Keep the main thread alive to avoid premature termination + try { + Thread.currentThread().join(); + } catch (InterruptedException e) { + System.err.println("Main thread interrupted: " + e.getMessage()); + } + } + + private static boolean doesObjectExist(AmazonS3 s3, String bucketName, String objectKey) { + try { + s3.getObjectMetadata(new GetObjectMetadataRequest(bucketName, objectKey)); + return true; // Object exists + } catch (com.amazonaws.services.s3.model.AmazonS3Exception e) { + if (e.getStatusCode() == 404) { + return false; // Object does not exist + } else { + throw e; // Rethrow for other errors + } + } + } +} + diff --git a/lambda/jamtrack-importer/locals3/tester.file b/lambda/jamtrack-importer/locals3/tester.file new file mode 100644 index 000000000..e69de29bb diff --git a/lambda/jamtrack-importer/main.rb b/lambda/jamtrack-importer/main.rb new file mode 100644 index 000000000..fd5535518 --- /dev/null +++ b/lambda/jamtrack-importer/main.rb @@ -0,0 +1,62 @@ + +module JamRuby +end + +require_relative "./lambdas/unzipper/app.rb" + + +# mock event from Lambda / AWS +event = {} +event["invocationId"] = "123" +event["invocationSchemaVersion"] = "2.0" +event["job"] = {} +event["job"]["userArguments"] = {} +event["job"]["userArguments"]["mode"] = "create-jamtrack" +event["tasks"] = [{ "taskId" => "123", "s3Key" => "mapped/Ace of Base - The Sign - 10111/manifest.txt", "s3BucketName" => "jamkazam-tency-202410-test" }] +#event["tasks"] = [{ "taskId" => "123", "s3Key" => "mapped/Ace of Base - The Sign - 10111/manifest.txt", "s3BucketName" => "jamkazam-tency-202410-test" }] + + + +#s3_manager = JamRuby::S3Manager.new('jamkazam-tency-uploads', "a", "b", "http://localhost:19090") +#manifest = "/Users/seth/workspace/tency/scripts/manifests/ace-of-base_the-sign_10111/manifest.txt" +#tmp = "/Users/seth/workspace/jam-cloud/lambda/jamtrack-importer/tmp" +#tence_uploads_manager, working_dir, manifest_name, manifest_path +# { +# "Environment": "dev", +# "TencyZipsBucket": "jamkazam-tency-uploads-test", +# "TencyJamTracksBucket": "jamkazam-tency-202410-test", +# "EfsId": "fs-0c6e24466df585bff", +# "VpcId": "vpc-040f8fef0c9700b58", +# "SubnetIds": "subnet-0998ecced5ad2ed89", +# "SgIds": "sg-02cc6ee5382e2c0ce,sg-0ff99640a2871ac4c", +# "MountPath": "/tmp", +# "JamTrackContainerPath": "jamtrack-lambda:1.0.0", +# "DbName": "jam", +# "DbHost": "example.com", +# "DbPass": "seth", +# "DbUser": "seth" +# } + +# Parse JSON into a Ruby hash +config = File.open("../../env/local.json") do |file| + JSON.load(file) +end +# Load each key-value pair into ENV +config.each do |key, value| + puts "KEY #{key} VALUE #{value}" + ENV[key] = value +end + +ENV["AWS_BUCKET"] = "jamkazam-dev" +ENV["AWS_BUCKET_PUBLIC"] = "jamkazam-dev-public" +ENV["DB_HOST"] = nil +ENV["DB_USER"] = "seth" +ENV["DB_NAME"] = "jam" +ENV["END_ON_FAIL"] = "1" +ENV["TENCY_ZIPS_BUCKET"] = "jamkazam-tency-uploads-test" +ENV["TENCY_JAMTRACKS_BUCKET"] = "jamkazam-tency-202410-test" +ENV["FFMPEG_PATH"] = "/Users/seth/workspace/jkclient-osx-build/ffmpeg/ffmpeg" +ENV["FFMPEG_PATH_MP3"] = "/Users/seth/bin/ffmpeg" +ENV["JMEP_DIR"] = "/Users/seth/workspace/jmep" +lambda_handler(event:event, context:nil) + diff --git a/lambda/jamtrack-importer/main_unzip.rb b/lambda/jamtrack-importer/main_unzip.rb new file mode 100644 index 000000000..8a05c5cc6 --- /dev/null +++ b/lambda/jamtrack-importer/main_unzip.rb @@ -0,0 +1,21 @@ + +module JamRuby +end + +require "./lambda_function" + +# mock event from Lambda / AWS +event = {} +event["invocationId"] = "123" +event["invocationSchemaVersion"] = "1.0" +event["tasks"] = [{ "taskId" => "123", "s3Key" => "manifests/ace-of-base_the-sign_10111/manifest", "s3BucketArn" => "arn:aws:s3:::test-bucket" }] + +importer = JamRuby::JamTrackLambdaImporter.new + +ENV["TENCY_ZIPS_BUCKET"] = "jamkazam-tency-uploads-test" + +s3_manager = JamRuby::S3Manager.new(ENV["TENCY_ZIPS_BUCKET"] , "a", "b", "http://localhost:19090") +manifest = "/Users/seth/workspace/tency/scripts/manifests/ace-of-base_the-sign_10111/manifest.txt" +tmp = "/Users/seth/workspace/jam-cloud/lambda/jamtrack-importer/tmp" +puts importer.tency_unzipper(s3_manager, manifest,tmp) + diff --git a/lambda/jamtrack-importer/manifests/import/ace-of-base-test.csv b/lambda/jamtrack-importer/manifests/import/ace-of-base-test.csv new file mode 100644 index 000000000..c40e279d2 --- /dev/null +++ b/lambda/jamtrack-importer/manifests/import/ace-of-base-test.csv @@ -0,0 +1 @@ +jamkazam-tency-202410-test,mapped/Ace of Base - The Sign - 10111/manifest.txt diff --git a/lambda/jamtrack-importer/mapping.csv b/lambda/jamtrack-importer/mapping.csv new file mode 100644 index 000000000..5cd35d685 --- /dev/null +++ b/lambda/jamtrack-importer/mapping.csv @@ -0,0 +1,9105 @@ +count,track_name,Instrument,Disambiguation String +4893,click.wav,Clicktrack, +3873,drums.wav,Drums, +3797,bass.wav,Bass Guitar, +2508,bv.wav,Voice,Backing +1657,piano.wav,Piano, +1654,ld.wav,Voice,Lead +1004,strings.wav,Orchestra,Strings +810,lv.wav,Voice,Lead +764,perc.wav,Percussion, +672,organ.wav,Keyboard,Organ +666,fx.wav,Computer,FX +564,synth.wav,Keyboard,Synth +459,pad.wav,Keyboard,Pad +414,ag.wav,Acoustic Guitar, +382,s_drums.wav,Drums, +380,percussion.wav,Percussion, +367,voc.wav,Voice, +351,s_bass.wav,Bass Guitar, +321,eg.wav,Electric Guitar, +306,bkgnds.wav,Computer,Backgrounds +288,precount.wav,Computer,Count In +270,brass.wav,Other,Brass +255,s_bv.wav,Voice,Backing +234,gtr.wav,Electric Guitar, +223,eg 2.wav,Electric Guitar,Electric 2 +216,eg 1.wav,Electric Guitar,Electric 1 +208,gtr 1.wav,Electric Guitar,Electric 1 +205,lead vocal.wav,Voice,Lead +192,s_lv.wav,Voice,Lead +184,gtr 2.wav,Electric Guitar,Electric 2 +183,synth bass.wav,Keyboard,Synth Bass +183,synth 1.wav,Keyboard,Synth 1 +179,synth 2.wav,Keyboard,Synth 2 +174,sfx.wav,Computer,SFX +170,guitar.wav,Electric Guitar, +170,gtr 3.wav,Electric Guitar,Electric 3 +167,percussions.wav,Percussion, +166,pads.wav,Keyboard,Pad +166,lead vox.wav,Voice,Lead +161,eg 3.wav,Electric Guitar,Electric 3 +156,ld-adlib.wav,Voice,Lead Rap +151,rhodes.wav,Keyboard,Rhodes +149,tambourine.wav,Percussion,Tambourine +148,guitar 2.wav,Electric Guitar,Electric 2 +146,synths.wav,Keyboard,Synths +142,s_piano.wav,Piano, +140,b vox only.wav,Voice,Backing +139,guitar 1.wav,Electric Guitar,Electric 1 +134,el piano.wav,Keyboard,Electric Piano +134,bells.wav,Other,Bells +133,horns.wav,Other,Horns +131,flute.wav,Flute, +124,keys.wav,Keyboard, +123,ep.wav,Keyboard,Electric Piano +119,claps.wav,Other,Claps +113,gtr 1 left.wav,Electric Guitar,Electric 1 Left +113,eg_r.wav,Electric Guitar,Right +113,eg_l.wav,Electric Guitar,Left +111,percs.wav,Percussion, +105,sax.wav,Saxophone, +101,eg 4.wav,Electric Guitar,Electric 4 +100,gtr 2 right.wav,Electric Guitar,Electric 2 Right +98,s_perc.wav,Percussion, +96,synth pad.wav,Keyboard,Synth Pad +96,banjo.wav,Banjo, +95,gtr 4.wav,Electric Guitar,Electric 4 +93,synth2.wav,Keyboard,Synth 2 +90,bgv.wav,Voice,Backing +89,synth lead.wav,Keyboard,Synth Lead +88,guitar 3.wav,Electric Guitar,Electric 3 +86,s_fx.wav,Computer,FX +86,gtr1.wav,Electric Guitar,Electric 1 +85,synth 3.wav,Keyboard,Synth 3 +84,gtr2.wav,Electric Guitar,Electric 2 +83,shaker.wav,Percussion,Shaker +83,hammond.wav,Keyboard,Hammond +81,s_gtr1.wav,Electric Guitar,Electric 1 +81,backing vocals.wav,Voice,Backing +78,s_gtr2.wav,Electric Guitar,Electric 2 +78,percu.wav,Percussion, +76,harp.wav,Harp, +76,drum.wav,Drums, +76,bg vocals.wav,Voice,Backing +75,synth1.wav,Keyboard,Synth 1 +75,s_ld.wav,Voice,Lead +74,bvox only.wav,Voice,Backing +72,s_ag.wav,Acoustic Guitar, +71,steel.wav,Electric Guitar,Steel +71,acoustic guitar.wav,Acoustic Guitar, +68,fiddle.wav,Violin,Fiddle +67,synth 01.wav,Keyboard,Synth 1 +66,backing_vocals.wav,Voice,Backing +65,lead.wav,Voice,Lead +65,harmonica.wav,Harmonica, +64,synth 02.wav,Keyboard,Synth 2 +64,s_pad.wav,Keyboard,Pad +63,s_organ.wav,Keyboard,Organ +63,mandolin.wav,Mandolin, +62,s_strings.wav,Orchestra,Strings +62,eglead.wav,Electric Guitar,Lead +62,eg solo.wav,Electric Guitar,Solo +58,synth strings.wav,Keyboard,Synth Strings +56,s_synth.wav,Keyboard,Synth +56,lead_vocals.wav,Voice,Lead +56,drum kit.wav,Drums, +55,trumpet.wav,Trumpet, +55,s_percussion.wav,Percussion, +54,s_eg.wav,Electric Guitar, +52,violin.wav,Violin, +52,eg 5.wav,Electric Guitar,Electric 5 +50,s_gtr3.wav,Electric Guitar,Electric 3 +50,gtr3.wav,Electric Guitar,Electric 3 +50,fxs.wav,Computer,FX +49,synth3.wav,Keyboard,Synth 3 +49,lv-adlib.wav,Voice,Lead Rap +49,gtr 5.wav,Electric Guitar,Electric 5 +47,synthpad.wav,Keyboard,Synth Pad +47,e piano.wav,Keyboard,Electric Piano +47,clavinet.wav,Keyboard,Clavinet +45,leadgt.wav,Electric Guitar,Lead +45,adds.wav,Electric Guitar,Adds +44,gtr 2 left.wav,Electric Guitar,Electric 2 Left +44,bass 2.wav,Bass Guitar,Bass 2 +43,noise.wav,Computer,Noise +43,epiano.wav,Keyboard,Electric Piano +42,guitar 4.wav,Electric Guitar,Electric 4 +41,scratch.wav,Other,Scratch +40,bass 1.wav,Bass Guitar,Bass 1 +39,gtr 3 right.wav,Electric Guitar,Electric 3 Right +39,clarinet.wav,Clarinet, +39,arp.wav,Keyboard,Arpeggio +38,synth brass.wav,Keyboard,Synth Brass +38,eg(lead).wav,Electric Guitar,Lead +38,acgtr.wav,Acoustic Guitar, +37,pluck.wav,Other,Pluck +37,guits.wav,Electric Guitar,Guitars +37,electric guitar.wav,Electric Guitar, +37,ac gtr.wav,Acoustic Guitar, +36,lvocal.wav,Voice,Lead +36,glockenspiel.wav,Glockenspiel, +35,synthbass.wav,Keyboard,Synth Bass +35,oboe.wav,Oboe, +35,flutes.wav,Flute, +35,eguit.wav,Electric Guitar, +35,congas.wav,Percussion,Congas +34,french horns.wav,French Horn, +34,egclean.wav,Electric Guitar,Clean +34,ag 2.wav,Acoustic Guitar,Acoustic 2 +34,808.wav,Keyboard,808 +33,voc 1.wav,Voice,Lead +33,marimba.wav,Percussion,Marimba +33,cello.wav,Cello, +33,bvocal.wav,Voice,Backing +33,acoustic.wav,Acoustic Guitar, +32,tamb.wav,Percussion,Tambourine +32,guitars 2.wav,Electric Guitar,Guitars 2 +32,guitars 1.wav,Electric Guitar,Guitars 1 +32,eg dist.wav,Electric Guitar,Distorted +32,eg 02.wav,Electric Guitar,Electric 2 +32,eg 01.wav,Electric Guitar,Electric 1 +32,choir.wav,Voice,Choir +31,whistle.wav,Other,Whistle +31,vibes.wav,Keyboard,Vibes +31,synth 4.wav,Keyboard,Synth 4 +31,solo eg.wav,Electric Guitar,Solo +31,electric guitar 2.wav,Electric Guitar,Electric 2 +31,eg2.wav,Electric Guitar,Electric 2 +31,bvs.wav,Voice,Backing +31,ag 1.wav,Acoustic Guitar,Acoustic 1 +30,voc 2.wav,Voice,Voice 2 +30,synthlead.wav,Keyboard,Synth Lead +30,eg clean.wav,Electric Guitar,Clean +30,drake.wav,Voice,Drake +30,acougt.wav,Acoustic Guitar, +29,synth 03.wav,Keyboard,Synth 3 +29,s_b.v.wav,Voice,Backing +29,rhygt.wav,Electric Guitar,Rhythm +29,gtr 3 left.wav,Electric Guitar,Electric 3 Left +29,electric guitar 1.wav,Electric Guitar,Electric 1 +28,synth choir.wav,Keyboard,Synth Choir +28,s_synth bass.wav,Keyboard,Synth Bass +28,mix synths.wav,Keyboard,Synth Mix +28,gtr 4 right.wav,Electric Guitar,Electric 4 Right +27,string.wav,Orchestra,Strings +27,s_gtr4.wav,Electric Guitar,Electric 4 +27,brasses.wav,Other,Brass +27,accordion.wav,Accordion, +26,guitars 3.wav,Electric Guitar,Electric 3 +26,guit.wav,Electric Guitar, +26,electric piano.wav,Keyboard,Electric Piano +25,mellotron.wav,Keyboard,Mellotron +25,egdisto.wav,Electric Guitar,Distorted +24,percs and fx.wav,Percussion, +24,ld and double.wav,Voice,Lead +24,ld 12.wav,Voice,Lead +24,lap steel.wav,Electric Guitar,Lap Steel +24,eg 6.wav,Electric Guitar,Electric 6 +24,eg 1 left.wav,Electric Guitar,Electric 1 Left +24,dobro.wav,Dobro, +23,solo.wav,Electric Guitar,Solo +23,loop.wav,Computer,Loop +23,leftgtr 1.wav,Electric Guitar,Electric 1 Left +23,glock.wav,Glockenspiel, +23,elgtr 02.wav,Electric Guitar,Electric 2 +23,elgtr 01.wav,Electric Guitar,Electric 1 +23,eguit2.wav,Electric Guitar,Electric 2 +22,trance.wav,Computer,Trance +22,synth guit.wav,Keyboard,Synth Guitar +22,synth arp.wav,Keyboard,Synth Arpeggio +22,gtr4.wav,Electric Guitar,Electric 4 +22,eg lead.wav,Electric Guitar,Lead +22,eg adds.wav,Electric Guitar,Adds +22,brass section.wav,Other,Brass +22,ag_r.wav,Acoustic Guitar,Right +22,ag_l.wav,Acoustic Guitar,Left +21,voc 1b.wav,Voice,Backing +21,trumpets.wav,Trumpet, +21,synth pluck.wav,Keyboard,Synth Pluck +21,sitar.wav,Sitar, +21,s_synth1.wav,Keyboard,Synth 1 +21,s_ep.wav,Keyboard,Electric Piano +21,eguit 1.wav,Electric Guitar,Electric 1 +21,eg l.wav,Electric Guitar,Left +21,eg 2 right.wav,Electric Guitar,Electric 2 Right +21,acoustic_guitar.wav,Acoustic Guitar, +20,synth 5.wav,Keyboard,Synth 5 +20,s_synth2.wav,Keyboard,Synth 2 +20,rightgtr 2.wav,Electric Guitar,Electric 2 Right +20,right eg.wav,Electric Guitar,Right +20,mallets.wav,Percussion,Mallets +20,lead synth.wav,Keyboard,Synth Lead +20,elgtr.wav,Electric Guitar, +20,electric guitar 3.wav,Electric Guitar,Electric 3 +20,eg r.wav,Electric Guitar,Right +20,eg crunch.wav,Electric Guitar,Crunch +20,eg 03.wav,Electric Guitar,Electric 3 +20,double bass.wav,Double Bass, +20,cleangt.wav,Electric Guitar,Clean +20,clav.wav,Keyboard,Clavinet +20,bv2.wav,Voice,Backing 2 +20,bass synth.wav,Keyboard,Synth Bass +20,ag 02.wav,Acoustic Guitar,Acoustic 2 +20,ag 01.wav,Acoustic Guitar,Acoustic 1 +19,vocoder.wav,Vocoder, +19,trombone.wav,Trombone, +19,synths 1.wav,Keyboard,Synth 1 +19,s_sfx.wav,Computer,SFX +19,gtr 6.wav,Electric Guitar,Electric 6 +19,eguit1.wav,Electric Guitar,Electric 1 +19,02_drums.wav,Drums,Drums 2 +18,s_synth keys.wav,Keyboard,Synth Keys +18,precompte.wav,Other, +18,left eg.wav,Electric Guitar,Left +18,guitars 4.wav,Electric Guitar,Electric 4 +18,gtrs.wav,Electric Guitar,Guitars +18,gtr 4 left.wav,Electric Guitar,Electric 4 Left +18,gtr 1 right.wav,Electric Guitar,Electric 1 Right +18,egsolo.wav,Electric Guitar,Solo +18,e guitar 1.wav,Electric Guitar,Electric 1 +18,cowbell.wav,Percussion,Cowbell +18,bell.wav,Keyboard,Synth Bells +18,acc guitar.wav,Acoustic Guitar, +17,synth4.wav,Keyboard,Synth 4 +17,synth keys.wav,Keyboard,Synth +17,synth bells.wav,Keyboard,Synth Bells +17,organ 1.wav,Keyboard,Organ +17,moog.wav,Keyboard,Moog +17,lil wayne.wav,Voice,Lil Wayne +17,lead vocals.wav,Voice,Lead +17,guitar 1 left.wav,Electric Guitar,Electric 1 Left +17,gtr solo.wav,Electric Guitar,Solo +17,gtr 5 right.wav,Electric Guitar,Electric 5 Right +17,disto eg.wav,Electric Guitar,Distorted +16,vocal.wav,Voice,Lead +16,tympani.wav,Timpani, +16,s_gtr.wav,Electric Guitar, +16,s_eg1.wav,Electric Guitar,Electric 1 +16,s_brass.wav,Other,Brass +16,organ 2.wav,Keyboard,Organ 2 +16,key.wav,Keyboard, +16,elegtr1.wav,Electric Guitar,Electric 1 +16,elegtr.wav,Electric Guitar, +16,electric_guitar.wav,Electric Guitar, +16,eguit solo.wav,Electric Guitar,Solo +16,eguit 3.wav,Electric Guitar,Electric 3 +16,eguit 2.wav,Electric Guitar,Electric 2 +16,eg(disto).wav,Electric Guitar,Distorted +16,eg(clean).wav,Electric Guitar,Clean +16,eg arr.wav,Electric Guitar,Arpeggios +16,bg vocals 2.wav,Voice,Backing +15,timpani.wav,Timpani, +15,synths 2.wav,Keyboard,Synth 2 +15,synthbrass.wav,Keyboard,Synth Brass +15,s_electric guitar 2.wav,Electric Guitar,Electric 2 +15,s_eg_l.wav,Electric Guitar,Left +15,s_eg2.wav,Electric Guitar,Electric 2 +15,s_eg 02.wav,Electric Guitar,Electric 2 +15,pizzicato.wav,Keyboard,Pizzicato +15,lv and double.wav,Voice,Lead +15,left gtr 1.wav,Electric Guitar,Electric 1 Left +15,leadsynth.wav,Keyboard,Synth Lead +15,lds.wav,Voice,Lead +15,harpsichord.wav,Keyboard,Harpsichord +15,guitar 5.wav,Electric Guitar,Electric 5 +15,guitar 2 right.wav,Electric Guitar,Electric 2 Right +15,elegtr2.wav,Electric Guitar,Electric 2 +15,el gtr.wav,Electric Guitar, +15,eg c.wav,Electric Guitar, +15,e guitar 2.wav,Electric Guitar,Electric 2 +15,cardi b.wav,Voice,Cardi B +15,brass synth.wav,Keyboard,Synth Brass +15,bg vocals 1.wav,Voice,Backing +15,bassoon.wav,Bassoon, +15,bad bunny.wav,Voice,Bad Bunny +15,ag2.wav,Acoustic Guitar,Acoustic 2 +15,acoustic guitar 2.wav,Acoustic Guitar,Acoustic 2 +15,acoustic guitar 1.wav,Acoustic Guitar,Acoustic 1 +14,wurlitzer.wav,Keyboard,Wurlitzer +14,tuba.wav,Tuba, +14,synthfx.wav,Keyboard,Synth FX +14,synth fx.wav,Keyboard,Synth FX +14,sub bass.wav,Bass Guitar, +14,snoop dogg.wav,Voice,Snoop Dogg +14,s_sax.wav,Saxophone, +14,s_gtr5.wav,Electric Guitar,Electric 5 +14,s_electric guitar 1.wav,Electric Guitar,Electric 1 +14,s_eg3.wav,Electric Guitar,Electric 3 +14,s_eg 01.wav,Electric Guitar,Electric 1 +14,right gtr 2.wav,Electric Guitar,Electric 2 Right +14,female.wav,Voice,Female +14,egcrunch.wav,Electric Guitar,Crunch +14,drivegt.wav,Electric Guitar,Drive +14,basse.wav,Bass Guitar, +14,arr eg.wav,Electric Guitar,Arpeggios +14,acoustic_guitar_steel.wav,Acoustic Guitar,Steel +13,vibraphone.wav,Keyboard,Vibes +13,synth lead 2.wav,Keyboard,Synth Lead 2 +13,snaps.wav,Other,Snaps +13,s_guit.wav,Electric Guitar, +13,s_gtr r.wav,Electric Guitar,Right +13,s_gtr ld.wav,Electric Guitar,Lead +13,s_gtr l.wav,Electric Guitar,Left +13,s_flute.wav,Flute, +13,s_electric guitar.wav,Electric Guitar, +13,s_eg_r.wav,Electric Guitar,Right +13,s_bass synth.wav,Keyboard,Synth Bass +13,s_banjo.wav,Banjo, +13,s_ag2.wav,Acoustic Guitar,Acoustic 2 +13,rhygt_r.wav,Electric Guitar,Rhythm Right +13,rhygt_l.wav,Electric Guitar,Rhythm Left +13,pluck synth.wav,Keyboard,Synth Pluck +13,organs.wav,Keyboard,Organ +13,lead_vocal.wav,Voice,Lead +13,kalimba.wav,Other,Kalimba +13,guitar2.wav,Electric Guitar,Electric 2 +13,eguit3.wav,Electric Guitar,Electric 3 +13,eg3.wav,Electric Guitar,Electric 3 +13,eg 7.wav,Electric Guitar,Electric Guitar 7 +13,eg 04.wav,Electric Guitar,Electric 4 +13,efx.wav,Keyboard,FX +13,clap.wav,Other,Clap +13,bv 2.wav,Voice,Backing 2 +13,addgt.wav,Electric Guitar,Adds +13,acguitar.wav,Acoustic Guitar, +13,2pac.wav,Voice,2Pac +13,01 drums.wav,Drums, +12,voc-adlib.wav,Voice,Rap +12,tubular bells.wav,Keyboard,Tubular Bells +12,synthstrings.wav,Keyboard,Synth Strings +12,s_violin.wav,Violin, +12,s_keys.wav,Keyboard, +12,pre count.wav,Computer,Count In +12,percus.wav,Percussion, +12,perc 1.wav,Percussion,Percussion 1 +12,nicki minaj.wav,Voice,Nicki Minaj +12,male lead.wav,Voice,Male Lead +12,lead guitar.wav,Electric Guitar,Lead +12,lead guit.wav,Electric Guitar,Lead +12,horn.wav,Other,Horns +12,hits.wav,Percussion,Hits +12,hammond organ.wav,Keyboard,Hammond +12,guitars.wav,Electric Guitar,Guitars +12,guitar solo.wav,Electric Guitar,Solo +12,gtr synth.wav,Keyboard,Synth Guitar +12,elec gtr 1.wav,Electric Guitar,Electric 1 +12,eguit 4.wav,Electric Guitar,Electric 4 +12,eg dist 01.wav,Electric Guitar,Distorted 1 +12,eg 2 left.wav,Electric Guitar,Electric 2 Left +12,edrums.wav,Drums,Electronic +12,drumkit.wav,Drums, +12,bv male.wav,Voice,Backing Male +12,bongos.wav,Percussion,Bongos +12,ag 2 right.wav,Acoustic Guitar,Acoustic 2 Right +12,ag 1 left.wav,Acoustic Guitar,Acoustic 1 Left +12,ac guitar.wav,Acoustic Guitar, +11,xylophone.wav,Other,Xylophone +11,upright bass.wav,Double Bass, +11,tpt.wav,Other, +11,synth pads.wav,Keyboard,Synth Pad +11,synth pad 2.wav,Keyboard,Synth Pad 2 +11,synth lead 1.wav,Keyboard,Synth Lead 1 +11,synth guitar.wav,Keyboard,Synth Guitar +11,synth adds.wav,Keyboard,Synth Adds +11,synth 6.wav,Keyboard,Synth 6 +11,strings 1.wav,Orchestra,Strings 1 +11,string section.wav,Orchestra,Strings +11,string ensemble.wav,Orchestra,Strings +11,s_trumpet.wav,Trumpet, +11,s_sub.wav,Other, +11,s_eglead.wav,Electric Guitar,Lead +11,rap lead.wav,Voice,Rap Lead +11,perc 2.wav,Percussion,Percussion 2 +11,male.wav,Voice,Male +11,lap steel guitar.wav,Electric Guitar,Lap Steel +11,gtr 7.wav,Electric Guitar,Electric 7 +11,eminem.wav,Voice,Eminem +11,electric guitar 5.wav,Electric Guitar,Electric 5 +11,electric guitar 4.wav,Electric Guitar,Electric 4 +11,el gtr 2.wav,Electric Guitar,Electric 2 +11,eguit solos.wav,Electric Guitar,Solo +11,egmute.wav,Electric Guitar,Muted +11,eg_r 2.wav,Electric Guitar,Electric Right 2 +11,eg dis.wav,Electric Guitar,Distorted +11,eg clean 01.wav,Electric Guitar,Electric Clean 1 +11,eg 3 left.wav,Electric Guitar,Electric 3 Left +11,eg 1 right.wav,Electric Guitar,Electric 1 Right +11,eg 1 + 2.wav,Electric Guitar, +11,doublebass.wav,Double Bass, +11,clean eg.wav,Electric Guitar,Clean +11,bv female.wav,Voice,Backing Female +11,bv 1.wav,Voice,Backing 1 +11,b.v.wav,Voice,Backing +11,accordeon.wav,Accordion, +11,03_percu.wav,Percussion,Percussion 3 +10,vox.wav,Voice, +10,voicesynth.wav,Keyboard,Synth Voice +10,tambo.wav,Percussion,Tambourine +10,strings 2.wav,Orchestra,Strings 2 +10,saxes.wav,Saxophone, +10,s_synth3.wav,Keyboard,Synth 3 +10,s_ag1.wav,Acoustic Guitar,Acoustic 1 +10,rhythmic eg.wav,Electric Guitar,Rhythm +10,real pedal steel.wav,Electric Guitar,Pedal Steel +10,quavo.wav,Voice,Quavo +10,piano 2.wav,Piano,Piano 2 +10,piano 1.wav,Piano,Piano 1 +10,pad 2.wav,Keyboard,Pad 2 +10,mix keys.wav,Keyboard,Mixed Keys +10,ludacris.wav,Voice,Ludacris +10,ld 2.wav,Voice,Lead 2 +10,lapsteelgt.wav,Electric Guitar,Lap Steel +10,kendrick lamar.wav,Voice,Kendrick Lamar +10,kanye west.wav,Voice,Kanye West +10,gtr5.wav,Electric Guitar,Electric 5 +10,electric_rhythm_guitar_left.wav,Electric Guitar,Rhythm Left +10,electric_rhythm_guitar.wav,Electric Guitar,Rhythm +10,electric_lead_guitar.wav,Electric Guitar,Lead +10,elec gtr.wav,Electric Guitar, +10,elec gtr 2.wav,Electric Guitar,Electric 2 +10,egtr2.wav,Electric Guitar,Electric 2 +10,egslide.wav,Electric Guitar,Slide +10,eg(solo).wav,Electric Guitar,Solo +10,eg dist 03.wav,Electric Guitar,Distorted 3 +10,celeste.wav,Voice,Celeste +10,all bvs.wav,Voice,Backing +10,add synths.wav,Keyboard,Synth Adds +10,acousticguitar.wav,Acoustic Guitar, +10,2.wav,Other, +10,1.wav,Other, +9,woodwinds.wav,Orchestra,Woodwinds +9,windchimes.wav,Percussion,Wind Chimes +9,travis scott.wav,Voice,Travis Scott +9,synthkey.wav,Keyboard,Synth +9,subbass.wav,Bass Guitar,Sub Bass +9,steel drums.wav,Percussion,Steel Drums +9,slide gtr.wav,Electric Guitar,Slide +9,sax solo.wav,Saxophone,Solo +9,s_tambourine.wav,Percussion,Tambourine +9,s_string section.wav,Orchestra,Strings +9,s_mandolin.wav,Mandolin, +9,s_electric piano.wav,Keyboard,Electric Piano +9,s_ag 02.wav,Acoustic Guitar,Acoustic 2 +9,s_ag 01.wav,Acoustic Guitar,Acoustic 1 +9,rhode.wav,Keyboard,Rhodes +9,plucksynth.wav,Keyboard,Synth Pluck +9,plucks.wav,Keyboard,Synth Pluck +9,pluck synths.wav,Keyboard,Synth Pluck +9,organ synth.wav,Keyboard,Organ +9,mix synthpads.wav,Keyboard,Synth Pad +9,mandoline.wav,Mandolin, +9,ld synth.wav,Keyboard,Synth Lead +9,female lead.wav,Voice,Lead Female +9,electronic_drums.wav,Drums,Electronic +9,electric_rhythm_guitar_right.wav,Electric Guitar,Rhythm Right +9,electric_rhythm_guitar_2.wav,Electric Guitar,Rhythm 2 +9,electric_rhythm_guitar_1.wav,Electric Guitar,Rhythm 1 +9,el piano 2.wav,Keyboard,Electric Piano +9,el gtr 1.wav,Electric Guitar,Electric 1 +9,eguit4.wav,Electric Guitar,Electric 4 +9,eg1.wav,Electric Guitar,Electric 1 +9,eg(crunch).wav,Electric Guitar,Crunch +9,eg fx.wav,Electric Guitar,FX +9,eg b.wav,Electric Guitar,Electric 2 +9,eg a.wav,Electric Guitar,Electric 1 +9,e guitar lead.wav,Electric Guitar,Lead +9,conga.wav,Percussion,Congas +9,clavi.wav,Keyboard,Clavinet +9,bv1.wav,Voice,Backing +9,bv and adds.wav,Voice,Backing +9,04_bass.wav,Bass Guitar, +8,vocal synth.wav,Keyboard,Synth Vocal +8,violins.wav,Violin, +8,trombones.wav,Trombone, +8,theremin.wav,Theremin, +8,t-pain.wav,Voice,T-Pain +8,synth_pad.wav,Keyboard,Synth Pad +8,synth_bass.wav,Keyboard,Synth Bass +8,synth pad 1.wav,Keyboard,Synth Pad 1 +8,synth 04.wav,Keyboard,Synth 4 +8,sung lead.wav,Voice,Lead +8,strings section.wav,Orchestra,Strings +8,sample.wav,Computer,Sample +8,s_tambo.wav,Percussion,Tambourine +8,s_synth strings.wav,Keyboard,Synth Strings +8,s_synth lead.wav,Keyboard,Synth Lead +8,s_sound effects.wav,Computer,SFX +8,s_eg lead.wav,Electric Guitar,Lead +8,s_eg 2.wav,Electric Guitar,Electric 2 +8,s_eg 1.wav,Electric Guitar,Electric 1 +8,s_eg 03.wav,Electric Guitar,Electric 3 +8,s_distortion guitar.wav,Electric Guitar,Distorted +8,rhythmguitar.wav,Electric Guitar,Rhythm +8,rhythmgtr.wav,Electric Guitar,Rhythm +8,reversecymbal.wav,Computer,Reverse Cymbal +8,pizz.wav,Keyboard,Pizzicato +8,pad 1.wav,Keyboard,Synth Pad 1 +8,mutegt.wav,Electric Guitar,Muted +8,missy elliott.wav,Voice,Missy Elliott +8,megan thee stallion.wav,Voice,Megan Thee Stallion +8,lv and adds.wav,Voice,Lead +8,leadguitar.wav,Electric Guitar,Lead +8,jay-z.wav,Voice,Jay-Z +8,gtrsolo.wav,Electric Guitar,Solo +8,gtr-acst.wav,Acoustic Guitar, +8,gtr 5 left.wav,Electric Guitar,Electric 5 Left +8,electric_piano.wav,Keyboard,Electric Piano +8,el piano 1.wav,Keyboard,Electric Piano 1 +8,el guit.wav,Electric Guitar, +8,egtr3.wav,Electric Guitar,Electric 3 +8,egdistortion.wav,Electric Guitar,Distorted +8,eg_rlead.wav,Electric Guitar,Lead Right +8,eg_rcrunch.wav,Electric Guitar,Crunch Right +8,eg_llead.wav,Electric Guitar,Lead +8,eg_lcrunch.wav,Electric Guitar,Crunch Left +8,eg2 right.wav,Electric Guitar,Electric Right 2 +8,eg dist 04.wav,Electric Guitar,Distorted 4 +8,eg dist 02.wav,Electric Guitar,Distorted 2 +8,eg clean 02.wav,Electric Guitar,Electric Clean 2 +8,eg chorus.wav,Electric Guitar,Chorus +8,eg 4 right.wav,Electric Guitar,Electric 4 Right +8,drums-.wav,Drums, +8,dr. dre.wav,Voice,Dr. Dre +8,crunch eg.wav,Electric Guitar,Crunch +8,contrabass.wav,Other,Contrabass +8,choeurs.wav,Other, +8,chimes.wav,Keyboard,Chimes +8,celesta.wav,Keyboard,Celesta +8,camila cabello.wav,Voice,Camila Cabello +8,bv-2.wav,Voice,Backing 2 +8,bruno mars.wav,Voice,Bruno Mars +8,basssynth.wav,Keyboard,Synth Bass +8,bass-.wav,Bass Guitar, +8,atmo.wav,Computer,Atmosphere +8,ag3.wav,Acoustic Guitar,Acoustic 3 +8,ag1.wav,Acoustic Guitar,Acoustic 1 +8,ag l.wav,Acoustic Guitar,Acoustic Left +8,acgtrs.wav,Acoustic Guitar,Guitars +7,wurly.wav,Keyboard,Wurlitzer +7,willie nelson.wav,Voice,Willie Nelson +7,vox fx.wav,Keyboard,Synth Vox FX +7,trp.wav,Other, +7,triangle.wav,Percussion,Triangle +7,sza.wav,Voice,SZA +7,synthsolo.wav,Keyboard,Synth Solo +7,syntharp.wav,Keyboard,Synth Arpeggios +7,synth5.wav,Keyboard,Synth 5 +7,synth key.wav,Keyboard,Synth +7,synth bell.wav,Keyboard,Synth Bells +7,synth 7.wav,Keyboard,Synth 7 +7,strings vst.wav,Keyboard,Synth Strings +7,steeldrums.wav,Percussion,Steel Drums +7,steel gtr.wav,Electric Guitar,Steel +7,scratches.wav,Other,Scratches +7,s_trombone.wav,Trombone, +7,s_synth_lead.wav,Keyboard,Synth Lead +7,s_shaker.wav,Percussion,Shaker +7,s_mellotron.wav,Keyboard,Mellotron +7,s_lap steel guitar.wav,Electric Guitar,Lap Steel +7,s_bv m.wav,Voice,Backing Male +7,s_bv f.wav,Voice,Backing Female +7,s_bells.wav,Keyboard,Synth Bells +7,s_arpeggiator.wav,Keyboard,Arpeggios +7,s_acoustic guitar.wav,Acoustic Guitar, +7,rock organ.wav,Keyboard,Rock Organ +7,rightgtr 3.wav,Electric Guitar,Electric Right 3 +7,right ag.wav,Acoustic Guitar,Right +7,real harmonica.wav,Harmonica, +7,perc-.wav,Percussion, +7,perc+fx.wav,Percussion, +7,pads and strings.wav,Keyboard,Pads & Strings +7,orchestra.wav,Orchestra, +7,mix percs+fxs.wav,Percussion, +7,mix ld1+2.wav,Other, +7,mando.wav,Mandolin, +7,left ag.wav,Acoustic Guitar,Left +7,ld and adds.wav,Other, +7,ld 123.wav,Other, +7,kick.wav,Drums,Kick +7,keyboard.wav,Keyboard, +7,hit.wav,Percussion,Hit +7,guitar 6.wav,Electric Guitar,Electric 6 +7,gtr6.wav,Electric Guitar,Electric 6 +7,elpiano.wav,Keyboard,Electric Piano +7,el.gtr solo.wav,Electric Guitar,Solo +7,eguit5.wav,Electric Guitar,Electric 5 +7,eguit 5.wav,Electric Guitar,Electric 5 +7,egtr1.wav,Electric Guitar,Electric 1 +7,eg rhythm.wav,Electric Guitar,Rhythm +7,eg lead 2.wav,Electric Guitar,Electric Lead 2 +7,eg clean 03.wav,Electric Guitar,Electric Clean 3 +7,eg 3 right.wav,Electric Guitar,Electric 3 Right +7,eg 05.wav,Electric Guitar,Electric 5 +7,e guitar 3.wav,Electric Guitar,Electric 3 +7,countin.wav,Computer,Count In +7,chris brown.wav,Voice,Chris Brown +7,chords.wav,Other,Chords +7,bv-.wav,Voice,Backing +7,bkgnds 2.wav,Computer,Background 2 +7,bkgnds 1.wav,Computer,Background 1 +7,beyonce.wav,Voice,Beyonce +7,bell synth.wav,Keyboard,Synth Bells +7,becky g.wav,Voice,Becky G +7,beat.wav,Percussion,Beat +7,batterie.wav,Other, +7,bass_synth.wav,Keyboard,Synth Bass +7,bass-01.wav,Bass Guitar,Bass 1 +7,bass guitar.wav,Bass Guitar, +7,b3.wav,Bass Guitar,Bass 3 +7,anderson .paak.wav,Voice,Anderson .Paak +7,ag r.wav,Acoustic Guitar,Right +7,ag 3.wav,Acoustic Guitar,Acoustic 3 +7,add guits.wav,Electric Guitar,Adds +7,ad libs.wav,Voice,Rap +7,acougt_r.wav,Acoustic Guitar,Right +7,accordian.wav,Accordion, +7,ac gtr 2.wav,Acoustic Guitar,Acoustic 2 +7,808 bass.wav,Keyboard,808 +7,50 cent.wav,Voice,50 Cent +6,whagt.wav,Other, +6,voc 4.wav,Voice,Voice 4 +6,voc 3.wav,Voice,Voice 3 +6,vinyl.wav,Other,Vinyl +6,ukelele.wav,Ukulele, +6,synthpluck.wav,Keyboard,Synth Pluck +6,synthflute.wav,Keyboard,Synth Flute +6,synth-2.wav,Keyboard,Synth 2 +6,synth vox.wav,Keyboard,Synth Vox +6,synth string.wav,Keyboard,Synth Strings +6,synth organ.wav,Keyboard,Organ +6,synth flute.wav,Keyboard,Synth Flute +6,synth 1 left.wav,Keyboard,Synth 1 Left +6,sweep.wav,Keyboard,Sweep +6,sound fx.wav,Keyboard,SFX +6,seq synths.wav,Keyboard, +6,sax 2.wav,Saxophone,Sax 2 +6,s_synth bells.wav,Keyboard,Synth Bells +6,s_synth 1.wav,Keyboard,Synth 1 +6,s_synth 02.wav,Keyboard,Synth 2 +6,s_synth 01.wav,Keyboard,Synth 1 +6,s_string ensemble.wav,Orchestra,Strings +6,s_pluck.wav,Keyboard,Synth Pluck +6,s_percs.wav,Percussion, +6,s_guit_solo.wav,Electric Guitar,Solo +6,s_epiano.wav,Keyboard,Electric Piano +6,s_electric guitar 3.wav,Electric Guitar,Electric 3 +6,s_eg4.wav,Electric Guitar,Electric 4 +6,s_eg solo.wav,Electric Guitar,Solo +6,s_crunch guitar.wav,Electric Guitar,Crunch +6,s_cello.wav,Cello, +6,s_bell.wav,Keyboard,Synth Bells +6,rhythmic ag.wav,Acoustic Guitar,Rhythm +6,real violin.wav,Violin, +6,post malone.wav,Voice,Post Malone +6,poly synth.wav,Keyboard,Poly Synth +6,pitbull.wav,Voice,Pitbull +6,pia.wav,Voice,Pia +6,pharrell williams.wav,Voice,Pharrell Williams +6,pedal steel.wav,Electric Guitar,Pedal Steel +6,offset.wav,Other, +6,nate dogg.wav,Voice,Nate Dogg +6,mix strings.wav,Orchestra,Strings +6,mix percs.wav,Percussion, +6,mix brasses.wav,Other,Brass +6,mix basses.wav,Other,Brass +6,mix ac.gtrs.wav,Acoustic Guitar, +6,mainsynth.wav,Keyboard,Synth Main +6,main synth.wav,Keyboard,Synth Main +6,leftgtr 3.wav,Electric Guitar,Electric Left 3 +6,leftgtr 2.wav,Electric Guitar,Electric Left 2 +6,leadvox.wav,Voice,Lead +6,leadgtr.wav,Electric Guitar,Lead +6,leadgt 2.wav,Electric Guitar,Lead 2 +6,lead gtr.wav,Electric Guitar,Lead +6,ld-.wav,Electric Guitar,Lead +6,ld 1.wav,Electric Guitar,Lead 1 +6,lady gaga.wav,Voice,Lady Gaga +6,keyboards.wav,Keyboard, +6,justin bieber.wav,Voice,Justin Bieber +6,guitars 5.wav,Electric Guitar,Electric 5 +6,guitar 2 left.wav,Electric Guitar,Electric 2 Left +6,gtr synths.wav,Keyboard,Synth Guitar +6,gtr ld.wav,Electric Guitar,Lead +6,gtr 6 left.wav,Electric Guitar,Electric 6 Left +6,french horn.wav,French Horn, +6,electric_solo_guitar.wav,Electric Guitar,Solo +6,electric_arrangement_guitar.wav,Electric Guitar, +6,electric guitar solo.wav,Electric Guitar,Solo +6,elec guitar.wav,Electric Guitar, +6,egtr1 left.wav,Electric Guitar,Electric 1 Left +6,egtr.wav,Electric Guitar, +6,egt 2.wav,Electric Guitar,Electric 2 +6,egt 1.wav,Electric Guitar,Electric 1 +6,eg_r(disto).wav,Electric Guitar,Distorted Right +6,eg_lclean.wav,Electric Guitar,Clean Left +6,eg_l(disto).wav,Electric Guitar,Distorted Left +6,eg_l 2.wav,Electric Guitar,Electric 2 Left +6,eg left.wav,Electric Guitar,Left +6,eg lead 3.wav,Electric Guitar,Lead 3 +6,eg lead 1.wav,Electric Guitar,Lead 1 +6,eg 8.wav,Electric Guitar,Electric 8 +6,ed sheeran.wav,Voice,Ed Sheeran +6,e guitar.wav,Electric Guitar, +6,drivegt_l.wav,Electric Guitar,Drive Left +6,distortion guitar.wav,Electric Guitar,Distorted +6,distortion guitar solo.wav,Electric Guitar,Distorted Solo +6,dist synths.wav,Keyboard,Synths +6,clngtr.wav,Electric Guitar,Clean +6,cleangt_r.wav,Electric Guitar,Clean Right +6,cleangt_l.wav,Electric Guitar,Clean Left +6,bv-1.wav,Voice,Backing 1 +6,bgs.wav,Voice,Backing 1 +6,beatbox.wav,Other,Beatbox +6,arpeggio.wav,Other,Arpeggios +6,arp synth.wav,Keyboard,Synth Arpeggios +6,ag 1 + 2.wav,Acoustic Guitar, +6,acoustic gtr.wav,Acoustic Guitar, +6,acougt_l.wav,Acoustic Guitar,Left +6,ac gtr 1.wav,Acoustic Guitar,Acoustic 1 +6,a guitar 2.wav,Acoustic Guitar,Acoustic 2 +6,a guitar 1.wav,Acoustic Guitar,Acoustic 1 +6,3.wav,Other, +5,wurli.wav,Keyboard,Wurlitzer +5,will.i.am.wav,Voice,Will.i.am +5,vocals.wav,Voice, +5,vocal fx.wav,Voice,FX +5,voc synth.wav,Keyboard,Synth Vox +5,voc 2b.wav,Voice, +5,violons.wav,Violin, +5,viola.wav,Viola, +5,vibra.wav,Keyboard,Vibes +5,ty dolla sign.wav,Voice,Ty Dolla Sign +5,trancesynth.wav,Keyboard,Synth Trance +5,the weeknd.wav,Voice,The Weeknd +5,the notorious b.i.g..wav,Voice,Notorious B.I.G. +5,tambourin.wav,Percussion,Tambourine +5,takeoff.wav,Other,Takeoff +5,synth-1.wav,Keyboard,Synth 1 +5,synth vocal.wav,Keyboard,Synth Vox +5,synth solo.wav,Keyboard,Synth Solo +5,synth melo.wav,Keyboard,Synth Melo +5,synth ld.wav,Keyboard,Synth Lead +5,synth arr.wav,Keyboard,Synth Arpeggios +5,sub.wav,Other, +5,stabs.wav,Keyboard,Synth Stabs +5,sonar.wav,Other,Sonar +5,sexyy red.wav,Voice,Sexyy Red +5,scott.wav,Other, +5,saxophone.wav,Saxophone, +5,saw synth.wav,Keyboard,Synth Saw +5,s_synth4.wav,Keyboard,Synth 4 +5,s_synth vox.wav,Keyboard,Synth Vox +5,s_synth pad.wav,Keyboard,Synth Pad +5,s_rock organ.wav,Keyboard,Rock Organ +5,s_guit_clean.wav,Electric Guitar,Clean +5,s_gtr6.wav,Electric Guitar,Electric 6 +5,s_gtr fx.wav,Electric Guitar,FX +5,s_fiddle.wav,Violin,Fiddle +5,s_electric guitar 4.wav,Electric Guitar,Electric 4 +5,s_eg 3.wav,Electric Guitar,Electric 3 +5,s_claps.wav,Other,Claps +5,s_clap.wav,Other,Claps +5,s_choir.wav,Voice,Choir +5,s_brasses.wav,Other,Brass +5,s_bass gtr.wav,Bass Guitar, +5,s_ag3.wav,Acoustic Guitar,Acoustic 3 +5,s_acoustic guitar 2.wav,Acoustic Guitar,Acoustic 2 +5,rightgtr 4.wav,Electric Guitar,Electric 4 Right +5,real trumpet.wav,Trumpet, +5,precount click.wav,Computer,Count In +5,playboi carti.wav,Voice,Playboi Carti +5,pink.wav,Voice,Pink +5,percusion.wav,Percussion, +5,music box.wav,Other,Music Box +5,mix synthkeys.wav,Keyboard,Synth Mix +5,mix synthbasses.wav,Keyboard,Synth Bass +5,mix pad+strings.wav,Keyboard,Synth Pad +5,mix fx.wav,Other,FX +5,mix el.gtrs.wav,Electric Guitar,Guitars +5,mix bv.wav,Voice,Backing +5,mix bv+adds.wav,Voice,Backing +5,mallet synths.wav,Keyboard,Synth Mallet +5,machine gun kelly.wav,Voice,Machine Gun Kelly +5,lil nas x.wav,Voice,Lil Nas X +5,lil kim.wav,Voice,Lil Kim +5,lil durk.wav,Voice,Lil Durk +5,left gtr 3.wav,Electric Guitar,Electric 3 Left +5,lead guits.wav,Electric Guitar,Lead +5,ldgtr.wav,Electric Guitar,Lead +5,key synths.wav,Keyboard,Synth Lead +5,intro.wav,Other,Intro +5,hammond_organ_2.wav,Keyboard,Hammond 2 +5,hammond_organ_1.wav,Keyboard,Hammond 1 +5,hammond_organ.wav,Keyboard,Hammond +5,hammond-.wav,Keyboard,Hammond +5,guitar_2.wav,Electric Guitar,Electric 2 +5,guitar_1.wav,Electric Guitar,Electric 1 +5,guitar3.wav,Electric Guitar,Electric 3 +5,guitar-2.wav,Electric Guitar,Electric 2 +5,guitar 1 right.wav,Electric Guitar,Electric 1 Right +5,guit 2.wav,Electric Guitar,Electric 2 +5,guit 1.wav,Electric Guitar,Electric 1 +5,gtr-solo.wav,Electric Guitar,Solo +5,gtr clean.wav,Electric Guitar,Clean +5,gtr 8.wav,Electric Guitar,Electric 8 +5,fiddle 2.wav,Violin,Fiddle 2 +5,fergie.wav,Voice,Fergie +5,electric_clean_guitar.wav,Electric Guitar,Clean +5,elec gtr 3.wav,Electric Guitar,Electric 3 +5,el.gtr.wav,Electric Guitar, +5,el gtr1.wav,Electric Guitar,Electric 1 +5,eguitar.wav,Electric Guitar, +5,eguit7.wav,Electric Guitar,Electric 7 +5,eguit rhytmic 1.wav,Electric Guitar,Rhythm 1 +5,eguit 6.wav,Electric Guitar,Electric 6 +5,eguit 1 left.wav,Electric Guitar,Electric 1 Left +5,egtremolo.wav,Electric Guitar,Tremolo +5,egchorus3.wav,Electric Guitar,Chorus 3 +5,egchorus2.wav,Electric Guitar,Chorus 2 +5,egatmo.wav,Electric Guitar,Atmospheric +5,eg_ldisto.wav,Electric Guitar,Distorted Left +5,eg right.wav,Electric Guitar,Right +5,eg rhy.wav,Electric Guitar,Rhythm +5,eg clean r.wav,Electric Guitar,Clean Right +5,eg arr 2.wav,Electric Guitar,Arpeggio 2 +5,eg 02 left.wav,Electric Guitar,Electric 2 Left +5,e guitar rhytmic clean.wav,Electric Guitar,Rhythm Clean +5,e guitar 4.wav,Electric Guitar,Electric 4 +5,e guitar 2 right.wav,Electric Guitar,Electric 2 Right +5,dv.wav,Other, +5,dulcimer.wav,Keyboard,Dulcimer +5,drivegt_r.wav,Electric Guitar,Drive Right +5,dj khaled.wav,Voice,DJ Khaled +5,dbass.wav,Double Bass, +5,crunch guitar.wav,Electric Guitar,Crunch +5,count in.wav,Computer,Count In +5,cleanguitar.wav,Electric Guitar,Clean +5,center eg.wav,Electric Guitar,Center +5,bradley cooper.wav,Voice,Bradley Cooper +5,bips.wav,Other, +5,bg vocals 3.wav,Voice,Backing 3 +5,agsolo.wav,Acoustic Guitar,Solo +5,ag nylon.wav,Acoustic Guitar,Nylon +5,acoustic bass.wav,Double Bass, +5,acordeon.wav,Accordion, +5,acgtr 02.wav,Acoustic Guitar,Acoustic 2 +5,acgtr 01.wav,Acoustic Guitar,Acoustic 1 +5,acc guitar 2.wav,Acoustic Guitar,Acoustic 2 +5,14_bv.wav,Voice,Backing +5,03_bass.wav,Bass Guitar,Bass 3 +5,03 bass.wav,Bass Guitar,Bass 3 +5,02 bass.wav,Bass Guitar,Bass 2 +4,wiz khalifa.wav,Voice,Wiz Khalifa +4,wind.wav,Other,Wind +4,vst brass.wav,Keyboard,Synth Brass +4,vocal synths.wav,Keyboard,Synth Vox +4,usher.wav,Voice,Usher +4,trumpet solo.wav,Trumpet,Solo +4,tremologt.wav,Electric Guitar,Tremolo +4,timbaland.wav,Voice,Timbaland +4,t.i..wav,Voice,T.I. +4,synthvox.wav,Keyboard,Synth Vox +4,synthvoice.wav,Keyboard,Synth Vox +4,synths 3.wav,Keyboard,Synth 3 +4,synthpiano.wav,Keyboard,Synth Piano +4,synthpad2.wav,Keyboard,Pad 2 +4,synthlead2.wav,Keyboard,Synth Lead 2 +4,synthguitar.wav,Keyboard,Synth Guitar +4,synthe.wav,Keyboard,Synth +4,synth_strings.wav,Keyboard,Synth Strings +4,synth_lead.wav,Keyboard,Synth Lead +4,synth_choir.wav,Keyboard,Synth Choir +4,synth-bass.wav,Keyboard,Synth Bass +4,synth-3.wav,Keyboard,Synth 3 +4,synth voices.wav,Keyboard,Synth Vox +4,synth vocals.wav,Keyboard,Synth Vox +4,synth saw.wav,Keyboard,Synth Saw +4,synth piano.wav,Keyboard,Electric Piano +4,synth lead 3.wav,Keyboard,Synth Lead 3 +4,synth dis.wav,Keyboard,Synth Distorted +4,synth 8.wav,Keyboard,Synth 8 +4,synth 4 right.wav,Keyboard,Synth 4 Right +4,synth 12.wav,Keyboard, +4,square.wav,Keyboard,Square +4,sound effects.wav,Keyboard,SFX +4,solo_guitar.wav,Electric Guitar,Solo +4,solo ag.wav,Acoustic Guitar,Solo +4,sfx 2.wav,Keyboard,SFX 2 +4,seq synth.wav,Keyboard,Synth Seq +4,selena gomez.wav,Voice,Selena Gomez +4,sean paul.wav,Voice,Sean Paul +4,sax 3.wav,Saxophone,Sax 3 +4,sax 1.wav,Saxophone,Sax 1 +4,s_vox synth.wav,Keyboard,Synth Vox +4,s_trumpets.wav,Trumpet, +4,s_tpt.wav,Other, +4,s_timpani.wav,Timpani, +4,s_tamb.wav,Percussion,Tambourine +4,s_synth keys 2.wav,Keyboard,Synth 2 +4,s_synth choir.wav,Keyboard,Synth Choir +4,s_synth brass.wav,Keyboard,Synth Brass +4,s_synth 2.wav,Keyboard,Synth 2 +4,s_sub_bass.wav,Keyboard,Sub Bass +4,s_samples.wav,Computer,Samples +4,s_overdriven guitar.wav,Electric Guitar,Overdriven +4,s_lead vocal.wav,Voice,Lead +4,s_lapsteel.wav,Electric Guitar,Lap Steel +4,s_harp.wav,Harp, +4,s_guit_rythm.wav,Electric Guitar,Rhythm +4,s_guit_dist.wav,Electric Guitar,Distorted +4,s_gtr solo.wav,Electric Guitar,Solo +4,s_eg 04.wav,Electric Guitar,Electric 4 +4,s_e piano.wav,Keyboard,Electric Piano +4,s_dobro.wav,Dobro, +4,s_distortion guitar solo.wav,Electric Guitar,Solo Distorted +4,s_brass section.wav,Other,Brass +4,s_bass2.wav,Bass Guitar,Bass 2 +4,s_ag 2.wav,Acoustic Guitar,Acoustic 2 +4,s_acoustic guitar 1.wav,Acoustic Guitar,Acoustic 1 +4,s_acoust.wav,Acoustic Guitar, +4,rihanna.wav,Voice,Rihanna +4,rhythm gtr.wav,Electric Guitar,Rhythm +4,recorder.wav,Other,Recorder +4,real sax.wav,Saxophone, +4,q-tip.wav,Voice,Q-Tip +4,polysynth.wav,Keyboard,Polysynth +4,pluckedsynth.wav,Keyboard,Synth Pluck +4,pipes.wav,Other,Pipes +4,piano-notdups.wav,Piano, +4,piano-01.wav,Piano,Piano 1 +4,piano-.wav,Piano, +4,percussion 2.wav,Percussion,Percussion 2 +4,percussion 1.wav,Percussion,Percussion 1 +4,pads and choir.wav,Keyboard,Synth Pad & Choir +4,pads 2.wav,Keyboard,Synth Pad 2 +4,pads 12.wav,Keyboard,Synth Pad +4,pad synths.wav,Keyboard,Synth Pad +4,pad synth.wav,Keyboard,Synth Pad +4,overdriven guitar.wav,Electric Guitar,Overdriven +4,organ_hammond_1.wav,Keyboard,Hammond +4,organ2.wav,Keyboard,Organ 2 +4,organ 3.wav,Keyboard,Organ 3 +4,orchestra hit.wav,Orchestra,Hit +4,noises.wav,Computer,Noise +4,noisefx.wav,Computer,Noise FX +4,noah kahan.wav,Voice,Noah Kahan +4,muted eg.wav,Electric Guitar,Muted +4,mix synthleads.wav,Keyboard,Synth Lead +4,mix piano.wav,Piano, +4,mix lv.wav,Voice,Lead +4,mix el.gtr arr.wav,Electric Guitar,Arpeggios +4,mix eg5+6.wav,Electric Guitar,Electric 5 +4,mix bvs.wav,Voice,Backing +4,mix ag1+2.wav,Acoustic Guitar, +4,mitch.wav,Voice,Mitch +4,missy elliott-adlib.wav,Voice,Missy Elliot +4,melodica.wav,Keyboard,Melodica +4,melo synths.wav,Keyboard,Synth Melo +4,mandolina.wav,Other, +4,mallet.wav,Keyboard,Mallets +4,macklemore.wav,Voice,Macklemore +4,lv ad lib.wav,Voice,Lead Rap +4,lv 2.wav,Voice,Lead 2 +4,lv 1.wav,Voice,Lead 1 +4,lil peep.wav,Voice,Lil Peep +4,lil baby.wav,Voice,Lil Baby +4,left gtr 2.wav,Electric Guitar,Electric 2 Left +4,leads.wav,Electric Guitar,Lead +4,lead voc.wav,Voice,Lead +4,ld synths.wav,Keyboard,Synth Lead +4,ld 12 and adds.wav,Other, +4,latto.wav,Other, +4,koto.wav,Other, +4,keys 2.wav,Keyboard,Synth 2 +4,keys 1.wav,Keyboard,Synth 1 +4,kesha.wav,Voice,Kesha +4,kali uchis.wav,Voice,Kali Uchis +4,jack harlow.wav,Voice,Jack Harlow +4,harpsicord.wav,Keyboard,Harpsichord +4,harmonium.wav,Keyboard,Harmonium +4,hamm.wav,Voice,Hamm +4,halsey.wav,Voice,Halsey +4,h.e.r..wav,Voice,H.E.R. +4,guitar-1.wav,Electric Guitar,Electric 1 +4,guitar fx.wav,Electric Guitar,FX +4,guitar 3 right.wav,Electric Guitar,Electric 3 Right +4,guitar 3 left.wav,Electric Guitar,Electric 3 Left +4,gtr-elec.wav,Electric Guitar, +4,gtr r.wav,Electric Guitar,Right +4,gtr left.wav,Electric Guitar,Left +4,gtr l.wav,Electric Guitar,Left +4,gtr fx.wav,Electric Guitar,FX +4,gtr 2 muted.wav,Electric Guitar,Electric 2 Muted +4,future.wav,Voice,Future +4,fr horns.wav,French Horn, +4,flugel.wav,Other,Flugelhorn +4,flo rida.wav,Voice,Flo Rida +4,fiddle 1 left.wav,Violin,Fiddle +4,eric clapton.wav,Voice,Eric Clapton +4,electricguitar.wav,Electric Guitar, +4,electric_lead_guitar_2.wav,Electric Guitar,Electric Lead 2 +4,electric_lead_guitar_1.wav,Electric Guitar,Electric Lead 1 +4,electric_guitar_left.wav,Electric Guitar,Left +4,electric_guitar_lead.wav,Electric Guitar,Lead +4,electric_arrangement_guitar_right.wav,Electric Guitar,Right +4,electric_arrangement_guitar_2.wav,Electric Guitar,Electric 2 +4,electric guitars.wav,Electric Guitar,Guitars +4,electric bass.wav,Bass Guitar, +4,elec gt 2.wav,Electric Guitar,Electric 2 +4,el.gtr disto.wav,Electric Guitar,Distorted +4,el guits.wav,Electric Guitar,Guitars +4,el guitar.wav,Electric Guitar, +4,el guitar lead.wav,Electric Guitar,Lead +4,el gtr 4.wav,Electric Guitar,Electric 4 +4,el gtr 3.wav,Electric Guitar,Electric 3 +4,eguit8.wav,Electric Guitar,Electric 8 +4,eguit6.wav,Electric Guitar,Electric 6 +4,eguit rhytmic 2.wav,Electric Guitar,Rhythm 2 +4,egtreble.wav,Electric Guitar,Treble +4,egmute2.wav,Electric Guitar,Electric 2 Muted +4,egchorus1.wav,Electric Guitar,Electric Chorus 1 +4,eg_rdisto.wav,Electric Guitar,Distorted Right +4,eg(muted).wav,Electric Guitar,Muted +4,eg(lead) 2.wav,Electric Guitar,Lead 2 +4,eg wah.wav,Electric Guitar,Wah +4,eg solo 2.wav,Electric Guitar,Solo 2 +4,eg solo 1.wav,Electric Guitar,Solo 1 +4,eg main.wav,Electric Guitar,Main +4,eg dist 05.wav,Electric Guitar,Electric 5 +4,eg dis l.wav,Electric Guitar,Distorted Left +4,eg clean l.wav,Electric Guitar,Clean Left +4,eg clean 2.wav,Electric Guitar,Clean 2 +4,eg adds 2.wav,Electric Guitar,Adds 2 +4,eg 3 + 4.wav,Electric Guitar,Electric 3 +4,eg 01 right.wav,Electric Guitar,Electric 1 Right +4,e-piano.wav,Keyboard,Electric Piano +4,e guitar rhythm.wav,Electric Guitar,Rhythm +4,e gtr.wav,Electric Guitar, +4,drums_1.wav,Drums,Drums 1 +4,distogtrs.wav,Electric Guitar,Distorted +4,distgtr.wav,Electric Guitar,Distorted +4,demi lovato.wav,Voice,Demi Lovato +4,crowd.wav,Other,Crows +4,cosmic.wav,Voice,Cosmic +4,ciara.wav,Voice,Ciara +4,charlie puth.wav,Voice,Charlie Puth +4,centergtr 3.wav,Electric Guitar,Electric 3 Center +4,carrie underwood.wav,Voice,Carrie Underwood +4,bv_1.wav,Voice,Backing +4,bv m.wav,Voice,Backing Male +4,bv 12.wav,Voice,Backing +4,busta rhymes.wav,Voice,Busta Rhymes +4,breath.wav,Other,Breath +4,block.wav,Keyboard,Block +4,blips.wav,Computer,Blips +4,bkgnd vocals.wav,Voice,Backing +4,baritone sax.wav,Saxophone,Baritone +4,backvox.wav,Voice,Backing +4,b.wav,Voice,Backing +4,b.v..wav,Voice,Backing +4,b.b. king.wav,Voice,B.B. King +4,arp synths.wav,Keyboard,Synth Arpeggios +4,andre 3000.wav,Voice,Andre 3000 +4,alto sax.wav,Saxophone,Alto +4,alejandro sanz.wav,Voice,Alejandro Sanz +4,agt.wav,Acoustic Guitar, +4,agmute.wav,Acoustic Guitar,Muted +4,ag slide.wav,Acoustic Guitar,Slide +4,ag lead.wav,Acoustic Guitar,Lead +4,ag arr.wav,Acoustic Guitar, +4,ag 03.wav,Acoustic Guitar,Acoustic 3 +4,ag 01 left.wav,Acoustic Guitar,Acoustic 1 Left +4,acousticgtr.wav,Acoustic Guitar, +4,acoustic_guitar_steel_left.wav,Acoustic Guitar,Steel Left +4,acoustic_guitar_left.wav,Acoustic Guitar,Left +4,acoustic guitars.wav,Acoustic Guitar, +4,acoustic guitar 3.wav,Acoustic Guitar,Acoustic 3 +4,acoustic gtrs.wav,Acoustic Guitar, +4,acguit.wav,Acoustic Guitar, +4,acc guitar 1.wav,Acoustic Guitar,Acoustic 1 +4,ac.gtr.wav,Acoustic Guitar, +4,ac guitars.wav,Acoustic Guitar, +4,ac gtr 3.wav,Acoustic Guitar,Acoustic 3 +4,a guitar.wav,Acoustic Guitar, +4,21 savage.wav,Voice,21 Savage +4,2 chainz.wav,Voice,2 Chainz +4,09 lead vocal.wav,Voice,Lead +4,08 backing vocals.wav,Voice,Backing +3,zach bryan.wav,Voice,Zach Bryan +3,yg.wav,Other, +3,woosh.wav,Other,Woosh +3,woodwind.wav,Orchestra,Woodwinds +3,wobble.wav,Other,Wobble +3,vox synth.wav,Keyboard,Synth Vox +3,voicepad.wav,Keyboard,Pad Voice +3,voice pad.wav,Keyboard,Pad Voice +3,vocalsynth.wav,Keyboard,Synth Vox +3,vocalfx.wav,Keyboard,FX Vox +3,violins real.wav,Violin, +3,trombone solo.wav,Trombone,Solo +3,toy piano.wav,Piano,Toy +3,tenor sax.wav,Saxophone,Tenor +3,synthstring.wav,Keyboard,Synth Strings +3,synths1.wav,Keyboard,Synth 1 +3,synths-.wav,Keyboard,Synths +3,synths pad.wav,Keyboard,Synth Pad +3,synthpad1.wav,Keyboard,Synth Pad 1 +3,synthkeys.wav,Keyboard,Synth +3,synthchords.wav,Keyboard,Synth Chords +3,synthchoir.wav,Keyboard,Synth Choir +3,synthbells.wav,Keyboard,Synth Bells +3,synth_chords.wav,Keyboard,Synth Chords +3,synth_arp.wav,Keyboard,Synth Arpeggios +3,synth-strings.wav,Keyboard,Synth Strings +3,synth-pad.wav,Keyboard,Synth Pad +3,synth-lead.wav,Keyboard,Synth Lead +3,synth-.wav,Keyboard,Synth +3,synth theme.wav,Keyboard,Synth Theme +3,synth strings 2.wav,Keyboard,Synth Strings 2 +3,synth strings 1.wav,Keyboard,Synth Strings 1 +3,synth poly.wav,Keyboard,Synth Poly +3,synth leads.wav,Keyboard,Synth Lead +3,synth intro.wav,Keyboard,Synth Intro +3,synth guits.wav,Keyboard,Synth Guitar +3,synth gtr.wav,Keyboard,Synth Guitar +3,synth 2 left.wav,Keyboard,Synth 2 Left +3,strings pad.wav,Keyboard,Synth Strings +3,strings mix.wav,Keyboard,Synth Strings +3,strings and violin.wav,Keyboard,Synth Strings +3,strings and harp.wav,Keyboard,Synth Strings & Harp +3,string synth.wav,Keyboard,Synth Strings +3,steel drum.wav,Percussion,Steel Drum +3,spoken.wav,Other,Spoken +3,soundfx.wav,Computer,SFX +3,sologtr.wav,Electric Guitar,Solo +3,solo eg1.wav,Electric Guitar,Solo +3,slidegt.wav,Electric Guitar,Slide +3,siren.wav,Other,Siren +3,shakira.wav,Voice,Shakira +3,sfx 1.wav,Other,SFX +3,seq.wav,Other,Seq +3,sax vst.wav,Keyboard,Synth Sax +3,sawsynth.wav,Keyboard,Synth Saw +3,saw.wav,Keyboard,Synth Saw +3,s_vibraphone.wav,Keyboard,Vibes +3,s_tubular_bells.wav,Keyboard,Tubular Bells +3,s_ts.wav,Other, +3,s_synthstrings.wav,Keyboard,Synth Strings +3,s_synths.wav,Keyboard,Synth +3,s_synth clavinet.wav,Keyboard,Clavinet +3,s_subbass.wav,Bass Guitar,Sub Bass +3,s_sub bass.wav,Bass Guitar,Sub Bass +3,s_string sctn.wav,Orchestra,Strings +3,s_scratch.wav,Other,Scratch +3,s_saxophone.wav,Saxophone, +3,s_noise.wav,Computer,Noise +3,s_marimba.wav,Other,Marimba +3,s_lead.wav,Electric Guitar,Lead +3,s_lap.wav,Electric Guitar,Lap Steel +3,s_guit_crunch.wav,Electric Guitar,Crunch +3,s_gtr7.wav,Electric Guitar,Electric 7 +3,s_gtr ld2.wav,Electric Guitar,Lead 2 +3,s_gtr ld1.wav,Electric Guitar,Lead 1 +3,s_gtr clean.wav,Electric Guitar,Clean +3,s_fxs.wav,Computer,FX +3,s_el_piano.wav,Keyboard,Electric Piano +3,s_egdisto.wav,Electric Guitar,Distorted +3,s_eg_llead.wav,Electric Guitar,Lead Left +3,s_eg riff.wav,Electric Guitar,Riff +3,s_eg r.wav,Electric Guitar,Right +3,s_eg l.wav,Electric Guitar,Left +3,s_eg harmonics.wav,Electric Guitar,Harmonics +3,s_eg clean.wav,Electric Guitar,Clean +3,s_drum loop.wav,Percussion,Drum Loop +3,s_cowbell.wav,Percussion,Cowbell +3,s_bvs.wav,Voice,Backing +3,s_bv2.wav,Voice,Backing 2 +3,s_bass1.wav,Bass Guitar,Bass 1 +3,s_arp.wav,Other, +3,s_ag_l.wav,Acoustic Guitar,Left +3,s_acoustic guitar 3.wav,Acoustic Guitar,Acoustic 3 +3,run.wav,Other,Run +3,robert plant.wav,Voice,Robert Plant +3,rightgtr 5.wav,Electric Guitar,Electric 5 Right +3,right gtr 4.wav,Electric Guitar,Electric 4 Right +3,rhythm_electric_guitar_2.wav,Electric Guitar,Rhythm 2 +3,rhythm_electric_guitar_1.wav,Electric Guitar,Rhythm 1 +3,rhythm_electric_guitar.wav,Electric Guitar,Rhythm +3,rhodes ep.wav,Keyboard,Rhodes +3,rhodes 1.wav,Keyboard,Rhodes 1 +3,reverse piano.wav,Keyboard,Reverse Piano +3,reeds.wav,Keyboard,Synth Reeds +3,real dobro.wav,Dobro, +3,real banjo.wav,Banjo, +3,rap vox.wav,Voice,Rap +3,r. kelly.wav,Voice,R. Kelly +3,prince.wav,Voice,Prince +3,prekey.wav,Other, +3,precountclick.wav,Computer,Count In +3,plucked.wav,Keyboard,Synth Pluck +3,plucked synth.wav,Keyboard,Synth Pluck +3,pluck2.wav,Keyboard,Synth Pluck 2 +3,pluck1.wav,Keyboard,Synth Pluck 1 +3,pizzicato strings.wav,Keyboard,Pizzicato +3,pianos.wav,Piano, +3,pianopad.wav,Keyboard,Piano Pad +3,piano_2.wav,Piano,Piano 2 +3,piano_1.wav,Piano,Piano 1 +3,piano2.wav,Piano,Piano 2 +3,piano1.wav,Piano,Piano 1 +3,piano+organ.wav,Keyboard,Organ +3,phife dawg.wav,Voice,Phife Dawg +3,percs+fx.wav,Percussion, +3,perc&fx.wav,Percussion, +3,pads strings.wav,Keyboard,Synth Strings +3,pad_synth.wav,Keyboard,Synth Pad +3,pad strings.wav,Keyboard,Synth Strings +3,pad and organ.wav,Keyboard,Organ Pad +3,pad 01.wav,Keyboard,Pad 1 +3,organ_hammond_2.wav,Keyboard,Hammond 2 +3,organ hammond.wav,Keyboard,Hammond +3,organ + pad.wav,Keyboard,Organ Pad +3,orchestral percussion.wav,Percussion,Orchestral +3,nylon guitar 1.wav,Acoustic Guitar,Nylon +3,noise-fx.wav,Computer,Noise FX +3,noise fx.wav,Computer,Noise FX +3,mystikal.wav,Voice,Mystikal +3,morgan wallen.wav,Voice,Morgan Wallen +3,mix synth lead 1+2.wav,Keyboard,Synth Lead +3,mix synth 1 + 2.wav,Keyboard,Synth Mix +3,mix strings+pad.wav,Keyboard,Synth Strings +3,mix pianos.wav,Piano, +3,mix piano1+2.wav,Piano, +3,mix pads.wav,Keyboard,Synth Pad +3,mix lds.wav,Other, +3,mix ld.wav,Other, +3,mix fxs.wav,Other,FX +3,mix eps.wav,Keyboard,Electric Piano +3,mix ep.wav,Other,Electric Piano +3,mix drums.wav,Drums, +3,mix disto egs.wav,Electric Guitar,Distorted +3,mix arr egs.wav,Electric Guitar,Arpeggios +3,mix ags.wav,Acoustic Guitar, +3,minimoog.wav,Keyboard,Mini Moog +3,miley cyrus.wav,Voice,Miley Cyrus +3,mike shinoda.wav,Voice,Mike Shinoda +3,miguel.wav,Voice,Miguel +3,method man.wav,Voice,Method Man +3,melotron.wav,Keyboard,Melotron +3,maluma.wav,Voice,Maluma +3,lv1.wav,Voice,Lead +3,lv add lib.wav,Voice,Lead Rap +3,lv 12.wav,Voice,Lead +3,ll cool j.wav,Voice,LL Cool J +3,lil jon.wav,Voice,Lil Jon +3,leftgtr 4.wav,Electric Guitar,Electric 4 Left +3,lead_synth.wav,Keyboard,Synth Lead +3,lead_2.wav,Other, +3,lead_1.wav,Other, +3,lead vox glu.wav,Voice,Lead +3,lead vox 2.wav,Voice,Lead 2 +3,lead 2.wav,Voice,Lead 2 +3,ld2.wav,Voice,Lead 2 +3,ld-2.wav,Voice,Lead 2 +3,ld fem.wav,Voice,Lead Female +3,lapsteel.wav,Electric Guitar,Lap Steel +3,lapsteel eg.wav,Electric Guitar,Lap Steel +3,lap.wav,Electric Guitar,Lap Steel +3,kurupt.wav,Voice,Kurupt +3,kristin.wav,Voice,Kristin +3,kora.wav,Voice,Kora +3,kit.wav,Voice,Kit +3,killer mike.wav,Voice,Killer Mike +3,khalid.wav,Voice,Khalid +3,key synth.wav,Keyboard,Synth +3,kevin.wav,Voice,Kevin +3,kelsea ballerini.wav,Voice,Kelsea Ballerini +3,jupitor.wav,Voice,Jupitor +3,joy williams.wav,Voice,Joy Williams +3,john paul white.wav,Voice,John Paul White +3,joao gilberto.wav,Voice,Joao Gilberto +3,jennifer lopez.wav,Voice,Jennifer Lopez +3,ja rule.wav,Voice,Ja Rule +3,j. cole.wav,Voice,J. Cole +3,j balvin.wav,Voice,J. Balvin +3,inspectah deck.wav,Voice,Inspectah Deck +3,iggy azalea.wav,Voice,Iggy Azalea +3,ice cube.wav,Voice,Ice Cube +3,i.wav,Other, +3,harmonic.wav,Other, +3,hammondorgan.wav,Keyboard,Hammond +3,guitars acoustic.wav,Acoustic Guitar, +3,guitarlead.wav,Electric Guitar,Lead +3,guitar_mute.wav,Electric Guitar,Muted +3,guitar left.wav,Electric Guitar,Left +3,guitar intro.wav,Electric Guitar,Intro +3,guitar 4 left.wav,Electric Guitar,Electric 4 Left +3,guitar 1 muted.wav,Electric Guitar,Electric 1 Muted +3,guit_rthm.wav,Electric Guitar,Rhythm +3,guiro.wav,Percussion,Guiro +3,gtrr.wav,Electric Guitar,Right +3,gtr3 left.wav,Electric Guitar,Electric 3 Left +3,gtr-riff.wav,Electric Guitar,Riff +3,gtr-dist.wav,Electric Guitar,Distorted +3,gtr-clean.wav,Electric Guitar,Clean +3,gtr right.wav,Electric Guitar,Right +3,gtr lead.wav,Electric Guitar,Lead +3,gtr ac.wav,Acoustic Guitar, +3,gtr ac-.wav,Acoustic Guitar, +3,gtr 6 right.wav,Electric Guitar,Electric 6 Right +3,gtr 3+4.wav,Electric Guitar,Electric 3 Left +3,gtr 1+2.wav,Electric Guitar,Electric 1 +3,glocken.wav,Glockenspiel, +3,g-eazy.wav,Voice,G-Eazy +3,fx synth.wav,Keyboard,Synth FX +3,fx 1.wav,Keyboard,Synth FX 1 +3,fr horn.wav,French Horn, +3,flute synth.wav,Keyboard,Synth Flute +3,filter bit.wav,Other, +3,fiddle 2 right.wav,Violin,Fiddle 2 Right +3,fiddle 1.wav,Violin,Fiddle 1 +3,farfisa.wav,Keyboard,Farfisa +3,ethnic.wav,Other, +3,ethnic guitar.wav,Other,Ethnic Guitar +3,enrique iglesias.wav,Voice,Enrique Iglesias +3,endsynth.wav,Keyboard,Synth End +3,elguitar.wav,Electric Guitar, +3,elgtr2.wav,Electric Guitar,Electric 2 +3,elgtr1.wav,Electric Guitar,Electric 1 +3,elgtr 03.wav,Electric Guitar,Electric 3 +3,elegtrs.wav,Electric Guitar,Guitars +3,elegtr3.wav,Electric Guitar,Electric 3 +3,electronic drums.wav,Drums,Electronic +3,electronic drum kit.wav,Drums,Electronic +3,electro drums.wav,Drums,Electronic +3,electric_rhythm_guitar_3.wav,Electric Guitar,Rhythm 3 +3,electric_guitar_clean_left.wav,Electric Guitar,Clean Left +3,electric_guitar_clean.wav,Electric Guitar,Clean +3,electric_arrangement_guitar_left.wav,Electric Guitar,Left +3,electric_arrangement_guitar_1.wav,Electric Guitar,Electric 1 +3,electric_adds_guitar.wav,Electric Guitar,Adds +3,electric guitar2.wav,Electric Guitar,Electric 2 +3,electric guitar 2 left.wav,Electric Guitar,Electric 2 Left +3,electric gtr.wav,Electric Guitar, +3,elec piano.wav,Keyboard,Electric Piano +3,elec gt 1.wav,Electric Guitar,Electric 1 +3,el.gtr theme.wav,Electric Guitar,Theme +3,el.gtr rhythm.wav,Electric Guitar,Rhythm +3,el.gtr arr.wav,Electric Guitar, +3,el guitar rhythm.wav,Electric Guitar,Rhythm +3,el gtr2.wav,Electric Guitar,Electric 2 +3,eguitarrhythm.wav,Electric Guitar,Rhythm +3,eguitarlead.wav,Electric Guitar,Lead +3,eguitar rythmic 2.wav,Electric Guitar,Rhythm 2 +3,eguitar rythmic 1.wav,Electric Guitar,Rhythm 1 +3,eguit trem.wav,Electric Guitar,Tremolo +3,eguit solos 2.wav,Electric Guitar,Solo 2 +3,eguit dist 1.wav,Electric Guitar,Distorted 1 +3,eguit 2 right.wav,Electric Guitar,Electric 2 Right +3,eguit 1 right.wav,Electric Guitar,Electric 1 Right +3,egtr5.wav,Electric Guitar,Electric 5 +3,egtr2 right.wav,Electric Guitar,Electric 2 Right +3,egtr2 left.wav,Electric Guitar,Electric 2 Left +3,egt.wav,Electric Guitar, +3,egstereo.wav,Electric Guitar, +3,egmuted.wav,Electric Guitar,Muted +3,egfx.wav,Electric Guitar,FX +3,egchorus2 right.wav,Electric Guitar,Chorus 2 Right +3,egchorus1 left.wav,Electric Guitar,Chorus 1 Left +3,eg_r(lead).wav,Electric Guitar,Lead Right +3,eg_r(crunch).wav,Electric Guitar,Crunch Right +3,eg_l(crunch).wav,Electric Guitar,Crunch Left +3,eg5.wav,Electric Guitar,Electric 5 +3,eg4.wav,Electric Guitar,Electric 4 +3,eg4 left.wav,Electric Guitar,Electric 4 Left +3,eg(treble).wav,Electric Guitar,Treble +3,eg(stereo).wav,Electric Guitar, +3,eg(arr).wav,Electric Guitar, +3,eg rythm.wav,Electric Guitar,Rhythm +3,eg mute.wav,Electric Guitar,Muted +3,eg lead 4.wav,Electric Guitar,Lead 4 +3,eg dis r.wav,Electric Guitar,Distorted Right +3,eg clean 1.wav,Electric Guitar,Clean 1 +3,eg chords.wav,Electric Guitar,Chords +3,eg arr 1.wav,Electric Guitar, +3,eg 5 right.wav,Electric Guitar,Electric 5 Right +3,eg 5 + 6.wav,Electric Guitar,Electric 5 +3,eg 2 + 4.wav,Electric Guitar,Electric 2 +3,eg 12.wav,Electric Guitar, +3,eg 1 + 3.wav,Electric Guitar, +3,eg 06.wav,Electric Guitar,Electric 6 +3,eg 02 right.wav,Electric Guitar,Electric 2 Right +3,effects.wav,Computer,FX +3,edrum.wav,Drums,Electronic +3,eazy-e.wav,Voice,Eazy-E +3,e guitar solo.wav,Electric Guitar,Solo 2 +3,e guitar r.wav,Electric Guitar,Right +3,e guitar lead disto.wav,Electric Guitar,Lead Distorted +3,e guitar l.wav,Electric Guitar,Left +3,e guitar arragement disto.wav,Electric Guitar,Distorted +3,e guitar 1 left.wav,Electric Guitar,Electric 1 Left +3,e drums.wav,Drums,Electronic +3,dua lipa.wav,Voice,Dua Lipa +3,drums 2.wav,Drums,Drums 2 +3,drums 1.wav,Drums,Drums 1 +3,drake-adlib.wav,Voice,Drake +3,dr.wav,Other, +3,dolly parton.wav,Voice,Dolly Parton +3,doja cat.wav,Voice,Doja Cat +3,dist synth.wav,Keyboard,Synth Distorted +3,delaygtr.wav,Electric Guitar,Delay +3,daniel caesar.wav,Voice,Daniel Caesar +3,dance.wav,Other, +3,d.m.c..wav,Voice,D.M.C. +3,cp70.wav,Other, +3,cordes.wav,Other, +3,clean.wav,Electric Guitar,Clean +3,clean guitar.wav,Electric Guitar,Clean +3,clavinet 2.wav,Keyboard,Clavinet 2 +3,christina aguilera.wav,Voice,Christina Aguilera +3,choir pad.wav,Keyboard,Synth Choir +3,charlie scene.wav,Voice,Charlie Scene +3,chance the rapper.wav,Voice,Chance The Rapper +3,cardi b-adlib.wav,Voice,Cardi B +3,camila cabello-adlib.wav,Voice,Camila Cabello +3,bv fem.wav,Voice,Backing Female +3,bv f.wav,Voice,Backing Female +3,bv adds.wav,Voice,Backing Adds +3,bv (2).wav,Voice,Backing +3,bois.wav,Other, +3,blackbear.wav,Voice,Black Bear +3,big sean.wav,Voice,Big Sean +3,big boi.wav,Voice,Big Boi +3,bg vocals male.wav,Voice,Backing Male +3,bg vocals 1 2.wav,Voice,Backing +3,bells2.wav,Keyboard,Synth Bells +3,bell synths.wav,Keyboard,Synth Bells +3,beat box.wav,Percussion,Beat Box +3,bd.wav,Other, +3,bassguitar.wav,Bass Guitar, +3,bass2.wav,Bass Guitar,Bass 2 +3,bass1.wav,Bass Guitar,Bass 1 +3,bass-synth.wav,Keyboard,Synth Bass +3,bass clarinet.wav,Clarinet,Bass +3,bass 808.wav,Keyboard,808 +3,backing_vocal.wav,Voice,Backing +3,ashnikko.wav,Voice,Ashnikko +3,asap rocky.wav,Voice,ASAP Rocky +3,arr ag.wav,Acoustic Guitar, +3,arpeggiosynth.wav,Keyboard,Synth Arpeggios +3,arpeggiator.wav,Keyboard,Synth Arpeggios +3,analogsynth.wav,Keyboard,Synth Analog +3,all strings.wav,Keyboard,Synth Strings +3,all percs.wav,Percussion, +3,akon.wav,Voice,Akon +3,ag-notdups.wav,Acoustic Guitar, +3,ag solo.wav,Acoustic Guitar,Solo +3,ag l + r.wav,Acoustic Guitar, +3,ag base.wav,Acoustic Guitar, +3,ag adds.wav,Acoustic Guitar,Adds +3,ag 3 right.wav,Acoustic Guitar,Acoustic 3 Right +3,ag 12.wav,Acoustic Guitar, +3,ag 02 right.wav,Acoustic Guitar, +3,addleadgt.wav,Electric Guitar,Lead Adds +3,acoustic_rhythm_guitar.wav,Acoustic Guitar,Rhythm +3,acoustic_guitar_steel_right.wav,Acoustic Guitar,Steel +3,acoustic_guitar_right.wav,Acoustic Guitar,Right +3,acoustic guitar 2 right.wav,Acoustic Guitar,Right +3,acoustic guitar 1 left.wav,Acoustic Guitar,Left +3,acoust-guitar.wav,Acoustic Guitar, +3,acgtr2.wav,Acoustic Guitar, +3,acgtr1.wav,Acoustic Guitar, +3,acc gtr 1.wav,Acoustic Guitar, +3,ac piano.wav,Piano, +3,ac guit.wav,Acoustic Guitar, +3,ac gtr 1+2.wav,Acoustic Guitar, +3,ac drums.wav,Drums, +3,abass.wav,Bass Guitar, +3,a.wav,Other, +3,808bass.wav,Keyboard,808 +3,06 clean guitar.wav,Electric Guitar,Clean +3,05_bass.wav,Bass Guitar, +3,04_fx.wav,Computer,FX +3,04 rhythm guitars.wav,Electric Guitar,Rhythm +3,04 bass.wav,Bass Guitar, +3,02 samples.wav,Computer,Samples +3,02 percussion.wav,Percussion, +2,zither.wav,Other,Zither +2,young thug.wav,Voice,Young Thug +2,wurlitzer 1.wav,Keyboard,Wurlitzer +2,wurlit.wav,Keyboard,Wurlitzer +2,wurlie.wav,Keyboard,Wurlitzer +2,woodwind section.wav,Orchestra,Woodwinds +2,woods.wav,Orchestra,Woodwinds +2,winds.wav,Orchestra,Woodwinds +2,weird.wav,Other, +2,waylon jennings.wav,Voice,Waylon Jennings +2,warren g.wav,Voice,Warren G +2,vst str.wav,Keyboard,Synth Strings +2,voxsynth.wav,Keyboard,Synth Vox +2,voice-melody.wav,Voice,Lead Adds +2,voice synth.wav,Keyboard,Synth Vox +2,voc and 1b.wav,Voice,Lead +2,voc 5.wav,Voice, +2,voc 3b.wav,Voice, +2,violin 02.wav,Violin, +2,violin 01.wav,Violin, +2,vinyl fx.wav,Keyboard,Synth +2,vince gill.wav,Voice,Vince Gill +2,usher-adlib.wav,Voice,Usher +2,ukulele.wav,Ukulele, +2,tyler the creator.wav,Voice,Tyler The Creator +2,twista.wav,Voice,Twista +2,tubularbells.wav,Keyboard,Synth +2,trumpets real.wav,Trumpet, +2,trumpet 123.wav,Trumpet, +2,trb.wav,Other, +2,trance synths.wav,Keyboard,Synth +2,trance 1.wav,Keyboard,Synth +2,tpts.wav,Other, +2,tp 2.wav,Other, +2,tp 1.wav,Other, +2,tone.wav,Other, +2,tinie tempah.wav,Voice,Tinie Tempah +2,tinashe.wav,Voice,Tinashe +2,tina turner.wav,Voice,Tina Turner +2,timbales.wav,Percussion,Timbales +2,ti.wav,Voice,T.I. +2,thing.wav,Other, +2,the kid laroi.wav,Voice,The Kid Laroi +2,tammi terrell.wav,Voice,Tammi Terrell +2,synthstrings2.wav,Keyboard,Synth +2,synthplucks.wav,Keyboard,Synth +2,synthperc.wav,Keyboard,Synth +2,synthmelo.wav,Keyboard,Synth +2,synthlow.wav,Keyboard,Synth +2,synthlead1.wav,Keyboard,Synth +2,synthhit.wav,Keyboard,Synth +2,synthetic_piano.wav,Keyboard,Synth +2,synthe lead.wav,Keyboard,Synth +2,synth_solo.wav,Keyboard,Synth +2,synth_melody.wav,Keyboard,Synth +2,synth_mellotron_strings.wav,Keyboard,Synth +2,synth_flutes.wav,Keyboard,Synth +2,synth_brass.wav,Keyboard,Synth +2,synth_bells.wav,Keyboard,Synth +2,synth_2.wav,Keyboard,Synth +2,synth_1.wav,Keyboard,Synth +2,synth6.wav,Keyboard,Synth +2,synth4 bass.wav,Keyboard,Synth +2,synth12.wav,Keyboard,Synth +2,synth-bridge.wav,Keyboard,Synth +2,synth-4.wav,Keyboard,Synth +2,synth(efx).wav,Keyboard,Synth +2,synth str.wav,Keyboard,Synth +2,synth square.wav,Keyboard,Synth +2,synth sax.wav,Keyboard,Synth +2,synth riser.wav,Keyboard,Synth +2,synth reverse.wav,Keyboard,Synth +2,synth power.wav,Keyboard,Synth +2,synth pluck 1+2.wav,Keyboard,Synth +2,synth perc.wav,Keyboard,Synth +2,synth pad+strings.wav,Keyboard,Synth +2,synth noise.wav,Keyboard,Synth +2,synth marimba.wav,Keyboard,Synth +2,synth main.wav,Keyboard,Synth +2,synth hits.wav,Keyboard,Synth +2,synth harp.wav,Keyboard,Synth +2,synth fxs.wav,Keyboard,Synth +2,synth flutes.wav,Keyboard,Synth +2,synth disto.wav,Keyboard,Synth +2,synth bass moog.wav,Keyboard,Synth +2,synth bass 2.wav,Keyboard,Synth +2,synth bass 1.wav,Keyboard,Synth +2,synth bass 02.wav,Keyboard,Synth +2,synth bass 01.wav,Keyboard,Synth +2,synth arpegiator.wav,Keyboard,Synth +2,synth ambient.wav,Keyboard,Synth +2,synth adds 2.wav,Keyboard,Synth +2,synth add.wav,Keyboard,Synth +2,synth 9.wav,Keyboard,Synth +2,synth 5 left.wav,Keyboard,Synth +2,synth 3 right.wav,Keyboard,Synth +2,synth 3 left.wav,Keyboard,Synth +2,synth 2 right.wav,Keyboard,Synth +2,synth 2 intro.wav,Keyboard,Synth +2,synth 124.wav,Keyboard,Synth +2,synth 1 right.wav,Keyboard,Synth +2,synth 1 bells.wav,Keyboard,Synth +2,synth 1 bass.wav,Keyboard,Synth +2,synth 05.wav,Keyboard,Synth +2,synth + pads.wav,Keyboard,Synth +2,sung vox.wav,Voice, +2,sub_bass.wav,Bass Guitar,Sub Bass +2,strs.wav,Other, +2,strings_1.wav,Keyboard,Synth Strings +2,strings2.wav,Keyboard,Synth Strings +2,strings1.wav,Keyboard,Synth Strings +2,strings synth.wav,Keyboard,Synth Strings +2,strings and violins.wav,Keyboard,Synth Strings +2,strings (vst).wav,Keyboard,Synth Strings +2,stringpad.wav,Keyboard,Synth Strings +2,string synths.wav,Keyboard,Synth Strings +2,str synth.wav,Keyboard,Synth Strings +2,stick.wav,Other, +2,steve perry.wav,Voice, +2,steel guitar.wav,Electric Guitar,Steel +2,square synth.wav,Keyboard,Synth +2,speranto.wav,Other, +2,spanish guitar.wav,Acoustic Guitar, +2,solos.wav,Other, +2,solo sax.wav,Saxophone, +2,solo organ.wav,Keyboard,Organ +2,solo guitar.wav,Electric Guitar, +2,solo eg2.wav,Electric Guitar, +2,solo 2.wav,Electric Guitar, +2,solo 1.wav,Electric Guitar, +2,snap.wav,Other,Snaps +2,slidegtr.wav,Electric Guitar, +2,slide.wav,Electric Guitar, +2,slide guitar.wav,Electric Guitar, +2,slide guit.wav,Electric Guitar, +2,skylar grey.wav,Voice, +2,sisqo.wav,Voice, +2,sine synth.wav,Keyboard,Synth +2,sheena easton.wav,Voice, +2,shakers.wav,Percussion,Shakers +2,sfx vocal.wav,Keyboard,Synth +2,sfx crowd cheer.wav,Keyboard,Synth +2,sculpture.wav,Keyboard,Synth +2,scratching.wav,Other,Scratches +2,scratch and fx.wav,Other,Scratches +2,scott hoying.wav,Voice, +2,saxo.wav,Saxophone, +2,sax_tenor.wav,Saxophone, +2,sax_baritone.wav,Saxophone, +2,sax real.wav,Saxophone, +2,sax lead.wav,Saxophone, +2,saweetie.wav,Voice, +2,sawbass.wav,Keyboard,Synth +2,saw synths.wav,Keyboard,Synth +2,sam smith.wav,Voice, +2,salt.wav,Other, +2,s_woodwinds.wav,Orchestra,Woodwinds +2,s_whistle.wav,Other,Whistle +2,s_vocal synth.wav,Keyboard,Synth +2,s_vln.wav,Violin, +2,s_viola.wav,Viola, +2,s_trp.wav,Trumpet, +2,s_trombones.wav,Trombone, +2,s_timps.wav,Timpani, +2,s_taiko.wav,Other, +2,s_synth_strings.wav,Keyboard,Synth +2,s_synth_pluck.wav,Keyboard,Synth +2,s_synth_pad.wav,Keyboard,Synth +2,s_synth lead 2.wav,Keyboard,Synth +2,s_synth lead 1.wav,Keyboard,Synth +2,s_synth guitar.wav,Keyboard,Synth +2,s_synth effects.wav,Keyboard,Synth +2,s_synth bass 2.wav,Keyboard,Synth +2,s_synth 3.wav,Keyboard,Synth +2,s_synth 04.wav,Keyboard,Synth +2,s_synth 03.wav,Keyboard,Synth +2,s_strings sectn.wav,Keyboard,Synth +2,s_string.wav,Keyboard,Synth +2,s_shakers.wav,Percussion,Shakers +2,s_rhodes.wav,Keyboard,Synth +2,s_polysynth.wav,Keyboard,Synth +2,s_pianos.wav,Keyboard,Synth +2,s_pedal steel.wav,Electric Guitar, +2,s_pedal steel guitar.wav,Electric Guitar, +2,s_pads.wav,Keyboard,Synth +2,s_pad2.wav,Keyboard,Synth +2,s_oboe.wav,Oboe, +2,s_noize.wav,Computer,Noise +2,s_leadchiff.wav,Other, +2,s_kick.wav,Other, +2,s_harmonium.wav,Other, +2,s_harmonica.wav,Harmonica, +2,s_hammnd.wav,Keyboard,Synth +2,s_guit_wah.wav,Electric Guitar, +2,s_guit_lead.wav,Electric Guitar, +2,s_glock.wav,Glockenspiel, +2,s_french horn.wav,French Horn, +2,s_electric guitar 5.wav,Electric Guitar, +2,s_electric guitar 12.wav,Electric Guitar, +2,s_egclean.wav,Electric Guitar, +2,s_eg_rlead.wav,Electric Guitar, +2,s_eg_rclean.wav,Electric Guitar, +2,s_eg solo 2.wav,Electric Guitar, +2,s_eg solo 1.wav,Electric Guitar, +2,s_eg slide.wav,Electric Guitar, +2,s_eg intro.wav,Electric Guitar, +2,s_eg ctr.wav,Electric Guitar, +2,s_eg clean 2.wav,Electric Guitar, +2,s_eg chorus.wav,Electric Guitar, +2,s_eg 4.wav,Electric Guitar, +2,s_efx.wav,Other, +2,s_e-piano.wav,Keyboard,Synth +2,s_distortion guitar2.wav,Electric Guitar, +2,s_clavinet.wav,Keyboard,Clavinet +2,s_clav.wav,Keyboard,Clavinet +2,s_bv1.wav,Voice,Backing +2,s_bv sample.wav,Voice,Backing Sample +2,s_brass sect.wav,Other, +2,s_bgv.wav,Voice,Backing +2,s_bell synth.wav,Keyboard,Synth +2,s_bass_synth.wav,Keyboard,Synth +2,s_bass sub.wav,Bass Guitar, +2,s_bass acoustic.wav,Bass Guitar, +2,s_ag_r.wav,Acoustic Guitar, +2,s_ag 1.wav,Acoustic Guitar, +2,s_ag 03.wav,Acoustic Guitar, +2,s_acoustic guitarstrumming.wav,Acoustic Guitar, +2,s_acoustic guitar2.wav,Acoustic Guitar, +2,s_acoustic bass.wav,Bass Guitar, +2,s_accordion.wav,Accordion, +2,rza.wav,Voice, +2,russ.wav,Voice, +2,rthm.wav,Other, +2,rodhes.wav,Keyboard,Synth +2,rob halford.wav,Voice, +2,rm.wav,Other, +2,riser.wav,Other, +2,rightguitar 2.wav,Electric Guitar, +2,rightgtr 1.wav,Electric Guitar, +2,right gtr 1.wav,Electric Guitar, +2,right disto eg.wav,Electric Guitar, +2,ricky martin.wav,Voice, +2,rick ross.wav,Voice, +2,rhythm_guitars.wav,Electric Guitar, +2,rhythm guitars.wav,Electric Guitar, +2,reversefx.wav,Keyboard,Synth +2,reverse fx.wav,Keyboard,Synth +2,real trumpet 2.wav,Trumpet, +2,real trumpet 1.wav,Trumpet, +2,real trombon.wav,Trombone, +2,real tenor sax.wav,Saxophone,Tenor +2,raye.wav,Voice, +2,rap fills.wav,Voice, +2,raekwon.wav,Voice, +2,popcorn.wav,Other, +2,poly.wav,Keyboard,Synth +2,plucked2.wav,Keyboard,Synth +2,pluck 2.wav,Keyboard,Synth +2,pluck 1.wav,Keyboard,Synth +2,pluck 1 + 2.wav,Keyboard,Synth +2,picked bass.wav,Bass Guitar, +2,pick bass.wav,Bass Guitar, +2,piccolo.wav,Piccolo, +2,piano-notdup.wav,Keyboard,Synth +2,piano+rhodes.wav,Keyboard,Synth +2,piano melo.wav,Keyboard,Synth +2,piano loop.wav,Keyboard,Synth +2,piano 3.wav,Piano, +2,piano + ep.wav,Piano, +2,peso pluma.wav,Voice, +2,perx.wav,Percussion, +2,percussion-2.wav,Percussion, +2,percussion-1.wav,Percussion, +2,percussion+fx.wav,Percussion, +2,percumix.wav,Percussion, +2,percu + fx.wav,Percussion, +2,percs+sfx.wav,Percussion, +2,percs+fxs.wav,Percussion, +2,perc+sfx.wav,Percussion, +2,perc synth.wav,Percussion, +2,perc 3.wav,Percussion, +2,pepa.wav,Voice, +2,pedalgt.wav,Electric Guitar, +2,paul simon.wav,Voice, +2,pads-.wav,Keyboard,Synth +2,pads+strings.wav,Keyboard,Synth +2,pads and fx.wav,Keyboard,Synth +2,pads 1.wav,Keyboard,Synth +2,pad2.wav,Keyboard,Synth +2,pad vox.wav,Keyboard,Synth +2,pad and strings.wav,Keyboard,Synth +2,pad 3.wav,Keyboard,Synth +2,pad 02.wav,Keyboard,Synth +2,overdrive eg.wav,Electric Guitar, +2,other synths.wav,Keyboard,Synth +2,other guits.wav,Electric Guitar, +2,other bits.wav,Other, +2,organ_hammond_3.wav,Keyboard,Synth +2,organ_hammond.wav,Keyboard,Synth +2,organ+pad.wav,Keyboard,Synth +2,organ synths.wav,Keyboard,Synth +2,organ pad.wav,Keyboard,Synth +2,organ key.wav,Keyboard,Synth +2,organ 4.wav,Keyboard,Synth +2,organ 1 + 2.wav,Keyboard,Synth +2,organ + synth.wav,Keyboard,Synth +2,organ + bells.wav,Keyboard,Synth +2,orch hit.wav,Other, +2,omara portuondo.wav,Voice, +2,oboes.wav,Oboe, +2,nylon guitar.wav,Acoustic Guitar, +2,nylon guitar 2.wav,Acoustic Guitar, +2,nova.wav,Other, +2,nick jonas.wav,Voice, +2,nick cave.wav,Voice, +2,nf.wav,Other, +2,nelly.wav,Voice, +2,nelly furtado.wav,Voice, +2,ne-yo.wav,Voice, +2,muteguitar.wav,Electric Guitar, +2,muted trumpet.wav,Trumpet, +2,muted trp.wav,Trumpet, +2,muted guitar.wav,Electric Guitar, +2,mute guit.wav,Electric Guitar, +2,monosynth.wav,Keyboard,Synth +2,mono synth.wav,Keyboard,Synth +2,mix woodwinds.wav,Keyboard,Synth +2,mix synth1+4.wav,Keyboard,Synth +2,mix synth1+2+3.wav,Keyboard,Synth +2,mix synth.wav,Keyboard,Synth +2,mix synth+pad.wav,Keyboard,Synth +2,mix synth keys.wav,Keyboard,Synth +2,mix synth bass1+2.wav,Keyboard,Synth +2,mix synth bass.wav,Keyboard,Synth +2,mix synth 5+6.wav,Keyboard,Synth +2,mix rhodes.wav,Keyboard,Synth +2,mix piano+organ.wav,Keyboard,Synth +2,mix percus.wav,Percussion, +2,mix pads+strings.wav,Keyboard,Synth +2,mix organ.wav,Keyboard,Synth +2,mix lv1+2.wav,Voice,Lead +2,mix lv+dv.wav,Voice,Lead +2,mix l+r ags.wav,Other, +2,mix guit 1 + 2.wav,Electric Guitar, +2,mix gtr5+6.wav,Electric Guitar, +2,mix gtr2+4.wav,Electric Guitar, +2,mix gtr 3+4.wav,Electric Guitar, +2,mix eg3+5.wav,Electric Guitar, +2,mix eg2+6.wav,Electric Guitar, +2,mix eg2+4.wav,Electric Guitar, +2,mix eg l+r.wav,Electric Guitar, +2,mix eg crunch 1+2.wav,Electric Guitar, +2,mix eg clean 1+2.wav,Electric Guitar, +2,mix drums+tamb.wav,Drums, +2,mix drums + percs.wav,Drums, +2,mix bv1+2.wav,Voice,Backing +2,mix brass.wav,Other, +2,mix bells.wav,Other, +2,mix bass.wav,Other, +2,mitch grassi.wav,Voice, +2,misc.wav,Other, +2,misc lead synths.wav,Keyboard,Synth +2,miranda lambert.wav,Voice, +2,minji.wav,Voice, +2,mike d.wav,Voice, +2,melodysynth.wav,Keyboard,Synth +2,melo synth.wav,Keyboard,Synth +2,mellotron strings.wav,Keyboard,Synth +2,meghan trainor.wav,Voice, +2,mary j. blige.wav,Voice, +2,marvin gaye.wav,Voice, +2,mariah carey.wav,Voice, +2,marc anthony.wav,Voice, +2,mandolin 2.wav,Mandolin,Mandolin 2 +2,male vox.wav,Voice, +2,macklemore-adlib.wav,Voice, +2,mac miller.wav,Voice, +2,lv_1.wav,Voice,Lead 1 +2,lv2.wav,Voice,Lead 2 +2,lv and double-adlib.wav,Voice,Lead +2,lv adds.wav,Voice,Lead Adds +2,luke combs.wav,Voice, +2,louis armstrong.wav,Voice, +2,loop fx.wav,Other, +2,logic.wav,Other, +2,lizzo.wav,Voice, +2,lil tracy.wav,Voice, +2,lil kleine.wav,Voice, +2,lil jon-adlib.wav,Voice, +2,lil flip.wav,Voice, +2,lil bow wow.wav,Voice, +2,leftguitar 1.wav,Electric Guitar, +2,leftgtr 5.wav,Electric Guitar, +2,left rhythmic eg.wav,Electric Guitar, +2,left disto eg.wav,Electric Guitar, +2,leadgt_r.wav,Electric Guitar, +2,leadgt_l.wav,Electric Guitar, +2,leadgt right.wav,Electric Guitar, +2,lead_synth_1.wav,Electric Guitar, +2,lead_guitar.wav,Electric Guitar, +2,lead vox 1.wav,Voice, +2,lead vocal 1.wav,Voice, +2,lead sinth.wav,Keyboard,Synth +2,lead guitar 2.wav,Electric Guitar, +2,lead guitar 1.wav,Electric Guitar, +2,lea.wav,Voice, +2,ld12.wav,Voice, +2,ld1.wav,Voice, +2,ld-man.wav,Voice, +2,ld-girl.wav,Voice, +2,ld-1.wav,Voice, +2,ld(addlib).wav,Voice, +2,ld vox.wav,Voice, +2,ld male.wav,Voice, +2,ld female.wav,Voice, +2,ld and echo.wav,Voice, +2,ld adds.wav,Voice, +2,ld ad lib.wav,Voice, +2,lap steel real.wav,Electric Guitar, +2,kris kristofferson.wav,Voice, +2,kirstin maldonado.wav,Voice, +2,kim petras.wav,Voice, +2,key fx.wav,Other,FX +2,keri hilson.wav,Voice, +2,kelsea ballerini-adlib.wav,Voice, +2,kelly rowland.wav,Voice, +2,kelis.wav,Voice, +2,keith urban.wav,Voice, +2,kane brown.wav,Voice, +2,justin timberlake.wav,Voice, +2,jungkook.wav,Voice, +2,jung kook.wav,Voice, +2,julia michaels.wav,Voice, +2,juice wrld.wav,Voice, +2,jonny lang.wav,Voice, +2,johnny 3 tears.wav,Voice, +2,john legend.wav,Voice, +2,joe bonamassa.wav,Voice, +2,jessie murph.wav,Voice, +2,jay sean.wav,Voice, +2,jaw harp.wav,Other,Jaw Harp +2,jason derulo.wav,Voice, +2,intro synth.wav,Keyboard,Synth +2,ice spice.wav,Voice, +2,hit 2.wav,Other, +2,hillary scott.wav,Voice, +2,hautbois.wav,Voice, +2,hats.wav,Other, +2,harp synth.wav,Keyboard,Synth +2,harmonics.wav,Other, +2,hardy.wav,Voice, +2,hanni.wav,Voice, +2,haerin.wav,Voice, +2,gwen stefani.wav,Voice, +2,gun shot.wav,Voice, +2,guitarsynth.wav,Keyboard,Synth +2,guitars rhythm.wav,Electric Guitar, +2,guitars 6.wav,Electric Guitar, +2,guitarright.wav,Electric Guitar, +2,guitarrhythm.wav,Electric Guitar, +2,guitarfx.wav,Electric Guitar, +2,guitar_acoustic.wav,Acoustic Guitar, +2,guitar_3.wav,Electric Guitar, +2,guitar_2 right.wav,Electric Guitar, +2,guitar_1 left.wav,Electric Guitar, +2,guitar1.wav,Electric Guitar, +2,guitar-solo.wav,Electric Guitar, +2,guitar-acoust.wav,Acoustic Guitar, +2,guitar-3.wav,Electric Guitar, +2,guitar lead.wav,Electric Guitar, +2,guitar 4 right.wav,Electric Guitar, +2,guit_solo.2.wav,Electric Guitar, +2,guit_mute.wav,Electric Guitar, +2,guit solo.wav,Electric Guitar, +2,guit right.wav,Electric Guitar, +2,guit left.wav,Electric Guitar, +2,guit 3 + 5.wav,Electric Guitar, +2,guit 2 right.wav,Electric Guitar, +2,gucci mane.wav,Voice, +2,gtrs 2.wav,Electric Guitar, +2,gtrl.wav,Electric Guitar, +2,gtracus.wav,Acoustic Guitar, +2,gtracoustic.wav,Acoustic Guitar, +2,gtrac.wav,Acoustic Guitar, +2,gtr7.wav,Electric Guitar, +2,gtr2 right.wav,Electric Guitar, +2,gtr2 clean.wav,Electric Guitar, +2,gtr1+3.wav,Electric Guitar, +2,gtr-r.wav,Electric Guitar, +2,gtr-l.wav,Electric Guitar, +2,gtr-chords.wav,Electric Guitar, +2,gtr-c.wav,Electric Guitar, +2,gtr synth 2.wav,Electric Guitar, +2,gtr sample.wav,Electric Guitar, +2,gtr ny.wav,Electric Guitar, +2,gtr el.wav,Electric Guitar, +2,gtr el 4-.wav,Electric Guitar, +2,gtr el 3-.wav,Electric Guitar, +2,gtr el 3 right.wav,Electric Guitar, +2,gtr el 2 right.wav,Electric Guitar, +2,gtr el 2 left.wav,Electric Guitar, +2,gtr el 1-.wav,Electric Guitar, +2,gtr el 1 right.wav,Electric Guitar, +2,gtr el 1 left.wav,Electric Guitar, +2,gtr dist.wav,Electric Guitar, +2,gtr adds.wav,Electric Guitar, +2,gtr ac 2.wav,Acoustic Guitar, +2,gtr ac 1.wav,Acoustic Guitar, +2,gtr 9.wav,Electric Guitar, +2,gtr 7 right.wav,Electric Guitar, +2,gtr 3gauche.wav,Electric Guitar, +2,gtr 3 muted.wav,Electric Guitar, +2,gtr 1gauche.wav,Electric Guitar, +2,gtr 1 + 2.wav,Electric Guitar, +2,gt.wav,Electric Guitar, +2,gregg rolie.wav,Voice, +2,gong.wav,Percussion,Gong +2,glorilla.wav,Voice, +2,gate synth.wav,Keyboard,Synth +2,fx-.wav,Keyboard,Synth +2,fx's.wav,Keyboard,Synth +2,fx synths.wav,Keyboard,Synth +2,fx intro.wav,Keyboard,Synth +2,fx crowd.wav,Keyboard,Synth +2,fx birds.wav,Keyboard,Synth +2,fx and sweep.wav,Keyboard,Synth +2,fx 2.wav,Keyboard,Synth +2,fx + noise.wav,Keyboard,Synth +2,funk eg.wav,Electric Guitar, +2,frank zappa.wav,Voice, +2,flute synths.wav,Flute, +2,flute 2.wav,Flute, +2,fills.wav,Other, +2,fill.wav,Other, +2,fiddle 2 left.wav,Violin, +2,fiddle 1 right.wav,Violin, +2,female vox.wav,Voice, +2,feedback.wav,Other, +2,end synth.wav,Keyboard,Synth +2,ellie goulding.wav,Voice, +2,ella fitzgerald.wav,Voice, +2,elguit.wav,Electric Guitar, +2,elgtr lead.wav,Electric Guitar, +2,elegtr4.wav,Electric Guitar, +2,electrique.wav,Electric Guitar, +2,electric_rhythm_guitar_clean.wav,Electric Guitar, +2,electric_rhythm_guitar_center.wav,Electric Guitar, +2,electric_piano_rhodes_1.wav,Keyboard,Synth +2,electric_lead_guitar_left.wav,Electric Guitar, +2,electric_guitar_solo.wav,Electric Guitar, +2,electric_guitar_right.wav,Electric Guitar, +2,electric_guitar_rhythm_right.wav,Electric Guitar, +2,electric_guitar_rhythm_left.wav,Electric Guitar, +2,electric_guitar_rhythm.wav,Electric Guitar, +2,electric_guitar_overdrive.wav,Electric Guitar, +2,electric_guitar_clean_right.wav,Electric Guitar, +2,electric_guitar_clean_intro.wav,Electric Guitar, +2,electric_guitar_clean_center.wav,Electric Guitar, +2,electric_guitar_3.wav,Electric Guitar, +2,electric_guitar_2.wav,Electric Guitar, +2,electric_guitar_1.wav,Electric Guitar, +2,electric_feedback_guitar.wav,Electric Guitar, +2,electric_clean_guitar_left.wav,Electric Guitar, +2,electric_arrangement_guitar_3.wav,Electric Guitar, +2,electric piano 1.wav,Keyboard,Synth +2,electric guitar3.wav,Electric Guitar, +2,electric guitar(solo).wav,Electric Guitar, +2,electric guitar solo 2.wav,Electric Guitar, +2,electric guitar solo 1.wav,Electric Guitar, +2,electric guitar r.wav,Electric Guitar, +2,electric guitar muted.wav,Electric Guitar, +2,electric guitar l.wav,Electric Guitar, +2,electric guitar clean 3.wav,Electric Guitar, +2,electric guitar clean 2.wav,Electric Guitar, +2,electric guitar clean 1.wav,Electric Guitar, +2,electric guitar 6.wav,Electric Guitar, +2,electric guitar 4 right.wav,Electric Guitar, +2,electric guitar 1 left.wav,Electric Guitar, +2,electric drums.wav,Drums, +2,elect guitar.wav,Electric Guitar, +2,elecgtr.wav,Electric Guitar, +2,elec gtr 2 right.wav,Electric Guitar, +2,elec gtr 1 left.wav,Electric Guitar, +2,el.gtr rhyt.wav,Electric Guitar, +2,el.gtr r.wav,Electric Guitar, +2,el.gtr left.wav,Electric Guitar, +2,el.gtr l.wav,Electric Guitar, +2,el.gtr clean.wav,Electric Guitar, +2,el.gtr arp.wav,Electric Guitar, +2,el.drums.wav,Drums, +2,el-p.wav,Keyboard,Synth +2,el piano 3.wav,Keyboard,Synth +2,el piano 2 right.wav,Keyboard,Synth +2,el piano 1 left.wav,Keyboard,Synth +2,el pia.wav,Keyboard,Synth +2,el guitar solo.wav,Electric Guitar, +2,el guitar clean.wav,Electric Guitar, +2,el guitar 3.wav,Electric Guitar, +2,el guitar 2.wav,Electric Guitar, +2,el guitar 1.wav,Electric Guitar, +2,el gtr clean.wav,Electric Guitar, +2,el gtr 5.wav,Electric Guitar, +2,el gtr 1 left.wav,Electric Guitar, +2,el alfa.wav,Other, +2,egwah.wav,Other, +2,eguitar2.wav,Electric Guitar, +2,eguitar1.wav,Electric Guitar, +2,eguitar rythmic 3.wav,Electric Guitar, +2,eguitar clean.wav,Electric Guitar, +2,eguitar arrangement 3.wav,Electric Guitar, +2,eguitar arrangement 2.wav,Electric Guitar, +2,eguitar arrangement 1.wav,Electric Guitar, +2,eguit2 intro.wav,Electric Guitar, +2,eguit solos 1.wav,Electric Guitar, +2,eguit lead.wav,Electric Guitar, +2,eguit dist 3.wav,Electric Guitar, +2,eguit dist 2.wav,Electric Guitar, +2,eguit 7.wav,Electric Guitar, +2,eguit 2 left.wav,Electric Guitar, +2,egtrsolo.wav,Electric Guitar, +2,egtr4.wav,Electric Guitar, +2,egtr1 right.wav,Electric Guitar, +2,egt 3.wav,Electric Guitar, +2,egmute left.wav,Electric Guitar, +2,eglead 2.wav,Electric Guitar, +2,egfuzz.wav,Electric Guitar, +2,egclean2.wav,Electric Guitar, +2,egchorus.wav,Electric Guitar, +2,eg_rclean.wav,Electric Guitar, +2,eg_lslide.wav,Electric Guitar, +2,eg_l(lead).wav,Electric Guitar, +2,eg_l 3.wav,Electric Guitar, +2,eg6.wav,Electric Guitar, +2,eg3 left.wav,Electric Guitar, +2,eg2lead.wav,Electric Guitar, +2,eg1 right.wav,Electric Guitar, +2,eg1 left.wav,Electric Guitar, +2,eg(wha).wav,Electric Guitar, +2,eg(tremolo).wav,Electric Guitar, +2,eg(lead)_2.wav,Electric Guitar, +2,eg(fuzz).wav,Electric Guitar, +2,eg(efx).wav,Electric Guitar, +2,eg trem.wav,Electric Guitar, +2,eg slide.wav,Electric Guitar, +2,eg phaser.wav,Electric Guitar, +2,eg od.wav,Electric Guitar, +2,eg lead 5.wav,Electric Guitar, +2,eg lead 02.wav,Electric Guitar, +2,eg lead 01.wav,Electric Guitar, +2,eg intro.wav,Electric Guitar, +2,eg disto.wav,Electric Guitar, +2,eg dist solo.wav,Electric Guitar, +2,eg dist 02 right.wav,Electric Guitar, +2,eg dist 02 left.wav,Electric Guitar, +2,eg cln.wav,Electric Guitar, +2,eg clean c.wav,Electric Guitar, +2,eg clean adds.wav,Electric Guitar, +2,eg background.wav,Electric Guitar, +2,eg arrangement 02.wav,Electric Guitar, +2,eg arrangement 01.wav,Electric Guitar, +2,eg arr 3.wav,Electric Guitar, +2,eg adds 1.wav,Electric Guitar, +2,eg 9.wav,Electric Guitar, +2,eg 9 + 10.wav,Electric Guitar, +2,eg 7 + 8.wav,Electric Guitar, +2,eg 6 + 7.wav,Electric Guitar, +2,eg 5 left.wav,Electric Guitar, +2,eg 4 left.wav,Electric Guitar, +2,eg 4 + 6.wav,Electric Guitar, +2,eg 4 + 5.wav,Electric Guitar, +2,eg 3 end.wav,Electric Guitar, +2,eg 2 + 3.wav,Electric Guitar, +2,eg 11 + 12.wav,Electric Guitar, +2,e-40.wav,Other, +2,e piano adds.wav,Keyboard,Synth +2,e keys.wav,Keyboard,Synth +2,e guitar riff.wav,Electric Guitar, +2,e guitar rhytmic disto.wav,Electric Guitar, +2,e guitar arragement clean.wav,Electric Guitar, +2,e guitar arragement 2.wav,Electric Guitar, +2,e guitar arragement 1.wav,Electric Guitar, +2,e guitar 6 right.wav,Electric Guitar, +2,e guitar 5 left.wav,Electric Guitar, +2,e guitar 4 right.wav,Electric Guitar, +2,e guitar 3 left.wav,Electric Guitar, +2,drumset.wav,Drums, +2,drums-01.wav,Drums, +2,drums and fx.wav,Drums, +2,drum machine.wav,Drums, +2,drum fx.wav,Drums, +2,dr dre.wav,Voice,Dr. Dre +2,double_bass.wav,Double Bass, +2,distrhythmgtr.wav,Electric Guitar, +2,distogtr1.wav,Electric Guitar, +2,dist.wav,Electric Guitar, +2,dido.wav,Voice, +2,didgeridoo.wav,Other,Didgeridoo +2,descemer bueno.wav,Other, +2,deep bass.wav,Other, +2,dbl bass.wav,Double Bass, +2,danielle.wav,Voice, +2,dance_synth.wav,Keyboard,Synth +2,dance piano.wav,Keyboard,Synth +2,dababy.wav,Voice, +2,cymbals.wav,Percussion,Cymbals +2,crunch_guitar.wav,Electric Guitar, +2,crunch rhythmic eg.wav,Electric Guitar, +2,crowdfx.wav,Other,Crowd FX +2,count.wav,Computer,Count In +2,count off.wav,Computer,Count In +2,continental.wav,Other, +2,coko.wav,Voice, +2,cocotte eg.wav,Voice, +2,clean_guitars.wav,Electric Guitar, +2,clean_guitar.wav,Electric Guitar, +2,clean guits.wav,Electric Guitar, +2,clarinets.wav,Clarinet, +2,ciara-adlib.wav,Voice, +2,chromatic percs.wav,Percussion, +2,chris young.wav,Voice, +2,chorusrhythmgtr.wav,Electric Guitar, +2,chorusgtr.wav,Electric Guitar, +2,choirs.wav,Other, +2,chester bennington.wav,Voice, +2,chelo.wav,Other, +2,charlie wilson.wav,Voice, +2,charles kelley.wav,Voice, +2,chainsmokers.wav,Voice, +2,central cee.wav,Other, +2,centerguitar 1.wav,Electric Guitar, +2,center ag.wav,Acoustic Guitar, +2,celo.wav,Other, +2,cellos.wav,Cello, +2,bvs male.wav,Voice, +2,bv_female.wav,Voice, +2,bv5.wav,Voice, +2,bv3.wav,Voice, +2,bv-female.wav,Voice, +2,bv-adlib.wav,Voice, +2,bv+ld2.wav,Voice, +2,bv fixed.wav,Voice, +2,bv drake.wav,Voice, +2,brass-.wav,Other,Brass +2,brass vst.wav,Other,Brass +2,brass s.wav,Other,Brass +2,brass intro.wav,Other,Brass +2,brad paisley.wav,Voice, +2,bouzouki.wav,Other, +2,bootsy collins.wav,Voice, +2,boom.wav,Other, +2,blocks.wav,Other, +2,blip.wav,Other, +2,blake shelton.wav,Voice, +2,black thought.wav,Voice, +2,billie eilish.wav,Voice, +2,bigsynth.wav,Keyboard,Synth +2,big synth.wav,Keyboard,Synth +2,bg.wav,Voice, +2,bg vocals female.wav,Voice, +2,beep.wav,Other, +2,bass_1.wav,Bass Guitar, +2,bass_01.wav,Bass Guitar, +2,bass.2.wav,Bass Guitar, +2,bass+synth bass.wav,Keyboard,Synth +2,bass slap.wav,Bass Guitar, +2,bass pad.wav,Keyboard,Synth +2,bass mix.wav,Keyboard,Synth +2,bass filter.wav,Keyboard,Synth +2,bass disto.wav,Bass Guitar, +2,bass dist.wav,Bass Guitar, +2,basic synth.wav,Keyboard,Synth +2,bas.wav,Other, +2,bari sax.wav,Saxophone,Baritone +2,banjo-.wav,Banjo, +2,bagpipes.wav,Bagpipes, +2,bagpipe.wav,Bagpipes, +2,back vocal.wav,Voice, +2,avi.wav,Other, +2,atmoguitar.wav,Electric Guitar, +2,astrud gilberto.wav,Voice, +2,art garfunkel.wav,Voice, +2,arrange_electric_guitar_2.wav,Electric Guitar, +2,arrange_electric_guitar_1.wav,Electric Guitar, +2,arpsynth.wav,Keyboard,Synth +2,arps.wav,Keyboard,Synth +2,arpeggiator 2.wav,Keyboard,Synth +2,arpeggiator 1.wav,Keyboard,Synth +2,arp eg.wav,Electric Guitar, +2,arp clean eg.wav,Electric Guitar, +2,arp ag.wav,Acoustic Guitar, +2,arp 2.wav,Other, +2,arp 1.wav,Other, +2,ariana grande.wav,Voice, +2,anne-marie.wav,Voice, +2,andrew taggart.wav,Voice, +2,andrea bocelli.wav,Voice, +2,analog_seq.wav,Keyboard,Synth +2,analog strings.wav,Orchestra,Strings +2,ambient.wav,Keyboard,Synth +2,ambiance pads.wav,Keyboard,Synth +2,alvaro soler.wav,Voice, +2,all synths.wav,Keyboard,Synth +2,all bass.wav,Other, +2,alison krauss.wav,Voice, +2,alicia keys.wav,Voice, +2,alex gaskarth.wav,Voice, +2,akk.wav,Other, +2,agt 2.wav,Acoustic Guitar, +2,agt 1.wav,Acoustic Guitar, +2,agnylon.wav,Acoustic Guitar, +2,ag_l 2.wav,Acoustic Guitar, +2,ag_1.wav,Acoustic Guitar, +2,ag2 right.wav,Acoustic Guitar, +2,ag-notdup.wav,Acoustic Guitar, +2,ag steel l.wav,Acoustic Guitar, +2,ag right.wav,Acoustic Guitar, +2,ag nylon solo.wav,Acoustic Guitar, +2,ag nylon r.wav,Acoustic Guitar, +2,ag c.wav,Acoustic Guitar, +2,ag 4.wav,Acoustic Guitar, +2,ag 3 left.wav,Acoustic Guitar, +2,ag 04.wav,Acoustic Guitar, +2,ag 03 right.wav,Acoustic Guitar, +2,add guit.wav,Other, +2,adam yauch.wav,Voice, +2,ad-rock.wav,Other, +2,ad lib.wav,Voice, +2,acusgtr.wav,Acoustic Guitar, +2,acoustics.wav,Acoustic Guitar, +2,acoustic_guitars.wav,Acoustic Guitar, +2,acoustic guitar-notdups.wav,Acoustic Guitar, +2,acoustic gtr 2.wav,Acoustic Guitar, +2,acoustic gtr 1.wav,Acoustic Guitar, +2,acguitar2.wav,Acoustic Guitar, +2,acc guitar solo.wav,Acoustic Guitar, +2,acc gtr 2.wav,Acoustic Guitar, +2,ac.gtr theme.wav,Acoustic Guitar, +2,ac.gtr arp.wav,Acoustic Guitar, +2,ac guitar rythmic.wav,Acoustic Guitar, +2,ac guitar rhytmic.wav,Acoustic Guitar, +2,ac guitar arrangement.wav,Acoustic Guitar, +2,ac guitar 2.wav,Acoustic Guitar, +2,ac guitar 1.wav,Acoustic Guitar, +2,ac gtrs.wav,Acoustic Guitar, +2,ac gtr2.wav,Acoustic Guitar, +2,ac gtr1.wav,Acoustic Guitar, +2,ac gtr + mando.wav,Acoustic Guitar, +2,a guitar 3.wav,Acoustic Guitar, +2,_drums.wav,Drums, +2,_bass.wav,Bass Guitar, +2,4.wav,Other, +2,2-d.wav,Other, +2,13_lv.wav,Voice,Lead +2,13_clavinet.wav,Keyboard,Clavinet +2,13_bv.wav,Voice,Backing +2,12_lv.wav,Voice,Lead +2,12_bv.wav,Voice,Backing +2,11 lead vocal.wav,Voice,Lead +2,10_strings.wav,Other, +2,10_brasses.wav,Other, +2,10 synth pad.wav,Other, +2,10 strings.wav,Other, +2,10 lead vocal.wav,Other, +2,10 backing vocals.wav,Other, +2,09_eg2 r.wav,Other, +2,09 backing vocals.wav,Other, +2,07_organ.wav,Other, +2,07_ep.wav,Other, +2,07_ac gtr l.wav,Other, +2,07 strings.wav,Other, +2,07 lead vocal.wav,Other, +2,06_piano.wav,Other, +2,06_eg1 l.wav,Other, +2,06_ac piano.wav,Other, +2,05_percu.wav,Other, +2,05 piano.wav,Other, +2,05 lead guitars.wav,Other, +2,05 clean guitar.wav,Other, +2,04_synth bass.wav,Other, +2,04_drums.wav,Other, +2,04 lead guitar.wav,Other, +2,03 rhythm guitars.wav,Other, +1,zoo station u2 wurlitzer.wav,Other, +1,zoo station u2 perc.wav,Other, +1,zoo station u2 pedalsteel.wav,Other, +1,zoo station u2 pad.wav,Other, +1,zoo station u2 organ.wav,Other, +1,zoo station u2 ld.wav,Other, +1,zoo station u2 e guitar 3.wav,Other, +1,zoo station u2 e guitar 2.wav,Other, +1,zoo station u2 e guitar 1.wav,Other, +1,zoo station u2 drums.wav,Other, +1,zoo station u2 bv.wav,Other, +1,zoo station u2 bass.wav,Other, +1,zoo station u2 ambient.wav,Other, +1,zonderling.wav,Other, +1,zion.wav,Other, +1,zara larsson.wav,Other, +1,zacari.wav,Other, +1,yungstar.wav,Other, +1,yungblud.wav,Other, +1,yung gravy.wav,Other, +1,yung berg.wav,Other, +1,yung baby tate.wav,Other, +1,yuki chiba.wav,Other, +1,young thug-adlib.wav,Other, +1,young noble.wav,Other, +1,young jeezy.wav,Other, +1,young buck.wav,Other, +1,young biggie.wav,Other, +1,ynth 2.wav,Other, +1,ympani.wav,Other, +1,xzibit.wav,Other, +1,xylophones.wav,Other, +1,xxxtentacion.wav,Other, +1,xp.wav,Other, +1,wyclef jean.wav,Other, +1,wurly ep.wav,Keyboard,Wurlitzer +1,wurlt.wav,Keyboard,Wurlitzer +1,wurlitzer_ep.wav,Keyboard,Wurlitzer +1,wurlitzer+clavinet.wav,Keyboard,Wurlitzer +1,wurlitzer solo melodies.wav,Keyboard,Wurlitzer +1,wurlitzer ep.wav,Keyboard,Wurlitzer +1,wurlitzer 2.wav,Keyboard,Wurlitzer +1,wurlitzer 2 solo.wav,Keyboard,Wurlitzer +1,wurli+rhod.wav,Keyboard,Wurlitzer +1,wurli wha.wav,Keyboard,Wurlitzer +1,wurli synth.wav,Keyboard,Wurlitzer +1,wurli 200a.wav,Keyboard,Wurlitzer +1,wurli 140b.wav,Keyboard,Wurlitzer +1,wunder_s_synths.wav,Other, +1,wunder_s_piano.wav,Other, +1,wunder_s_guitar_02.wav,Other, +1,wunder_s_guitar_01.wav,Other, +1,wunder_s_drums.wav,Other, +1,wunder_s_bv.wav,Other, +1,wunder_s_bass.wav,Other, +1,wu-tang.wav,Other, +1,world_percussion.wav,Other, +1,world_instruments.wav,Other, +1,world-voices e,Other, +1,wooshfx.wav,Other, +1,woodwings.wav,Other, +1,woodblock.wav,Other, +1,wonder mike.wav,Other, +1,wolftyla.wav,Other, +1,wobble_bass_synth.wav,Other, +1,wisin.wav,Other, +1,wine.wav,Other, +1,winds + pipe.wav,Other, +1,windfx.wav,Other, +1,wind synth.wav,Other, +1,wind section.wav,Other, +1,wind harp.wav,Other, +1,wind fx.wav,Other, +1,willow sage hart.wav,Other, +1,william.wav,Other, +1,will.i.am-adlib.wav,Other, +1,whurli.wav,Other, +1,whistler.wav,Other, +1,whistle 2 end.wav,Other, +1,whistle 1 right.wav,Other, +1,whisper.wav,Other, +1,whilstesynth.wav,Other, +1,whilstemonolead.wav,Other, +1,whagt_l.wav,Other, +1,wha clean.wav,Other, +1,wesley schultz.wav,Other, +1,weird noise.wav,Other, +1,wblock.wav,Other, +1,wawagtr 1.wav,Other, +1,wawa.wav,Other, +1,waterphone.wav,Other, +1,wanya morris.wav,Other, +1,wale.wav,Other, +1,waka flocka flame.wav,Other, +1,wahwah guitar 2.wav,Other, +1,wahwah funk eg.wav,Other, +1,wahwah filter eg.wav,Other, +1,wahsynth.wav,Other, +1,wahgtr.wav,Other, +1,wah guit.wav,Other, +1,vynyl slowdown fx.wav,Other, +1,vynil_noise.wav,Other, +1,vx lead.wav,Other, +1,vx back.wav,Other, +1,vst strings.wav,Other, +1,vst choir.wav,Other, +1,voz.wav,Other, +1,voxsynth12.wav,Keyboard,Synth Vox +1,voxfx.wav,Keyboard,Synth Vox +1,vox_chops.wav,Keyboard,Synth Vox +1,vox-stac.wav,Keyboard,Synth Vox +1,vox shouts.wav,Keyboard,Synth Vox +1,vox shout.wav,Keyboard,Synth Vox +1,vox scream.wav,Keyboard,Synth Vox +1,vox sampler.wav,Keyboard,Synth Vox +1,vox sample loop.wav,Keyboard,Synth Vox +1,vox sample loop bong bong.wav,Keyboard,Synth Vox +1,vox punch.wav,Keyboard,Synth Vox +1,vox pad.wav,Keyboard,Synth Vox +1,vox organ.wav,Keyboard,Synth Vox +1,vox only.wav,Keyboard,Synth Vox +1,vox mellotron.wav,Keyboard,Synth Vox +1,vox leadmaster.wav,Keyboard,Synth Vox +1,vox lead.wav,Keyboard,Synth Vox +1,vox hey.wav,Keyboard,Synth Vox +1,vox cut.wav,Keyboard,Synth Vox +1,vox breath.wav,Keyboard,Synth Vox +1,vox 2.wav,Keyboard,Synth Vox +1,volbeat.wav,Other, +1,voicesynth 1+2.wav,Keyboard,Synth Vox +1,voices.wav,Keyboard,Synth Vox +1,voices glass synth.wav,Keyboard,Synth Vox +1,voicepad+atmo.wav,Keyboard,Synth Vox +1,voicefx.wav,Keyboard,Synth Vox +1,voice.wav,Keyboard,Synth Vox +1,voice fx.wav,Keyboard,Synth Vox +1,voice efx.wav,Keyboard,Synth Vox +1,vocoder synth.wav,Other, +1,voco.wav,Other, +1,vocglitch.wav,Keyboard,Synth Vox +1,vocals_sfx.wav,Keyboard,Synth Vox +1,vocals fx.wav,Keyboard,Synth Vox +1,vocalpad.wav,Keyboard,Synth Vox +1,vocal_sfx.wav,Keyboard,Synth Vox +1,vocal shouts.wav,Keyboard,Synth Vox +1,vocal sample.wav,Keyboard,Synth Vox +1,vocal pad.wav,Keyboard,Synth Vox +1,vocal loop 2.wav,Keyboard,Synth Vox +1,vocal loop 1.wav,Keyboard,Synth Vox +1,vocal choir.wav,Voice, +1,vocal adds.wav,Voice, +1,voc2+3mix.wav,Voice, +1,voc123.wav,Voice, +1,voc12.wav,Voice, +1,voc1+2mix.wav,Voice, +1,voc pads.wav,Voice, +1,voc and 3b.wav,Voice, +1,voc ad lib.wav,Voice, +1,voc 5b.wav,Voice, +1,voc 4b.wav,Voice, +1,voc 2rap.wav,Voice, +1,voc 2b spoken.wav,Voice, +1,voc 2b rap.wav,Voice, +1,voc 2 whisper.wav,Voice, +1,voc 12b.wav,Voice, +1,voc 123.wav,Voice, +1,voc 1+2+3+5mix.wav,Voice, +1,voc 1 rap.wav,Voice, +1,voc 1 2.wav,Other, +1,vln 123.wav,Other, +1,vl ii right.wav,Other, +1,vl i right.wav,Other, +1,vita.wav,Other, +1,violins (real).wav,Violin, +1,violins (cello).wav,Violin, +1,violines.wav,Violin, +1,violin1234567.wav,Violin, +1,violin section.wav,Violin, +1,violin real.wav,Violin, +1,violin loop.wav,Violin, +1,violin 03 pizz.wav,Violin, +1,violas.wav,Viola, +1,violas and cellos.wav,Viola, +1,vinylnoise strings.wav,Other, +1,vinyl_scratches.wav,Other, +1,vinyl_fx.wav,Other, +1,vinyl sfx.wav,Other, +1,vinyl scratch.wav,Other, +1,vinyl noise_01.wav,Other, +1,vinyl noise.wav,Other, +1,vinyl + breath..wav,Other, +1,vin rock.wav,Other, +1,vibrophone.wav,Keyboard,Vibes +1,vibraslap.wav,Keyboard,Vibes +1,vibraphone_2.wav,Keyboard,Vibes +1,vibraphone_1.wav,Keyboard,Vibes +1,vibe.wav,Keyboard,Vibes +1,versesynth.wav,Other, +1,versegtrs.wav,Other, +1,verseacoustic.wav,Other, +1,vee synth.wav,Other, +1,vc left.wav,Other, +1,vanessa carlton.wav,Other, +1,valora.wav,Other, +1,val young.wav,Other, +1,v.wav,Other, +1,urli.wav,Other, +1,uprightbass.wav,Other, +1,upright_piano.wav,Other, +1,upright.wav,Other, +1,uncle charlie wilson.wav,Other, +1,u2.wav,Other, +1,u-god.wav,Other, +1,tzouras.wav,Other, +1,tyler.wav,Other, +1,tyler childers.wav,Other, +1,tyla.wav,Other, +1,tyga.wav,Other, +1,two hearts beat as one u2 ld.wav,Voice,Lead +1,two hearts beat as one u2 e guitar 3.wav,Electric Guitar, +1,two hearts beat as one u2 e guitar 2.wav,Electric Guitar, +1,two hearts beat as one u2 e guitar 1.wav,Electric Guitar, +1,two hearts beat as one u2 drums.wav,Drums, +1,two hearts beat as one u2 bv.wav,Voice,Backing +1,two hearts beat as one u2 bass.wav,Bass Guitar, +1,twang synth.wav,Other, +1,turn table.wav,Other, +1,tuned-percussion.wav,Other, +1,tuned percussion.wav,Other, +1,tulisa.wav,Other, +1,tubulasr.wav,Other, +1,tubular bells_1.wav,Other, +1,tsr.wav,Other, +1,tsmbourine.wav,Other, +1,ts.wav,Other, +1,trumpets vst.wav,Trumpet, +1,trumpets right.wav,Trumpet, +1,trumpets real+vst.wav,Trumpet, +1,trumpets pitch.wav,Trumpet, +1,trumpets left.wav,Trumpet, +1,trumpet_2.wav,Trumpet, +1,trumpet_123.wav,Trumpet, +1,trumpet_1.wav,Trumpet, +1,trumpet and trombone.wav,Trumpet, +1,trumpet 2.wav,Trumpet, +1,trumpet 1.wav,Trumpet, +1,trp solo.wav,Trumpet, +1,troye sivan.wav,Other, +1,trombones vst.wav,Trombone, +1,trombone real.wav,Trombone, +1,trombone 02.wav,Trombone, +1,trombone 01.wav,Trombone, +1,trombon.wav,Trombone, +1,trick daddy.wav,Other, +1,triana.wav,Other, +1,trevor williams.wav,Other, +1,tres.wav,Other, +1,tremologuitar.wav,Other, +1,tremolo guitar 5.wav,Other, +1,trem thing.wav,Other, +1,trem pad.wav,Other, +1,trem gtr.wav,Other, +1,treach.wav,Other, +1,tranceld.wav,Other, +1,tranceextra.wav,Other, +1,trance (bass).wav,Other, +1,tpt2.wav,Other, +1,tpt1.wav,Other, +1,tpt and bone.wav,Other, +1,tp12.wav,Other, +1,tove lo.wav,Other, +1,total.wav,Other, +1,tory lanez.wav,Other, +1,tori kelly.wav,Other, +1,tool synth.wav,Other, +1,tool lv.wav,Other, +1,tool jambi synth pad.wav,Other, +1,tool jambi perc.wav,Other, +1,tool jambi lv.wav,Other, +1,tool jambi guitar 2.wav,Other, +1,tool jambi guitar 1.wav,Other, +1,tool jambi fx.wav,Other, +1,tool jambi drum.wav,Other, +1,tool jambi bv.wav,Other, +1,tool jambi bass 2.wav,Other, +1,tool jambi bass 1.wav,Other, +1,tool guitar 4.wav,Other, +1,tool guitar 3.wav,Other, +1,tool guitar 2.wav,Other, +1,tool guitar 1.wav,Other, +1,tool fx.wav,Other, +1,tool drum.wav,Other, +1,tool bv.wav,Other, +1,tool bass.wav,Other, +1,tony green.wav,Other, +1,tone + synthpad.wav,Other, +1,tonal percussion.wav,Other, +1,toms.wav,Other, +1,toms elec.wav,Other, +1,tom waits.wav,Other, +1,tom mcdonald.wav,Other, +1,tl.wav,Other, +1,tl-adlib.wav,Other, +1,tiple.wav,Other, +1,tink.wav,Other, +1,tinie lead.wav,Other, +1,tin whistle.wav,Other, +1,timps.wav,Other, +1,timp.wav,Other, +1,timp and tamb.wav,Other, +1,timbales fx.wav,Other, +1,timbale.wav,Other, +1,tim mcgraw.wav,Other, +1,thundercat.wav,Other, +1,thomas rhett.wav,Other, +1,third solo eg.wav,Other, +1,themegtr 1.wav,Other, +1,theme.wav,Other, +1,theme synthlead.wav,Other, +1,theme synth arp.wav,Other, +1,theme gtr 3.wav,Other, +1,theme electric guit.wav,Other, +1,the vamps.wav,Other, +1,the struts.wav,Other, +1,the script.wav,Other, +1,the schoolmaster.wav,Other, +1,the notorious b.i.g.-adlib.wav,Other, +1,the judge.wav,Other, +1,the eastside boyz.wav,Other, +1,the chicks travelin soldier perc.wav,Percussion, +1,the chicks travelin soldier mandoline.wav,Mandolin, +1,the chicks travelin soldier lv.wav,Voice,Lead +1,the chicks travelin soldier fiddle 2.wav,Violin,Fiddle 2 +1,the chicks travelin soldier fiddle 1.wav,Violin,Fiddle 1 +1,the chicks travelin soldier drum.wav,Drums, +1,the chicks travelin soldier bass.wav,Bass Guitar, +1,the chicks travelin soldier acordion.wav,Accordion, +1,the chicks travelin soldier acc guitar 4.wav,Acoustic Guitar,Acoustic 4 +1,the chicks travelin soldier acc guitar 3.wav,Acoustic Guitar,Acoustic 3 +1,the chicks travelin soldier acc guitar 2.wav,Acoustic Guitar,Acoustic 2 +1,the chicks travelin soldier acc guitar 1.wav,Acoustic Guitar,Acoustic 1 +1,the chicks traveli soldier bv.wav,Voice,Backing +1,the big money rush synthbass.wav,Keyboard,Synth Bass +1,the big money rush synth gtr.wav,Keyboard,Synth Guitar +1,the big money rush ld.wav,Voice,Lead +1,the big money rush e guitar solo.wav,Electric Guitar,Solo +1,the big money rush e guitar 4.wav,Electric Guitar,Electric 4 +1,the big money rush e guitar 3.wav,Electric Guitar,Electric 3 +1,the big money rush e guitar 2.wav,Electric Guitar,Electric 2 +1,the big money rush e guitar 1.wav,Electric Guitar,Electric 1 +1,the big money rush drums.wav,Drums, +1,the big money rush bv.wav,Voice,Backing +1,the big money rush bass.wav,Bass Guitar, +1,the babys.wav,Other, +1,the 1975 its not living if its not with you vocal synth.wav,Keyboard,Synth Vox +1,the 1975 its not living if its not with you piano.wav,Piano, +1,the 1975 its not living if its not with you lv.wav,Voice,Lead +1,the 1975 its not living if its not with you guitar 7.wav,Electric Guitar,Electric 5 +1,the 1975 its not living if its not with you guitar 4.wav,Electric Guitar,Electric 4 +1,the 1975 its not living if its not with you guitar 3.wav,Electric Guitar,Electric 3 +1,the 1975 its not living if its not with you guitar 2.wav,Electric Guitar,Electric 2 +1,the 1975 its not living if its not with you guitar 1.wav,Electric Guitar,Electric 1 +1,the 1975 its not living if its not with you drum.wav,Drums, +1,the 1975 its not living if its not with you bv.wav,Voice,Backing +1,the 1975 its not living if its not with you bass.wav,Bass Guitar, +1,the 1975 its not living if its not with you acc guitar.wav,Acoustic Guitar, +1,thalia.wav,Other, +1,texture3.wav,Other, +1,texture2.wav,Other, +1,texture1.wav,Other, +1,terry bozzio.wav,Other, +1,terri nunn.wav,Other, +1,tenor sax solo.wav,Other, +1,telle.wav,Other, +1,tbn.wav,Other, +1,tb12.wav,Other, +1,tb.wav,Other, +1,tb 303 bass synth.wav,Other, +1,taylor swift.wav,Other, +1,taurus bass.wav,Other, +1,tate mcrae.wav,Other, +1,tape fx.wav,Other, +1,tanya trotter.wav,Other, +1,tambourines.wav,Percussion,Tambourine +1,tambourine+sfx.wav,Percussion,Tambourine +1,tambourine+jew harp.wav,Percussion,Tambourine +1,tambouirne.wav,Percussion,Tambourine +1,tamborine.wav,Percussion,Tambourine +1,tamborim.wav,Percussion,Tambourine +1,tamb shak cong.wav,Percussion,Tambourine +1,tamb and shak.wav,Percussion,Tambourine +1,tamb and claps.wav,Percussion,Tambourine +1,tamb (quantized).wav,Percussion,Tambourine +1,talkboxgt.wav,Other, +1,talkbox.wav,Other, +1,takeoff-adlib.wav,Other, +1,taj.wav,Other, +1,taikos.wav,Other, +1,taboo.wav,Other, +1,tabla.wav,Other, +1,sytnh2 bells.wav,Keyboard,Synth +1,sytnh guit.wav,Keyboard,Synth +1,sythns.wav,Keyboard,Synth +1,synvox.wav,Keyboard,Synth +1,syntrh.wav,Keyboard,Synth +1,synthvox+synth vocoder.wav,Keyboard,Synth +1,synthvoices.wav,Keyboard,Synth +1,synthvoice2.wav,Keyboard,Synth +1,synthstring with filter.wav,Keyboard,Synth +1,synthsteam.wav,Keyboard,Synth +1,synthstabs.wav,Keyboard,Synth +1,synthsaw.wav,Keyboard,Synth +1,synths2.wav,Keyboard,Synth +1,synths123.wav,Keyboard,Synth +1,synths strings.wav,Keyboard,Synth +1,synths strings+choir.wav,Keyboard,Synth +1,synths plucks.wav,Keyboard,Synth +1,synths mono.wav,Keyboard,Synth +1,synths mixmaster.wav,Keyboard,Synth +1,synths lead+key.wav,Keyboard,Synth +1,synths keys.wav,Keyboard,Synth +1,synths fundations.wav,Keyboard,Synth +1,synths chrom percs.wav,Keyboard,Synth +1,synths and organ.wav,Keyboard,Synth +1,synths and introsynt.wav,Keyboard,Synth +1,synths and fx.wav,Keyboard,Synth +1,synths and bell.wav,Keyboard,Synth +1,synths 5.wav,Keyboard,Synth +1,synths 4.wav,Keyboard,Synth +1,synths 2-.wav,Keyboard,Synth +1,synths 2+3.wav,Keyboard,Synth +1,synths 12 arr.wav,Keyboard,Synth +1,synths 1-.wav,Keyboard,Synth +1,synths 1 dance.wav,Keyboard,Synth +1,synthriser.wav,Keyboard,Synth +1,synthprophetv.wav,Keyboard,Synth +1,synthpolypad.wav,Keyboard,Synth +1,synthpluckvox.wav,Keyboard,Synth +1,synthpianopad.wav,Keyboard,Synth +1,synthpad filtered.wav,Keyboard,Synth +1,synthpad chorus.wav,Keyboard,Synth +1,synthpad ambiance.wav,Keyboard,Synth +1,synthpad 3.wav,Keyboard,Synth +1,synthpad 2.wav,Keyboard,Synth +1,synthpad 1.wav,Keyboard,Synth +1,synthoutro.wav,Keyboard,Synth +1,synthmix1.2.5.6.7.9..wav,Keyboard,Synth +1,synthmix.wav,Keyboard,Synth +1,synthmelody.wav,Keyboard,Synth +1,synthmain.wav,Keyboard,Synth +1,synthleads.wav,Keyboard,Synth +1,synthlead3.wav,Keyboard,Synth +1,synthlead square.wav,Keyboard,Synth +1,synthlead filter.wav,Keyboard,Synth +1,synthlead disto.wav,Keyboard,Synth +1,synthlead 2.wav,Keyboard,Synth +1,synthldvox.wav,Keyboard,Synth +1,synthld.wav,Keyboard,Synth +1,synthld+synthsolo.wav,Keyboard,Synth +1,synthlapsteel.wav,Keyboard,Synth +1,synthlap+synth poly.wav,Keyboard,Synth +1,synthkey filter.wav,Keyboard,Synth +1,synthi.wav,Keyboard,Synth +1,synthharp.wav,Keyboard,Synth +1,synthgtr.wav,Keyboard,Synth +1,synthgt.wav,Keyboard,Synth +1,synthfxhits.wav,Keyboard,Synth +1,synthfx3 disto guit.wav,Keyboard,Synth +1,synthfx2.wav,Keyboard,Synth +1,synthfx + arp.wav,Keyboard,Synth +1,synthfilt.wav,Keyboard,Synth +1,synthfill.wav,Keyboard,Synth +1,synthextras.wav,Keyboard,Synth +1,synthesizer.wav,Keyboard,Synth +1,synthepad.wav,Keyboard,Synth +1,synthe vox.wav,Keyboard,Synth +1,synthe rythmique.wav,Keyboard,Synth +1,synthe pads.wav,Keyboard,Synth +1,synthe cordes.wav,Keyboard,Synth +1,synthe cordes arcos.wav,Keyboard,Synth +1,synthe clavi.wav,Keyboard,Synth +1,synthe brass.wav,Keyboard,Synth +1,synthe bass.wav,Keyboard,Synth +1,synthe bass metal.wav,Keyboard,Synth +1,synthe arp.wav,Keyboard,Synth +1,synthe 02.wav,Keyboard,Synth +1,synthe 01.wav,Keyboard,Synth +1,synthdrone.wav,Keyboard,Synth +1,synthbuzz2.wav,Keyboard,Synth +1,synthbuzz.wav,Keyboard,Synth +1,synthbrass trumpets.wav,Keyboard,Synth +1,synthbell.wav,Keyboard,Synth +1,synthbassoon.wav,Keyboard,Synth +1,synthbasses.wav,Keyboard,Synth +1,synthbass2.wav,Keyboard,Synth +1,synthbass1.wav,Keyboard,Synth +1,synthbass trs sub.wav,Keyboard,Synth +1,synthbass 2 agressive.wav,Keyboard,Synth +1,synthbass 1 soft.wav,Keyboard,Synth +1,synthatmo.wav,Keyboard,Synth +1,syntharr.wav,Keyboard,Synth +1,syntharr and pads.wav,Keyboard,Synth +1,syntharp2.wav,Keyboard,Synth +1,synth_wurli.wav,Keyboard,Synth +1,synth_tone fx arr.wav,Keyboard,Synth +1,synth_the_cars_good_times_roll.wav,Keyboard,Synth +1,synth_tak_piano.wav,Keyboard,Synth +1,synth_supersaw.wav,Keyboard,Synth +1,synth_strings_intro outro.wav,Keyboard,Synth +1,synth_string_lead.wav,Keyboard,Synth +1,synth_string.wav,Keyboard,Synth +1,synth_stab.wav,Keyboard,Synth +1,synth_square.wav,Keyboard,Synth +1,synth_seq.wav,Keyboard,Synth +1,synth_saw.wav,Keyboard,Synth +1,synth_prophet_pad.wav,Keyboard,Synth +1,synth_poly.wav,Keyboard,Synth +1,synth_plucks.wav,Keyboard,Synth +1,synth_plucked.wav,Keyboard,Synth +1,synth_pluck.wav,Keyboard,Synth +1,synth_pianola.wav,Keyboard,Synth +1,synth_pads.wav,Keyboard,Synth +1,synth_oberheim.wav,Keyboard,Synth +1,synth_minimoog.wav,Keyboard,Synth +1,synth_mini_moog_bass.wav,Keyboard,Synth +1,synth_mini_moog_12.wav,Keyboard,Synth +1,synth_mellotron_pluck.wav,Keyboard,Synth +1,synth_mellotron_clarinet.wav,Keyboard,Synth +1,synth_leads.wav,Keyboard,Synth +1,synth_lead_2.wav,Keyboard,Synth +1,synth_lead+2.wav,Keyboard,Synth +1,synth_jupiter.wav,Keyboard,Synth +1,synth_gtr.wav,Keyboard,Synth +1,synth_fm.wav,Keyboard,Synth +1,synth_flute_mellotron 12.wav,Keyboard,Synth +1,synth_diva_sine.wav,Keyboard,Synth +1,synth_dist_lead.wav,Keyboard,Synth +1,synth_clavinet.wav,Keyboard,Synth +1,synth_clavier.wav,Keyboard,Synth +1,synth_brass_pad.wav,Keyboard,Synth +1,synth_brass_1+2.wav,Keyboard,Synth +1,synth_bending.wav,Keyboard,Synth +1,synth_bell.wav,Keyboard,Synth +1,synth_accordion.wav,Keyboard,Synth +1,synth_1 intro three little keys.wav,Keyboard,Synth +1,synth_1 2 3.wav,Keyboard,Synth +1,synth_02.wav,Keyboard,Synth +1,synth_01.wav,Keyboard,Synth +1,synth56.wav,Keyboard,Synth +1,synth4 ringtone style.wav,Keyboard,Synth +1,synth4 bells.wav,Keyboard,Synth +1,synth3low.wav,Keyboard,Synth +1,synth3 organ-style.wav,Keyboard,Synth +1,synth3 boing.wav,Keyboard,Synth +1,synth3 bass.wav,Keyboard,Synth +1,synth3 + voicesynth2.wav,Keyboard,Synth +1,synth24 and vox.wav,Keyboard,Synth +1,synth23.wav,Keyboard,Synth +1,synth2+4+5mix.wav,Keyboard,Synth +1,synth2&3mix.wav,Keyboard,Synth +1,synth2 end.wav,Keyboard,Synth +1,synth2 electronic bips.wav,Keyboard,Synth +1,synth2 bass.wav,Keyboard,Synth +1,synth13.wav,Keyboard,Synth +1,synth12467.wav,Keyboard,Synth +1,synth123 and pad.wav,Keyboard,Synth +1,synth1+2mix.wav,Keyboard,Synth +1,synth1 trance.wav,Keyboard,Synth +1,synth1 pizz.wav,Keyboard,Synth +1,synth1 bells.wav,Keyboard,Synth +1,synth-solo.wav,Keyboard,Synth +1,synth-siren.wav,Keyboard,Synth +1,synth-perc-arpeggiator.wav,Keyboard,Synth +1,synth-other.wav,Keyboard,Synth +1,synth-main.wav,Keyboard,Synth +1,synth-lead-2.wav,Keyboard,Synth +1,synth-lead-1.wav,Keyboard,Synth +1,synth-glide.wav,Keyboard,Synth +1,synth-fx.wav,Keyboard,Synth +1,synth-chorus.wav,Keyboard,Synth +1,synth-chords.wav,Keyboard,Synth +1,synth-choir.wav,Keyboard,Synth +1,synth-brass.wav,Keyboard,Synth +1,synth-bells.wav,Keyboard,Synth +1,synth-bell.wav,Keyboard,Synth +1,synth-bass-2.wav,Keyboard,Synth +1,synth-and-melodyca.wav,Keyboard,Synth +1,synth-7.wav,Keyboard,Synth +1,synth-6.wav,Keyboard,Synth +1,synth-5.wav,Keyboard,Synth +1,synth-12.wav,Keyboard,Synth +1,synth-1 arr fx.wav,Keyboard,Synth +1,synth+fx.wav,Keyboard,Synth +1,synth(saw).wav,Keyboard,Synth +1,synth(poly).wav,Keyboard,Synth +1,synth(plucked).wav,Keyboard,Synth +1,synth wood.wav,Keyboard,Synth +1,synth wha.wav,Keyboard,Synth +1,synth vx.wav,Keyboard,Synth +1,synth vox fx.wav,Keyboard,Synth +1,synth voice.wav,Keyboard,Synth +1,synth vocal eh.wav,Keyboard,Synth +1,synth vintage.wav,Keyboard,Synth +1,synth vibrato lead.wav,Keyboard,Synth +1,synth various.wav,Keyboard,Synth +1,synth uh.wav,Keyboard,Synth +1,synth trumpet.wav,Keyboard,Synth +1,synth trs filter.wav,Keyboard,Synth +1,synth trance.wav,Keyboard,Synth +1,synth trance 2.wav,Keyboard,Synth +1,synth trance 1.wav,Keyboard,Synth +1,synth theme trance.wav,Keyboard,Synth +1,synth swell and extra.wav,Keyboard,Synth +1,synth swell 80s.wav,Keyboard,Synth +1,synth sweep.wav,Keyboard,Synth +1,synth strings arr.wav,Keyboard,Synth +1,synth strings 123 and horns.wav,Keyboard,Synth +1,synth strings 1 + 2.wav,Keyboard,Synth +1,synth stab.wav,Keyboard,Synth +1,synth square 1+2.wav,Keyboard,Synth +1,synth slides.wav,Keyboard,Synth +1,synth siren.wav,Keyboard,Synth +1,synth sequenced.wav,Keyboard,Synth +1,synth saw lead.wav,Keyboard,Synth +1,synth saw 2.wav,Keyboard,Synth +1,synth pluged.wav,Keyboard,Synth +1,synth plucks.wav,Keyboard,Synth +1,synth pluck 2 + synth brass.wav,Keyboard,Synth +1,synth pizzicato.wav,Keyboard,Synth +1,synth percussive.wav,Keyboard,Synth +1,synth perc loop.wav,Keyboard,Synth +1,synth pedal.wav,Keyboard,Synth +1,synth pan flanger.wav,Keyboard,Synth +1,synth pad2.wav,Keyboard,Synth +1,synth pad1.wav,Keyboard,Synth +1,synth pad(fx).wav,Keyboard,Synth +1,synth pad vocals.wav,Keyboard,Synth +1,synth pad lo.wav,Keyboard,Synth +1,synth pad key.wav,Keyboard,Synth +1,synth pad hi.wav,Keyboard,Synth +1,synth pad end.wav,Keyboard,Synth +1,synth pad bright.wav,Keyboard,Synth +1,synth pad 4.wav,Keyboard,Synth +1,synth pad 3.wav,Keyboard,Synth +1,synth pad 123.wav,Keyboard,Synth +1,synth pad 1 2.wav,Keyboard,Synth +1,synth p.wav,Keyboard,Synth +1,synth p + pad + lead synth 1 + 2.wav,Keyboard,Synth +1,synth organ sfx.wav,Keyboard,Synth +1,synth notes.wav,Keyboard,Synth +1,synth noisy + glitch loop + wind pad.wav,Keyboard,Synth +1,synth new.wav,Keyboard,Synth +1,synth moog2+pad.wav,Keyboard,Synth +1,synth moog.wav,Keyboard,Synth +1,synth moog 1.wav,Keyboard,Synth +1,synth mix.wav,Keyboard,Synth +1,synth misc + glitch.wav,Keyboard,Synth +1,synth metal pluck.wav,Keyboard,Synth +1,synth melody.wav,Keyboard,Synth +1,synth melodie.wav,Keyboard,Synth +1,synth melo bells.wav,Keyboard,Synth +1,synth low.wav,Keyboard,Synth +1,synth loop.wav,Keyboard,Synth +1,synth line.wav,Keyboard,Synth +1,synth lfo1.wav,Keyboard,Synth +1,synth lfo 2.wav,Keyboard,Synth +1,synth left.wav,Keyboard,Synth +1,synth leads 2 moog.wav,Keyboard,Synth +1,synth leads 1.wav,Keyboard,Synth +1,synth lead_ok.wav,Keyboard,Synth +1,synth lead+string+synth.wav,Keyboard,Synth +1,synth lead right.wav,Keyboard,Synth +1,synth lead mix.wav,Keyboard,Synth +1,synth lead ep.wav,Keyboard,Synth +1,synth lead disto.wav,Keyboard,Synth +1,synth lead d+synth flute.wav,Keyboard,Synth +1,synth lead c.wav,Keyboard,Synth +1,synth lead bus.wav,Keyboard,Synth +1,synth lead bass.wav,Keyboard,Synth +1,synth lead bass add.wav,Keyboard,Synth +1,synth lead b.wav,Keyboard,Synth +1,synth lead a.wav,Keyboard,Synth +1,synth lead 4.wav,Keyboard,Synth +1,synth lead 2 right.wav,Keyboard,Synth +1,synth lead 2 + 3 + arp.wav,Keyboard,Synth +1,synth lead 1+2.wav,Keyboard,Synth +1,synth lead 1 high.wav,Keyboard,Synth +1,synth lead 1 2 3.wav,Keyboard,Synth +1,synth lead 1 + arr.wav,Keyboard,Synth +1,synth lead 1 + 2.wav,Keyboard,Synth +1,synth keys roland juno.wav,Keyboard,Synth +1,synth keys piano.wav,Keyboard,Synth +1,synth key + choir.wav,Keyboard,Synth +1,synth intro outro.wav,Keyboard,Synth +1,synth horns.wav,Keyboard,Synth +1,synth horn.wav,Keyboard,Synth +1,synth hoover.wav,Keyboard,Synth +1,synth high.wav,Keyboard,Synth +1,synth hi.wav,Keyboard,Synth +1,synth hammond.wav,Keyboard,Synth +1,synth guitary.wav,Keyboard,Synth +1,synth guitar 2.wav,Keyboard,Synth +1,synth guitar 2+3+4+5.wav,Keyboard,Synth +1,synth guitar 1.wav,Keyboard,Synth +1,synth guit dist.wav,Keyboard,Synth +1,synth guit 3 (left).wav,Keyboard,Synth +1,synth guit 2.wav,Keyboard,Synth +1,synth guit 1.wav,Keyboard,Synth +1,synth growl.wav,Keyboard,Synth +1,synth glissando.wav,Keyboard,Synth +1,synth glide.wav,Keyboard,Synth +1,synth giut.wav,Keyboard,Synth +1,synth gated.wav,Keyboard,Synth +1,synth fx loop.wav,Keyboard,Synth +1,synth fx arr.wav,Keyboard,Synth +1,synth fx 2.wav,Keyboard,Synth +1,synth fx 1.wav,Keyboard,Synth +1,synth fix.wav,Keyboard,Synth +1,synth final.wav,Keyboard,Synth +1,synth filter.wav,Keyboard,Synth +1,synth filter and bleeps.wav,Keyboard,Synth +1,synth fill.wav,Keyboard,Synth +1,synth extra.wav,Keyboard,Synth +1,synth ending.wav,Keyboard,Synth +1,synth drone.wav,Keyboard,Synth +1,synth distor2 arr end.wav,Keyboard,Synth +1,synth distor.wav,Keyboard,Synth +1,synth dis + dis2 + gtrs dis.wav,Keyboard,Synth +1,synth d.wav,Keyboard,Synth +1,synth clochettes.wav,Keyboard,Synth +1,synth clavinet.wav,Keyboard,Synth +1,synth chrom perc.wav,Keyboard,Synth +1,synth choruses.wav,Keyboard,Synth +1,synth chords.wav,Keyboard,Synth +1,synth chord.wav,Keyboard,Synth +1,synth choirs.wav,Keyboard,Synth +1,synth center.wav,Keyboard,Synth +1,synth c.wav,Keyboard,Synth +1,synth break.wav,Keyboard,Synth +1,synth brass bass.wav,Keyboard,Synth +1,synth brass 12.wav,Keyboard,Synth +1,synth bending light + mellotron + choir.wav,Keyboard,Synth +1,synth bend.wav,Keyboard,Synth +1,synth bells+flute.wav,Keyboard,Synth +1,synth bells + choir.wav,Keyboard,Synth +1,synth bell+bells+piano+noise.wav,Keyboard,Synth +1,synth bell 2.wav,Keyboard,Synth +1,synth basse.wav,Keyboard,Synth +1,synth bass-1.wav,Keyboard,Synth +1,synth bass riff.wav,Keyboard,Synth +1,synth bass pluck.wav,Keyboard,Synth +1,synth bass mono.wav,Keyboard,Synth +1,synth bass mix.wav,Keyboard,Synth +1,synth bass main 2.wav,Keyboard,Synth +1,synth bass dist.wav,Keyboard,Synth +1,synth bass and bass synth.wav,Keyboard,Synth +1,synth bass 3.wav,Keyboard,Synth +1,synth bass 12.wav,Keyboard,Synth +1,synth bass 1+2.wav,Keyboard,Synth +1,synth bass 1 + 2.wav,Keyboard,Synth +1,synth bass + sound effects.wav,Keyboard,Synth +1,synth bass + outro.wav,Keyboard,Synth +1,synth bass + ep + pads+stabs.wav,Keyboard,Synth +1,synth back2_ok.wav,Keyboard,Synth +1,synth back1_ok.wav,Keyboard,Synth +1,synth b.wav,Keyboard,Synth +1,synth arr+main.wav,Keyboard,Synth +1,synth arr main.wav,Keyboard,Synth +1,synth arps.wav,Keyboard,Synth +1,synth arpeggio.wav,Keyboard,Synth +1,synth arp brass.wav,Keyboard,Synth +1,synth arp 1+2+3.wav,Keyboard,Synth +1,synth and synthfx.wav,Keyboard,Synth +1,synth and strings.wav,Keyboard,Synth +1,synth and pad.wav,Keyboard,Synth +1,synth and lead keys.wav,Keyboard,Synth +1,synth and ep.wav,Keyboard,Synth +1,synth ambiance.wav,Keyboard,Synth +1,synth amb.wav,Keyboard,Synth +1,synth amb mix.wav,Keyboard,Synth +1,synth adds and fx end.wav,Keyboard,Synth +1,synth adds 3.wav,Keyboard,Synth +1,synth adds 1.wav,Keyboard,Synth +1,synth accordion.wav,Keyboard,Synth +1,synth accordion left.wav,Keyboard,Synth +1,synth accordeon.wav,Keyboard,Synth +1,synth 6 arr.wav,Keyboard,Synth +1,synth 56 and resample.wav,Keyboard,Synth +1,synth 5 whistle.wav,Keyboard,Synth +1,synth 5 right.wav,Keyboard,Synth +1,synth 4 solo.wav,Keyboard,Synth +1,synth 4 left.wav,Keyboard,Synth +1,synth 4 bass.wav,Keyboard,Synth +1,synth 4 - pad subtle.wav,Keyboard,Synth +1,synth 3+4.wav,Keyboard,Synth +1,synth 3 solo.wav,Keyboard,Synth +1,synth 3 robot.wav,Keyboard,Synth +1,synth 3 disto end.wav,Keyboard,Synth +1,synth 3 bells.wav,Keyboard,Synth +1,synth 3 bass.wav,Keyboard,Synth +1,synth 2aig.wav,Keyboard,Synth +1,synth 234.wav,Keyboard,Synth +1,synth 2-1.wav,Keyboard,Synth +1,synth 2+3.wav,Keyboard,Synth +1,synth 2 wah.wav,Keyboard,Synth +1,synth 2 stringy.wav,Keyboard,Synth +1,synth 2 square lead.wav,Keyboard,Synth +1,synth 2 sncf.wav,Keyboard,Synth +1,synth 2 minilead end.wav,Keyboard,Synth +1,synth 2 keys reverb right.wav,Keyboard,Synth +1,synth 2 harp.wav,Keyboard,Synth +1,synth 2 bells and synth 4 bells.wav,Keyboard,Synth +1,synth 2 arr.wav,Keyboard,Synth +1,synth 2 aigu.wav,Keyboard,Synth +1,synth 2 4.wav,Keyboard,Synth +1,synth 2 3 4 5.wav,Keyboard,Synth +1,synth 2 + pads.wav,Keyboard,Synth +1,synth 2 + 5.wav,Keyboard,Synth +1,synth 1bas.wav,Keyboard,Synth +1,synth 1234 pad.wav,Keyboard,Synth +1,synth 1-1.wav,Keyboard,Synth +1,synth 1+pad+saw pad.wav,Keyboard,Synth +1,synth 1+4mix.wav,Keyboard,Synth +1,synth 1+3.wav,Keyboard,Synth +1,synth 1+2mix.wav,Keyboard,Synth +1,synth 1+2.wav,Keyboard,Synth +1,synth 1 weird.wav,Keyboard,Synth +1,synth 1 sine.wav,Keyboard,Synth +1,synth 1 rise.wav,Keyboard,Synth +1,synth 1 organ style.wav,Keyboard,Synth +1,synth 1 keys.wav,Keyboard,Synth +1,synth 1 fx.wav,Keyboard,Synth +1,synth 1 2.wav,Keyboard,Synth +1,synth 1 + pad.wav,Keyboard,Synth +1,synth 1 + 2.wav,Keyboard,Synth +1,synth 1 + 2 + 4 + 5 + choir + strings.wav,Keyboard,Synth +1,synth 05 percs.wav,Keyboard,Synth +1,synth 05 arr.wav,Keyboard,Synth +1,synth 03 intro.wav,Keyboard,Synth +1,synth 03 arr.wav,Keyboard,Synth +1,synth 02 siren rise.wav,Keyboard,Synth +1,synth 01 bells.wav,Keyboard,Synth +1,synth 0 1.wav,Keyboard,Synth +1,synth + synthkey.wav,Keyboard,Synth +1,synth + synth strings.wav,Keyboard,Synth +1,synth + synth fx.wav,Keyboard,Synth +1,synth + synth 2.wav,Keyboard,Synth +1,synth + pad.wav,Keyboard,Synth +1,syntch & fx.wav,Keyboard,Synth +1,syntarr and fx.wav,Keyboard,Synth +1,synht bass.wav,Keyboard,Synth +1,synhpad.wav,Keyboard,Synth +1,synhbrass.wav,Keyboard,Synth +1,syn fx.wav,Keyboard,Synth +1,syleena johnson.wav,Other, +1,sx.wav,Other, +1,swizz beatz.wav,Other, +1,swell gtr.wav,Other, +1,sweetie irie.wav,Other, +1,sweeps.wav,Other, +1,sweepfx.wav,Other, +1,sweep pad.wav,Other, +1,swae lee.wav,Other, +1,susan ann sulley.wav,Other, +1,supersawsynth.wav,Other, +1,super fat moog.wav,Other, +1,subtraktor.wav,Other, +1,submarine voice.wav,Other, +1,subbass+synthbass.wav,Other, +1,sub fx.wav,Other, +1,sub drop.wav,Other, +1,sub drive.wav,Other, +1,sub bass drop.wav,Other, +1,su-metal.wav,Other, +1,strummign ag.wav,Other, +1,strum synth.wav,Other, +1,strum guit.wav,Other, +1,strq.wav,Other, +1,stringstheme.wav,Other, +1,stringsreal.wav,Keyboard,Synth Strings +1,stringspadspizzicato.wav,Keyboard,Synth Strings +1,stringsmidi.wav,Keyboard,Synth Strings +1,strings12 choir.wav,Keyboard,Synth Strings +1,strings-sample.wav,Keyboard,Synth Strings +1,strings-01.wav,Keyboard,Synth Strings +1,strings-.wav,Keyboard,Synth Strings +1,strings+pad.wav,Keyboard,Synth Strings +1,strings+flute.wav,Keyboard,Synth Strings +1,strings violin cello harp.wav,Keyboard,Synth Strings +1,strings synths.wav,Keyboard,Synth Strings +1,strings s.wav,Keyboard,Synth Strings +1,strings pizzicato.wav,Keyboard,Synth Strings +1,strings pizz.wav,Keyboard,Synth Strings +1,strings pad and flutes.wav,Keyboard,Synth Strings +1,strings outro.wav,Keyboard,Synth Strings +1,strings keys.wav,Keyboard,Synth Strings +1,strings intro.wav,Keyboard,Synth Strings +1,strings horns.wav,Keyboard,Synth Strings +1,strings hook.wav,Keyboard,Synth Strings +1,strings et violons.wav,Keyboard,Synth Strings +1,strings ensemble.wav,Keyboard,Synth Strings +1,strings ensamble.wav,Keyboard,Synth Strings +1,strings ens.wav,Keyboard,Synth Strings +1,strings chorus.wav,Keyboard,Synth Strings +1,strings choir.wav,Keyboard,Synth Strings +1,strings buzz.wav,Keyboard,Synth Strings +1,strings and tympani.wav,Keyboard,Synth Strings +1,strings and synth6.wav,Keyboard,Synth Strings +1,strings and synth strings.wav,Keyboard,Synth Strings +1,strings and superstrings.wav,Keyboard,Synth Strings +1,strings and glide.wav,Keyboard,Synth Strings +1,strings and brass.wav,Keyboard,Synth Strings +1,strings add.wav,Keyboard,Synth Strings +1,strings 3.wav,Keyboard,Synth Strings +1,strings 2 adds.wav,Keyboard,Synth Strings +1,strings 123.wav,Keyboard,Synth Strings +1,strings 12.wav,Keyboard,Synth Strings +1,strings + pad.wav,Keyboard,Synth Strings +1,strings + lead + synth strings.wav,Keyboard,Synth Strings +1,strings + harp.wav,Keyboard,Synth Strings +1,stringhit.wav,Keyboard,Synth Strings +1,string_pad.wav,Keyboard,Synth Strings +1,string staccato.wav,Keyboard,Synth Strings +1,string sect.wav,Keyboard,Synth Strings +1,string pizzi.wav,Keyboard,Synth Strings +1,string pad.wav,Keyboard,Synth Strings +1,string horn.wav,Keyboard,Synth Strings +1,string ensemble+orchestramix.wav,Keyboard,Synth Strings +1,string ensamble.wav,Keyboard,Synth Strings +1,string dirt.wav,Keyboard,Synth Strings +1,string and pads.wav,Keyboard,Synth Strings +1,string 2.wav,Keyboard,Synth Strings +1,stribgs.wav,Keyboard,Synth Strings +1,stre.wav,Keyboard,Synth Strings +1,str section.wav,Keyboard,Synth Strings +1,str mixmaster.wav,Keyboard,Synth Strings +1,stomps.wav,Other, +1,sticks.wav,Other, +1,steve winwood.wav,Other, +1,stereo eg.wav,Other, +1,stereo eg(treble).wav,Other, +1,steelgt.wav,Other, +1,steelgong.wav,Other, +1,steeldrums + flute.wav,Other, +1,steeldrum.wav,Other, +1,steel-noisegate.wav,Other, +1,steel string.wav,Other, +1,steel drums end.wav,Other, +1,stack synths.wav,Other, +1,staccato dx7.wav,Other, +1,stac synth.wav,Other, +1,stab.wav,Other, +1,sringy.wav,Other, +1,square wave.wav,Other, +1,square synths.wav,Other, +1,square beep.wav,Other, +1,sq wave.wav,Other, +1,spooky.wav,Other, +1,spoken vocals.wav,Other, +1,spoken (chat).wav,Other, +1,spicatto strings.wav,Other, +1,spanishgtr.wav,Acoustic Guitar, +1,spanish guitar left.wav,Acoustic Guitar, +1,spanish guitar 3 left.wav,Acoustic Guitar, +1,spanish guitar 2.wav,Acoustic Guitar, +1,spanish guitar 1.wav,Acoustic Guitar, +1,spanish gtr left(nylon).wav,Acoustic Guitar, +1,span guitar.wav,Acoustic Guitar, +1,space str synth.wav,Other, +1,sp gtr.wav,Acoustic Guitar, +1,soyeon.wav,Other, +1,soundfx crowd live.wav,Other, +1,sound.wav,Other, +1,sound-fx.wav,Other, +1,sound fxs.wav,Other, +1,sound fx train.wav,Other, +1,sound 1.wav,Other, +1,soulja boy.wav,Other, +1,song key.wav,Other, +1,sonar and rotor.wav,Other, +1,solotalkback.wav,Other, +1,solosax.wav,Other, +1,sologtrr.wav,Electric Guitar, +1,sologtrl.wav,Electric Guitar, +1,sologtr2.wav,Electric Guitar, +1,sologtr1.wav,Electric Guitar, +1,sologtr 5.wav,Electric Guitar, +1,solo_guitars.wav,Electric Guitar, +1,solo_electric_guitar_1+2+arr.wav,Electric Guitar, +1,solo_electric_guitar.wav,Electric Guitar, +1,solo synth 2.wav,Other, +1,solo slide.wav,Electric Guitar, +1,solo sax real.wav,Other, +1,solo right.wav,Electric Guitar, +1,solo piano.wav,Other, +1,solo gtr.wav,Electric Guitar, +1,solo gtr 2.wav,Electric Guitar, +1,solo gtr 1.wav,Electric Guitar, +1,solo gt.wav,Electric Guitar, +1,solo eguitar.wav,Electric Guitar, +1,solo eg 2.wav,Electric Guitar, +1,solo eg 1.wav,Electric Guitar, +1,solo disto eg.wav,Electric Guitar, +1,solo clean eg.wav,Electric Guitar, +1,solina_strings_synth.wav,Other, +1,solina_orchestra_synth.wav,Other, +1,solina organ.wav,Other, +1,softstrings.wav,Other, +1,softbells.wav,Other, +1,soft pad + bubble.wav,Other, +1,snoop.wav,Other, +1,snoop dogg-adlib.wav,Other, +1,smotth synth + low.wav,Other, +1,slowdown fx.wav,Other, +1,slow downfx end.wav,Other, +1,slow down.wav,Other, +1,slide4.wav,Other, +1,slide3.wav,Other, +1,slide2.wav,Other, +1,slide1.wav,Other, +1,slide gtr arr.wav,Other, +1,slide eg.wav,Other, +1,slide eg fxs.wav,Other, +1,slide + lapsteel.wav,Other, +1,sleigh bells.wav,Other, +1,sleep token the summoning synth bass.wav,Bass Guitar, +1,sleep token the summoning piano.wav,Piano, +1,sleep token the summoning perc.wav,Percussion, +1,sleep token the summoning guitar 4.wav,Electric Guitar,Electric 4 +1,sleep token the summoning guitar 3.wav,Electric Guitar,Electric 3 +1,sleep token the summoning guitar 2.wav,Electric Guitar,Electric 2 +1,sleep token the summoning guitar 1.wav,Electric Guitar,Electric 1 +1,sleep token the summoning drum.wav,Drums, +1,sleep token the summoning bv.wav,Voice,Backing +1,sleep token the summoning bass.wav,Bass Guitar, +1,sld gtr2.wav,Other, +1,sld gtr1.wav,Other, +1,slap bass.wav,Other, +1,slap bas.wav,Other, +1,skit.wav,Other, +1,skillibeng.wav,Other, +1,skepta.wav,Other, +1,six two.wav,Other, +1,sitarish.wav,Sitar, +1,sitare.wav,Sitar, +1,sitar-01.wav,Sitar, +1,sitar 2.wav,Sitar, +1,sitar 1.wav,Sitar, +1,sirenfx.wav,Other, +1,sinth a.wav,Other, +1,sine wave noise.wav,Other, +1,sine synths.wav,Other, +1,sine pad+synth lead 2.wav,Other, +1,sine lead.wav,Other, +1,sine fx.wav,Other, +1,simple saw.wav,Other, +1,sierra kusterbeck.wav,Other, +1,sidechain_flutes.wav,Other, +1,sia.wav,Other, +1,short tone.wav,Other, +1,short cord.wav,Other, +1,shock g.wav,Other, +1,shneezin.wav,Other, +1,sheila e..wav,Other, +1,shay.wav,Other, +1,shawnna.wav,Other, +1,shawna.wav,Other, +1,shawn stockman.wav,Other, +1,shawn mendes.wav,Other, +1,shawn mendes-adlib.wav,Other, +1,sharon costanzo.wav,Other, +1,shannon hoon.wav,Other, +1,shania twain.wav,Other, +1,shaker_1.wav,Other, +1,shaker+tambourine.wav,Other, +1,shaker congas.wav,Other, +1,shaker castanets congas claps.wav,Other, +1,shaker add.wav,Other, +1,shae.wav,Other, +1,sfxs.wav,Computer,SFX +1,sfxes_ok.wav,Computer,SFX +1,sfx+gt fx.wav,Computer,SFX +1,sfx+applausemix.wav,Computer,SFX +1,sfx wah.wav,Computer,SFX +1,sfx vynil craklings.wav,Computer,SFX +1,sfx vynil cracks.wav,Computer,SFX +1,sfx vocal2.wav,Computer,SFX +1,sfx street cars.wav,Computer,SFX +1,sfx scratch.wav,Computer,SFX +1,sfx lighter.wav,Computer,SFX +1,sfx intro.wav,Computer,SFX +1,sfx gun shot.wav,Computer,SFX +1,sfx distant scream.wav,Computer,SFX +1,sfx crowd.wav,Computer,SFX +1,sfx crowd applause.wav,Computer,SFX +1,sfx children.wav,Computer,SFX +1,sfx arp synth.wav,Computer,SFX +1,sfx and synth 2.wav,Computer,SFX +1,sfx and 2.wav,Computer,SFX +1,sfx addsynth growl granular.wav,Computer,SFX +1,sfx 2 risers.wav,Computer,SFX +1,sfx 2 crowd.wav,Computer,SFX +1,sfx 1 breathing.wav,Computer,SFX +1,sf.wav,Other, +1,sf crowd.wav,Other, +1,serj tankian.wav,Other, +1,sequence.wav,Other, +1,seq synths 2.wav,Other, +1,seq synths 1 disto.wav,Other, +1,seq arp.wav,Other, +1,seq synth.wav,Other, +1,search and destroy the stooges ld.wav,Voice,Lead +1,search and destroy the stooges e guitar lead.wav,Electric Guitar,Lead +1,search and destroy the stooges e guitar fuzz.wav,Electric Guitar,Fuzz +1,search and destroy the stooges e guitar dist.wav,Electric Guitar,Distorted +1,search and destroy the stooges drums.wav,Drums, +1,search and destroy the stooges bass.wav,Bass Guitar, +1,seal.wav,Other, +1,scream.wav,Other, +1,scream sample.wav,Other, +1,scrathces.wav,Other,Scratches +1,scratchfx.wav,Other,Scratches +1,scratches_vinyl.wav,Other,Scratches +1,scratches+clap+fxmix.wav,Other,Scratches +1,scratch12 and fxs.wav,Other,Scratches +1,scratch+fx mix.wav,Other,Scratches +1,scratch vinyl.wav,Other,Scratches +1,scratch fx.wav,Other,Scratches +1,scratch and car fx.wav,Other,Scratches +1,scracth eg.wav,Other, +1,schoolboy.wav,Other, +1,schoolboy q.wav,Other, +1,scartch.wav,Other, +1,saxsolo.wav,Saxophone, +1,saxophones.wav,Saxophone, +1,saxophone bar.wav,Saxophone, +1,saxophone alto.wav,Saxophone, +1,saxo solos.wav,Saxophone, +1,saxaphone.wav,Saxophone, +1,sax_solo.wav,Saxophone, +1,sax_2.wav,Saxophone, +1,sax_1.wav,Saxophone, +1,sax1+2.wav,Saxophone, +1,sax1 + brasses.wav,Saxophone, +1,sax-stan getz.wav,Saxophone, +1,sax(solo).wav,Saxophone, +1,sax tenor + alto.wav,Saxophone, +1,sax s.wav,Saxophone, +1,sax mix.wav,Saxophone, +1,sax fx.wav,Saxophone, +1,sax 4.wav,Saxophone, +1,sax 1+2.wav,Saxophone, +1,sax 02.wav,Saxophone, +1,sax 01.wav,Saxophone, +1,sax + trumpet.wav,Saxophone, +1,sawsynth2.wav,Other, +1,saws ynth.wav,Other, +1,saw wave.wav,Other, +1,saw 2.wav,Other, +1,saw 1.wav,Other, +1,satan.wav,Other, +1,sarah brightman.wav,Other, +1,santur.wav,Other, +1,santoor.wav,Other, +1,sansa.wav,Other, +1,samples.wav,Other, +1,samples+fx.wav,Other, +1,sampleintro.wav,Other, +1,samplee.wav,Other, +1,sampled choir.wav,Other, +1,sample vocals.wav,Other, +1,sample of marvin gaye lets get it on.wav,Other, +1,sample loop.wav,Other, +1,sample guitare-cocot.wav,Other, +1,sample guitare-clean.wav,Other, +1,sample fx.wav,Other, +1,sample fx track.wav,Other, +1,sample 4.wav,Other, +1,sample 3.wav,Other, +1,sample 2.wav,Other, +1,sample 1.wav,Other, +1,sam harris.wav,Other, +1,sakura.wav,Other, +1,sabaton the last stand vocal synth.wav,Keyboard,Synth Vox +1,sabaton the last stand synth 3.wav,Keyboard,Synth 3 +1,sabaton the last stand synth 2.wav,Keyboard,Synth 2 +1,sabaton the last stand synth 1.wav,Keyboard,Synth 1 +1,sabaton the last stand lv.wav,Voice,Lead +1,sabaton the last stand guitar 5.wav,Electric Guitar,Electric 5 +1,sabaton the last stand guitar 4.wav,Electric Guitar,Electric 4 +1,sabaton the last stand guitar 3.wav,Electric Guitar,Electric 3 +1,sabaton the last stand guitar 2.wav,Electric Guitar,Electric 2 +1,sabaton the last stand guitar 1.wav,Electric Guitar,Electric 1 +1,sabaton the last stand fx.wav,Other,FX +1,sabaton the last stand drum.wav,Drums, +1,sabaton the last stand bv.wav,Voice,Backing +1,sabaton the last stand bass.wav,Bass Guitar, +1,s_xylophone.wav,Other, +1,s_woodwind.wav,Other, +1,s_vox_sample.wav,Other, +1,s_vox sample.wav,Other, +1,s_vox fx.wav,Other, +1,s_vocoder.wav,Other, +1,s_vocal sample.wav,Other, +1,s_vocal fx.wav,Other, +1,s_violas.wav,Other, +1,s_vinyl_noise.wav,Other, +1,s_vinyl sample.wav,Other, +1,s_vinyl fx.wav,Other, +1,s_vibraphone_outro.wav,Other, +1,s_upright bass.wav,Other, +1,s_upbass.wav,Other, +1,s_ukelele.wav,Other, +1,s_trb section.wav,Other, +1,s_toms.wav,Other, +1,s_theme.wav,Other, +1,s_tbn.wav,Other, +1,s_tape hiss.wav,Other, +1,s_tambourines.wav,Other, +1,s_synths organ.wav,Keyboard,Synth +1,s_synths intro.wav,Keyboard,Synth +1,s_synths 2.wav,Keyboard,Synth +1,s_synthbass.wav,Keyboard,Synth +1,s_synth_melody.wav,Keyboard,Synth +1,s_synth_lfo.wav,Keyboard,Synth +1,s_synth_lead_filt.wav,Keyboard,Synth +1,s_synth_classic.wav,Keyboard,Synth +1,s_synth_bells.wav,Keyboard,Synth +1,s_synth_arp.wav,Keyboard,Synth +1,s_synth_add.wav,Keyboard,Synth +1,s_synth7 right.wav,Keyboard,Synth +1,s_synth6.wav,Keyboard,Synth +1,s_synth5 right.wav,Keyboard,Synth +1,s_synth3 disto bits.wav,Keyboard,Synth +1,s_synth2 theme.wav,Keyboard,Synth +1,s_synth2 chrom percs.wav,Keyboard,Synth +1,s_synth1 right.wav,Keyboard,Synth +1,s_synth uh vocal.wav,Keyboard,Synth +1,s_synth triangle.wav,Keyboard,Synth +1,s_synth strings 2.wav,Keyboard,Synth +1,s_synth sound effects.wav,Keyboard,Synth +1,s_synth solo.wav,Keyboard,Synth +1,s_synth rave.wav,Keyboard,Synth +1,s_synth pluck.wav,Keyboard,Synth +1,s_synth oh.wav,Keyboard,Synth +1,s_synth harp.wav,Keyboard,Synth +1,s_synth fx.wav,Keyboard,Synth +1,s_synth arpeg.wav,Keyboard,Synth +1,s_synth arp.wav,Keyboard,Synth +1,s_sweeps.wav,Keyboard,Synth +1,s_sweep fx.wav,Keyboard,Synth +1,s_strings_trill.wav,Keyboard,Synth Strings +1,s_strings_outro.wav,Keyboard,Synth Strings +1,s_strings_3.wav,Keyboard,Synth Strings +1,s_strings_2.wav,Keyboard,Synth Strings +1,s_strings_1.wav,Keyboard,Synth Strings +1,s_strings sect.wav,Keyboard,Synth Strings +1,s_strings sampled.wav,Keyboard,Synth Strings +1,s_strings mellotron.wav,Keyboard,Synth Strings +1,s_strings 2.wav,Keyboard,Synth Strings +1,s_string synth.wav,Keyboard,Synth Strings +1,s_string sect.wav,Keyboard,Synth Strings +1,s_string pluck.wav,Keyboard,Synth Strings +1,s_string arpeg.wav,Keyboard,Synth Strings +1,s_steps.wav,Other, +1,s_steel.wav,Other, +1,s_steel gtr.wav,Other, +1,s_steel drums.wav,Other, +1,s_sound effects hits.wav,Other, +1,s_sonar synth.wav,Other, +1,s_snaps.wav,Other, +1,s_slide.wav,Other, +1,s_sitar.wav,Other, +1,s_sine.wav,Other, +1,s_sikus.wav,Other, +1,s_sfx 2.wav,Other, +1,s_screams.wav,Other, +1,s_saxs.wav,Other, +1,s_saxlead.wav,Other, +1,s_saxes.wav,Other, +1,s_samples weird fx.wav,Other, +1,s_sampler.wav,Other, +1,s_sample vox.wav,Other, +1,s_risers.wav,Other, +1,s_riser.wav,Other, +1,s_prekey.wav,Other, +1,s_precount.wav,Other, +1,s_polysynth 2.wav,Other, +1,s_poly.wav,Other, +1,s_pluck2.wav,Other, +1,s_pluck1.wav,Other, +1,s_pluck synth.wav,Other, +1,s_piano_add.wav,Piano, +1,s_piano2.wav,Piano, +1,s_piano-notdups.wav,Piano, +1,s_piano+epiano.wav,Piano, +1,s_piano solo.wav,Piano, +1,s_piano pad.wav,Piano, +1,s_percussion 2.wav,Percussion, +1,s_percu.wav,Percussion, +1,s_percs and loops.wav,Percussion, +1,s_pedal steel 02.wav,Other, +1,s_pedal steel 01.wav,Other, +1,s_pad_melody_2.wav,Keyboard,Synth +1,s_pad_melody_1.wav,Keyboard,Synth +1,s_pad1.wav,Keyboard,Synth +1,s_pad synth.wav,Keyboard,Synth +1,s_pad 3.wav,Keyboard,Synth +1,s_pad 2.wav,Keyboard,Synth +1,s_pad 1.wav,Keyboard,Synth +1,s_organ2.wav,Keyboard,Organ +1,s_organ1.wav,Keyboard,Organ +1,s_organ 2.wav,Keyboard,Organ +1,s_org.wav,Keyboard,Organ +1,s_orch hit+tp+tbn+brass section.wav,Other, +1,s_orc.wav,Other, +1,s_old_drums.wav,Other, +1,s_mono synth.wav,Other, +1,s_melotron.wav,Other, +1,s_melody.wav,Other, +1,s_melodica.wav,Other, +1,s_mandolina.wav,Other, +1,s_mandolin+r+perc.wav,Other, +1,s_mallet.wav,Other, +1,s_main_synth.wav,Other, +1,s_main vocals.wav,Other, +1,s_lv-adlib.wav,Other, +1,s_lv 02.wav,Other, +1,s_lv 01.wav,Other, +1,s_low pad.wav,Other, +1,s_loop eg1.wav,Other, +1,s_leadsquare.wav,Other, +1,s_lead_guitar.wav,Other, +1,s_lead pluck.wav,Other, +1,s_lap steel.wav,Other, +1,s_koto.wav,Other, +1,s_kora.wav,Other, +1,s_kick bomb.wav,Other, +1,s_keys left.wav,Other, +1,s_key.wav,Other, +1,s_jaw harp.wav,Other, +1,s_intro eg.wav,Other, +1,s_horns.wav,Other, +1,s_hit.wav,Other, +1,s_hi perc.wav,Other, +1,s_hey.wav,Other, +1,s_harmonics_gtr.wav,Other, +1,s_hammond.wav,Other, +1,s_guzheng.wav,Other, +1,s_gunshot.wav,Other, +1,s_guitar.wav,Electric Guitar, +1,s_guit_theme.wav,Electric Guitar, +1,s_guit_slide.wav,Electric Guitar, +1,s_guit_sat.wav,Electric Guitar, +1,s_guit_fuzz.wav,Electric Guitar, +1,s_guit_effect.wav,Electric Guitar, +1,s_guit_clean_rythm.wav,Electric Guitar, +1,s_guit_clean_lead.wav,Electric Guitar, +1,s_guit_clean_back.wav,Electric Guitar, +1,s_guit_clean_3.wav,Electric Guitar, +1,s_guit_clean_2.wav,Electric Guitar, +1,s_guit_clean_1.wav,Electric Guitar, +1,s_guit_acoust.wav,Electric Guitar, +1,s_gtrsolo.wav,Electric Guitar, +1,s_gtrright.wav,Electric Guitar, +1,s_gtrl.wav,Electric Guitar, +1,s_gtr12.wav,Electric Guitar, +1,s_gtr1 r.wav,Electric Guitar, +1,s_gtr1 l.wav,Electric Guitar, +1,s_gtr synth.wav,Electric Guitar, +1,s_gtr solo2.wav,Electric Guitar, +1,s_gtr solo1.wav,Electric Guitar, +1,s_gtr perc.wav,Electric Guitar, +1,s_gtr pad.wav,Electric Guitar, +1,s_gtr fuzz.wav,Electric Guitar, +1,s_gtr cln.wav,Electric Guitar, +1,s_gtr c.wav,Electric Guitar, +1,s_glockenspiel.wav,Other, +1,s_fx2.wav,Other, +1,s_fx1.wav,Other, +1,s_fx-1.wav,Other, +1,s_fx slowdown.wav,Other, +1,s_fr horns.wav,Other, +1,s_fr horn section.wav,Other, +1,s_flutes.wav,Other, +1,s_flute_outro.wav,Other, +1,s_flute 2.wav,Other, +1,s_explotion fx.wav,Other, +1,s_ethnic synth.wav,Other, +1,s_electric guitar 2 muted.wav,Electric Guitar, +1,s_electric guitar 1muted.wav,Electric Guitar, +1,s_electric guitar 123.wav,Electric Guitar, +1,s_elec drums.wav,Other, +1,s_egtremolo.wav,Electric Guitar, +1,s_egright.wav,Electric Guitar, +1,s_egmuted.wav,Electric Guitar, +1,s_egleft.wav,Electric Guitar, +1,s_egcrunch.wav,Electric Guitar, +1,s_egbaritone.wav,Electric Guitar, +1,s_eg_rdisto.wav,Electric Guitar, +1,s_eg_ldisto.wav,Electric Guitar, +1,s_eg_lclean.wav,Electric Guitar, +1,s_eg5.wav,Electric Guitar, +1,s_eg3arr.wav,Electric Guitar, +1,s_eg2disto.wav,Electric Guitar, +1,s_eg2arr.wav,Electric Guitar, +1,s_eg2_r.wav,Electric Guitar, +1,s_eg2_l.wav,Electric Guitar, +1,s_eg2_1.wav,Electric Guitar, +1,s_eg1arr.wav,Electric Guitar, +1,s_eg1 r.wav,Electric Guitar, +1,s_eg wah.wav,Electric Guitar, +1,s_eg vibroverb.wav,Electric Guitar, +1,s_eg tremolo lead.wav,Electric Guitar, +1,s_eg tremolo 3.wav,Electric Guitar, +1,s_eg trem l.wav,Electric Guitar, +1,s_eg trem ctr.wav,Electric Guitar, +1,s_eg solo 3.wav,Electric Guitar, +1,s_eg slice.wav,Electric Guitar, +1,s_eg rythmic.wav,Electric Guitar, +1,s_eg rhythm.wav,Electric Guitar, +1,s_eg reverb.wav,Electric Guitar, +1,s_eg r1.wav,Electric Guitar, +1,s_eg pads.wav,Electric Guitar, +1,s_eg ov.wav,Electric Guitar, +1,s_eg od.wav,Electric Guitar, +1,s_eg lider.wav,Electric Guitar, +1,s_eg lead 2.wav,Electric Guitar, +1,s_eg lead 1.wav,Electric Guitar, +1,s_eg l1.wav,Electric Guitar, +1,s_eg fxs.wav,Electric Guitar, +1,s_eg fx.wav,Electric Guitar, +1,s_eg fuzz.wav,Electric Guitar, +1,s_eg effect.wav,Electric Guitar, +1,s_eg disto.wav,Electric Guitar, +1,s_eg dist 2.wav,Electric Guitar, +1,s_eg dist 1.wav,Electric Guitar, +1,s_eg delay.wav,Electric Guitar, +1,s_eg ctr and rev.wav,Electric Guitar, +1,s_eg clean+clean 2+dist.wav,Electric Guitar, +1,s_eg clean 1.wav,Electric Guitar, +1,s_eg cleamn.wav,Electric Guitar, +1,s_eg bass.wav,Electric Guitar, +1,s_eg arrangements.wav,Electric Guitar, +1,s_eg arpeggio.wav,Electric Guitar, +1,s_eg arpeggio chords.wav,Electric Guitar, +1,s_eg arpeg.wav,Electric Guitar, +1,s_eg 2 r.wav,Electric Guitar, +1,s_eg 2 l.wav,Electric Guitar, +1,s_eg 1r.wav,Electric Guitar, +1,s_eg 1l.wav,Electric Guitar, +1,s_eg 06.wav,Electric Guitar, +1,s_edrums.wav,Drums, +1,s_e.piano.wav,Piano, +1,s_e-guitar 2.wav,Electric Guitar, +1,s_e-guitar 1.wav,Electric Guitar, +1,s_e guitar 4.wav,Electric Guitar, +1,s_e guitar 3.wav,Electric Guitar, +1,s_e guitar 2.wav,Electric Guitar, +1,s_e guitar 2 bis.wav,Electric Guitar, +1,s_e guitar 1.wav,Electric Guitar, +1,s_e drums.wav,Other, +1,s_dulcimer.wav,Other, +1,s_drums_1.wav,Other, +1,s_drums2.wav,Other, +1,s_drums1.wav,Other, +1,s_drums real.wav,Other, +1,s_drums intro.wav,Other, +1,s_drum_loop.wav,Other, +1,s_drum loops.wav,Other, +1,s_double_bass_outro.wav,Other, +1,s_double bass.wav,Other, +1,s_dog fx.wav,Other, +1,s_dbl bass.wav,Other, +1,s_dbass.wav,Other, +1,s_cuica.wav,Other, +1,s_crunch guitar 3.wav,Other, +1,s_crunch guitar 2.wav,Other, +1,s_crowd.wav,Other, +1,s_crackle.wav,Other, +1,s_contra bass.wav,Other, +1,s_congas.wav,Other, +1,s_clav synth.wav,Other, +1,s_clarinet.wav,Other, +1,s_chromatic percussion.wav,Other, +1,s_chord.wav,Other, +1,s_chimes.wav,Other, +1,s_children.wav,Other, +1,s_charango 02.wav,Other, +1,s_charango 01.wav,Other, +1,s_cello5.wav,Cello, +1,s_cello4.wav,Cello, +1,s_cello3.wav,Cello, +1,s_cello2.wav,Cello, +1,s_cello1.wav,Cello, +1,s_celeste.wav,Other, +1,s_bv3.wav,Other, +1,s_bright_strings.wav,Other, +1,s_brasses 2.wav,Other, +1,s_brass2.wav,Other, +1,s_brass1.wav,Other, +1,s_brass sampled.wav,Other, +1,s_bass_arp.wav,Other, +1,s_bass_808.wav,Other, +1,s_bass solo.wav,Other, +1,s_bass real.wav,Other, +1,s_bass intro.wav,Other, +1,s_bass fretless.wav,Other, +1,s_bass filter.wav,Other, +1,s_bajo.wav,Other, +1,s_backing vocals.wav,Other, +1,s_b.v choir.wav,Other, +1,s_b.v 2 chant.wav,Other, +1,s_b ass.wav,Other, +1,s_as.wav,Other, +1,s_arpegiator.wav,Other, +1,s_arm.wav,Other, +1,s_ambiance_2.wav,Other, +1,s_ambiance.wav,Other, +1,s_agstrum.wav,Acoustic Guitar, +1,s_agspanish.wav,Acoustic Guitar, +1,s_agr.wav,Acoustic Guitar, +1,s_aglead.wav,Acoustic Guitar, +1,s_ag_l+r+perc.wav,Acoustic Guitar, +1,s_ag4.wav,Acoustic Guitar, +1,s_ag12str.wav,Acoustic Guitar, +1,s_ag12.wav,Acoustic Guitar, +1,s_ag solo 12.wav,Acoustic Guitar, +1,s_ag rythmic.wav,Acoustic Guitar, +1,s_ag rit 12.wav,Acoustic Guitar, +1,s_ag main.wav,Acoustic Guitar, +1,s_ag effect.wav,Acoustic Guitar, +1,s_ag base.wav,Acoustic Guitar, +1,s_ag arpeggios.wav,Acoustic Guitar, +1,s_ag arpeg.wav,Acoustic Guitar, +1,s_ag 4.wav,Acoustic Guitar, +1,s_ag 3.wav,Acoustic Guitar, +1,s_ag 23 left.wav,Acoustic Guitar, +1,s_ag 1 left.wav,Acoustic Guitar, +1,s_acoustic.wav,Acoustic Guitar, +1,s_acoustic guitar3.wav,Acoustic Guitar, +1,s_acoustic guitar r.wav,Acoustic Guitar, +1,s_acoustic guitar nylon.wav,Acoustic Guitar, +1,s_acoustic guitar l.wav,Acoustic Guitar, +1,s_acoustic guitar 12.wav,Acoustic Guitar, +1,s_acoust_rythm.wav,Acoustic Guitar, +1,s_acoust_lead.wav,Acoustic Guitar, +1,s_acoust_add.wav,Acoustic Guitar, +1,s_accordion_1.wav,Other, +1,s_acc.wav,Other, +1,s_acc sctn.wav,Other, +1,s synth.wav,Other, +1,s synth vocals.wav,Other, +1,s piano.wav,Other, +1,s percussion.wav,Other, +1,s mandolin.wav,Other, +1,s mallets.wav,Other, +1,s lv.wav,Other, +1,s eg.wav,Other, +1,s bv.wav,Other, +1,s bass.wav,Other, +1,s ag 02.wav,Other, +1,s ag 01.wav,Other, +1,rythmgtrs.wav,Other, +1,rythmgtr.wav,Other, +1,ryan guldemond.wav,Other, +1,russell hitchcock.wav,Other, +1,russel dickerson.wav,Other, +1,run-d.m.c..wav,Other, +1,rums.wav,Other, +1,rumblebass.wav,Other, +1,rtm synth.wav,Other, +1,rozonda thomas & tionne watkins.wav,Other, +1,rozonda thomas & tionne watkins-adlib.wav,Other, +1,roy orbison.wav,Other, +1,roscoe dash.wav,Other, +1,rosalia.wav,Other, +1,root solo eg.wav,Other, +1,ronnie flex.wav,Other, +1,ronnie flex-adlib.wav,Other, +1,ronnie dunn.wav,Other, +1,ronnie devoe.wav,Other, +1,ronnie devoe-adlib.wav,Other, +1,rohdes.wav,Other, +1,roger waters.wav,Other, +1,roger troutman.wav,Other, +1,robert cray.wav,Other, +1,rita ora.wav,Other, +1,rita ora-adlib.wav,Other, +1,rising synths.wav,Other, +1,rising fx.wav,Other, +1,rise.wav,Other, +1,riley green.wav,Other, +1,rightorgan 2.wav,Other, +1,rightguitar 3.wav,Other, +1,rightgtr 7.wav,Other, +1,right_gtr 6.wav,Other, +1,right_gtr 2.wav,Other, +1,right6gtr 4.wav,Other, +1,right synthlead.wav,Other, +1,right solo classic guitar.wav,Other, +1,right rhytmic eg.wav,Other, +1,right overdrive eg.wav,Other, +1,right mando 2.wav,Other, +1,right in two tool perc.wav,Percussion, +1,right in two tool ld.wav,Voice,Lead +1,right in two tool e guitar dist 4.wav,Electric Guitar,Distorted 4 +1,right in two tool e guitar dist 3.wav,Electric Guitar,Distorted 3 +1,right in two tool e guitar dist 2.wav,Electric Guitar,Distorted 2 +1,right in two tool e guitar dist 1.wav,Electric Guitar,Distorted 1 +1,right in two tool e guitar clean 2.wav,Electric Guitar,Clean 2 +1,right in two tool e guitar clean 1.wav,Electric Guitar,Clean 1 +1,right in two tool drums.wav,Drums, +1,right in two tool bells.wav,Keyboard,Synth Bells +1,right in two tool bass.wav,Bass Guitar,Bass 1 +1,right in two tool bass 2.wav,Bass Guitar,Bass 2 +1,right guitar electro 2.wav,Other, +1,right guitar acoustic 2.wav,Acoustic Guitar, +1,right guitar 3.wav,Electric Guitar, +1,right gtr.wav,Electric Guitar, +1,right gtr-arp2.wav,Electric Guitar, +1,right gtr 5.wav,Electric Guitar, +1,right gtr 3.wav,Electric Guitar, +1,right el gtr 1.wav,Electric Guitar, +1,right eguit 3.wav,Electric Guitar, +1,right eg2.wav,Electric Guitar, +1,right eg1+2.wav,Electric Guitar, +1,right eg 7.wav,Electric Guitar, +1,right eg 2.wav,Electric Guitar, +1,right crunch rhythmic eg.wav,Electric Guitar, +1,right clean eg.wav,Electric Guitar, +1,right chorus eg.wav,Electric Guitar, +1,right arr eg.wav,Electric Guitar, +1,righgtr 2.wav,Electric Guitar, +1,riffguitar.wav,Electric Guitar, +1,ricky munoz.wav,Other, +1,ricky bell.wav,Other, +1,rick james.wav,Other, +1,rick boss.wav,Other, +1,rich the kid.wav,Other, +1,rich homie quan.wav,Other, +1,rhythmic steel guitar.wav,Electric Guitar, +1,rhythmic eg12.wav,Electric Guitar, +1,rhythmic eg1.wav,Electric Guitar, +1,rhythmic classic guitar.wav,Electric Guitar, +1,rhythmgtrs.wav,Electric Guitar, +1,rhythmgtrr.wav,Electric Guitar, +1,rhythm_electric_guitar_left.wav,Electric Guitar, +1,rhythm_electric_guitar_center_2.wav,Electric Guitar, +1,rhythm_electric_guitar_center.wav,Electric Guitar, +1,rhythm_acoustic_guitar.wav,Acoustic Guitar, +1,rhythm guitars 2 - chorus.wav,Electric Guitar, +1,rhythm guitars 1.wav,Electric Guitar, +1,rhythm guitar.wav,Electric Guitar, +1,rhythm gt.wav,Electric Guitar, +1,rhythm electric guitar.wav,Electric Guitar, +1,rhythm eg.wav,Electric Guitar, +1,rhythm acoustic guitar.wav,Acoustic Guitar, +1,rhythgt.wav,Electric Guitar, +1,rhyt gtrs.wav,Electric Guitar, +1,rhyhmic nylon ag.wav,Acoustic Guitar, +1,rhygt2 right.wav,Electric Guitar, +1,rhygt1 left.wav,Electric Guitar, +1,rhodes2.wav,Keyboard,Rhodes +1,rhodes1.wav,Keyboard,Rhodes +1,rhodes-piano.wav,Keyboard,Rhodes +1,rhodes-.wav,Keyboard,Rhodes +1,rhodes+harps+hammond.wav,Keyboard,Rhodes +1,rhodes wah.wav,Keyboard,Rhodes +1,rhodes ep solo.wav,Keyboard,Rhodes +1,rhodes 2+3.wav,Keyboard,Rhodes +1,rhodes 2 right.wav,Keyboard,Rhodes +1,rhodes 12.wav,Keyboard,Rhodes +1,rhodes + clavinet.wav,Keyboard,Rhodes +1,rhode & keys.wav,Keyboard,Rhodes +1,rghtgtr 2.wav,Other, +1,rezz.wav,Other, +1,reversestrings.wav,Other, +1,reverses.wav,Other, +1,reversepiano.wav,Other, +1,reversepad.wav,Other, +1,reversefx + atmo.wav,Other, +1,reversed snare.wav,Other, +1,reversed cymbal.wav,Other, +1,reversecymbal + fx + noise.wav,Other, +1,reversebrass.wav,Other, +1,reverse_fx - copie.wav,Other, +1,reverse.wav,Other, +1,reverse synth.wav,Other, +1,reverse eg.wav,Other, +1,reverse cymbal.wav,Other, +1,reverb guitars.wav,Other, +1,rev synths.wav,Other, +1,rev synth.wav,Other, +1,rev run.wav,Other, +1,rev guits.wav,Other, +1,restsax.wav,Other, +1,reso_pluck_synth.wav,Other, +1,reso synths.wav,Other, +1,reso synth.wav,Other, +1,resample.wav,Other, +1,resample pitch.wav,Other, +1,renee rapp.wav,Other, +1,remo.wav,Other, +1,reminiscing (little river band) trumpet solo.wav,Trumpet, +1,reminiscing (little river band) strings section.wav,Keyboard,Synth Strings +1,reminiscing (little river band) rhodes.wav,Keyboard,Rhodes +1,reminiscing (little river band) perc.wav,Percussion, +1,reminiscing (little river band) ld.wav,Voice,Lead +1,reminiscing (little river band) horns section.wav,Other,Horns +1,reminiscing (little river band) e guitar lead 2.wav,Electric Guitar,Lead 2 +1,reminiscing (little river band) e guitar lead 1.wav,Electric Guitar,Lead 1 +1,reminiscing (little river band) e guitar 2.wav,Electric Guitar,Rhythm 2 +1,reminiscing (little river band) e guitar 1.wav,Electric Guitar,Rhythm 1 +1,reminiscing (little river band) drums.wav,Drums, +1,reminiscing (little river band) clavinet.wav,Keyboard,Clavinet +1,reminiscing (little river band) bv.wav,Voice,Backing +1,reminiscing (little river band) bass.wav,Bass Guitar, +1,reggea bass.wav,Other, +1,reggaepiano.wav,Other, +1,regard.wav,Other, +1,redman.wav,Other, +1,red sector a rush theremin.wav,Theremin, +1,red sector a rush synthstrings.wav,Keyboard,Synth Strings +1,red sector a rush synthkey.wav,Keyboard,Synth Keys +1,red sector a rush polysynth.wav,Keyboard,Polysynth +1,red sector a rush pluck.wav,Keyboard,Pluck +1,red sector a rush perc.wav,Percussion, +1,red sector a rush ld.wav,Voice,Lead +1,red sector a rush e guitar harmonics.wav,Electric Guitar,Harmonics 1 +1,red sector a rush e guitar harmonics 2.wav,Electric Guitar,Harmonics 2 +1,red sector a rush e guitar 2.wav,Electric Guitar,Electric 2 +1,red sector a rush e guitar 1.wav,Electric Guitar,Electric 1 +1,red sector a rush drums.wav,Drums, +1,red sector a rush bass synth.wav,Keyboard,Synth Bass +1,realvlns.wav,Violin, +1,realcellos.wav,Cello, +1,real violin 2.wav,Violin, +1,real violin 1+2+3.wav,Violin, +1,real trumpets.wav,Trumpet, +1,real trumpet 2 left.wav,Trumpet, +1,real trumpet 1 right.wav,Trumpet, +1,real trp 02.wav,Trumpet, +1,real trp 01.wav,Trumpet, +1,real trombone.wav,Trombone, +1,real trombone 3.wav,Trombone, +1,real trombon 2.wav,Trombone, +1,real trombon 1.wav,Trombone, +1,real tenor sax 3 solo.wav,Saxophone, +1,real teanor sax.wav,Saxophone, +1,real strings.wav,Other, +1,real string.wav,Other, +1,real solo sax.wav,Saxophone, +1,real sax tenor.wav,Saxophone, +1,real sax tenor 02.wav,Saxophone, +1,real sax tenor 01.wav,Saxophone, +1,real sax solo.wav,Saxophone, +1,real sax bari.wav,Saxophone, +1,real sax bari 01.wav,Saxophone, +1,real sax alto.wav,Saxophone, +1,real sax 1.wav,Saxophone, +1,real pedal steel solo.wav,Electric Guitar,Pedal Steel +1,real pedal steel r.wav,Electric Guitar,Pedal Steel +1,real pedal steel l.wav,Electric Guitar,Pedal Steel +1,real mandolina.wav,Mandolin, +1,real mandolina solo.wav,Mandolin, +1,real mandolina rhytmic.wav,Mandolin, +1,real mandolin.wav,Mandolin, +1,real lap steel.wav,Electric Guitar,Lap Steel +1,real hermonica.wav,Harmonica, +1,real flute.wav,Flute, +1,real fat.wav,Other, +1,real brass.wav,Other, +1,real bari sax.wav,Other, +1,real banjo 01 right+02.wav,Banjo, +1,real alto sax.wav,Other, +1,ray dalton.wav,Other, +1,ray charles.wav,Other, +1,rauw alexander.wav,Other, +1,rap2.wav,Other, +1,rap1.wav,Other, +1,rap.wav,Other, +1,rap-bvs.wav,Other, +1,rap and sung.wav,Other, +1,randy.wav,Other, +1,random.wav,Other, +1,raiser tone.wav,Other, +1,rain.wav,Other, +1,rag n bone man.wav,Other, +1,radio_voice.wav,Other, +1,radio voice.wav,Other, +1,radio and geiger.wav,Other, +1,r.l. huggar.wav,Other, +1,r.l. huggar-adlib.wav,Other, +1,r. kelly-adlib.wav,Other, +1,r eg.wav,Other, +1,r ag.wav,Other, +1,quite beep.wav,Other, +1,quavo-adlib.wav,Other, +1,pwm.wav,Other, +1,pussycat dolls.wav,Other, +1,pusha t.wav,Other, +1,pulse synth.wav,Other, +1,puff daddy.wav,Other, +1,pseudo mandolin.wav,Other, +1,prosecutor.wav,Other, +1,prophetish.wav,Other, +1,prophet.wav,Other, +1,projector.wav,Other, +1,project pat.wav,Other, +1,princess nokia.wav,Other, +1,prince ital joe.wav,Other, +1,precountkey.wav,Other, +1,precount+key.wav,Other, +1,precount in.wav,Other, +1,preclick.wav,Other, +1,pre.wav,Other, +1,pre-count.wav,Other, +1,power synth.wav,Other, +1,power synth 1+2.wav,Other, +1,power chords.wav,Other, +1,pops.wav,Other, +1,ponderosa twins plus one.wav,Other, +1,polysixperc.wav,Other, +1,polylead r.wav,Other, +1,poly synth 4 fx.wav,Other, +1,poly synth 3.wav,Other, +1,poly synth 2.wav,Other, +1,poly synth 12 piano.wav,Other, +1,polo g.wav,Other, +1,pnpipes.wav,Other, +1,plucked synth arr.wav,Other, +1,plucked strings and keys.wav,Other, +1,plucked high.wav,Other, +1,plucked 1.wav,Other, +1,pluck_synth.wav,Other, +1,pluck synth chrom + synth intro.wav,Other, +1,pluck synth 2.wav,Other, +1,pluck intro synth.wav,Other, +1,pluck inst.wav,Other, +1,pluck gtr + synths.wav,Other, +1,pluck dre arr+saw.wav,Other, +1,pluck chords.wav,Other, +1,pluck arr.wav,Other, +1,plinky.wav,Other, +1,plies.wav,Other, +1,pj harvey.wav,Other, +1,pizzstrings.wav,Other, +1,pizzicatos.wav,Other, +1,pizz violins.wav,Other, +1,pizz 2.wav,Other, +1,pizz 1.wav,Other, +1,pizz + harp.wav,Other, +1,pitchperc.wav,Other, +1,pitchedpercs.wav,Other, +1,pitchedperc.wav,Other, +1,pitched vox.wav,Other, +1,pitched loop.wav,Other, +1,pitch.wav,Other, +1,pitbull & ne-yo.wav,Other, +1,pipeorgan.wav,Other, +1,pipe.wav,Other, +1,pipe organ.wav,Other, +1,pipa.wav,Other, +1,pimp c.wav,Other, +1,pierre bouvier.wav,Other, +1,pierre bouvier-adlib.wav,Other, +1,pier_oh.wav,Other, +1,pickedleadguitar.wav,Other, +1,pick.wav,Other, +1,pianp.wav,Piano, +1,pianostack.wav,Piano, +1,pianomain.wav,Piano, +1,pianolead.wav,Piano, +1,pianola.wav,Piano, +1,piano_ok.wav,Piano, +1,piano_efx.wav,Piano, +1,piano_e.wav,Piano, +1,piano_dist.wav,Piano, +1,piano_01.wav,Piano, +1,piano12.wav,Piano, +1,piano-strings.wav,Piano, +1,piano-bell.wav,Piano, +1,piano-arr synth bells.wav,Piano, +1,piano+piano bell.wav,Piano, +1,piano+intro.wav,Piano, +1,piano+el piano.wav,Piano, +1,piano wurlitzer.wav,Piano, +1,piano with fx.wav,Piano, +1,piano tran.wav,Piano, +1,piano synth.wav,Piano, +1,piano synth koto.wav,Piano, +1,piano space.wav,Piano, +1,piano sample.wav,Piano, +1,piano r.wav,Piano, +1,piano mk.wav,Piano, +1,piano melody.wav,Piano, +1,piano layers theme.wav,Piano, +1,piano l.wav,Piano, +1,piano hi + low.wav,Piano, +1,piano hard.wav,Piano, +1,piano hammond arr.wav,Piano, +1,piano filter.wav,Piano, +1,piano ep pianet.wav,Piano, +1,piano ending.wav,Piano, +1,piano electrique.wav,Piano, +1,piano electric.wav,Piano, +1,piano el_ok.wav,Piano, +1,piano dance.wav,Piano, +1,piano chords.wav,Piano, +1,piano and ep.wav,Piano, +1,piano adds.wav,Piano, +1,piano _01-01 (d).wav,Piano, +1,piano 2 right.wav,Piano, +1,piano 2 intro.wav,Piano, +1,piano 12.wav,Piano, +1,piano 1+2+3.wav,Piano, +1,piano 02.wav,Piano, +1,piano 01.wav,Piano, +1,piano + reverse piano.wav,Piano, +1,piano + cp.wav,Piano, +1,piano (new).wav,Piano, +1,piano (loop).wav,Piano, +1,piack.wav,Other, +1,phish.wav,Other, +1,philippine.wav,Other, +1,philippine lavrey.wav,Other, +1,philip oakey.wav,Other, +1,phaser pad.wav,Other, +1,pharell williams.wav,Other, +1,petra christensen.wav,Other, +1,petey pablo.wav,Other, +1,petey pablo-adlib.wav,Other, +1,peter gabriel.wav,Other, +1,peter cetera.wav,Other, +1,perucssion.wav,Percussion, +1,pertucion.wav,Other, +1,perrie edwards.wav,Other, +1,percussivesynth.wav,Other, +1,percussive synth.wav,Other, +1,percussions+sfx.wav,Percussion, +1,percussions+hits.wav,Percussion, +1,percussion-noises.wav,Percussion, +1,percussion-fx.wav,Percussion, +1,percussion-3.wav,Percussion, +1,percussion+synth perc.wav,Percussion, +1,percussion glockenspiel.wav,Percussion, +1,percussion fix.wav,Percussion, +1,percussion eb 140bpm.wav,Percussion, +1,percussion - weird tube sound.wav,Percussion, +1,percussion - fingersnaps + whip + claps.wav,Percussion, +1,percusiones.wav,Percussion, +1,percuccion.wav,Percussion, +1,percu+mix fxs.wav,Percussion, +1,percu+fx+orch hits.wav,Percussion, +1,percu chrom + hits.wav,Percussion, +1,percu + occhestral percu.wav,Percussion, +1,percshaker.wav,Percussion, +1,percs+scratch+synth2.wav,Percussion, +1,percs chrom.wav,Percussion, +1,percs and revfx.wav,Percussion, +1,percs and chimes.wav,Percussion, +1,percs and 1218_cajon.wav,Percussion, +1,percmixgoo.wav,Percussion, +1,percmix.wav,Percussion, +1,perc_efx.wav,Percussion, +1,perc_claps.wav,Percussion, +1,perc1+2mix.wav,Percussion, +1,perc1+2 mix.wav,Percussion, +1,perc..wav,Percussion, +1,perc-sample.wav,Percussion, +1,perc-mallets.wav,Percussion, +1,perc+synth fx.wav,Percussion, +1,perc+mix fx.wav,Percussion, +1,perc+ guit3 noise.wav,Percussion, +1,perc mix.wav,Percussion, +1,perc metals.wav,Percussion, +1,perc loop.wav,Percussion, +1,perc kick.wav,Percussion, +1,perc gt.wav,Percussion, +1,perc fx.wav,Percussion, +1,perc and timp.wav,Percussion, +1,perc and fx.wav,Percussion, +1,perc and foley.wav,Percussion, +1,perc and claps.wav,Percussion, +1,perc 2 right.wav,Percussion, +1,perc 12.wav,Percussion, +1,perc 1+2 mix.wav,Percussion, +1,perc 1 left.wav,Percussion, +1,perc 1 2.wav,Percussion, +1,perc + vinyl.wav,Percussion, +1,perc + timpani + noise.wav,Percussion, +1,perc + timpani + cymbal.wav,Percussion, +1,perc + noise.wav,Percussion, +1,perc + fx.wav,Percussion, +1,people.wav,Other, +1,pentatonix.wav,Other, +1,pee wee.wav,Other, +1,pedalsteel.wav,Other, +1,pedal_steel_guitar.wav,Other, +1,pedal steel guitar.wav,Other, +1,peaches.wav,Other, +1,pc clic.wav,Other, +1,paulissa moorman.wav,Other, +1,paul.wav,Other, +1,paul mccartney.wav,Other, +1,paolo nutini.wav,Other, +1,pan flute.wav,Other, +1,pam.wav,Other, +1,palmas.wav,Other, +1,paino.wav,Other, +1,padvox.wav,Other, +1,padsynth.wav,Keyboard,Synth Pad +1,padshop-notdups.wav,Keyboard,Synth Pad +1,pads_fxs.wav,Keyboard,Synth Pad +1,pads12 strings riser.wav,Keyboard,Synth Pad +1,pads synths bellsambiance.wav,Keyboard,Synth Pad +1,pads synth.wav,Keyboard,Synth Pad +1,pads strings and synth.wav,Keyboard,Synth Pad +1,pads organ-pad-string-choir.wav,Keyboard,Synth Pad +1,pads mixmaster.wav,Keyboard,Synth Pad +1,pads choir synth2.wav,Keyboard,Synth Pad +1,pads choir strings.wav,Keyboard,Synth Pad +1,pads choir delay wobble.wav,Keyboard,Synth Pad +1,pads and strings and fx.wav,Keyboard,Synth Pad +1,pads and noise.wav,Keyboard,Synth Pad +1,pads and bases.wav,Keyboard,Synth Pad +1,pads 123.wav,Keyboard,Synth Pad +1,pads 12 voice and chorus strings.wav,Keyboard,Synth Pad +1,pads 1 + 2 + 3 + 4.wav,Keyboard,Synth Pad +1,pads + plucked.wav,Keyboard,Synth Pad +1,padmix.wav,Keyboard,Synth Pad +1,padfx.wav,Keyboard,Synth Pad +1,padefx intro.wav,Keyboard,Synth Pad +1,padchoir2.wav,Keyboard,Synth Pad +1,padchoir.wav,Keyboard,Synth Pad +1,pad_synth_2.wav,Keyboard,Synth Pad +1,pad_synth_1.wav,Keyboard,Synth Pad +1,pad_intro_synth.wav,Keyboard,Synth Pad +1,pad_bell.wav,Keyboard,Synth Pad +1,pad_1.wav,Keyboard,Synth Pad +1,pad3.wav,Keyboard,Synth Pad +1,pad123 synth34.wav,Keyboard,Synth Pad +1,pad1.wav,Keyboard,Synth Pad +1,pad-01.wav,Keyboard,Synth Pad +1,pad+voice synth arr.wav,Keyboard,Synth Pad +1,pad+synth+strings.wav,Keyboard,Synth Pad +1,pad+strings.wav,Keyboard,Synth Pad +1,pad+bells.wav,Keyboard,Synth Pad +1,pad voices.wav,Keyboard,Synth Pad +1,pad vocpad strings.wav,Keyboard,Synth Pad +1,pad synth12.wav,Keyboard,Synth Pad +1,pad synth 2.wav,Keyboard,Synth Pad +1,pad synth 1.wav,Keyboard,Synth Pad +1,pad swell.wav,Keyboard,Synth Pad +1,pad sweep.wav,Keyboard,Synth Pad +1,pad strings12 organ.wav,Keyboard,Synth Pad +1,pad strings voicesynth12 synth2.wav,Keyboard,Synth Pad +1,pad string and lead.wav,Keyboard,Synth Pad +1,pad reverse.wav,Keyboard,Synth Pad +1,pad outro.wav,Keyboard,Synth Pad +1,pad loop.wav,Keyboard,Synth Pad +1,pad intro.wav,Keyboard,Synth Pad +1,pad eb 140bpm.wav,Keyboard,Synth Pad +1,pad choirs strings.wav,Keyboard,Synth Pad +1,pad choir.wav,Keyboard,Synth Pad +1,pad choir strings.wav,Keyboard,Synth Pad +1,pad bells.wav,Keyboard,Synth Pad +1,pad and synthstrings.wav,Keyboard,Synth Pad +1,pad and synthbass and string.wav,Keyboard,Synth Pad +1,pad and synth4.wav,Keyboard,Synth Pad +1,pad and sbrass.wav,Keyboard,Synth Pad +1,pad and rhodes.wav,Keyboard,Synth Pad +1,pad and hammond12.wav,Keyboard,Synth Pad +1,pad and choirs.wav,Keyboard,Synth Pad +1,pad and choir vocfx vocsynth.wav,Keyboard,Synth Pad +1,pad ambiant organ.wav,Keyboard,Synth Pad +1,pad 5.wav,Keyboard,Synth Pad +1,pad 123.wav,Keyboard,Synth Pad +1,pad 1+2.wav,Keyboard,Synth Pad +1,pad + whistle + theremin.wav,Keyboard,Synth Pad +1,pad + voicesynth.wav,Keyboard,Synth Pad +1,pad + synth voice.wav,Keyboard,Synth Pad +1,pad + synth strings.wav,Keyboard,Synth Pad +1,pad + padfx.wav,Keyboard,Synth Pad +1,pad + fx.wav,Keyboard,Synth Pad +1,pad + bells + synthfx.wav,Keyboard,Synth Pad +1,pad + bells + arp.wav,Keyboard,Synth Pad +1,p5 r.wav,Other, +1,p5 l.wav,Other, +1,ozuna.wav,Other, +1,overdriven guitar(wah wah).wav,Other, +1,overdriven eg.wav,Other, +1,ovation.wav,Other, +1,outrosynth.wav,Other, +1,outrogtr.wav,Other, +1,outro sound.wav,Other, +1,outkast.wav,Other, +1,other.wav,Other, +1,ostinato synth.wav,Other, +1,orquestra hit.wav,Other, +1,oriental plucked guitar.wav,Other, +1,orgues.wav,Other, +1,orgue.wav,Other, +1,orgue fin.wav,Other, +1,organsynth.wav,Keyboard,Organ +1,organs_1.wav,Keyboard,Organ +1,organs and synth intro lr.wav,Keyboard,Organ +1,organs ambient strings.wav,Keyboard,Organ +1,organpadsynth.wav,Keyboard,Organ +1,organo.wav,Keyboard,Organ +1,organish.wav,Keyboard,Organ +1,organfx arr.wav,Keyboard,Organ +1,organdroite.wav,Keyboard,Organ +1,organ_whitesnake - here i go again.wav,Keyboard,Organ +1,organ_synth.wav,Keyboard,Organ +1,organ_rhodes.wav,Keyboard,Organ +1,organ_hammond_4.wav,Keyboard,Organ +1,organ_hammond_2_clicky.wav,Keyboard,Organ +1,organ12 drone reso saw choirpad.wav,Keyboard,Organ +1,organ1.wav,Keyboard,Organ +1,organ1 pads.wav,Keyboard,Organ +1,organ1 (arpeggio).wav,Keyboard,Organ +1,organ+synths.wav,Keyboard,Organ +1,organ+synth strings.wav,Keyboard,Organ +1,organ+synth lead.wav,Keyboard,Organ +1,organ+pad+choir.wav,Keyboard,Organ +1,organ+ld synth.wav,Keyboard,Organ +1,organ synthchoir.wav,Keyboard,Organ +1,organ synth synthbass.wav,Keyboard,Organ +1,organ synth pad.wav,Keyboard,Organ +1,organ solo.wav,Keyboard,Organ +1,organ pluck2.wav,Keyboard,Organ +1,organ pluck.wav,Keyboard,Organ +1,organ padfx.wav,Keyboard,Organ +1,organ like accordeon.wav,Keyboard,Organ +1,organ intro.wav,Keyboard,Organ +1,organ end.wav,Keyboard,Organ +1,organ dist.wav,Keyboard,Organ +1,organ bass.wav,Keyboard,Organ +1,organ and synth.wav,Keyboard,Organ +1,organ and keys.wav,Keyboard,Organ +1,organ 23.wav,Keyboard,Organ +1,organ 2 solo.wav,Keyboard,Organ +1,organ 2 right.wav,Keyboard,Organ +1,organ 2 pad.wav,Keyboard,Organ +1,organ 123.wav,Keyboard,Organ +1,organ 12.wav,Keyboard,Organ +1,organ 1 arp lead.wav,Keyboard,Organ +1,organ 1 + 2 + 3.wav,Keyboard,Organ +1,organ + synth 80s.wav,Keyboard,Organ +1,organ + pad + strings.wav,Keyboard,Organ +1,organ + harmonium.wav,Keyboard,Organ +1,organ + flute.wav,Keyboard,Organ +1,orgam.wav,Other, +1,orchestral perc.wav,Other, +1,orchestral harp.wav,Other, +1,orchestrahits.wav,Other, +1,orchestra pizz and stabb.wav,Other, +1,orchestra perc fx.wav,Other, +1,orchestra hits.wav,Other, +1,orch.wav,Other, +1,orch stabs.wav,Other, +1,orch sample.wav,Other, +1,orch perc.wav,Other, +1,orch hits.wav,Other, +1,orch drums.wav,Other, +1,orbit station.wav,Other, +1,one single bell.wav,Other, +1,one note synth.wav,Other, +1,omega.wav,Other, +1,omarion.wav,Other, +1,olly murs.wav,Other, +1,olivia.wav,Other, +1,oli sykes.wav,Other, +1,ol dirty bastard.wav,Other, +1,offset-adlib.wav,Other, +1,octobans.wav,Other, +1,octaverhythmgtr.wav,Other, +1,octave saw.wav,Other, +1,ocarina.wav,Other, +1,ocanina_over_the_hills_and_far_away.wav,Other, +1,oboe and piccolo.wav,Other, +1,oboe 1 + 2.wav,Other, +1,oates.wav,Other, +1,o.wav,Other, +1,o hit.wav,Other, +1,nylongtr.wav,Acoustic Guitar, +1,nylongt_r.wav,Acoustic Guitar, +1,nylongt_l.wav,Acoustic Guitar, +1,nylongt.wav,Acoustic Guitar, +1,nylon_solo.wav,Acoustic Guitar, +1,nylon_harmonie_2.wav,Acoustic Guitar, +1,nylon_harmonie_1.wav,Acoustic Guitar, +1,nylon.wav,Acoustic Guitar, +1,nylon guitar vst.wav,Acoustic Guitar, +1,nylon guitar solo.wav,Acoustic Guitar, +1,nylon guitar rhytmic.wav,Acoustic Guitar, +1,nylon guitar rhytmic 2.wav,Acoustic Guitar, +1,nylon guitar intro muted.wav,Acoustic Guitar, +1,nyla.wav,Other, +1,notorious big.wav,Other, +1,notorious b.i.g..wav,Other, +1,notdup-gtr ac.wav,Other, +1,normani.wav,Other, +1,noise vynil crack.wav,Other, +1,noise sfx.wav,Other, +1,noise sea waves.wav,Other, +1,noise and fx.wav,Other, +1,noise + reversed cymb.wav,Other, +1,noir strings.wav,Other, +1,noah cyrus.wav,Other, +1,nle choppa.wav,Other, +1,nk.wav,Other, +1,nivea.wav,Other, +1,nio garcia.wav,Other, +1,nina sky.wav,Other, +1,nico sallach.wav,Other, +1,nicky jam.wav,Other, +1,nicki minaj-adlib.wav,Other, +1,nick jonas-adlib.wav,Other, +1,niall horan.wav,Other, +1,ney.wav,Other, +1,newage ep.wav,Other, +1,new year fx.wav,Other, +1,new drums + perc.wav,Other, +1,new bv.wav,Other, +1,new basse en 440.wav,Other, +1,neunzig_s_synth_04.wav,Other, +1,neunzig_s_synth_03.wav,Other, +1,neunzig_s_synth_02.wav,Other, +1,neunzig_s_synth_01.wav,Other, +1,neunzig_s_lv.wav,Other, +1,neunzig_s_drums.wav,Other, +1,neunzig_s_bv.wav,Other, +1,neunzig_s_bass.wav,Other, +1,nesi.wav,Other, +1,nengo flow.wav,Other, +1,nelly-adlib.wav,Other, +1,nelly furtado and soshy.wav,Other, +1,nbv-notdup-piano.wav,Other, +1,nayer.wav,Other, +1,natti natasha.wav,Other, +1,nathan morris.wav,Other, +1,nate ruess.wav,Other, +1,natasha bedingfield.wav,Other, +1,natalie horler.wav,Other, +1,nancy fletcher.wav,Other, +1,n.o.r.e.wav,Other, +1,n-dubz.wav,Other, +1,n guitar.wav,Other, +1,myrna matthews.wav,Other, +1,muteguitar2.wav,Other, +1,mutedguitar.wav,Other, +1,mutedgtr.wav,Other, +1,muted guitar 1.wav,Other, +1,muted gtr.wav,Other, +1,muted gtr 2.wav,Other, +1,muted + solo.wav,Other, +1,mute.wav,Other, +1,mute trumpet.wav,Other, +1,mute trumpet lead.wav,Other, +1,mute guits.wav,Other, +1,musicbox.wav,Other, +1,ms20.wav,Other, +1,ms. toi.wav,Other, +1,ms. peaches.wav,Other, +1,ms 20.wav,Other, +1,mouth clicks fx.wav,Other, +1,motif synth.wav,Other, +1,motif synth + simply pad.wav,Other, +1,motif hard.wav,Other, +1,morse code.wav,Other, +1,moog syntharp.wav,Other, +1,moog synth.wav,Other, +1,moog bass.wav,Other, +1,monolead.wav,Other, +1,mono synth 1 + 2.wav,Other, +1,molly guldemond.wav,Other, +1,mo.wav,Other, +1,mnek.wav,Other, +1,mlix synth melo+solo.wav,Other, +1,mk-80 rhodes.wav,Other, +1,mixy bit.wav,Other, +1,mixsynth+pad.wav,Other, +1,mixpad+synth6+7.wav,Other, +1,mixlead+bells.wav,Other, +1,mixhorns+clarinet.wav,Other, +1,mixgtr 1+4.wav,Other, +1,mixelectrodrums.wav,Other, +1,mixed bv.wav,Other, +1,mix xylophone1+2+organ3.wav,Other, +1,mix winds.wav,Other, +1,mix winds+oboe.wav,Other, +1,mix warmpad+pad.wav,Other, +1,mix vox fx + bv.wav,Other, +1,mix voilin1+2.wav,Other, +1,mix voice synth+synth3+4+bells.wav,Other, +1,mix voc.wav,Other, +1,mix voc 1 + 2.wav,Other, +1,mix violins.wav,Other, +1,mix trumpet1+2.wav,Other, +1,mix trumpet+trombon+tuba+french horn+flutes.wav,Other, +1,mix trombon1+2.wav,Other, +1,mix trombon 1+2.wav,Other, +1,mix trb1+2.wav,Other, +1,mix tenor sax1+2.wav,Other, +1,mix tambourine+seq+congas+snaps.wav,Other, +1,mix tambourine+handclaps.wav,Other, +1,mix tamb+shaker+cowbell+windchimes.wav,Other, +1,mix synthstrings.wav,Keyboard,Synth +1,mix synths2+3+4+ep.wav,Keyboard,Synth +1,mix synths+piano.wav,Keyboard,Synth +1,mix synths lead.wav,Keyboard,Synth +1,mix synths lead+synthpad+synthfx.wav,Keyboard,Synth +1,mix synths + trance ok.wav,Keyboard,Synth +1,mix synthpas+strings.wav,Keyboard,Synth +1,mix synthpads + reversed piano.wav,Keyboard,Synth +1,mix synthpad+synthvoice.wav,Keyboard,Synth +1,mix synthpad+synthstring.wav,Keyboard,Synth +1,mix synthpad+mystery+synthmallet.wav,Keyboard,Synth +1,mix synthkeys&arp.wav,Keyboard,Synth +1,mix synthguits.wav,Keyboard,Synth +1,mix synthchords.wav,Keyboard,Synth +1,mix synthbrasses.wav,Keyboard,Synth +1,mix synthbell+pad.wav,Keyboard,Synth +1,mix synth6+7.wav,Keyboard,Synth +1,mix synth4+pluck.wav,Keyboard,Synth +1,mix synth4+5.wav,Keyboard,Synth +1,mix synth3+4.wav,Keyboard,Synth +1,mix synth2+strings1.wav,Keyboard,Synth +1,mix synth2+3.wav,Keyboard,Synth +1,mix synth1+2.wav,Keyboard,Synth +1,mix synth1+2+strings+pads.wav,Keyboard,Synth +1,mix synth1+2+saw.wav,Keyboard,Synth +1,mix synth1+2+choir.wav,Keyboard,Synth +1,mix synth1+2+3+synth guitar.wav,Keyboard,Synth +1,mix synth1+2+3+pad1+2+prophet+arpeggiator+trumpet+noise.wav,Keyboard,Synth +1,mix synth1+2+3+mellotron+choir.wav,Keyboard,Synth +1,mix synth1+2+3+hook.wav,Keyboard,Synth +1,mix synth1+2+3+delay.wav,Keyboard,Synth +1,mix synth1+2+3+4+5+bass synth.wav,Keyboard,Synth +1,mix synth+synth strings+strings.wav,Keyboard,Synth +1,mix synth+synth piano.wav,Keyboard,Synth +1,mix synth+synth ld.wav,Keyboard,Synth +1,mix synth+mellotron+sfx.wav,Keyboard,Synth +1,mix synth+clav.wav,Keyboard,Synth +1,mix synth+brass.wav,Keyboard,Synth +1,mix synth strings.wav,Keyboard,Synth +1,mix synth square+synth brass.wav,Keyboard,Synth +1,mix synth sfx.wav,Keyboard,Synth +1,mix synth saw+square1+2+stack.wav,Keyboard,Synth +1,mix synth pad1+2.wav,Keyboard,Synth +1,mix synth pad+pad intro.wav,Keyboard,Synth +1,mix synth pad a+b.wav,Keyboard,Synth +1,mix synth pad 1+2.wav,Keyboard,Synth +1,mix synth pad +choir.wav,Keyboard,Synth +1,mix synth leads.wav,Keyboard,Synth +1,mix synth lead1+2+keys pluck.wav,Keyboard,Synth +1,mix synth lead1+2+3+4.wav,Keyboard,Synth +1,mix synth lead.wav,Keyboard,Synth +1,mix synth lead+pad+choir+pluck+add+mod+piano.wav,Keyboard,Synth +1,mix synth lead minimoog+synth gtr.wav,Keyboard,Synth +1,mix synth lead 3+4 (pluck).wav,Keyboard,Synth +1,mix synth lead + bell.wav,Keyboard,Synth +1,mix synth keys1+2+synth toms.wav,Keyboard,Synth +1,mix synth keys+retro.wav,Keyboard,Synth +1,mix synth keys+arpegiator+brass+harp.wav,Keyboard,Synth +1,mix synth guitar 2+ep.wav,Keyboard,Synth +1,mix synth fx+synth+synth strings.wav,Keyboard,Synth +1,mix synth fx+noise.wav,Keyboard,Synth +1,mix synth dark + horn.wav,Keyboard,Synth +1,mix synth brass+pad.wav,Keyboard,Synth +1,mix synth bass1+2+synth brass.wav,Keyboard,Synth +1,mix synth bass+reso+ambient disto.wav,Keyboard,Synth +1,mix synth arp+chordme.wav,Keyboard,Synth +1,mix synth adds+pad.wav,Keyboard,Synth +1,mix synth 5 + 6.wav,Keyboard,Synth +1,mix synth 5 + 6 + orch hits.wav,Keyboard,Synth +1,mix synth 4+7.wav,Keyboard,Synth +1,mix synth 3 + 4.wav,Keyboard,Synth +1,mix synth 2+3.wav,Keyboard,Synth +1,mix synth 2+3+4.wav,Keyboard,Synth +1,mix synth 2 + 3 + 4.wav,Keyboard,Synth +1,mix synth 1+3.wav,Keyboard,Synth +1,mix synth 1+3+organ.wav,Keyboard,Synth +1,mix synth 1+2.wav,Keyboard,Synth +1,mix synth 1 + 4.wav,Keyboard,Synth +1,mix synth + hi.wav,Keyboard,Synth +1,mix synth + fx.wav,Keyboard,Synth +1,mix synth + flute.wav,Keyboard,Synth +1,mix strings+violin.wav,Keyboard,Synth Strings +1,mix strings+strings reversed.wav,Keyboard,Synth Strings +1,mix strings+organ.wav,Keyboard,Synth Strings +1,mix strings+harp.wav,Keyboard,Synth Strings +1,mix strings+flute.wav,Keyboard,Synth Strings +1,mix strings 1+2.wav,Keyboard,Synth Strings +1,mix strings + synth 3.wav,Keyboard,Synth Strings +1,mix string.wav,Keyboard,Synth Strings +1,mix string+violin.wav,Keyboard,Synth Strings +1,mix stereo egs.wav,Other, +1,mix steel ag1.wav,Other, +1,mix solo nylon ag.wav,Other, +1,mix solo guits.wav,Other, +1,mix solo center eg1+2.wav,Other, +1,mix solo 1c+2c.wav,Other, +1,mix solina + gtr1.wav,Other, +1,mix sfx+sfx synth.wav,Other, +1,mix saxes.wav,Other, +1,mix sax1+2.wav,Other, +1,mix sax section.wav,Other, +1,mix sax baryton 1+2+real.wav,Other, +1,mix rhythmic egs.wav,Other, +1,mix rhythmic eg.wav,Other, +1,mix rhythmic clean eg 1+2.wav,Other, +1,mix rhythmic ags.wav,Other, +1,mix rhyt gtrs.wav,Other, +1,mix real trp1+2+3+4.wav,Other, +1,mix real tenor 1+2.wav,Other, +1,mix real brass+vst brass.wav,Other, +1,mix rap.wav,Other, +1,mix pluck.wav,Other, +1,mix pluck + arpg.wav,Other, +1,mix piano+pianoreverse.wav,Other, +1,mix piano 1+2.wav,Other, +1,mix piano 1 + 2.wav,Other, +1,mix phaser crunch egs.wav,Other, +1,mix percus+sfx.wav,Other, +1,mix percs+sfx.wav,Other, +1,mix percs+noise.wav,Other, +1,mix percs+fx.wav,Other, +1,mix percs+fx+noise.wav,Other, +1,mix percs&fxs.wav,Other, +1,mix percs fxs.wav,Other, +1,mix perc1+2.wav,Other, +1,mix perc.wav,Other, +1,mix perc+drummachine.wav,Other, +1,mix pedal steel+lead.wav,Other, +1,mix pd+efx.wav,Other, +1,mix pads+bell.wav,Keyboard,Synth Pad +1,mix pads + fx.wav,Keyboard,Synth Pad +1,mix pads (pad strings brass).wav,Keyboard,Synth Pad +1,mix pad.wav,Keyboard,Synth Pad +1,mix pad+vocal synth.wav,Keyboard,Synth Pad +1,mix pad+synth+organ.wav,Keyboard,Synth Pad +1,mix pad+synth strings.wav,Keyboard,Synth Pad +1,mix pad synth1+2+strings synth+piano pad.wav,Keyboard,Synth Pad +1,mix pad synth 1+2+3+synth strings.wav,Keyboard,Synth Pad +1,mix pad synth + brass synth1+sfx1.wav,Keyboard,Synth Pad +1,mix pad 1+2+voice pad synth.wav,Keyboard,Synth Pad +1,mix pad 1 + 2.wav,Keyboard,Synth Pad +1,mix pad + strings ok.wav,Keyboard,Synth Pad +1,mix pad + atmo + synth.wav,Keyboard,Synth Pad +1,mix organs.wav,Keyboard,Organ +1,mix organs+pad.wav,Keyboard,Organ +1,mix organ2+4.wav,Keyboard,Organ +1,mix organ2+3.wav,Keyboard,Organ +1,mix organ1+3.wav,Keyboard,Organ +1,mix organ1+2+pad.wav,Keyboard,Organ +1,mix organ1+2+3.wav,Keyboard,Organ +1,mix organ+synthpad+synthstring.wav,Keyboard,Organ +1,mix organ+synth pad.wav,Keyboard,Organ +1,mix organ+pads.wav,Keyboard,Organ +1,mix organ 2+3.wav,Keyboard,Organ +1,mix organ + pad.wav,Keyboard,Organ +1,mix orchestra.wav,Other, +1,mix orchestra inst.wav,Other, +1,mix nylon ags.wav,Other, +1,mix noise+percufx.wav,Other, +1,mix mutesynths1+2+arp.wav,Other, +1,mix muted eg 1+2+3.wav,Other, +1,mix mild+nice+pro bass.wav,Other, +1,mix metal bars.wav,Other, +1,mix mellotron.wav,Other, +1,mix mellotron winds.wav,Other, +1,mix mellotron strings.wav,Other, +1,mix mandonlines.wav,Other, +1,mix mandoline 1+2.wav,Other, +1,mix mallet.wav,Other, +1,mix lv1+2+lv phone.wav,Voice, +1,mix lv+lv2+lvspoken.wav,Voice, +1,mix lv+db.wav,Voice, +1,mix loop+claps.wav,Other, +1,mix leads+pad.wav,Other, +1,mix lead vocal.wav,Voice, +1,mix lead synth1+2.wav,Other, +1,mix ld+ld adds.wav,Voice, +1,mix ld+double.wav,Voice, +1,mix ld+addlib.wav,Voice, +1,mix ld+add.wav,Voice, +1,mix lclean+rclean+clean+cruncharr.wav,Other, +1,mix l+r.wav,Other, +1,mix l+r rhythmic egs.wav,Other, +1,mix l+r rhythmic ags.wav,Other, +1,mix l+r intro ag.wav,Other, +1,mix l+r egs.wav,Other, +1,mix l+r clean intro eg.wav,Other, +1,mix l+r arr egs.wav,Other, +1,mix l+r ac gtr 2+4.wav,Other, +1,mix l+c+r eg 3+4+5.wav,Other, +1,mix keys+synth2.wav,Other, +1,mix keys 1 + 2.wav,Other, +1,mix key1+2.wav,Other, +1,mix key+key2.wav,Other, +1,mix idiophones.wav,Other, +1,mix harp+acoustic guitar.wav,Other, +1,mix harmonica + trumpet.wav,Other, +1,mix hammond+synth square.wav,Other, +1,mix guitar2+6.wav,Electric Guitar, +1,mix guitar2+3.wav,Electric Guitar, +1,mix guitar1+5+7.wav,Electric Guitar, +1,mix guitar rigg+solo1.wav,Electric Guitar, +1,mix guitar lead+disto.wav,Electric Guitar, +1,mix guitar 1+2.wav,Electric Guitar, +1,mix guitar 1+2+4+6+7.wav,Electric Guitar, +1,mix guit solo + lead1.wav,Electric Guitar, +1,mix guit lead3 + harmo.wav,Electric Guitar, +1,mix guit ac 1 + 2.wav,Acoustic Guitar, +1,mix guit 7 + 9.wav,Electric Guitar, +1,mix guit 5 + 8.wav,Electric Guitar, +1,mix guit 4 + 9.wav,Electric Guitar, +1,mix guit 2 + 3.wav,Electric Guitar, +1,mix gtrs clean+left.wav,Electric Guitar, +1,mix gtrs 1+2.wav,Electric Guitar, +1,mix gtrs (palm mute).wav,Electric Guitar, +1,mix gtrs (palm muet+stac).wav,Electric Guitar, +1,mix gtrs (disto+delay).wav,Electric Guitar, +1,mix gtrs (clean).wav,Electric Guitar, +1,mix gtr3+slide.wav,Electric Guitar, +1,mix gtr3+5.wav,Electric Guitar, +1,mix gtr3+4+5+7+8+9+10+11.wav,Electric Guitar, +1,mix gtr1+7.wav,Electric Guitar, +1,mix gtr1+4.wav,Electric Guitar, +1,mix gtr1+3.wav,Electric Guitar, +1,mix gtr1+2.wav,Electric Guitar, +1,mix gtr.wav,Electric Guitar, +1,mix gtr solo.wav,Electric Guitar, +1,mix gtr rhythm.wav,Electric Guitar, +1,mix gtr lead 1+2+3+whas.wav,Electric Guitar, +1,mix gtr fx+gtr ld.wav,Electric Guitar, +1,mix gtr arr.wav,Electric Guitar, +1,mix gtr arp.wav,Electric Guitar, +1,mix gtr 5+6.wav,Electric Guitar, +1,mix gtr 1+3.wav,Electric Guitar, +1,mix fx+fx2+pad+pad02+synth add.wav,Other, +1,mix fx + steel drum ok.wav,Other, +1,mix fx + noise.wav,Other, +1,mix fx + fx synth.wav,Other, +1,mix full orchestra.wav,Other, +1,mix flutes+clari+oboe.wav,Other, +1,mix ep+organ.wav,Other, +1,mix ep l+r.wav,Other, +1,mix elgtr lead wahwah.wav,Electric Guitar, +1,mix elgtr arr.wav,Electric Guitar, +1,mix elegtr2+distogtr2.wav,Electric Guitar, +1,mix electric guitars 5+7+8.wav,Electric Guitar, +1,mix electric guitars 2+3+6.wav,Electric Guitar, +1,mix electric guitar 123.wav,Electric Guitar, +1,mix elect fill gtr+1+2+3+harmonics.wav.wav,Electric Guitar, +1,mix el.piano.wav,Other, +1,mix el.gtrs rhythm.wav,Electric Guitar, +1,mix el.gtrs lead.wav,Electric Guitar, +1,mix el.gtrs l+r.wav,Electric Guitar, +1,mix el.gtrs crunch+final2+arr.wav,Electric Guitar, +1,mix el.gtrs clean.wav,Electric Guitar, +1,mix el.gtrs arr.wav,Electric Guitar, +1,mix el.gtrs arr 3+4+8.wav,Electric Guitar, +1,mix el.gtrs arr 1+2.wav,Electric Guitar, +1,mix el.gtrs arp.wav,Electric Guitar, +1,mix el.gtrs 6+7+8+10.wav,Electric Guitar, +1,mix el.gtrs 3+4.wav,Electric Guitar, +1,mix el.gtrs (palm mute).wav,Electric Guitar, +1,mix el.gtr.wav,Electric Guitar, +1,mix el.gtr main 1+2+3+4+5.wav,Electric Guitar, +1,mix el.gtr fx.wav,Electric Guitar, +1,mix el.gtr fx 5+6.wav,Electric Guitar, +1,mix el.gtr arr 4+5.wav,Electric Guitar, +1,mix el.gtr arr (slide).wav,Electric Guitar, +1,mix el.gtr 7+8 (high).wav,Electric Guitar, +1,mix el.gtr 5+6+9+10 (low).wav,Electric Guitar, +1,mix el.gtr 3+4 (high).wav,Electric Guitar, +1,mix el.gtr 1+arr.wav,Electric Guitar, +1,mix el.gtr 1+2+3 (main).wav,Electric Guitar, +1,mix el.gtr 1+2 (low).wav,Electric Guitar, +1,mix el.gtr (tremolo).wav,Electric Guitar, +1,mix el.gtr (fx).wav,Electric Guitar, +1,mix el.drums1+2.wav,Other, +1,mix el piano+el piano outro.wav,Other, +1,mix eguitar2r+3r+4r.wav,Electric Guitar, +1,mix eguitar solo1+2+3.wav,Electric Guitar, +1,mix eguitar 2l+3l.wav,Electric Guitar, +1,mix eguit3+4.wav,Electric Guitar, +1,mix eguit1+2+5.wav,Electric Guitar, +1,mix eguit solo+3.wav,Electric Guitar, +1,mix eguit clean+fx guitar.wav,Electric Guitar, +1,mix eguit clean 1+2+3+4+5+6+7.wav,Electric Guitar, +1,mix eguit 6+7+11+12+14+15.wav,Electric Guitar, +1,mix eguit 4+5+8+13.wav,Electric Guitar, +1,mix eguit 1+2.wav,Electric Guitar, +1,mix eguit 1+2+9+10.wav,Electric Guitar, +1,mix eguit 1+2+3+4+5.wav,Electric Guitar, +1,mix egl1+l2.wav,Electric Guitar, +1,mix egchorus+crunch.wav,Electric Guitar, +1,mix eg_muted.wav,Electric Guitar, +1,mix eg9+10+11+12.wav,Electric Guitar, +1,mix eg8+9.wav,Electric Guitar, +1,mix eg8+9+10+11+12.wav,Electric Guitar, +1,mix eg6+7+8.wav,Electric Guitar, +1,mix eg6+4r.wav,Electric Guitar, +1,mix eg5+dist.wav,Electric Guitar, +1,mix eg5+7.wav,Electric Guitar, +1,mix eg4+7.wav,Electric Guitar, +1,mix eg4+6.wav,Electric Guitar, +1,mix eg4+5.wav,Electric Guitar, +1,mix eg4+5+6.wav,Electric Guitar, +1,mix eg3+ac gtr.wav,Electric Guitar, +1,mix eg3+5+7.wav,Electric Guitar, +1,mix eg3+4.wav,Electric Guitar, +1,mix eg2+3+8.wav,Electric Guitar, +1,mix eg1+8.wav,Electric Guitar, +1,mix eg1+7.wav,Electric Guitar, +1,mix eg1+5.wav,Electric Guitar, +1,mix eg1+3.wav,Electric Guitar, +1,mix eg1+2.wav,Electric Guitar, +1,mix eg1+2+synth guitar1.wav,Electric Guitar, +1,mix eg1+2+7.wav,Electric Guitar, +1,mix eg1+2+3+6.wav,Electric Guitar, +1,mix eg tremolo 5+6.wav,Electric Guitar, +1,mix eg tremolo 4+7.wav,Electric Guitar, +1,mix eg tremolo 1+2.wav,Electric Guitar, +1,mix eg trem+clean l +clean adds 3.wav,Electric Guitar, +1,mix eg solo+break.wav,Electric Guitar, +1,mix eg solo 2 + fx.wav,Electric Guitar, +1,mix eg riff+tonic.wav,Electric Guitar, +1,mix eg rhythm+3.wav,Electric Guitar, +1,mix eg r1+r2.wav,Electric Guitar, +1,mix eg pwr chords+eg end.wav,Electric Guitar, +1,mix eg lead1+2+rhythmic1+2+5+6.wav,Electric Guitar, +1,mix eg lead+eg 2.wav,Electric Guitar, +1,mix eg lead l+r.wav,Electric Guitar, +1,mix eg ldel+harmo.wav,Electric Guitar, +1,mix eg l+r+crucnh+rcrunch.wav,Electric Guitar, +1,mix eg l+r+arr.wav,Electric Guitar, +1,mix eg intro + solo + dist 2.wav,Electric Guitar, +1,mix eg disto l+r.wav,Electric Guitar, +1,mix eg dist9+10+11.wav,Electric Guitar, +1,mix eg dist 6+7+8.wav,Electric Guitar, +1,mix eg dist 2+5.wav,Electric Guitar, +1,mix eg dist 1+4+6.wav,Electric Guitar, +1,mix eg dist 1+2+3.wav,Electric Guitar, +1,mix eg clean2+3.wav,Electric Guitar, +1,mix eg clean.wav,Electric Guitar, +1,mix eg clean+tremolo+lead.wav,Electric Guitar, +1,mix eg clean 4+5+6.wav,Electric Guitar, +1,mix eg clean 2+3.wav,Electric Guitar, +1,mix eg chords+support for chorus.wav,Electric Guitar, +1,mix eg b2+c2.wav,Electric Guitar, +1,mix eg arrl+r.wav,Electric Guitar, +1,mix eg arr r 2+3.wav,Electric Guitar, +1,mix eg adds 1+2.wav,Electric Guitar, +1,mix eg a+c1+d.wav,Electric Guitar, +1,mix eg 6+7.wav,Electric Guitar, +1,mix eg 6 + 7 (fx).wav,Electric Guitar, +1,mix eg 5+7.wav,Electric Guitar, +1,mix eg 4+6.wav,Electric Guitar, +1,mix eg 2+3.wav,Electric Guitar, +1,mix eg 1+7.wav,Electric Guitar, +1,mix eg 1 + 8.wav,Electric Guitar, +1,mix eg 1 + 2.wav,Electric Guitar, +1,mix e.gtrs.wav,Electric Guitar, +1,mix e.gtr disto 1+2.wav,Electric Guitar, +1,mix e piano 1+2.wav,Other, +1,mix e guitar 3+4l.wav,Electric Guitar, +1,mix dulcimmer+mallet+bells.wav,Other, +1,mix drumss&fx.wav,Drums, +1,mix drums+ssfx.wav,Drums, +1,mix drums+percs.wav,Drums, +1,mix drums+percs+fx.wav,Drums, +1,mix drums+perc.wav,Drums, +1,mix drums+noise.wav,Drums, +1,mix drums+electronic drums.wav,Drums, +1,mix drums+drums outro.wav,Drums, +1,mix drums+claps.wav,Drums, +1,mix drums&shaker.wav,Drums, +1,mix drums + handclaps.wav,Drums, +1,mix drumkit & percs.wav,Drums, +1,mix dobros.wav,Dobro, +1,mix dobro 1+2.wav,Dobro, +1,mix distos egs.wav,Other, +1,mix disto gtrs.wav,Other, +1,mix disto gtrs 1+2.wav,Other, +1,mix disto eg 5+6+13.wav,Other, +1,mix digitalpiano+fm piano.wav,Other, +1,mix cln+chorslide gtr.wav,Other, +1,mix clean2c+3c.wav,Other, +1,mix clean+l+r.wav,Other, +1,mix clean eg 4+7+11.wav,Other, +1,mix clean 3 + 4 + 5.wav,Other, +1,mix clean 1 + 2.wav,Other, +1,mix clean + harmonics.wav,Other, +1,mix claps.wav,Other, +1,mix center eg.wav,Other, +1,mix cellos.wav,Other, +1,mix cello+strings.wav,Other, +1,mix celesta+vibraphone.wav,Other, +1,mix bvtravis scott+future.wav,Other, +1,mix bv+ld5.wav,Other, +1,mix bv+crowd+adls.wav,Other, +1,mix bv+bv2.wav,Other, +1,mix bv+bv fx.wav,Other, +1,mix bv+adelibs.wav,Other, +1,mix bv+addliibs.wav,Other, +1,mix bv males.wav,Other, +1,mix bv glorilla+bv megan thee stallion.wav,Other, +1,mix bv females.wav,Other, +1,mix bv female + vox pitch.wav,Other, +1,mix brvst+sax+tpt.wav,Other, +1,mix brass+trumpet.wav,Other, +1,mix brass+synth1.wav,Other, +1,mix brass+strings.wav,Other, +1,mix brass+pad+organ.wav,Other, +1,mix brass+flute.wav,Other, +1,mix bips + dist ok.wav,Other, +1,mix bells+synths.wav,Other, +1,mix bells+pluck synths+seq synths 1.wav,Other, +1,mix bass_synth 1+2.wav,Other, +1,mix bass1+2.wav,Other, +1,mix bass+synthbass.wav,Other, +1,mix bass+seq synths 2.wav,Other, +1,mix bass 1+2.wav,Other, +1,mix banjos.wav,Other, +1,mix banjo+r+mandolin+l.wav,Other, +1,mix banjo 1+2.wav,Other, +1,mix arr ags.wav,Other, +1,mix arp1+2.wav,Other, +1,mix arp synths.wav,Other, +1,mix arp synth1+2.wav,Other, +1,mix arp left eg.wav,Other, +1,mix all keyx.wav,Other, +1,mix all bv.wav,Other, +1,mix agl+r+larr.wav,Acoustic Guitar, +1,mix agl+ag2.wav,Acoustic Guitar, +1,mix ag4+5+12.wav,Acoustic Guitar, +1,mix ag3+4.wav,Acoustic Guitar, +1,mix ag2+3.wav,Acoustic Guitar, +1,mix ag1+2+3+4.wav,Acoustic Guitar, +1,mix ag+ag perc.wav,Acoustic Guitar, +1,mix ag steel 1+2.wav,Acoustic Guitar, +1,mix ag rhythmic1+2+3+4.wav,Acoustic Guitar, +1,mix ag 3+4.wav,Acoustic Guitar, +1,mix ag 1+4.wav,Acoustic Guitar, +1,mix ag 1+2.wav,Acoustic Guitar, +1,mix ag 1+2+3+4.wav,Acoustic Guitar, +1,mix acgtrs.wav,Acoustic Guitar, +1,mix acgtrs arp.wav,Acoustic Guitar, +1,mix accordeon 1+2+3.wav,Other, +1,mix acc gtrs.wav,Acoustic Guitar, +1,mix ac.gtrs arr.wav,Acoustic Guitar, +1,mix ac.gtrs 1+2.wav,Acoustic Guitar, +1,mix ac.gtrs 1+2+3+nylon.wav,Acoustic Guitar, +1,mix ac.gtr main+lead.wav,Acoustic Guitar, +1,mix ac.gtr arr l+r.wav,Acoustic Guitar, +1,mix ac l + r2.wav,Acoustic Guitar, +1,mix ac gtrs.wav,Acoustic Guitar, +1,mix ac gtr1+2.wav,Acoustic Guitar, +1,mix ac gtr 1+3.wav,Acoustic Guitar, +1,mix a.gtr left+right.wav,Acoustic Guitar, +1,mix a l+r.wav,Acoustic Guitar, +1,miucha.wav,Other, +1,misc synths.wav,Other, +1,misc keys.wav,Other, +1,mini.wav,Other, +1,mike.wav,Other, +1,mike trotter.wav,Other, +1,mike jones.wav,Other, +1,miguel-adlib.wav,Other, +1,mieyion.wav,Other, +1,midistrings.wav,Other, +1,middleeightsynth.wav,Other, +1,middle.wav,Other, +1,middle mix.wav,Other, +1,mick jagger.wav,Other, +1,michael trotter jr.wav,Other, +1,michael bivins.wav,Other, +1,miami lead.wav,Other, +1,metals.wav,Other, +1,metal piano.wav,Other, +1,merle haggard.wav,Other, +1,melody synth choruses + synth arp.wav,Other, +1,melodicperc.wav,Other, +1,melodic synth.wav,Other, +1,melo synth + synth.wav,Other, +1,mellotronstrings.wav,Other, +1,mellotrons+flute.wav,Other, +1,mellotronflutes.wav,Other, +1,mellotroncellos.wav,Other, +1,mellotronbrass.wav,Other, +1,mellotron+theremin.wav,Other, +1,mellotron violin violinfx.wav,Other, +1,mellotron strings 1234.wav,Other, +1,mellotron choir.wav,Other, +1,mellotron basoon.wav,Other, +1,mellotron 1 + 2 + strings.wav,Other, +1,mello synths.wav,Other, +1,melllotron.wav,Other, +1,melle mel.wav,Other, +1,megasynth.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox synth vocals.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox perc.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 5.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 4.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 3.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 2.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 1.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox e bass.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox drum.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox bv.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox bass.wav,Other, +1,megafat.wav,Other, +1,meek mill.wav,Other, +1,mc ren.wav,Other, +1,mc eiht.wav,Other, +1,mc bin laden.wav,Other, +1,matt.wav,Other, +1,matt sallee.wav,Other, +1,master gee.wav,Other, +1,mary lambert.wav,Other, +1,mary j blige.wav,Other, +1,marshmello.wav,Other, +1,maroon 5.wav,Other, +1,marina and the diamonds.wav,Other, +1,marina and the diamonds-adlib.wav,Other, +1,marianne lee stitt.wav,Other, +1,maria brink.wav,Other, +1,marca.wav,Other, +1,marc costanzo.wav,Other, +1,maracas.wav,Other, +1,mandoline 2 right.wav,Mandolin, +1,mandoline 1 left.wav,Mandolin, +1,mandolinas.wav,Mandolin, +1,mandolina-.wav,Mandolin, +1,mandolin_l.wav,Mandolin, +1,mandolin solo.wav,Mandolin, +1,mandolin 3.wav,Mandolin, +1,mandolin 2 right.wav,Mandolin, +1,mandolin 1.wav,Mandolin, +1,mandolin 1 left.wav,Mandolin, +1,mando 2 left.wav,Mandolin, +1,mando 1.wav,Mandolin, +1,malletsynth.wav,Other, +1,mallet synth.wav,Other, +1,male_bv.wav,Other, +1,male-bv.wav,Other, +1,male vocal.wav,Other, +1,male bv.wav,Other, +1,mako.wav,Other, +1,maindrums.wav,Other, +1,main_synth_12.wav,Other, +1,main synths.wav,Other, +1,main pad.wav,Other, +1,main organ.wav,Other, +1,main guits.wav,Other, +1,main guitar.wav,Other, +1,madonna.wav,Other, +1,madison beer.wav,Other, +1,mad.wav,Other, +1,mackenzie porter.wav,Other, +1,mack 10.wav,Other, +1,m1 piano.wav,Other, +1,m. shadows.wav,Other, +1,lyle lovett.wav,Other, +1,lvox.wav,Voice,Lead +1,lvdbl.wav,Voice,Lead +1,lv_rap.wav,Voice,Lead +1,lv_ok.wav,Voice,Lead +1,lv_chester.wav,Voice,Lead +1,lv12.wav,Voice,Lead +1,lv1+2.wav,Voice,Lead +1,lv-rap.wav,Voice,Lead +1,lv-fem.wav,Voice,Lead +1,lv-ad-lib.wav,Voice,Lead +1,lv-2.wav,Voice,Lead +1,lv-1.wav,Voice,Lead +1,lv-01.wav,Voice,Lead +1,lv vocoder.wav,Voice,Lead +1,lv soulja boy.wav,Voice,Lead +1,lv sexyy red.wav,Voice,Lead +1,lv scream.wav,Voice,Lead +1,lv sanz.wav,Voice,Lead +1,lv russ.wav,Voice,Lead +1,lv nas.wav,Voice,Lead +1,lv m.wav,Voice,Lead +1,lv latto.wav,Voice,Lead +1,lv ice spice.wav,Voice,Lead +1,lv glass animals.wav,Voice,Lead +1,lv future.wav,Voice,Lead +1,lv fixed.wav,Voice,Lead +1,lv duplicate.wav,Voice,Lead +1,lv double and adds.wav,Voice,Lead +1,lv dlay.wav,Voice,Lead +1,lv clean.wav,Voice,Lead +1,lv choir gangsta gangsta.wav,Voice,Lead +1,lv and lv2.wav,Voice,Lead +1,lv and ld scream.wav,Voice,Lead +1,lv and double and adds.wav,Voice,Lead +1,lv and adds and double.wav,Voice,Lead +1,lv african.wav,Voice,Lead +1,lv add.wav,Voice,Lead +1,lv ad-lib.wav,Voice,Lead +1,lv 1+2.wav,Voice,Lead +1,lv + db.wav,Voice,Lead +1,lv + ad lib.wav,Voice,Lead +1,luther vandross.wav,Other, +1,lupe fiasco.wav,Other, +1,luis fonsi.wav,Other, +1,ludacris ad libs.wav,Other, +1,lu kala.wav,Other, +1,lowsynth.wav,Other, +1,lowpads softpads pads sublow synthfx.wav,Other, +1,lowfat pad choir diva.wav,Other, +1,low synth.wav,Other, +1,low synth+2+3+4+5+6.wav,Other, +1,love will find a way yes string section.wav,Other, +1,love will find a way yes perc.wav,Other, +1,love will find a way yes harmonica.wav,Other, +1,love will find a way yes e guitar rhythm.wav,Other, +1,love will find a way yes e guitar lead.wav,Other, +1,love will find a way yes drums.wav,Other, +1,love will find a way yes bv.wav,Other, +1,love will find a way yes bass.wav,Other, +1,lost frequencies.wav,Other, +1,loretta lynn.wav,Other, +1,lord infamous.wav,Other, +1,lord huron.wav,Other, +1,loop2.wav,Other, +1,loop1.wav,Other, +1,loop vocal.wav,Other, +1,loop mellotron.wav,Other, +1,loop intro.wav,Other, +1,loop filters.wav,Other, +1,loop + percu.wav,Other, +1,logic-adlib.wav,Other, +1,lofivinyl_1.wav,Other, +1,lloyd banks.wav,Other, +1,ll cool j-adlib.wav,Other, +1,lisa lopes.wav,Other, +1,lisa hannigan.wav,Other, +1,lisa coleman.wav,Other, +1,linda ronstadt.wav,Other, +1,limp bizkit faith lv.wav,Other, +1,limp bizkit faith guitar 5.wav,Other, +1,limp bizkit faith guitar 4.wav,Other, +1,limp bizkit faith guitar 3.wav,Other, +1,limp bizkit faith guitar 2.wav,Other, +1,limp bizkit faith guitar 1.wav,Other, +1,limp bizkit faith fx scratch.wav,Other, +1,limp bizkit faith drum.wav,Other, +1,limp bizkit faith bass.wav,Other, +1,lily allen.wav,Other, +1,lil wyte.wav,Other, +1,lil will.wav,Other, +1,lil uzi vert.wav,Other, +1,lil troy.wav,Other, +1,lil romeo.wav,Other, +1,lil peep-adlib.wav,Other, +1,lil mo.wav,Other, +1,lil cease.wav,Other, +1,like piano.wav,Other, +1,like marimba 2.wav,Other, +1,like marimba 1.wav,Other, +1,like harp.wav,Other, +1,liam payne.wav,Other, +1,liam payne-adlib.wav,Other, +1,li saumet.wav,Other, +1,letfgtr 1.wav,Other, +1,let piano.wav,Other, +1,let perc.wav,Other, +1,let organ.wav,Other, +1,let organ lead.wav,Other, +1,let ld.wav,Other, +1,let e guitar lead.wav,Other, +1,let drums.wav,Other, +1,let bv.wav,Other, +1,let bass.wav,Other, +1,leshaun.wav,Other, +1,leshaun-adlib.wav,Other, +1,les claypool.wav,Other, +1,leon bridges.wav,Other, +1,lennox.wav,Other, +1,lennon stella.wav,Other, +1,leigh-anne pinnock.wav,Other, +1,leftorgan 1.wav,Other, +1,leftguitar 2.wav,Other, +1,leftgtr 8.wav,Other, +1,left_gtr 5.wav,Other, +1,left_gtr 1.wav,Other, +1,left6gtr 3.wav,Other, +1,left tremolo eg.wav,Other, +1,left theme ag.wav,Other, +1,left synthbrass.wav,Other, +1,left solo classic guitar.wav,Other, +1,left overdrive eg.wav,Other, +1,left mandolin 1.wav,Other, +1,left mandolin 1+2 mix.wav,Other, +1,left mando 1.wav,Other, +1,left guitar electro 1.wav,Other, +1,left guitar acoustic 1.wav,Other, +1,left guitar 1.wav,Other, +1,left gtr.wav,Other, +1,left gtr-arp.wav,Other, +1,left gtr 4.wav,Other, +1,left gtr 1+4 mix.wav,Other, +1,left gtr 2.wav,Other, +1,left eye.wav,Other, +1,left el piano 1.wav,Other, +1,left el gtr 2.wav,Other, +1,left eguit 2.wav,Other, +1,left eg1+2.wav,Other, +1,left eg 6.wav,Other, +1,left eg 1.wav,Other, +1,left crunch rhythmic eg.wav,Other, +1,left chorus eg.wav,Other, +1,left arr eg.wav,Other, +1,lee brice.wav,Other, +1,leadvocal.wav,Other, +1,leadorgan.wav,Other, +1,leadgt left.wav,Other, +1,leadgt 2 right.wav,Other, +1,leadgt 2 left.wav,Other, +1,lead_vocals-adlib.wav,Other, +1,lead_synth_2.wav,Other, +1,lead_solo.wav,Other, +1,lead_orig.wav,Other, +1,lead_melody.wav,Other, +1,lead_electric_guitar.wav,Other, +1,lead234 and bells.wav,Other, +1,lead.2.wav,Other, +1,lead-adlib.wav,Other, +1,lead(square).wav,Other, +1,lead(chiff).wav,Other, +1,lead vox-1.wav,Other, +1,lead vox only.wav,Other, +1,lead vox 1 rap.wav,Other, +1,lead vocal2 ad lib.wav,Other, +1,lead vocal-adlib.wav,Other, +1,lead vocal male.wav,Other, +1,lead vocal female.wav,Other, +1,lead vocal 3.wav,Other, +1,lead vocal 2.wav,Other, +1,lead vocal 2 ad libs.wav,Other, +1,lead vocal 12.wav,Other, +1,lead v ox.wav,Other, +1,lead theme.wav,Other, +1,lead synth filter.wav,Other, +1,lead synth 2.wav,Other, +1,lead synth 1.wav,Other, +1,lead sax.wav,Other, +1,lead reso.wav,Other, +1,lead overlap.wav,Other, +1,lead mid.wav,Other, +1,lead low.wav,Other, +1,lead high.wav,Other, +1,lead gyui.wav,Other, +1,lead guitar r.wav,Other, +1,lead guitar pixies style.wav,Other, +1,lead guitar l.wav,Other, +1,lead gtrs.wav,Other, +1,lead gtr+synth.wav,Other, +1,lead gtr (third).wav,Other, +1,lead electric guitar.wav,Other, +1,lead and rap.wav,Other, +1,lead acoustic guitar.wav,Other, +1,lead 1.wav,Other, +1,ldsynth.wav,Other, +1,ldmale.wav,Other, +1,ldgtrr.wav,Other, +1,ldgauch.wav,Other, +1,ldfemale.wav,Other, +1,lddoite.wav,Other, +1,ldacgtr.wav,Other, +1,ld12-adlib.wav,Voice,Lead +1,ld.wav.wav,Voice,Lead +1,ld-rp.wav,Voice,Lead +1,ld-rihanna.wav,Voice,Lead +1,ld-rap.wav,Voice,Lead +1,ld-joao gilberto.wav,Voice,Lead +1,ld-j. cole.wav,Voice,Lead +1,ld-drake.wav,Voice,Lead +1,ld-astrud gilberto.wav,Voice,Lead +1,ld-ad.wav,Voice,Lead +1,ld-ad-lib.wav,Voice,Lead +1,ld-1.wav.wav,Voice,Lead +1,ld-01.wav,Voice,Lead +1,ld+double.wav,Voice,Lead +1,ld+adds.wav,Voice,Lead +1,ld voc 4.wav,Voice,Lead +1,ld v2.wav,Voice,Lead +1,ld tyler the creator.wav,Voice,Lead +1,ld third.wav,Voice,Lead +1,ld talk.wav,Voice,Lead +1,ld root.wav,Voice,Lead +1,ld masc.wav,Voice,Lead +1,ld kehlani 2.wav,Voice,Lead +1,ld jerry.wav,Voice,Lead +1,ld fixed.wav,Voice,Lead +1,ld fe.wav,Voice,Lead +1,ld double.wav,Voice,Lead +1,ld double adds.wav,Voice,Lead +1,ld cardi b.wav,Voice,Lead +1,ld and dv.wav,Voice,Lead +1,ld and double and adds.wav,Voice,Lead +1,ld and bv2mix.wav,Voice,Lead +1,ld addlib.wav,Voice,Lead +1,ld ad libs.wav,Voice,Lead +1,ld 1234.wav,Voice,Lead +1,ld 123 and adds.wav,Voice,Lead +1,ld 1-adlib.wav,Voice,Lead +1,ld 1 + 2.wav,Voice,Lead +1,ld + adds.wav,Voice,Lead +1,layzie.wav,Other, +1,layer sine pad.wav,Other, +1,lauryn hill.wav,Other, +1,lauren alaina.wav,Other, +1,lauren alaina-adlib.wav,Other, +1,latto_ad.wav,Other, +1,laser.wav,Other, +1,lapsteelguitar.wav,Electric Guitar,Lap Steel +1,laps steel guitar.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar_right.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar_left.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar.wav,Electric Guitar,Lap Steel +1,lap steele.wav,Electric Guitar,Lap Steel +1,lap steel guitar-noisegate.wav,Electric Guitar,Lap Steel +1,lap steel 1 + 2.wav,Electric Guitar,Lap Steel +1,lap steel 01.wav,Electric Guitar,Lap Steel +1,lany.wav,Other, +1,lana del rey.wav,Other, +1,lainey wilson.wav,Other, +1,la india.wav,Other, +1,l.wav,Other, +1,l+r.wav,Other, +1,l+r electric solo guit.wav,Other, +1,kylie minogue.wav,Other, +1,kyla.wav,Other, +1,ktlyn.wav,Other, +1,kristie.wav,Other, +1,krayzie.wav,Other, +1,kora arr.wav,Other, +1,koko taylor.wav,Other, +1,kodak black.wav,Other, +1,kirstie.wav,Other, +1,kim chae-won.wav,Other, +1,kiko el crazy.wav,Other, +1,kidd kidd.wav,Other, +1,kid laroi.wav,Other, +1,kid ink.wav,Other, +1,kick drum.wav,Other, +1,khocks.wav,Other, +1,kg.wav,Other, +1,keysrhodes.wav,Other, +1,keyshia cole.wav,Other, +1,keyshia cole-adlib.wav,Other, +1,keys_1.wav,Keyboard,Synth +1,keys+pluck.wav,Keyboard,Synth +1,keys warm.wav,Keyboard,Synth +1,keys strings.wav,Keyboard,Synth +1,keys mixmaster.wav,Keyboard,Synth +1,keys fx mixmaster.wav,Keyboard,Synth +1,keys bells.wav,Keyboard,Synth +1,keys arr.wav,Keyboard,Synth +1,keys arp.wav,Keyboard,Synth +1,keys + synth.wav,Keyboard,Synth +1,keyrhodes _02.wav,Keyboard,Synth +1,keyboard synths.wav,Keyboard,Synth +1,key_synth_1+2.wav,Keyboard,Synth +1,key_bass.wav,Keyboard,Synth +1,key3.wav,Keyboard,Synth +1,key2.wav,Keyboard,Synth +1,key1.wav,Keyboard,Synth +1,key-sample.wav,Keyboard,Synth +1,key+countin.wav,Keyboard,Synth +1,key synth 1.wav,Keyboard,Synth +1,key reference.wav,Keyboard,Synth +1,key melo.wav,Keyboard,Synth +1,key lead.wav,Keyboard,Synth +1,key harmonics.wav,Keyboard,Synth +1,key harmonics 2.wav,Keyboard,Synth +1,key delay.wav,Keyboard,Synth +1,key 3 organ.wav,Keyboard,Synth +1,key 2 bells.wav,Keyboard,Synth +1,key 1.wav,Keyboard,Synth +1,key 1 pads.wav,Keyboard,Synth +1,kevin ratajczak.wav,Other, +1,kerys.wav,Other, +1,kenny rogers.wav,Other, +1,kenny chesney.wav,Other, +1,kelly rowland-adlib.wav,Other, +1,keisha.wav,Other, +1,kehlani.wav,Other, +1,kazuha.wav,Other, +1,kazoo.wav,Other, +1,katy perry.wav,Other, +1,kate bush.wav,Other, +1,kastro.wav,Other, +1,kanye west bv.wav,Other, +1,kaine.wav,Other, +1,kadafi.wav,Other, +1,kacey musgraves.wav,Other, +1,k.wav,Other, +1,k-ci.wav,Other, +1,k naan.wav,Other, +1,justin timberlake-adlib.wav,Other, +1,justin bieber-adlib.wav,Other, +1,just be held casting crowns strings section.wav,Other, +1,just be held casting crowns sonar fx.wav,Other, +1,just be held casting crowns piano.wav,Other, +1,just be held casting crowns pad.wav,Other, +1,just be held casting crowns e guitar 3.wav,Other, +1,just be held casting crowns e guitar 2.wav,Other, +1,just be held casting crowns e guitar 1.wav,Other, +1,just be held casting crowns drums.wav,Other, +1,just be held casting crowns bv.wav,Other, +1,just be held casting crowns bass.wav,Other, +1,juno60.wav,Other, +1,juno-ep.wav,Other, +1,junior.wav,Other, +1,julio iglesias.wav,Other, +1,julio alberto fernandez.wav,Other, +1,juliette commagere.wav,Other, +1,julieta venegas.wav,Other, +1,juliet simms.wav,Other, +1,julia michaels-adlib.wav,Other, +1,juicy j.wav,Other, +1,jp8 unison saw.wav,Other, +1,jp8 squarehaed.wav,Other, +1,jp cooper.wav,Other, +1,jowel.wav,Other, +1,journey escape lv.wav,Other, +1,journey escape bv.wav,Other, +1,joss stone.wav,Other, +1,joss stone-adlib.wav,Other, +1,joseph simmons.wav,Other, +1,jordin sparks.wav,Other, +1,jon pardi.wav,Other, +1,jojo.wav,Other, +1,johnny cash.wav,Other, +1,johnny blue skies.wav,Other, +1,john.wav,Other, +1,john ryan.wav,Other, +1,john prine.wav,Other, +1,john mayer.wav,Other, +1,john legend-adlib.wav,Other, +1,john legend conversations in the dark strings.wav,Other, +1,john legend conversations in the dark piano.wav,Other, +1,john legend conversations in the dark organ.wav,Other, +1,john legend conversations in the dark guitar 3.wav,Other, +1,john legend conversations in the dark guitar 2.wav,Other, +1,john legend conversations in the dark guitar 1.wav,Other, +1,john legend conversations in the dark drum perc.wav,Other, +1,john legend conversations in the dark bv.wav,Other, +1,john legend conversations in the dark bass.wav,Other, +1,john legend conversations in the dark bass synth.wav,Other, +1,john legend conversations in the dark acc guitar.wav,Other, +1,john crawford.wav,Other, +1,johan olsen.wav,Other, +1,joe perc.wav,Other, +1,joe organ.wav,Other, +1,joe lv.wav,Other, +1,joe jonas.wav,Other, +1,joe guitar 4.wav,Other, +1,joe guitar 3.wav,Other, +1,joe guitar 2.wav,Other, +1,joe guitar 1.wav,Other, +1,joe drum.wav,Other, +1,joe bv.wav,Other, +1,joe bonamassa give me one reason wurlitzer.wav,Other, +1,joe bonamassa give me one reason organ.wav,Other, +1,joe bonamassa give me one reason guitar 3.wav,Other, +1,joe bonamassa give me one reason guitar 2.wav,Other, +1,joe bonamassa give me one reason guitar 1.wav,Other, +1,joe bonamassa give me one reason drum.wav,Other, +1,joe bonamassa give me one reason bass.wav,Other, +1,joe bass.wav,Other, +1,joe acc guitar.wav,Other, +1,joe acc guitar perc.wav,Other, +1,jin.wav,Other, +1,jimin.wav,Other, +1,jhene aiko.wav,Other, +1,jhay cortez.wav,Other, +1,jewell.wav,Other, +1,jessy wilson.wav,Other, +1,jessica domingo.wav,Other, +1,jess glynne.wav,Other, +1,jermaine dupri.wav,Other, +1,jennifer lopez-adlib.wav,Other, +1,jennifer hudson.wav,Other, +1,jelly roll.wav,Other, +1,jc chasez.wav,Other, +1,jb.wav,Other, +1,jazze pha.wav,Other, +1,jazze pha-adlib.wav,Other, +1,jazz bass.wav,Other, +1,jazmine sullivan.wav,Other, +1,jay-z part ii on the run synth 5.wav,Other, +1,jay-z part ii on the run synth 2.wav,Other, +1,jay-z part ii on the run synth 1.wav,Other, +1,jay-z part ii on the run piano.wav,Other, +1,jay-z part ii on the run perc.wav,Other, +1,jay-z part ii on the run flute.wav,Other, +1,jay-z part ii on the run drum.wav,Other, +1,jay-z part ii on the run bv.wav,Other, +1,jay-z part ii on the run bass.wav,Other, +1,jay tee.wav,Other, +1,jay rock.wav,Other, +1,jawharp.wav,Other, +1,jaw_harp.wav,Other, +1,jason derulo-adlib.wav,Other, +1,jasmine veillette.wav,Other, +1,janet jackson.wav,Other, +1,janelle monae.wav,Other, +1,jamie foxx.wav,Other, +1,jake scott.wav,Other, +1,jade thirlwall.wav,Other, +1,jade macrae.wav,Other, +1,jack harlow-adlib.wav,Other, +1,j.wav,Other, +1,j.i.d.wav,Other, +1,j-dog.wav,Other, +1,irish whstle.wav,Other, +1,iris dement.wav,Other, +1,iolins.wav,Other, +1,intropiano.wav,Other, +1,introkeys.wav,Other, +1,introgtr.wav,Other, +1,introfx.wav,Other, +1,introfx sub synth pluck strings.wav,Other, +1,intro-beat.wav,Other, +1,intro(click).wav,Other, +1,intro synth 01.wav,Other, +1,intro sample.wav,Other, +1,intro piano.wav,Other, +1,intro pad synth1 synthchoir.wav,Other, +1,intro keys.wav,Other, +1,intro eg.wav,Other, +1,intro count.wav,Other, +1,intro bass.wav,Other, +1,intro arp.wav,Other, +1,intro ag.wav,Other, +1,indrusrialfx.wav,Other, +1,india arie.wav,Other, +1,in this moment black wedding synth bass 2.wav,Other, +1,in this moment black wedding synth bass 1.wav,Other, +1,in this moment black wedding synth 5.wav,Other, +1,in this moment black wedding synth 4.wav,Other, +1,in this moment black wedding synth 3.wav,Other, +1,in this moment black wedding piano.wav,Other, +1,in this moment black wedding perc fx.wav,Other, +1,in this moment black wedding guitar.wav,Other, +1,in this moment black wedding drum.wav,Other, +1,in this moment black wedding bv.wav,Other, +1,in this moment black wedding bass.wav,Other, +1,ilovemakonnen.wav,Other, +1,ighgtr 6.wav,Other, +1,ice spice-adlib.wav,Other, +1,iann dior.wav,Other, +1,i and love and you the avett brothers synthpad.wav,Other, +1,i and love and you the avett brothers strings section.wav,Other, +1,i and love and you the avett brothers piano.wav,Other, +1,i and love and you the avett brothers perc.wav,Other, +1,i and love and you the avett brothers organ.wav,Other, +1,i and love and you the avett brothers ld.wav,Other, +1,i and love and you the avett brothers drums.wav,Other, +1,i and love and you the avett brothers bv.wav,Other, +1,i and love and you the avett brothers bass.wav,Other, +1,i and love and you (the avett brothers) padglass.wav,Other, +1,hyerin.wav,Other, +1,hyein.wav,Other, +1,hussein fatal.wav,Other, +1,huh yun-jin.wav,Other, +1,hozier.wav,Other, +1,howie dorough & nick carter.wav,Other, +1,horns+wind.wav,Other, +1,horns synth.wav,Other, +1,horns and fr horns.wav,Other, +1,horns 2.wav,Other, +1,horns 1.wav,Other, +1,horn-sample.wav,Other, +1,horn trombone strings.wav,Other, +1,horn section.wav,Other, +1,hopsin.wav,Other, +1,hooksynth.wav,Other, +1,hook n sling.wav,Other, +1,honky tonk piano.wav,Other, +1,hong eun-chae.wav,Other, +1,hold on yes synthvox.wav,Other, +1,hold on yes synthstrings.wav,Other, +1,hold on yes synthstrings 2.wav,Other, +1,hold on yes organ.wav,Other, +1,hold on yes e guitar lead.wav,Other, +1,hold on yes e guitar clean.wav,Other, +1,hold on yes e guitar 2.wav,Other, +1,hold on yes e guitar 1.wav,Other, +1,hold on yes drums.wav,Other, +1,hold on yes bv.wav,Other, +1,hold on yes bellkey.wav,Other, +1,hold on yes bass.wav,Other, +1,hittman.wav,Other, +1,hits+timpani.wav,Other, +1,hits orchestre.wav,Other, +1,hits orch.wav,Other, +1,hits 1.wav,Other, +1,hit synth.wav,Other, +1,hit orchestra.wav,Other, +1,hit fx.wav,Other, +1,hit 1.wav,Other, +1,hit 1 2.wav,Other, +1,highsynth.wav,Other, +1,high synth.wav,Other, +1,high pad.wav,Other, +1,hi synth.wav,Other, +1,hi q.wav,Other, +1,hi q beeps.wav,Other, +1,hh.wav,Other, +1,hh seq.wav,Other, +1,hey.wav,Other, +1,hey vox fx.wav,Other, +1,herbie hancock.wav,Other, +1,herb.wav,Other, +1,heavy guitar.wav,Other, +1,heartbeat.wav,Other, +1,harspichord.wav,Keyboard,Harpsichord +1,harsh_lead.wav,Other, +1,harpsychord.wav,Keyboard,Harpsichord +1,harpsicord_over_the_hills_and_far_away.wav,Keyboard,Harpsichord +1,harpsi.wav,Keyboard,Harpsichord +1,harpschicord.wav,Keyboard,Harpsichord +1,harps.wav,Other, +1,harpischord.wav,Keyboard,Harpsichord +1,harpis.wav,Keyboard,Harpsichord +1,harpi.wav,Keyboard,Harpsichord +1,harpe.wav,Other, +1,harp12.wav,Other, +1,harp+music box.wav,Other, +1,harp st.wav,Other, +1,harp 2.wav,Other, +1,harp 1.wav,Other, +1,harp + violin + strings staccato + strings.wav,Other, +1,harp + sitar.wav,Other, +1,harmony vocal.wav,Other, +1,harmony voc.wav,Other, +1,harmonio.wav,Other, +1,harmonika.wav,Other, +1,harmonies and adds.wav,Other, +1,harmonics eg.wav,Other, +1,harmonica-acordian.wav,Other, +1,harmon.wav,Other, +1,harm.wav,Other, +1,handclaps.wav,Other, +1,hand claps.wav,Other, +1,hammonds 1 and 2.wav,Keyboard,Hammond +1,hammond_organ_4.wav,Keyboard,Hammond +1,hammond_organ_3.wav,Keyboard,Hammond +1,hammond_organ_12.wav,Keyboard,Hammond +1,hammond_fuzz_organ.wav,Keyboard,Hammond +1,hammond+pad.wav,Keyboard,Hammond +1,hammond organ intro.wav,Keyboard,Hammond +1,hammond organ bass.wav,Keyboard,Hammond +1,hammond organ 2.wav,Keyboard,Hammond +1,hammond lead.wav,Keyboard,Hammond +1,hammond fx.wav,Keyboard,Hammond +1,hammond eg.wav,Keyboard,Hammond +1,hammond 12.wav,Keyboard,Hammond +1,hammond 1+2.wav,Keyboard,Hammond +1,hammond + bells.wav,Keyboard,Hammond +1,hammer.wav,Other, +1,hammd.wav,Other, +1,hamallet.wav,Other, +1,hall.wav,Other, +1,ha.wav,Other, +1,h.wav,Other, +1,h.e.r.-adlib.wav,Other, +1,h.a.w.k..wav,Other, +1,gza.wav,Other, +1,gutar 3.wav,Other, +1,gunshot.wav,Other, +1,gunna.wav,Other, +1,gun shots fx.wav,Other, +1,guitarsarr.wav,Electric Guitar, +1,guitars solo.wav,Electric Guitar, +1,guitars melodies.wav,Electric Guitar, +1,guitars fx.wav,Electric Guitar, +1,guitars clean.wav,Electric Guitar, +1,guitars 5 and 6 - distortion rhythm (stereo).wav,Electric Guitar, +1,guitars 2 3 and 4 - clean (stereo).wav,Electric Guitar, +1,guitarr.wav,Electric Guitar, +1,guitarperc.wav,Electric Guitar, +1,guitarlele 2.wav,Electric Guitar, +1,guitarlele 1.wav,Electric Guitar, +1,guitarleft2.wav,Electric Guitar, +1,guitarleft1.wav,Electric Guitar, +1,guitarleft.wav,Electric Guitar, +1,guitarl.wav,Electric Guitar, +1,guitarheavy.wav,Electric Guitar, +1,guitarfeedback.wav,Electric Guitar, +1,guitarenew.wav,Electric Guitar, +1,guitare_solo_the_cars_good_times_roll.wav,Electric Guitar, +1,guitare_solo_2_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_solo_1_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_electrique_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_acoustique_2 left.wav,Acoustic Guitar, +1,guitare_acoustique_1 intro.wav,Acoustic Guitar, +1,guitare_3_the_cars_good_times_roll.wav,Electric Guitar, +1,guitare_3_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_2_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_2.wav,Electric Guitar, +1,guitare_2 left.wav,Electric Guitar, +1,guitare_1_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_1.wav,Electric Guitar, +1,guitare_1 right.wav,Electric Guitar, +1,guitare.wav,Electric Guitar, +1,guitare-talkbox.wav,Electric Guitar, +1,guitare-jazz.wav,Electric Guitar, +1,guitare-fx.wav,Electric Guitar, +1,guitare solo.wav,Electric Guitar, +1,guitare distors.wav,Electric Guitar, +1,guitare 2.wav,Electric Guitar, +1,guitare 1.wav,Electric Guitar, +1,guitar_solo.wav,Electric Guitar, +1,guitar_rhytme.wav,Electric Guitar, +1,guitar_reverb.wav,Electric Guitar, +1,guitar_r.wav,Electric Guitar, +1,guitar_l.wav,Electric Guitar, +1,guitar_fx.wav,Electric Guitar, +1,guitar_dist.wav,Electric Guitar, +1,guitar_add.wav,Electric Guitar, +1,guitar_4.wav,Electric Guitar, +1,guitar_3 right.wav,Electric Guitar, +1,guitar_2 left.wav,Electric Guitar, +1,guitar_03.wav,Electric Guitar, +1,guitar_02.wav,Electric Guitar, +1,guitar_01.wav,Electric Guitar, +1,guitar5.wav,Electric Guitar, +1,guitar4.wav,Electric Guitar, +1,guitar4 tremolo.wav,Electric Guitar, +1,guitar2 muted left.wav,Electric Guitar, +1,guitar-tremolo.wav,Electric Guitar, +1,guitar-lead.wav,Electric Guitar, +1,guitar-fxed.wav,Electric Guitar, +1,guitar-fx.wav,Electric Guitar, +1,guitar-fuzz.wav,Electric Guitar, +1,guitar-electro.wav,Electric Guitar, +1,guitar-and-synth-reverse.wav,Electric Guitar, +1,guitar-4.wav,Electric Guitar, +1,guitar-1-2.wav,Electric Guitar, +1,guitar-1-1.wav,Electric Guitar, +1,guitar-1 muted.wav,Electric Guitar, +1,guitar synth.wav,Electric Guitar, +1,guitar sinth 12 intro.wav,Electric Guitar, +1,guitar right.wav,Electric Guitar, +1,guitar riff_ok.wav,Electric Guitar, +1,guitar riff arpeggios chord.wav,Electric Guitar, +1,guitar rhythm.wav,Electric Guitar, +1,guitar rhythm 2 disto.wav,Electric Guitar, +1,guitar rhythm 1 disto.wav,Electric Guitar, +1,guitar reverse.wav,Electric Guitar, +1,guitar plucked_ok.wav,Electric Guitar, +1,guitar pad.wav,Electric Guitar, +1,guitar melo.wav,Electric Guitar, +1,guitar melo 2.wav,Electric Guitar, +1,guitar hits.wav,Electric Guitar, +1,guitar hit_ok.wav,Electric Guitar, +1,guitar harmonic.wav,Electric Guitar, +1,guitar filter.wav,Electric Guitar, +1,guitar feedback.wav,Electric Guitar, +1,guitar ensemble.wav,Electric Guitar, +1,guitar ensemble - crunch.wav,Electric Guitar, +1,guitar electro 3.wav,Electric Guitar, +1,guitar electric.wav,Electric Guitar, +1,guitar ebow + noises.wav,Electric Guitar, +1,guitar dist.wav,Electric Guitar, +1,guitar arp.wav,Electric Guitar, +1,guitar adds.wav,Electric Guitar, +1,guitar acc.wav,Other, +1,guitar 7.wav,Electric Guitar, +1,guitar 6 end.wav,Electric Guitar, +1,guitar 5 theme.wav,Electric Guitar, +1,guitar 5 solo.wav,Electric Guitar, +1,guitar 5 right.wav,Electric Guitar, +1,guitar 5 left.wav,Electric Guitar, +1,guitar 4 plus.wav,Electric Guitar, +1,guitar 4 fx.wav,Electric Guitar, +1,guitar 3 solo.wav,Electric Guitar, +1,guitar 3 riff.wav,Electric Guitar, +1,guitar 3 r.wav,Electric Guitar, +1,guitar 3 fx.wav,Electric Guitar, +1,guitar 3 arr.wav,Electric Guitar, +1,guitar 2 l.wav,Electric Guitar, +1,guitar 2 intro.wav,Electric Guitar, +1,guitar 2 fuzz.wav,Electric Guitar, +1,guitar 2 end.wav,Electric Guitar, +1,guitar 2 disto.wav,Electric Guitar, +1,guitar 1 intro.wav,Electric Guitar, +1,guitar 1 fx.wav,Electric Guitar, +1,guitar 1 clean.wav,Electric Guitar, +1,guitar 1 - lead.wav,Electric Guitar, +1,guitar 1 + 3.wav,Electric Guitar, +1,guitar 02.wav,Electric Guitar, +1,guitar 01.wav,Electric Guitar, +1,guit_solo_2 left.wav,Electric Guitar, +1,guit_solo_1 right.wav,Electric Guitar, +1,guit_solo.wav,Electric Guitar, +1,guit_room.wav,Electric Guitar, +1,guit_3 4.wav,Electric Guitar, +1,guit_1 2.wav,Electric Guitar, +1,guit4gauch.wav,Electric Guitar, +1,guit sample.wav,Electric Guitar, +1,guit rhyhm rere.wav,Electric Guitar, +1,guit disto.wav,Electric Guitar, +1,guit disto l + r.wav,Electric Guitar, +1,guit delay + drone + solo.wav,Electric Guitar, +1,guit chorus ld + perc.wav,Electric Guitar, +1,guit arrgt.wav,Electric Guitar, +1,guit arrgt 2.wav,Electric Guitar, +1,guit 6 + 7.wav,Electric Guitar, +1,guit 3.wav,Electric Guitar, +1,guit 3 + 4.wav,Electric Guitar, +1,guit 245.wav,Electric Guitar, +1,guit 2 + 6 + 7.wav,Electric Guitar, +1,guit 2 + 3.wav,Electric Guitar, +1,guit 1 left.wav,Electric Guitar, +1,guit 1 + 2 +5.wav,Electric Guitar, +1,guit 1 + 2 + 3.wav,Electric Guitar, +1,guit + guit 3.wav,Electric Guitar, +1,guide_vocale.wav,Other, +1,guide_vocal_the_cars_good_times_roll.wav,Other, +1,guide_vocal_stone_temple_pilots_dead_and_bloated.wav,Other, +1,guide_vocal_over_the_hills_and_far_away.wav,Other, +1,guide_vocal.wav,Other, +1,guiar 1.wav,Other, +1,gtrwah.wav,Electric Guitar, +1,gtrstac.wav,Electric Guitar, +1,gtrsolo2.wav,Electric Guitar, +1,gtrslead.wav,Electric Guitar, +1,gtrsbridgeleft.wav,Electric Guitar, +1,gtrs-.wav,Electric Guitar, +1,gtrs ld.wav,Electric Guitar, +1,gtrs disto stereo.wav,Electric Guitar, +1,gtrs arr.wav,Electric Guitar, +1,gtrs 3.wav,Electric Guitar, +1,gtrs 1.wav,Electric Guitar, +1,gtrs 1 muted right.wav,Electric Guitar, +1,gtrrythm.wav,Electric Guitar, +1,gtrpluck.wav,Electric Guitar, +1,gtropen.wav,Electric Guitar, +1,gtrmix6&7.wav,Electric Guitar, +1,gtrmix5&8.wav,Electric Guitar, +1,gtrlead.wav,Electric Guitar, +1,gtrelec3.wav,Electric Guitar, +1,gtrelec2.wav,Electric Guitar, +1,gtrelec2 right.wav,Electric Guitar, +1,gtrelec1.wav,Electric Guitar, +1,gtrelec1 left.wav,Electric Guitar, +1,gtrdisto.wav,Electric Guitar, +1,gtrdist.wav,Electric Guitar, +1,gtrcrunch.wav,Electric Guitar, +1,gtrcln.wav,Electric Guitar, +1,gtrclean.wav,Electric Guitar, +1,gtrc.wav,Electric Guitar, +1,gtrbasedisto.wav,Electric Guitar, +1,gtrbase.wav,Electric Guitar, +1,gtrb.wav,Electric Guitar, +1,gtrarr.wav,Electric Guitar, +1,gtracousticopen.wav,Acoustic Guitar, +1,gtracousticarp.wav,Acoustic Guitar, +1,gtra.wav,Electric Guitar, +1,gtr_elec.wav,Electric Guitar, +1,gtr_arp.wav,Electric Guitar, +1,gtr_acst.wav,Electric Guitar, +1,gtr8.wav,Electric Guitar, +1,gtr7solo.wav,Electric Guitar, +1,gtr6triggered.wav,Electric Guitar, +1,gtr6solo.wav,Electric Guitar, +1,gtr5 right.wav,Electric Guitar, +1,gtr5 end.wav,Electric Guitar, +1,gtr4solointro.wav,Electric Guitar, +1,gtr4 right.wav,Electric Guitar, +1,gtr3 right.wav,Electric Guitar, +1,gtr3 harmo.wav,Electric Guitar, +1,gtr2right.wav,Electric Guitar, +1,gtr2hits2.wav,Electric Guitar, +1,gtr2disto.wav,Electric Guitar, +1,gtr2cleanright.wav,Electric Guitar, +1,gtr2+4.wav,Electric Guitar, +1,gtr2+3.wav,Electric Guitar, +1,gtr2 left.wav,Electric Guitar, +1,gtr2 clean right.wav,Electric Guitar, +1,gtr1center.wav,Electric Guitar, +1,gtr1ac.wav,Electric Guitar, +1,gtr1+2mix.wav,Electric Guitar, +1,gtr1+2.wav,Electric Guitar, +1,gtr1 right.wav,Electric Guitar, +1,gtr1 left.wav,Electric Guitar, +1,gtr1 clean left.wav,Electric Guitar, +1,gtr-staccatto.wav,Electric Guitar, +1,gtr-slide2.wav,Electric Guitar, +1,gtr-slide1.wav,Electric Guitar, +1,gtr-slide.wav,Electric Guitar, +1,gtr-rythm.wav,Electric Guitar, +1,gtr-rtm right.wav,Electric Guitar, +1,gtr-piano sample fx.wav,Electric Guitar, +1,gtr-melo.wav,Electric Guitar, +1,gtr-lick.wav,Electric Guitar, +1,gtr-lead1.wav,Electric Guitar, +1,gtr-lead.wav,Electric Guitar, +1,gtr-fuzzr.wav,Electric Guitar, +1,gtr-fuzzl.wav,Electric Guitar, +1,gtr-fuzzc.wav,Electric Guitar, +1,gtr-ebow.wav,Electric Guitar, +1,gtr-clean2.wav,Electric Guitar, +1,gtr-arp.wav,Electric Guitar, +1,gtr weird effects.wav,Electric Guitar, +1,gtr trem.wav,Electric Guitar, +1,gtr synth 3.wav,Electric Guitar, +1,gtr synth 1.wav,Electric Guitar, +1,gtr swell 12.wav,Electric Guitar, +1,gtr solo r ch.wav,Electric Guitar, +1,gtr solo part c.wav,Electric Guitar, +1,gtr solo l ch.wav,Electric Guitar, +1,gtr solo 5 (tierce).wav,Electric Guitar, +1,gtr rhythm.wav,Electric Guitar, +1,gtr rhyt.wav,Electric Guitar, +1,gtr rhy.wav,Electric Guitar, +1,gtr rhy 2 left.wav,Electric Guitar, +1,gtr rhy 1 right.wav,Electric Guitar, +1,gtr nylon.wav,Acoustic Guitar, +1,gtr nylon strum.wav,Acoustic Guitar, +1,gtr nylon ritmica.wav,Acoustic Guitar, +1,gtr nylon lead.wav,Acoustic Guitar, +1,gtr nylon arreglos.wav,Acoustic Guitar, +1,gtr muted.wav,Electric Guitar, +1,gtr mute.wav,Electric Guitar, +1,gtr mixmaster.wav,Electric Guitar, +1,gtr melody.wav,Electric Guitar, +1,gtr lead 4.wav,Electric Guitar, +1,gtr lead 3.wav,Electric Guitar, +1,gtr lead 2.wav,Electric Guitar, +1,gtr lead 1.wav,Electric Guitar, +1,gtr ld3.wav,Electric Guitar, +1,gtr ld2.wav,Electric Guitar, +1,gtr lap.wav,Electric Guitar, +1,gtr intro.wav,Electric Guitar, +1,gtr harm.wav,Electric Guitar, +1,gtr gr5.wav,Electric Guitar, +1,gtr gr4.wav,Electric Guitar, +1,gtr gr3.wav,Electric Guitar, +1,gtr gr2.wav,Electric Guitar, +1,gtr gr1.wav,Electric Guitar, +1,gtr glide.wav,Electric Guitar, +1,gtr fx intro.wav,Electric Guitar, +1,gtr fx 3.wav,Electric Guitar, +1,gtr fx 2.wav,Electric Guitar, +1,gtr fx 1.wav,Electric Guitar, +1,gtr funk.wav,Electric Guitar, +1,gtr esp.wav,Electric Guitar, +1,gtr esp 3+4.wav,Electric Guitar, +1,gtr esp 2.wav,Electric Guitar, +1,gtr el 5 right.wav,Electric Guitar, +1,gtr el 4.wav,Electric Guitar, +1,gtr el 4 right.wav,Electric Guitar, +1,gtr el 4 left.wav,Electric Guitar, +1,gtr el 3.wav,Electric Guitar, +1,gtr el 2 muted.wav,Electric Guitar, +1,gtr el 2 end.wav,Electric Guitar, +1,gtr el 1.wav,Electric Guitar, +1,gtr el 1 muted.wav,Electric Guitar, +1,gtr distor.wav,Electric Guitar, +1,gtr dist 4.wav,Electric Guitar, +1,gtr dist 2+3.wav,Electric Guitar, +1,gtr dist 1.wav,Electric Guitar, +1,gtr clean delay.wav,Electric Guitar, +1,gtr clean and disto.wav,Electric Guitar, +1,gtr clav.wav,Electric Guitar, +1,gtr center.wav,Electric Guitar, +1,gtr arr crunch.wav,Electric Guitar, +1,gtr arr clean.wav,Electric Guitar, +1,gtr add.wav,Electric Guitar, +1,gtr ac strum.wav,Acoustic Guitar, +1,gtr ac strum open.wav,Acoustic Guitar, +1,gtr ac 7.wav,Acoustic Guitar, +1,gtr ac 3 left.wav,Acoustic Guitar, +1,gtr ac 2 right.wav,Acoustic Guitar, +1,gtr ac 2 right end.wav,Acoustic Guitar, +1,gtr ac 2 left.wav,Acoustic Guitar, +1,gtr ac 2 end.wav,Acoustic Guitar, +1,gtr ac 1-.wav,Acoustic Guitar, +1,gtr ac 1 left.wav,Acoustic Guitar, +1,gtr ac 1 intro.wav,Acoustic Guitar, +1,gtr 9 left.wav,Electric Guitar, +1,gtr 8centre.wav,Electric Guitar, +1,gtr 8 fx.wav,Electric Guitar, +1,gtr 7droite.wav,Electric Guitar, +1,gtr 7+8.wav,Electric Guitar, +1,gtr 7 left.wav,Electric Guitar, +1,gtr 7 fx.wav,Electric Guitar, +1,gtr 7 + 9.wav,Electric Guitar, +1,gtr 6gauche.wav,Electric Guitar, +1,gtr 5droi.wav,Electric Guitar, +1,gtr 5+6.wav,Electric Guitar, +1,gtr 5 arp.wav,Electric Guitar, +1,gtr 4droite.wav,Electric Guitar, +1,gtr 4driote.wav,Electric Guitar, +1,gtr 4center.wav,Electric Guitar, +1,gtr 4-.wav,Electric Guitar, +1,gtr 4 muted.wav,Electric Guitar, +1,gtr 4 fx.wav,Electric Guitar, +1,gtr 4 clean.wav,Electric Guitar, +1,gtr 4 + 5 + 8.wav,Electric Guitar, +1,gtr 3droite.wav,Electric Guitar, +1,gtr 3and4.wav,Electric Guitar, +1,gtr 3-.wav,Electric Guitar, +1,gtr 3+6.wav,Electric Guitar, +1,gtr 3 intro.wav,Electric Guitar, +1,gtr 3 chorus.wav,Electric Guitar, +1,gtr 3 + 6.wav,Electric Guitar, +1,gtr 2right.wav,Electric Guitar, +1,gtr 2gauche.wav,Electric Guitar, +1,gtr 2enter.wav,Electric Guitar, +1,gtr 2droite.wav,Electric Guitar, +1,gtr 2centre.wav,Electric Guitar, +1,gtr 2-noisegate.wav,Electric Guitar, +1,gtr 2-.wav,Electric Guitar, +1,gtr 2+4.wav,Electric Guitar, +1,gtr 2+3+4.wav,Electric Guitar, +1,gtr 2 wha.wav,Electric Guitar, +1,gtr 2 slide.wav,Electric Guitar, +1,gtr 2 muted right+5.wav,Electric Guitar, +1,gtr 2 intro.wav,Electric Guitar, +1,gtr 2 intro right.wav,Electric Guitar, +1,gtr 2 fx.wav,Electric Guitar, +1,gtr 2 chorus.wav,Electric Guitar, +1,gtr 2 + 8.wav,Electric Guitar, +1,gtr 2 + 3.wav,Electric Guitar, +1,gtr 2 (muted).wav,Electric Guitar, +1,gtr 1left.wav,Electric Guitar, +1,gtr 1g.wav,Electric Guitar, +1,gtr 1dr.wav,Electric Guitar, +1,gtr 12.wav,Electric Guitar, +1,gtr 12 cuerdas 2.wav,Electric Guitar, +1,gtr 12 cuerdas 1.wav,Electric Guitar, +1,gtr 10.wav,Electric Guitar, +1,gtr 1-.wav,Electric Guitar, +1,gtr 1+7.wav,Electric Guitar, +1,gtr 1 muted.wav,Electric Guitar, +1,gtr 1 intro.wav,Electric Guitar, +1,gtr 1 fx.wav,Electric Guitar, +1,gtr 1 clean.wav,Electric Guitar, +1,gtr 1 centre.wav,Electric Guitar, +1,gtr 1 5.wav,Electric Guitar, +1,gtr 1 + 4.wav,Electric Guitar, +1,gtr wah.wav,Electric Guitar, +1,gtel.wav,Electric Guitar, +1,gtac.wav,Electric Guitar, +1,gt_3.wav,Electric Guitar, +1,gt_2.wav,Electric Guitar, +1,gt_1.wav,Electric Guitar, +1,gt2.wav,Electric Guitar, +1,gt1.wav,Electric Guitar, +1,gt sitar.wav,Electric Guitar, +1,gt rit.wav,Electric Guitar, +1,gt r.wav,Electric Guitar, +1,gt melo.wav,Electric Guitar, +1,gt lead.wav,Electric Guitar, +1,gt lead c.wav,Electric Guitar, +1,gt l cm.wav,Electric Guitar, +1,gt harm.wav,Electric Guitar, +1,gt dist l.wav,Electric Guitar, +1,gt chorus.wav,Electric Guitar, +1,gt chords.wav,Electric Guitar, +1,gt axe.wav,Electric Guitar, +1,gt arr.wav,Electric Guitar, +1,gt ac.wav,Acoustic Guitar, +1,gt ac + gt e.wav,Acoustic Guitar, +1,gt 3.wav,Electric Guitar, +1,gt 2 right.wav,Electric Guitar, +1,gt 1 left.wav,Electric Guitar, +1,grt2.wav,Electric Guitar, +1,grt1.wav,Electric Guitar, +1,grt 2.wav,Electric Guitar, +1,group.wav,Other, +1,groove.wav,Other, +1,grelots.wav,Other, +1,gregory porter.wav,Other, +1,greg nice.wav,Other, +1,grateful dead shakedown street rhodes.wav,Keyboard,Rhodes +1,grateful dead shakedown street perc.wav,Percussion, +1,grateful dead shakedown street lv.wav,Voice,Lead +1,grateful dead shakedown street hamm.wav,Other, +1,grateful dead shakedown street guitar 3.wav,Electric Guitar,Electric 3 +1,grateful dead shakedown street guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead shakedown street guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead shakedown street drum.wav,Drums, +1,grateful dead shakedown street clavi.wav,Keyboard,Clavinet +1,grateful dead shakedown street bv.wav,Voice,Backing +1,grateful dead shakedown street bass.wav,Bass Guitar, +1,grateful dead i know you rider live in paris piano.wav,Piano, +1,grateful dead i know you rider live in paris ld.wav,Voice,Lead +1,grateful dead i know you rider live in paris e guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead i know you rider live in paris e guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead i know you rider live in paris drums.wav,Drums, +1,grateful dead i know you rider live in paris bv.wav,Voice,Backing +1,grateful dead i know you rider live in paris bass.wav,Bass Guitar, +1,grateful dead althea rhodes.wav,Keyboard,Rhodes +1,grateful dead althea perc.wav,Percussion, +1,grateful dead althea organ.wav,Keyboard,Organ +1,grateful dead althea lv.wav,Voice,Lead +1,grateful dead althea guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead althea guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead althea drum.wav,Drums, +1,grateful dead althea clavi.wav,Keyboard,Clavinet +1,grateful dead althea bass.wav,Bass Guitar, +1,granpiano.wav,Piano, +1,graham russell.wav,Other, +1,gorillaz.wav,Other, +1,gojira silvera synth vocal.wav,Other, +1,gojira silvera lv.wav,Other, +1,gojira silvera guitar 4.wav,Other, +1,gojira silvera guitar 3.wav,Other, +1,gojira silvera guitar 2.wav,Other, +1,gojira silvera guitar 1.wav,Other, +1,gojira silvera fx.wav,Other, +1,gojira silvera drum.wav,Other, +1,gojira silvera bv.wav,Other, +1,gojira silvera bass.wav,Other, +1,gloken.wav,Other, +1,glockflute.wav,Other, +1,glock and tububells.wav,Other, +1,gliss.wav,Other, +1,glideravesynth.wav,Other, +1,glide synth.wav,Other, +1,glass.wav,Other, +1,glad sample.wav,Other, +1,giveon.wav,Other, +1,giut.wav,Other, +1,giorgia.wav,Other, +1,ghostsynth.wav,Other, +1,ghostface killah.wav,Other, +1,getting in tune the who piano.wav,Other, +1,getting in tune the who ld.wav,Other, +1,getting in tune the who e guitar.wav,Other, +1,getting in tune the who drums.wav,Other, +1,getting in tune the who bv.wav,Other, +1,getting in tune the who bass.wav,Other, +1,getting in tune the who a guitar.wav,Other, +1,george harrison.wav,Other, +1,george ezra paradise piano.wav,Other, +1,george ezra paradise perc.wav,Other, +1,gavin james.wav,Other, +1,gaucheguit.wav,Other, +1,gauchegtr 1.wav,Other, +1,gated bass.wav,Other, +1,gate rhodes.wav,Other, +1,gangsta dresta.wav,Other, +1,gang bg vocals.wav,Other, +1,gamelan.wav,Other, +1,galantis.wav,Other, +1,gaga.wav,Other, +1,g fx.wav,Computer,FX +1,g crunch.wav,Computer,FX +1,fxx scratchs.wav,Computer,FX +1,fxwoodwinds.wav,Computer,FX +1,fxs synt2 3 5.wav,Computer,FX +1,fxs seagulls.wav,Computer,FX +1,fxs scratch.wav,Computer,FX +1,fxs reverse and scream.wav,Computer,FX +1,fxs pad sbells.wav,Computer,FX +1,fxs bassdrop.wav,Computer,FX +1,fxs and drop.wav,Computer,FX +1,fxnoise.wav,Computer,FX +1,fxgtr.wav,Computer,FX +1,fxed-percussion.wav,Computer,FX +1,fx2 sample bass.wav,Computer,FX +1,fx-noise.wav,Computer,FX +1,fx+whistle.wav,Computer,FX +1,fx+reverse cymbal+noise.wav,Computer,FX +1,fx+noise+synthfx.wav,Computer,FX +1,fx wooosh.wav,Computer,FX +1,fx winds.wav,Computer,FX +1,fx wind.wav,Computer,FX +1,fx vox.wav,Computer,FX +1,fx voice.wav,Computer,FX +1,fx vocals.wav,Computer,FX +1,fx vinyls.wav,Computer,FX +1,fx synthfal.wav,Computer,FX +1,fx synth 1.wav,Computer,FX +1,fx subs.wav,Computer,FX +1,fx scrath.wav,Computer,FX +1,fx sample.wav,Computer,FX +1,fx rverse.wav,Computer,FX +1,fx pitch.wav,Computer,FX +1,fx percussion.wav,Computer,FX +1,fx panther.wav,Computer,FX +1,fx pad choir voxsynth.wav,Computer,FX +1,fx orgasm.wav,Computer,FX +1,fx noises 12 and sub.wav,Computer,FX +1,fx noise voicesynth3.wav,Computer,FX +1,fx night.wav,Computer,FX +1,fx motor.wav,Computer,FX +1,fx mix.wav,Computer,FX +1,fx intro wave beach.wav,Computer,FX +1,fx guitars.wav,Computer,FX +1,fx gtrs.wav,Computer,FX +1,fx glasses.wav,Computer,FX +1,fx flange and trance.wav,Computer,FX +1,fx cutoffsynth.wav,Computer,FX +1,fx comp squarelead.wav,Computer,FX +1,fx car.wav,Computer,FX +1,fx birds+ocean.wav,Computer,FX +1,fx background.wav,Computer,FX +1,fx and vynil.wav,Computer,FX +1,fx and vocfx.wav,Computer,FX +1,fx and telephone.wav,Computer,FX +1,fx and synthfx.wav,Computer,FX +1,fx and strings.wav,Computer,FX +1,fx and scratching.wav,Computer,FX +1,fx and riser.wav,Computer,FX +1,fx and pitch.wav,Computer,FX +1,fx and noise.wav,Computer,FX +1,fx and laser.wav,Computer,FX +1,fx and kik hit.wav,Computer,FX +1,fx and gliss.wav,Computer,FX +1,fx and bips.wav,Computer,FX +1,fx and beep9.wav,Computer,FX +1,fx ambient crowd.wav,Computer,FX +1,fx amb.wav,Computer,FX +1,fx 3.wav,Computer,FX +1,fx 12.wav,Computer,FX +1,fx 1 scratch.wav,Computer,FX +1,fx + tape noise.wav,Computer,FX +1,fx & scratches.wav,Computer,FX +1,fuzz.wav,Other, +1,fuzz guitar.wav,Other, +1,futuristic.wav,Other, +1,fuse odg.wav,Other, +1,funky.wav,Other, +1,funky gtrr.wav,Other, +1,funkgtr.wav,Other, +1,funk loop.wav,Other, +1,funk lead.wav,Other, +1,fundisha.wav,Other, +1,fun.wav,Other, +1,frenchhorn.wav,Other, +1,french_horns.wav,Other, +1,french horns and flute.wav,Other, +1,french horn (vst).wav,Other, +1,fred schneider.wav,Other, +1,frank zappa and joe.wav,Other, +1,frank ocean.wav,Other, +1,frank ocean-adlib.wav,Other, +1,franck ocean.wav,Other, +1,fr horn 3.wav,Other, +1,fr horn 2.wav,Other, +1,fr horn 1.wav,Other, +1,foule stade.wav,Other, +1,fmsynth.wav,Other, +1,fm.wav,Other, +1,fm synthbrass.wav,Other, +1,fm rhodes.wav,Other, +1,fm power perk.wav,Other, +1,fm piano.wav,Other, +1,fm clav.wav,Other, +1,fm bell.wav,Other, +1,flutesynth.wav,Flute, +1,flutes andvibes.wav,Flute, +1,flute transverse.wav,Flute, +1,flute solo.wav,Flute, +1,flute real.wav,Flute, +1,flute lo _01-01.wav,Flute, +1,flute 3.wav,Flute, +1,flute 2 right.wav,Flute, +1,flute 1.wav,Flute, +1,flute 1 left.wav,Flute, +1,flute 02.wav,Flute, +1,flute 01.wav,Flute, +1,fluguel horn.wav,Other, +1,florida georgia line.wav,Other, +1,fleurie.wav,Other, +1,flange.wav,Other, +1,five finger death punch.wav,Other, +1,finger snaps.wav,Other, +1,finger cymbals.wav,Other, +1,final claps.wav,Other, +1,filtersynth.wav,Other, +1,filters.wav,Other, +1,filterbass.wav,Other, +1,filter.wav,Other, +1,filter vox.wav,Other, +1,filter passage.wav,Other, +1,filter bits.wav,Other, +1,filter bass.wav,Other, +1,fills1+2mix.wav,Other, +1,fiddles.wav,Violin,Fiddle +1,fiddle 3.wav,Violin,Fiddle +1,fiddle 3 right.wav,Violin,Fiddle +1,fiddle 2-noisegate.wav,Violin,Fiddle +1,fiddle 1-noisegate.wav,Violin,Fiddle +1,fergie+refrains.wav,Other, +1,females vox.wav,Other, +1,female_bv.wav,Other, +1,female-bv.wav,Other, +1,female-adlib.wav,Other, +1,female ld 2.wav,Other, +1,female ld 1.wav,Other, +1,female bv.wav,Other, +1,feid.wav,Other, +1,feedback pad.wav,Other, +1,feedback fx.wav,Other, +1,fatman scoop.wav,Other, +1,fatman scoop-adlib.wav,Other, +1,fatbass.wav,Other, +1,fat.wav,Other, +1,fat pat.wav,Other, +1,farfisapad.wav,Other, +1,farfisaorgan3.wav,Other, +1,farfisaorgan2.wav,Other, +1,farfisaorgan.wav,Other, +1,farfisachoir.wav,Other, +1,fantasy and synth 1.wav,Other, +1,fall.wav,Other, +1,fall out boy.wav,Other, +1,faithless.wav,Other, +1,faith hill.wav,Other, +1,fade synths.wav,Other, +1,fabolous.wav,Other, +1,f.wav,Other, +1,extra.wav,Other, +1,extra snare.wav,Other, +1,exs.wav,Other, +1,even perc.wav,Other, +1,even moog.wav,Other, +1,even ld.wav,Other, +1,even e guitar lead 2.wav,Other, +1,even e guitar lead 1.wav,Other, +1,even e guitar 4.wav,Other, +1,even e guitar 3.wav,Other, +1,even e guitar 2.wav,Other, +1,even e guitar 1.wav,Other, +1,even drums.wav,Other, +1,even bv.wav,Other, +1,even bass.wav,Other, +1,even ambient.wav,Other, +1,eve.wav,Other, +1,eve jihan cooper.wav,Other, +1,eva simons.wav,Other, +1,eufonium.wav,Other, +1,ethno.wav,Other, +1,ethno vox sample.wav,Other, +1,ethinc voice.wav,Other, +1,esperant.wav,Other, +1,esp.wav,Other, +1,esp gtr12.wav,Other, +1,esp gtr 1 + 2 + ac gtr 3.wav,Other, +1,esp bass.wav,Other, +1,es2 dist.wav,Other, +1,erykah badu.wav,Other, +1,ernest.wav,Other, +1,eric vanlerberghe.wav,Other, +1,eric nally.wav,Other, +1,epianosynth.wav,Keyboard,Electric Piano +1,epianopluck.wav,Keyboard,Electric Piano +1,epiano3.wav,Keyboard,Electric Piano +1,epiano2.wav,Keyboard,Electric Piano +1,epiano1 left.wav,Keyboard,Electric Piano +1,epchorus.wav,Keyboard,Electric Piano +1,ep2.wav,Keyboard,Electric Piano +1,ep1.wav,Keyboard,Electric Piano +1,ep+ep2.wav,Keyboard,Electric Piano +1,ep right.wav,Keyboard,Electric Piano +1,ep pad.wav,Keyboard,Electric Piano +1,ep organ synth.wav,Keyboard,Electric Piano +1,ep left.wav,Keyboard,Electric Piano +1,ep arr and rhodes.wav,Keyboard,Electric Piano +1,ep adds.wav,Keyboard,Electric Piano +1,ep 2.wav,Keyboard,Electric Piano +1,ep 2 left.wav,Keyboard,Electric Piano +1,ep 1 + 2.wav,Keyboard,Electric Piano +1,ep 1 + 2 + 3.wav,Keyboard,Electric Piano +1,ep + synth rhodes + harpi.wav,Keyboard,Electric Piano +1,ep + synth pad.wav,Keyboard,Electric Piano +1,ep + pad + fx.wav,Keyboard,Electric Piano +1,ep + ep arp.wav,Keyboard,Electric Piano +1,ep + clavinet + hammond.wav,Keyboard,Electric Piano +1,envsynth.wav,Other, +1,enrique iglesias-adlib.wav,Other, +1,english horn.wav,Other, +1,endinglowbass.wav,Other, +1,ending.wav,Other, +1,ending synth.wav,Other, +1,eminem-adlib.wav,Other, +1,emily warren.wav,Other, +1,emily armstrong.wav,Other, +1,elton john.wav,Other, +1,elpianorhodeswahwah.wav,Keyboard,Electric Piano +1,elpiano_rhodes.wav,Keyboard,Electric Piano +1,ellie goulding-adlib.wav,Other, +1,elle king.wav,Other, +1,ella langley.wav,Other, +1,elguitsolo.wav,Electric Guitar, +1,elguitdisto.wav,Electric Guitar, +1,elguitarr.wav,Electric Guitar, +1,elguitarcleanmono.wav,Electric Guitar, +1,elguitar_solo.wav,Electric Guitar, +1,elguitar2.wav,Electric Guitar, +1,elguitar1.wav,Electric Guitar, +1,elguit dirty.wav,Electric Guitar, +1,elgtr5r.wav,Electric Guitar, +1,elgtr5+6.wav,Electric Guitar, +1,elgtr4cfx.wav,Electric Guitar, +1,elgtr3l.wav,Electric Guitar, +1,elgtr10+11.wav,Electric Guitar, +1,elgtr1+2+3+4+9.wav,Electric Guitar, +1,elgtr1 right.wav,Electric Guitar, +1,elgtr-notdups.wav,Electric Guitar, +1,elgtr solo.wav,Electric Guitar, +1,elgtr main.wav,Electric Guitar, +1,elgtr lead end 1+2+3+4.wav,Electric Guitar, +1,elgtr disto.wav,Electric Guitar, +1,elgtr dist.wav,Electric Guitar, +1,elgtr clean.wav,Electric Guitar, +1,elgtr arr.wav,Electric Guitar, +1,elgtr arr 2.wav,Electric Guitar, +1,elgtr arr 1.wav,Electric Guitar, +1,elgtr 2.wav,Electric Guitar, +1,elgtr 1.wav,Electric Guitar, +1,eletric_guitar_2.wav,Electric Guitar, +1,eletric_guitar_1.wav,Electric Guitar, +1,eletric_guitar.wav,Electric Guitar, +1,elena rose.wav,Other, +1,elegtrsolo.wav,Electric Guitar, +1,elegtrs1.wav,Electric Guitar, +1,elegtrfx.wav,Electric Guitar, +1,elegtr1 clean.wav,Electric Guitar, +1,elegtr 2.wav,Electric Guitar, +1,elegtr 1.wav,Electric Guitar, +1,electronic drumkit.wav,Other, +1,electro-piano.wav,Other, +1,electro-piano-pad.wav,Other, +1,electro acoustic gtr6.wav,Other, +1,electrique solo.wav,Other, +1,electrique rythmique.wav,Other, +1,electrique r.wav,Other, +1,electrique melodique.wav,Other, +1,electrique l.wav,Other, +1,electrique disto.wav,Other, +1,electrique claire gauche.wav,Other, +1,electrique claire droite.wav,Other, +1,electrique claire centre.wav,Other, +1,electricguitar2.wav,Electric Guitar, +1,electric_solo_guitar_2.wav,Electric Guitar, +1,electric_solo_guitar_1.wav,Electric Guitar, +1,electric_slide_guitar.wav,Electric Guitar, +1,electric_rhythm_guitars.wav,Electric Guitar, +1,electric_rhythm_guitar_right_2.wav,Electric Guitar, +1,electric_rhythm_guitar_right_1.wav,Electric Guitar, +1,electric_rhythm_guitar_palm_muted.wav,Electric Guitar, +1,electric_rhythm_guitar_intro.wav,Electric Guitar, +1,electric_rhythm_guitar_distortion_2.wav,Electric Guitar, +1,electric_rhythm_guitar_distortion_1.wav,Electric Guitar, +1,electric_rhythm_guitar_crunch_right.wav,Electric Guitar, +1,electric_rhythm_guitar_crunch_left.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_center.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_2.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_1.wav,Electric Guitar, +1,electric_rhythm_crunch_guitars.wav,Electric Guitar, +1,electric_rhodes_piano.wav,Other, +1,electric_piano_wurlitzer.wav,Other, +1,electric_piano_rhodes_2.wav,Other, +1,electric_piano_rhodes_2 left.wav,Other, +1,electric_lead_guitar_right.wav,Electric Guitar, +1,electric_lead_guitar_low.wav,Electric Guitar, +1,electric_lead_guitar_center.wav,Electric Guitar, +1,electric_lead_guitar_2 right.wav,Electric Guitar, +1,electric_lead_guitar_1 left.wav,Electric Guitar, +1,electric_hammond_organ.wav,Other, +1,electric_guitar_tremolo_right.wav,Electric Guitar, +1,electric_guitar_tremolo_final.wav,Electric Guitar, +1,electric_guitar_tremolo.wav,Electric Guitar, +1,electric_guitar_solo_higain.wav,Electric Guitar, +1,electric_guitar_solo_crunch.wav,Electric Guitar, +1,electric_guitar_ryhthm_fuzz.wav,Electric Guitar, +1,electric_guitar_ryhthm_clean_octave.wav,Electric Guitar, +1,electric_guitar_ryhthm_clean.wav,Electric Guitar, +1,electric_guitar_rhythm_prechorus_arrangement_2+mix.wav,Electric Guitar, +1,electric_guitar_rhythm_prechorus_arrangement+final.wav,Electric Guitar, +1,electric_guitar_rhythm_overdrive.wav,Electric Guitar, +1,electric_guitar_rhythm_final.wav,Electric Guitar, +1,electric_guitar_rhythm_distortion.wav,Electric Guitar, +1,electric_guitar_rhythm_dist.wav,Electric Guitar, +1,electric_guitar_rhythm_crunch.wav,Electric Guitar, +1,electric_guitar_rhythm_2.wav,Electric Guitar, +1,electric_guitar_rhythm_1.wav,Electric Guitar, +1,electric_guitar_rhythm+mix.wav,Electric Guitar, +1,electric_guitar_rhythm right.wav,Electric Guitar, +1,electric_guitar_rhythm left.wav,Electric Guitar, +1,electric_guitar_rhythm center.wav,Electric Guitar, +1,electric_guitar_prechorus_rhythm_octave+overdrive.wav,Electric Guitar, +1,electric_guitar_prechorus_rhythm_high+mid+mix.wav,Electric Guitar, +1,electric_guitar_pad.wav,Electric Guitar, +1,electric_guitar_main.wav,Electric Guitar, +1,electric_guitar_lead_adds_2.wav,Electric Guitar, +1,electric_guitar_lead_adds_1.wav,Electric Guitar, +1,electric_guitar_lead_2.wav,Electric Guitar, +1,electric_guitar_lead_1.wav,Electric Guitar, +1,electric_guitar_harmonics.wav,Electric Guitar, +1,electric_guitar_fx_intro.wav,Electric Guitar, +1,electric_guitar_fuzz_right.wav,Electric Guitar, +1,electric_guitar_fuzz_center_3.wav,Electric Guitar, +1,electric_guitar_fuzz_center_2.wav,Electric Guitar, +1,electric_guitar_fuzz_center_1.wav,Electric Guitar, +1,electric_guitar_final_adds.wav,Electric Guitar, +1,electric_guitar_distortion_1.wav,Electric Guitar, +1,electric_guitar_distortion.wav,Electric Guitar, +1,electric_guitar_disto_left.wav,Electric Guitar, +1,electric_guitar_disto.wav,Electric Guitar, +1,electric_guitar_crunch_right.wav,Electric Guitar, +1,electric_guitar_crunch_left.wav,Electric Guitar, +1,electric_guitar_crunch_center.wav,Electric Guitar, +1,electric_guitar_crunch.wav,Electric Guitar, +1,electric_guitar_cruch_right.wav,Electric Guitar, +1,electric_guitar_clean_arrangement.wav,Electric Guitar, +1,electric_guitar_clean_1+prechorus rhythm.wav,Electric Guitar, +1,electric_guitar_chunch_2.wav,Electric Guitar, +1,electric_guitar_chunch_1.wav,Electric Guitar, +1,electric_guitar_center_overdrive.wav,Electric Guitar, +1,electric_guitar_arr.wav,Electric Guitar, +1,electric_guitar_adds_2.wav,Electric Guitar, +1,electric_guitar_adds_1.wav,Electric Guitar, +1,electric_guitar_adds.wav,Electric Guitar, +1,electric_guitar_add.wav,Electric Guitar, +1,electric_fx_guitar.wav,Other, +1,electric_drums.wav,Other, +1,electric_distorted_guitar.wav,Electric Guitar, +1,electric_crunch_guitar.wav,Electric Guitar, +1,electric_clean_guitar_right.wav,Electric Guitar, +1,electric_clean_guitar_arr_2.wav,Electric Guitar, +1,electric_clean_guitar_arr_1.wav,Electric Guitar, +1,electric_clean_guitar_2.wav,Electric Guitar, +1,electric_clean_guitar_1.wav,Electric Guitar, +1,electric_arrangement_lap_steel_2.wav,Electric Guitar, +1,electric_arrangement_lap_steel_1.wav,Electric Guitar, +1,electric_arrangement_guitar_right_1.wav,Electric Guitar, +1,electric_arrangement_guitar_overdrive.wav,Electric Guitar, +1,electric_arrangement_guitar_harmonic.wav,Electric Guitar, +1,electric_arrangement_guitar_flanger.wav,Electric Guitar, +1,electric_arrangement_guitar_clean_2.wav,Electric Guitar, +1,electric_arrangement_guitar_clean_1.wav,Electric Guitar, +1,electric_arrangement_guitar_center.wav,Electric Guitar, +1,electric_arrangement_guitar_456_final.wav,Electric Guitar, +1,electric_arrangement_guitar_3_clean.wav,Electric Guitar, +1,electric_arrangement_guitar_2_intro.wav,Electric Guitar, +1,electric_arrangement_guitar_2_clean.wav,Electric Guitar, +1,electric_arrangement_guitar_1_intro.wav,Electric Guitar, +1,electric_arrangement_guitar_1_clean.wav,Electric Guitar, +1,electric_arrange_guitar.wav,Electric Guitar, +1,electric.wav,Electric Guitar, +1,electric solo guitar.wav,Electric Guitar, +1,electric rhythm guitar.wav,Electric Guitar, +1,electric rhythm gtr.wav,Electric Guitar, +1,electric piano&celesta.wav,Other, +1,electric piano 2.wav,Other, +1,electric piano 2 right.wav,Other, +1,electric guitars 2 arpeggio.wav,Electric Guitar, +1,electric guitars 1 melodic.wav,Electric Guitar, +1,electric guitars - rhythm.wav,Electric Guitar, +1,electric guitar5.wav,Electric Guitar, +1,electric guitar4.wav,Electric Guitar, +1,electric guitar1.wav,Electric Guitar, +1,electric guitar(tremolo).wav,Electric Guitar, +1,electric guitar(rythm).wav,Electric Guitar, +1,electric guitar(mute).wav,Electric Guitar, +1,electric guitar right.wav,Electric Guitar, +1,electric guitar rhythm.wav,Electric Guitar, +1,electric guitar overdrive 2.wav,Electric Guitar, +1,electric guitar overdrive 1.wav,Electric Guitar, +1,electric guitar noise fx.wav,Electric Guitar, +1,electric guitar mute.wav,Electric Guitar, +1,electric guitar main.wav,Electric Guitar, +1,electric guitar left.wav,Electric Guitar, +1,electric guitar lead1+arr.wav,Electric Guitar, +1,electric guitar lead.wav,Electric Guitar, +1,electric guitar insert.wav,Electric Guitar, +1,electric guitar harmonics.wav,Electric Guitar, +1,electric guitar ghythmm.wav,Electric Guitar, +1,electric guitar flanger.wav,Electric Guitar, +1,electric guitar clean+sitar.wav,Electric Guitar, +1,electric guitar 7.wav,Electric Guitar, +1,electric guitar 5 left.wav,Electric Guitar, +1,electric guitar 4 fixed.wav,Electric Guitar, +1,electric guitar 4 chorus.wav,Electric Guitar, +1,electric guitar 3 right.wav,Electric Guitar, +1,electric guitar 3 right end.wav,Electric Guitar, +1,electric guitar 3 fixed.wav,Electric Guitar, +1,electric guitar 3 distorted.wav,Electric Guitar, +1,electric guitar 3 - funky.wav,Electric Guitar, +1,electric guitar 2 solo.wav,Electric Guitar, +1,electric guitar 2 right.wav,Electric Guitar, +1,electric guitar 2 lead.wav,Electric Guitar, +1,electric guitar 2 fixed.wav,Electric Guitar, +1,electric guitar 1+2+3+4+6.wav,Electric Guitar, +1,electric guitar 1 right.wav,Electric Guitar, +1,electric guitar 1 muted.wav,Electric Guitar, +1,electric guitar 1 fixed.wav,Electric Guitar, +1,electric guitar - reverbey.wav,Electric Guitar, +1,electric guitar - muted.wav,Electric Guitar, +1,electric gtrs.wav,Electric Guitar, +1,electric gtr 2.wav,Electric Guitar, +1,electric gt.wav,Electric Guitar, +1,electric grand.wav,Other, +1,electo_guitar_fuzz.wav,Electric Guitar, +1,electo_guitar.wav,Electric Guitar, +1,elect gtr 4 disto rythm.wav,Electric Guitar, +1,elect gtr 3 arr.wav,Electric Guitar, +1,elect gtr 2 arr.wav,Electric Guitar, +1,elect gtr 1.wav,Electric Guitar, +1,elect gtr 1 muted.wav,Electric Guitar, +1,elecrhythmgtr.wav,Electric Guitar, +1,elecpickrhythm.wav,Electric Guitar, +1,elecpiano.wav,Other, +1,eleckeys.wav,Other, +1,elecgtr right.wav,Electric Guitar, +1,elecgt.wav,Electric Guitar, +1,elecg2.wav,Electric Guitar, +1,elecg1.wav,Electric Guitar, +1,elec-piano.wav,Other, +1,elec-piano-lead.wav,Other, +1,elec perc.wav,Other, +1,elec guitar 2.wav,Electric Guitar, +1,elec guitar 1 right.wav,Electric Guitar, +1,elec guit solo 2.wav,Electric Guitar, +1,elec guit solo 2 ok.wav,Electric Guitar, +1,elec gtr solo.wav,Electric Guitar, +1,elec gt 6.wav,Electric Guitar, +1,elec gt 5.wav,Electric Guitar, +1,elec gt 4.wav,Electric Guitar, +1,elec gt 3.wav,Electric Guitar, +1,elec drums.wav,Other, +1,elec and lead.wav,Electric Guitar, +1,elec 3 tremolo.wav,Electric Guitar, +1,elec 2 rythm.wav,Electric Guitar, +1,elec 2 left.wav,Electric Guitar, +1,elec 1 right.wav,Electric Guitar, +1,elec 1 arr.wav,Electric Guitar, +1,eldrums.wav,Other, +1,elctric_guitar_treble.wav,Electric Guitar, +1,elctric_guitar_crunch.wav,Electric Guitar, +1,elctric_guitar_clean.wav,Electric Guitar, +1,elctric_guitar_arr.wav,Electric Guitar, +1,elbow swell.wav,Other, +1,el.toms.wav,Other, +1,el.piano.wav,Other, +1,el.gtrs.wav,Electric Guitar, +1,el.gtr solo 3.wav,Electric Guitar, +1,el.gtr solo 2.wav,Electric Guitar, +1,el.gtr solo 1.wav,Electric Guitar, +1,el.gtr slide.wav,Electric Guitar, +1,el.gtr riff.wav,Electric Guitar, +1,el.gtr palm muted right.wav,Electric Guitar, +1,el.gtr palm mute.wav,Electric Guitar, +1,el.gtr lead.wav,Electric Guitar, +1,el.gtr lead fx.wav,Electric Guitar, +1,el.gtr lead 3.wav,Electric Guitar, +1,el.gtr lead 2.wav,Electric Guitar, +1,el.gtr lead 1.wav,Electric Guitar, +1,el.gtr lead (right).wav,Electric Guitar, +1,el.gtr lead (left).wav,Electric Guitar, +1,el.gtr crunch.wav,Electric Guitar, +1,el.gtr clean2.wav,Electric Guitar, +1,el.gtr clean rhythm+tremolo.wav,Electric Guitar, +1,el.gtr arr palm mute.wav,Electric Guitar, +1,el.gtr arr lead.wav,Electric Guitar, +1,el.gtr arr lead r.wav,Electric Guitar, +1,el.gtr arr l.wav,Electric Guitar, +1,el.gtr arr disto.wav,Electric Guitar, +1,el.gtr arr 4.wav,Electric Guitar, +1,el.gtr arr 2.wav,Electric Guitar, +1,el.gtr arr 1.wav,Electric Guitar, +1,el.gtr arr 1 (delay).wav,Electric Guitar, +1,el.gtr add 3.wav,Electric Guitar, +1,el.gtr add 2.wav,Electric Guitar, +1,el.gtr add 1.wav,Electric Guitar, +1,el.gtr 9 disto.wav,Electric Guitar, +1,el.gtr 7+8 (palm mute).wav,Electric Guitar, +1,el.gtr 3+4+5.wav,Electric Guitar, +1,el.gtr 2+6.wav,Electric Guitar, +1,el.gtr 03.wav,Electric Guitar, +1,el.gtr 02.wav,Electric Guitar, +1,el.gtr 01.wav,Electric Guitar, +1,el.gtr (right).wav,Electric Guitar, +1,el.gtr (palm mute).wav,Electric Guitar, +1,el.gtr (left).wav,Electric Guitar, +1,el.gtr (disto).wav,Electric Guitar, +1,el rhythm gtr lr.wav,Electric Guitar, +1,el pianodroite.wav,Other, +1,el piano1+2mix.wav,Other, +1,el piano+organ.wav,Other, +1,el key.wav,Other, +1,el guitars.wav,Electric Guitar, +1,el guitars 3.wav,Electric Guitar, +1,el guitars 2.wav,Electric Guitar, +1,el guitars 1.wav,Electric Guitar, +1,el guitar slide.wav,Electric Guitar, +1,el guitar right.wav,Electric Guitar, +1,el guitar r.wav,Electric Guitar, +1,el guitar overdrive.wav,Electric Guitar, +1,el guitar overdrive left.wav,Electric Guitar, +1,el guitar ovdr.wav,Electric Guitar, +1,el guitar od2.wav,Electric Guitar, +1,el guitar od1.wav,Electric Guitar, +1,el guitar muted.wav,Electric Guitar, +1,el guitar left.wav,Electric Guitar, +1,el guitar lead add.wav,Electric Guitar, +1,el guitar l.wav,Electric Guitar, +1,el guitar fx.wav,Electric Guitar, +1,el guitar disto left.wav,Electric Guitar, +1,el guitar chorus.wav,Electric Guitar, +1,el guitar center.wav,Electric Guitar, +1,el guitar arr.wav,Electric Guitar, +1,el guitar 4.wav,Electric Guitar, +1,el guitar 2 right.wav,Electric Guitar, +1,el guitar 1 left.wav,Electric Guitar, +1,el guitar 03.wav,Electric Guitar, +1,el guitar 02.wav,Electric Guitar, +1,el guitar 01 muted.wav,Electric Guitar, +1,el guit clean.wav,Electric Guitar, +1,el gtrs.wav,Electric Guitar, +1,el gtr5+7.wav,Electric Guitar, +1,el gtr4.wav,Electric Guitar, +1,el gtr4+6.wav,Electric Guitar, +1,el gtr3 left.wav,Electric Guitar, +1,el gtr25.wav,Electric Guitar, +1,el gtr2+3.wav,Electric Guitar, +1,el gtr2 right.wav,Electric Guitar, +1,el gtr13.wav,Electric Guitar, +1,el gtr lead.wav,Electric Guitar, +1,el gtr intro.wav,Electric Guitar, +1,el gtr fx.wav,Electric Guitar, +1,el gtr crunch.wav,Electric Guitar, +1,el gtr add.wav,Electric Guitar, +1,el gtr 4 r end.wav,Electric Guitar, +1,el gtr 4 + 6.wav,Electric Guitar, +1,el gtr 3 right.wav,Electric Guitar, +1,el gtr 3 l end.wav,Electric Guitar, +1,el gtr 3 + 5.wav,Electric Guitar, +1,el gtr 2 r.wav,Electric Guitar, +1,el gtr 2 left.wav,Electric Guitar, +1,el gtr 2 end.wav,Electric Guitar, +1,el gtr 1 l.wav,Electric Guitar, +1,el gtr 1 + 3 + 5.wav,Electric Guitar, +1,el gtr 1 + 2.wav,Electric Guitar, +1,el bass.wav,Other, +1,egwha.wav,Electric Guitar, +1,egverse.wav,Electric Guitar, +1,eguitd + eguit2.wav,Electric Guitar, +1,eguitarlead2.wav,Electric Guitar, +1,eguitarlead1.wav,Electric Guitar, +1,eguitardistrhythm.wav,Electric Guitar, +1,eguitarcleanrhythm.wav,Electric Guitar, +1,eguitar solo r.wav,Electric Guitar, +1,eguitar solo l.wav,Electric Guitar, +1,eguitar solo 1.wav,Electric Guitar, +1,eguitar solo 1 c.wav,Electric Guitar, +1,eguitar slide 05.wav,Electric Guitar, +1,eguitar slide 04.wav,Electric Guitar, +1,eguitar slide 03.wav,Electric Guitar, +1,eguitar slide 02.wav,Electric Guitar, +1,eguitar slide 01.wav,Electric Guitar, +1,eguitar rythm.wav,Electric Guitar, +1,eguitar rythm dist 2 l+r.wav,Electric Guitar, +1,eguitar rythm dist 2 c+3 c+c.wav,Electric Guitar, +1,eguitar rythm dist 1 l+r.wav,Electric Guitar, +1,eguitar rythm dist 02 r.wav,Electric Guitar, +1,eguitar rythm dist 01 l.wav,Electric Guitar, +1,eguitar rythm arr 78 lr end.wav,Electric Guitar, +1,eguitar rythm arr 56 lr.wav,Electric Guitar, +1,eguitar rythm arr 04.wav,Electric Guitar, +1,eguitar rythm arr 03.wav,Electric Guitar, +1,eguitar rythm arr 02.wav,Electric Guitar, +1,eguitar rythm arr 01 main lead.wav,Electric Guitar, +1,eguitar rythm 02.wav,Electric Guitar, +1,eguitar rythm 01.wav,Electric Guitar, +1,eguitar rhythmic.wav,Electric Guitar, +1,eguitar mute r.wav,Electric Guitar, +1,eguitar fx filter.wav,Electric Guitar, +1,eguitar fuzz.wav,Electric Guitar, +1,eguitar disto solo l.wav,Electric Guitar, +1,eguitar disto solo c.wav,Electric Guitar, +1,eguitar disto left.wav,Electric Guitar, +1,eguitar disto disto.wav,Electric Guitar, +1,eguitar disto 2.wav,Electric Guitar, +1,eguitar disto 1r.wav,Electric Guitar, +1,eguitar disto 1l.wav,Electric Guitar, +1,eguitar disto 1c.wav,Electric Guitar, +1,eguitar disto 1.wav,Electric Guitar, +1,eguitar clean l+r.wav,Electric Guitar, +1,eguitar clean c3.wav,Electric Guitar, +1,eguitar clean c2.wav,Electric Guitar, +1,eguitar clean c1.wav,Electric Guitar, +1,eguitar arregement clean 02.wav,Electric Guitar, +1,eguitar arregement clean 01.wav,Electric Guitar, +1,eguitar arrangement 1+2.wav,Electric Guitar, +1,eguitar arr dist.wav,Electric Guitar, +1,eguitar arr 02.wav,Electric Guitar, +1,eguitar arr 01.wav,Electric Guitar, +1,eguitar arp.wav,Electric Guitar, +1,eguitar 03.wav,Electric Guitar, +1,eguitar 02.wav,Electric Guitar, +1,eguitar 01.wav,Electric Guitar, +1,eguit9.wav,Electric Guitar, +1,eguit4 right.wav,Electric Guitar, +1,eguit3 left.wav,Electric Guitar, +1,eguit2 right.wav,Electric Guitar, +1,eguit2 left.wav,Electric Guitar, +1,eguit10.wav,Electric Guitar, +1,eguit1 right.wav,Electric Guitar, +1,eguit1 left.wav,Electric Guitar, +1,eguit1 (wah wah).wav,Electric Guitar, +1,eguit steve vai 2.wav,Electric Guitar, +1,eguit steve vai 1.wav,Electric Guitar, +1,eguit solos 5.wav,Electric Guitar, +1,eguit solos 4.wav,Electric Guitar, +1,eguit solos 3.wav,Electric Guitar, +1,eguit satriani.wav,Electric Guitar, +1,eguit satriani 2.wav,Electric Guitar, +1,eguit rhytmic.wav,Electric Guitar, +1,eguit rhytmic 3.wav,Electric Guitar, +1,eguit r.wav,Electric Guitar, +1,eguit left.wav,Electric Guitar, +1,eguit l.wav,Electric Guitar, +1,eguit intro.wav,Electric Guitar, +1,eguit fx.wav,Electric Guitar, +1,eguit fuzz.wav,Electric Guitar, +1,eguit feedback fx.wav,Electric Guitar, +1,eguit d st.wav,Electric Guitar, +1,eguit clean 2.wav,Electric Guitar, +1,eguit clean 1.wav,Electric Guitar, +1,eguit chorus.wav,Electric Guitar, +1,eguit center.wav,Electric Guitar, +1,eguit c.wav,Electric Guitar, +1,eguit base.wav,Electric Guitar, +1,eguit auto pan.wav,Electric Guitar, +1,eguit 9.wav,Electric Guitar, +1,eguit 8.wav,Electric Guitar, +1,eguit 5 ambiance.wav,Electric Guitar, +1,eguit 3 right.wav,Electric Guitar, +1,eguit 2 delay.wav,Electric Guitar, +1,eguit 2 chorus.wav,Electric Guitar, +1,eguit 1 disto.wav,Electric Guitar, +1,eguit + eguit1.wav,Electric Guitar, +1,eguit (right).wav,Electric Guitar, +1,eguit (muted).wav,Electric Guitar, +1,eguit (left).wav,Electric Guitar, +1,eguit (feft).wav,Electric Guitar, +1,egui solos.wav,Electric Guitar, +1,egtrslides.wav,Electric Guitar, +1,egtr4 clean right.wav,Electric Guitar, +1,egtr4 (delay).wav,Electric Guitar, +1,egtr3 right.wav,Electric Guitar, +1,egtr3 left.wav,Electric Guitar, +1,egtr3 delay.wav,Electric Guitar, +1,egtr2+6 (palm muted).wav,Electric Guitar, +1,egtr1+3.wav,Electric Guitar, +1,egtr1 muted.wav,Electric Guitar, +1,egtr fx.wav,Electric Guitar, +1,egt 4.wav,Electric Guitar, +1,egsolo2.wav,Electric Guitar, +1,egsolo right.wav,Electric Guitar, +1,egsolo + disto2.wav,Electric Guitar, +1,egslidesolo.wav,Electric Guitar, +1,egslide+egtreble.wav,Electric Guitar, +1,egsdisto.wav,Electric Guitar, +1,egscrunch.wav,Electric Guitar, +1,egrotary.wav,Electric Guitar, +1,egriffs.wav,Electric Guitar, +1,egriff.wav,Electric Guitar, +1,egrhythm.wav,Electric Guitar, +1,egreverse.wav,Electric Guitar, +1,egr.wav,Electric Guitar, +1,egplucked.wav,Electric Guitar, +1,egoctave.wav,Electric Guitar, +1,egmute2 left.wav,Electric Guitar, +1,egmute+wah.wav,Electric Guitar, +1,eglick.wav,Electric Guitar, +1,eglead+arr.wav,Electric Guitar, +1,eglc.wav,Electric Guitar, +1,eghamonics.wav,Electric Guitar, +1,egdistortion2.wav,Electric Guitar, +1,egdistorted.wav,Electric Guitar, +1,egdisto_treble.wav,Electric Guitar, +1,egcleanplucked r.wav,Electric Guitar, +1,egcleanhigh.wav,Electric Guitar, +1,egclean_treble.wav,Electric Guitar, +1,egclean3.wav,Electric Guitar, +1,egclean2 right.wav,Electric Guitar, +1,egclean l.wav,Electric Guitar, +1,egchorus4.wav,Electric Guitar, +1,egchorus3 left.wav,Electric Guitar, +1,egchorus1 right.wav,Electric Guitar, +1,egchords.wav,Electric Guitar, +1,egatmo2.wav,Electric Guitar, +1,egarr.wav,Electric Guitar, +1,egambient.wav,Electric Guitar, +1,eg_wha.wav,Electric Guitar, +1,eg_tremolo.wav,Electric Guitar, +1,eg_trebleclean.wav,Electric Guitar, +1,eg_talkbox.wav,Electric Guitar, +1,eg_rwha.wav,Electric Guitar, +1,eg_rslide.wav,Electric Guitar, +1,eg_raddcrunch.wav,Electric Guitar, +1,eg_r2.wav,Electric Guitar, +1,eg_r(wha).wav,Electric Guitar, +1,eg_r(harmo).wav,Electric Guitar, +1,eg_r(clean).wav,Electric Guitar, +1,eg_lwha.wav,Electric Guitar, +1,eg_laddcrunch.wav,Electric Guitar, +1,eg_l_rlead.wav,Electric Guitar, +1,eg_l2clean.wav,Electric Guitar, +1,eg_l2.wav,Electric Guitar, +1,eg_l+r.wav,Electric Guitar, +1,eg_l(wha).wav,Electric Guitar, +1,eg_l(rotary).wav,Electric Guitar, +1,eg_l(clean).wav,Electric Guitar, +1,eg_1.wav,Electric Guitar, +1,eg_(solo).wav,Electric Guitar, +1,eg9.wav,Electric Guitar, +1,eg8.wav,Electric Guitar, +1,eg7 left.wav,Electric Guitar, +1,eg6 solos.wav,Electric Guitar, +1,eg5 melo.wav,Electric Guitar, +1,eg5 left.wav,Electric Guitar, +1,eg5 c.wav,Electric Guitar, +1,eg4 right.wav,Electric Guitar, +1,eg4 r.wav,Electric Guitar, +1,eg4 melo.wav,Electric Guitar, +1,eg4 c solo.wav,Electric Guitar, +1,eg3lead.wav,Electric Guitar, +1,eg3 l.wav,Electric Guitar, +1,eg3 intro effect right.wav,Electric Guitar, +1,eg3 c clean.wav,Electric Guitar, +1,eg2disto.wav,Electric Guitar, +1,eg2+3.wav,Electric Guitar, +1,eg2 r.wav,Electric Guitar, +1,eg2 muted.wav,Electric Guitar, +1,eg2 left.wav,Electric Guitar, +1,eg2 l base 1.wav,Electric Guitar, +1,eg2 intro effect left.wav,Electric Guitar, +1,eg2 + eg6.wav,Electric Guitar, +1,eg10.wav,Electric Guitar, +1,eg1+adds.wav,Electric Guitar, +1,eg1+2.wav,Electric Guitar, +1,eg1 intro effect.wav,Electric Guitar, +1,eg1 clean.wav,Electric Guitar, +1,eg1 c.wav,Electric Guitar, +1,eg1 c base 2.wav,Electric Guitar, +1,eg1 c base 1.wav,Electric Guitar, +1,eg1 c arreglo.wav,Electric Guitar, +1,eg1 bright.wav,Electric Guitar, +1,eg02.wav,Electric Guitar, +1,eg01.wav,Electric Guitar, +1,eg-.wav,Electric Guitar, +1,eg+treble.wav,Electric Guitar, +1,eg(whammy).wav,Electric Guitar, +1,eg(temolo).wav,Electric Guitar, +1,eg(solo) 2.wav,Electric Guitar, +1,eg(solo) 1.wav,Electric Guitar, +1,eg(slide).wav,Electric Guitar, +1,eg(rotary).wav,Electric Guitar, +1,eg(rhy).wav,Electric Guitar, +1,eg(perc).wav,Electric Guitar, +1,eg(lead)add.wav,Electric Guitar, +1,eg(lead)).wav,Electric Guitar, +1,eg(lead) 1.wav,Electric Guitar, +1,eg(lead) 1 left.wav,Electric Guitar, +1,eg(filter).wav,Electric Guitar, +1,eg(drive).wav,Electric Guitar, +1,eg(disto)_r.wav,Electric Guitar, +1,eg(disto)_l.wav,Electric Guitar, +1,eg(clean)_2.wav,Electric Guitar, +1,eg(baritone).wav,Electric Guitar, +1,eg(addsolo).wav,Electric Guitar, +1,eg wha.wav,Electric Guitar, +1,eg wah-wah.wav,Electric Guitar, +1,eg wah wah.wav,Electric Guitar, +1,eg vynil.wav,Electric Guitar, +1,eg trs cocotte.wav,Electric Guitar, +1,eg trem + fx.wav,Electric Guitar, +1,eg theme.wav,Electric Guitar, +1,eg synth.wav,Electric Guitar, +1,eg strum.wav,Electric Guitar, +1,eg solos.wav,Electric Guitar, +1,eg solo 3.wav,Electric Guitar, +1,eg solo 1+2.wav,Electric Guitar, +1,eg solo 1 + 2.wav,Electric Guitar, +1,eg slide solo.wav,Electric Guitar, +1,eg slide + fx + 11 + 4 + clean + 14 + 3.wav,Electric Guitar, +1,eg slade.wav,Electric Guitar, +1,eg rythm 02.wav,Electric Guitar, +1,eg rythm 01.wav,Electric Guitar, +1,eg riff 1 + 2.wav,Electric Guitar, +1,eg rhythmic.wav,Electric Guitar, +1,eg rhythmic 04.wav,Electric Guitar, +1,eg rhythmic 02.wav,Electric Guitar, +1,eg rhythmic 01.wav,Electric Guitar, +1,eg rhythm l + r.wav,Electric Guitar, +1,eg rhythm + adds.wav,Electric Guitar, +1,eg reverse l + r.wav,Electric Guitar, +1,eg reverb.wav,Electric Guitar, +1,eg r 2 fx.wav,Electric Guitar, +1,eg powerchords.wav,Electric Guitar, +1,eg pick theme.wav,Electric Guitar, +1,eg phaser 1 + 2.wav,Electric Guitar, +1,eg pedal.wav,Electric Guitar, +1,eg overdub.wav,Electric Guitar, +1,eg od 01.wav,Electric Guitar, +1,eg muted + solo.wav,Electric Guitar, +1,eg mute + chords 1.wav,Electric Guitar, +1,eg mix chorus 1 + 2.wav,Electric Guitar, +1,eg melody.wav,Electric Guitar, +1,eg main rhythms.wav,Electric Guitar, +1,eg main 1+eg stereo.wav,Electric Guitar, +1,eg licks.wav,Electric Guitar, +1,eg leads.wav,Electric Guitar, +1,eg lead l + r.wav,Electric Guitar, +1,eg lead 2 right.wav,Electric Guitar, +1,eg lead 1 left.wav,Electric Guitar, +1,eg lead 03.wav,Electric Guitar, +1,eg lead 03 end.wav,Electric Guitar, +1,eg l arr.wav,Electric Guitar, +1,eg l + r.wav,Electric Guitar, +1,eg intro + verses.wav,Electric Guitar, +1,eg harmonics.wav,Electric Guitar, +1,eg fx ambiance.wav,Electric Guitar, +1,eg fx + atmo + mute.wav,Electric Guitar, +1,eg fuzz.wav,Electric Guitar, +1,eg fuzz right.wav,Electric Guitar, +1,eg fuzz left.wav,Electric Guitar, +1,eg flanger.wav,Electric Guitar, +1,eg fb.wav,Electric Guitar, +1,eg est.wav,Electric Guitar, +1,eg end right + solo left.wav,Electric Guitar, +1,eg end left + harm.wav,Electric Guitar, +1,eg eg.wav,Electric Guitar, +1,eg dly.wav,Electric Guitar, +1,eg dist low.wav,Electric Guitar, +1,eg dist base.wav,Electric Guitar, +1,eg dist arr.wav,Electric Guitar, +1,eg dist adds.wav,Electric Guitar, +1,eg dist adds 2.wav,Electric Guitar, +1,eg dist adds 1.wav,Electric Guitar, +1,eg dist 4+5.wav,Electric Guitar, +1,eg dist 2.wav,Electric Guitar, +1,eg dist 1.wav,Electric Guitar, +1,eg dist 1+2+3.wav,Electric Guitar, +1,eg dist 1 + 2.wav,Electric Guitar, +1,eg dist 09 solo.wav,Electric Guitar, +1,eg dist 04+05.wav,Electric Guitar, +1,eg dist 04 solo.wav,Electric Guitar, +1,eg dist 03 right.wav,Electric Guitar, +1,eg dist 03 arr.wav,Electric Guitar, +1,eg dist 03 (right).wav,Electric Guitar, +1,eg dist 02 (left).wav,Electric Guitar, +1,eg dist 01+02+03.wav,Electric Guitar, +1,eg dist 01 right.wav,Electric Guitar, +1,eg dist 01 left.wav,Electric Guitar, +1,eg dis rhythm 2.wav,Electric Guitar, +1,eg dis rhythm 1.wav,Electric Guitar, +1,eg dis c.wav,Electric Guitar, +1,eg dis arr.wav,Electric Guitar, +1,eg dis 2.wav,Electric Guitar, +1,eg delay.wav,Electric Guitar, +1,eg delay fx 1+2.wav,Electric Guitar, +1,eg d.wav,Electric Guitar, +1,eg d right.wav,Electric Guitar, +1,eg crunch r.wav,Electric Guitar, +1,eg crunch left.wav,Electric Guitar, +1,eg crunch l.wav,Electric Guitar, +1,eg crunch l+r.wav,Electric Guitar, +1,eg crunch guitar + reverse guit center + rhythm 2.wav,Electric Guitar, +1,eg crunch arr.wav,Electric Guitar, +1,eg crunch 02 end.wav,Electric Guitar, +1,eg crunch + solo.wav,Electric Guitar, +1,eg crunch + l.wav,Electric Guitar, +1,eg crunch + ctr.wav,Electric Guitar, +1,eg crazy.wav,Electric Guitar, +1,eg clean right + left + delay right + fx left.wav,Electric Guitar, +1,eg clean right + add 3.wav,Electric Guitar, +1,eg clean rhythm left + clean rhythm right.wav,Electric Guitar, +1,eg clean l+r.wav,Electric Guitar, +1,eg clean intro.wav,Electric Guitar, +1,eg clean delay l+r.wav,Electric Guitar, +1,eg clean chorus.wav,Electric Guitar, +1,eg clean center + rhythm center.wav,Electric Guitar, +1,eg clean 4 + 5.wav,Electric Guitar, +1,eg clean 2+3+4.wav,Electric Guitar, +1,eg clean 2 l+r.wav,Electric Guitar, +1,eg clean 10.wav,Electric Guitar, +1,eg clean 1+2.wav,Electric Guitar, +1,eg clean 1 l+r.wav,Electric Guitar, +1,eg clean 1 + 2.wav,Electric Guitar, +1,eg clean 09.wav,Electric Guitar, +1,eg clean 09+dist 06.wav,Electric Guitar, +1,eg clean 08.wav,Electric Guitar, +1,eg clean 07.wav,Electric Guitar, +1,eg clean 07+08.wav,Electric Guitar, +1,eg clean 05.wav,Electric Guitar, +1,eg clean 04.wav,Electric Guitar, +1,eg clean 04+05.wav,Electric Guitar, +1,eg clean 03+06.wav,Electric Guitar, +1,eg clean 02 intro.wav,Electric Guitar, +1,eg clean 01+02.wav,Electric Guitar, +1,eg clean 01 left.wav,Electric Guitar, +1,eg clean + theme.wav,Electric Guitar, +1,eg cl 2.wav,Electric Guitar, +1,eg cl 1.wav,Electric Guitar, +1,eg chorus 2.wav,Electric Guitar, +1,eg chorus 1.wav,Electric Guitar, +1,eg chords 2.wav,Electric Guitar, +1,eg chord.wav,Electric Guitar, +1,eg cho.wav,Electric Guitar, +1,eg center.wav,Electric Guitar, +1,eg c fuzz.wav,Electric Guitar, +1,eg c 2.wav,Electric Guitar, +1,eg base.wav,Electric Guitar, +1,eg b 1.wav,Electric Guitar, +1,eg arrangement.wav,Electric Guitar, +1,eg arrangement 03.wav,Electric Guitar, +1,eg arr 4.wav,Electric Guitar, +1,eg arr 2 right.wav,Electric Guitar, +1,eg arr 12.wav,Electric Guitar, +1,eg arr 02.wav,Electric Guitar, +1,eg arr 01.wav,Electric Guitar, +1,eg arp.wav,Electric Guitar, +1,eg ambient chords.wav,Electric Guitar, +1,eg adds r.wav,Electric Guitar, +1,eg adds l.wav,Electric Guitar, +1,eg adds glitch.wav,Electric Guitar, +1,eg adds 2 l.wav,Electric Guitar, +1,eg adds 1 r.wav,Electric Guitar, +1,eg addlib.wav,Electric Guitar, +1,eg add.wav,Electric Guitar, +1,eg add ab.wav,Electric Guitar, +1,eg add 2.wav,Electric Guitar, +1,eg add 1.wav,Electric Guitar, +1,eg add 1 + arr l.wav,Electric Guitar, +1,eg add + arr 4.wav,Electric Guitar, +1,eg 9 right.wav,Electric Guitar, +1,eg 8+9+11+12+13.wav,Electric Guitar, +1,eg 8 left.wav,Electric Guitar, +1,eg 8 - 9.wav,Electric Guitar, +1,eg 8 + 9 + 10.wav,Electric Guitar, +1,eg 7+14+15.wav,Electric Guitar, +1,eg 7 reverb.wav,Electric Guitar, +1,eg 7 left.wav,Electric Guitar, +1,eg 6 right.wav,Electric Guitar, +1,eg 6 muted.wav,Electric Guitar, +1,eg 6 left.wav,Electric Guitar, +1,eg 6 end.wav,Electric Guitar, +1,eg 6 arr.wav,Electric Guitar, +1,eg 6 + 8.wav,Electric Guitar, +1,eg 567.wav,Electric Guitar, +1,eg 5+6.wav,Electric Guitar, +1,eg 5+6+8+9+10.wav,Electric Guitar, +1,eg 5+6+7.wav,Electric Guitar, +1,eg 5 center.wav,Electric Guitar, +1,eg 5 add arp.wav,Electric Guitar, +1,eg 5 + 9 + 10 + 11.wav,Electric Guitar, +1,eg 5 + 8.wav,Electric Guitar, +1,eg 5 + 8 disto + solo.wav,Electric Guitar, +1,eg 5 + 6 + 7.wav,Electric Guitar, +1,eg 5 (chords).wav,Electric Guitar, +1,eg 46.wav,Electric Guitar, +1,eg 4+9.wav,Electric Guitar, +1,eg 4+7.wav,Electric Guitar, +1,eg 4+5.wav,Electric Guitar, +1,eg 4 l+r.wav,Electric Guitar, +1,eg 4 + solo.wav,Electric Guitar, +1,eg 4 + 7 (clean right).wav,Electric Guitar, +1,eg 3+8+11+14.wav,Electric Guitar, +1,eg 3+4.wav,Electric Guitar, +1,eg 3+10.wav,Electric Guitar, +1,eg 3 solos.wav,Electric Guitar, +1,eg 3 right end.wav,Electric Guitar, +1,eg 3 muted right.wav,Electric Guitar, +1,eg 3 left rythm.wav,Electric Guitar, +1,eg 3 l.wav,Electric Guitar, +1,eg 3 arr.wav,Electric Guitar, +1,eg 3 + 5 + 8.wav,Electric Guitar, +1,eg 3 + 4 + 7.wav,Electric Guitar, +1,eg 3 + 10 + 11.wav,Electric Guitar, +1,eg 3 (r).wav,Electric Guitar, +1,eg 2lead.wav,Electric Guitar, +1,eg 2+wahwah.wav,Electric Guitar, +1,eg 2+5.wav,Electric Guitar, +1,eg 2 whawha.wav,Electric Guitar, +1,eg 2 r.wav,Electric Guitar, +1,eg 2 muted.wav,Electric Guitar, +1,eg 2 muted right.wav,Electric Guitar, +1,eg 2 muted left.wav,Electric Guitar, +1,eg 2 left end.wav,Electric Guitar, +1,eg 2 l.wav,Electric Guitar, +1,eg 2 intro.wav,Electric Guitar, +1,eg 2 intro r.wav,Electric Guitar, +1,eg 2 disto + eg lead 1 + eg lead 2.wav,Electric Guitar, +1,eg 2 dis.wav,Electric Guitar, +1,eg 2 delay right.wav,Electric Guitar, +1,eg 2 delay end.wav,Electric Guitar, +1,eg 2 background.wav,Electric Guitar, +1,eg 2 + 6 + 7 + 8.wav,Electric Guitar, +1,eg 2 + 3 + 4 + 9.wav,Electric Guitar, +1,eg 2 (l).wav,Electric Guitar, +1,eg 13.wav,Electric Guitar, +1,eg 12+13+15.wav,Electric Guitar, +1,eg 12 + 13.wav,Electric Guitar, +1,eg 10.wav,Electric Guitar, +1,eg 1+2+6.wav,Electric Guitar, +1,eg 1+2+6+7+10.wav,Electric Guitar, +1,eg 1+2 lr.wav,Electric Guitar, +1,eg 1 tremolo.wav,Electric Guitar, +1,eg 1 r.wav,Electric Guitar, +1,eg 1 muted left.wav,Electric Guitar, +1,eg 1 left phaser.wav,Electric Guitar, +1,eg 1 l.wav,Electric Guitar, +1,eg 1 intro.wav,Electric Guitar, +1,eg 1 fx.wav,Electric Guitar, +1,eg 1 end.wav,Electric Guitar, +1,eg 1 + eg 3fx.wav,Electric Guitar, +1,eg 1 + 5 +10.wav,Electric Guitar, +1,eg 1 + 4.wav,Electric Guitar, +1,eg 1 + 2 muted.wav,Electric Guitar, +1,eg 1 + 2 + slide.wav,Electric Guitar, +1,eg 1 + 2 + 5.wav,Electric Guitar, +1,eg 1 + 2 (theme).wav,Electric Guitar, +1,eg 08.wav,Electric Guitar, +1,eg 07.wav,Electric Guitar, +1,eg 06+03.wav,Electric Guitar, +1,eg 04 solo.wav,Electric Guitar, +1,eg 04 left+right.wav,Electric Guitar, +1,eg 03 right.wav,Electric Guitar, +1,eg 03 left.wav,Electric Guitar, +1,eg 03 intro.wav,Electric Guitar, +1,eg 02 muted.wav,Electric Guitar, +1,eg 01 left.wav,Electric Guitar, +1,eg 01 left+right.wav,Electric Guitar, +1,eg 01 crunch.wav,Electric Guitar, +1,eg 01 ambiance.wav,Electric Guitar, +1,eg (palm mute) 2.wav,Electric Guitar, +1,eg (palm mute) 1.wav,Electric Guitar, +1,efxgt.wav,Other, +1,efx_perc.wav,Other, +1,efx(rain).wav,Other, +1,efx(crowd).wav,Other, +1,efx intro.wav,Other, +1,efx drop.wav,Other, +1,efx birds.wav,Other, +1,effet synthe.wav,Other, +1,effectguitar 3.wav,Other, +1,effectgtr 3.wav,Other, +1,effect.wav,Other, +1,edrums and shak.wav,Other, +1,edroite.wav,Other, +1,ed fletcher.wav,Other, +1,e.wav,Other, +1,e.piano.wav,Other, +1,e.gtr.wav,Other, +1,e.d.i. mean.wav,Other, +1,e-git lead.wav,Other, +1,e-drums.wav,Other, +1,e-drums&percs.wav,Other, +1,e-40-adlib.wav,Other, +1,e piano-1.wav,Other, +1,e piano solo.wav,Other, +1,e piano arr.wav,Other, +1,e keys 2.wav,Other, +1,e guitars.wav,Electric Guitar, +1,e guitar solo 2.wav,Electric Guitar, +1,e guitar solo 1.wav,Electric Guitar, +1,e guitar solo 1 r.wav,Electric Guitar, +1,e guitar solo 1 l.wav,Electric Guitar, +1,e guitar right.wav,Electric Guitar, +1,e guitar rhytmic.wav,Electric Guitar, +1,e guitar rhytmic disto 3.wav,Electric Guitar, +1,e guitar rhytmic disto 2.wav,Electric Guitar, +1,e guitar rhytmic disto 1.wav,Electric Guitar, +1,e guitar rhytmic crunch.wav,Electric Guitar, +1,e guitar open.wav,Electric Guitar, +1,e guitar muted.wav,Electric Guitar, +1,e guitar left.wav,Electric Guitar, +1,e guitar fx.wav,Electric Guitar, +1,e guitar fuzz.wav,Electric Guitar, +1,e guitar disto 3 r.wav,Electric Guitar, +1,e guitar disto 3 l.wav,Electric Guitar, +1,e guitar disto 2 r.wav,Electric Guitar, +1,e guitar disto 2 l.wav,Electric Guitar, +1,e guitar disto 1 r.wav,Electric Guitar, +1,e guitar disto 1 l.wav,Electric Guitar, +1,e guitar clean.wav,Electric Guitar, +1,e guitar c.wav,Electric Guitar, +1,e guitar arragement clean 2.wav,Electric Guitar, +1,e guitar arragement 3.wav,Electric Guitar, +1,e guitar 6.wav,Electric Guitar, +1,e guitar 5.wav,Electric Guitar, +1,e guitar 4r.wav,Electric Guitar, +1,e guitar 4 chords.wav,Electric Guitar, +1,e guitar 3 r.wav,Electric Guitar, +1,e guitar 3 l.wav,Electric Guitar, +1,e guitar 2 muted.wav,Electric Guitar, +1,e guitar 2 l.wav,Electric Guitar, +1,e guitar 2 c.wav,Electric Guitar, +1,e guitar 1 r.wav,Electric Guitar, +1,e guitar 04.wav,Electric Guitar, +1,e guitar 03 c.wav,Electric Guitar, +1,e guitar 02 r.wav,Electric Guitar, +1,e guitar 01 l.wav,Electric Guitar, +1,e guit 3.wav,Electric Guitar, +1,e guit 2.wav,Electric Guitar, +1,e guit 1.wav,Electric Guitar, +1,e gtr2.wav,Electric Guitar, +1,e gtr clean.wav,Electric Guitar, +1,e gtr 3.wav,Electric Guitar, +1,e gtr 2 right.wav,Electric Guitar, +1,e gtr 1 left.wav,Electric Guitar, +1,dx piano.wav,Other, +1,dwele.wav,Other, +1,dv2.wav,Other, +1,dv and adds.wav,Other, +1,dustin lynch.wav,Other, +1,dums.wav,Other, +1,dukcimer.wav,Other, +1,ducked basses.wav,Other, +1,dubstep.wav,Other, +1,dub synth.wav,Other, +1,dub synth-new-full.wav,Other, +1,dub bass.wav,Other, +1,drumsperc.wav,Drums, +1,drumsbass.wav,Drums, +1,drums_ok.wav,Drums, +1,drums_electric.wav,Drums, +1,drums2.wav,Drums, +1,drums1+2.wav,Drums, +1,drums.cm.wav,Drums, +1,drums-toms.wav,Drums, +1,drums+tambourinemix.wav,Drums, +1,drums+perc.wav,Drums, +1,drums+fx street.wav,Drums, +1,drums+edrums.wav,Drums, +1,drums+claps.wav,Drums, +1,drums(el.kit).wav,Drums, +1,drums(ac.kit).wav,Drums, +1,drums without clap.wav,Drums, +1,drums percs fx.wav,Drums, +1,drums perc.wav,Drums, +1,drums mixmaster.wav,Drums, +1,drums loop.wav,Drums, +1,drums loop+percs+fx.wav,Drums, +1,drums kick.wav,Drums, +1,drums electronic.wav,Drums, +1,drums elec mixmaster.wav,Drums, +1,drums eb 140bpm.wav,Drums, +1,drums and toms.wav,Drums, +1,drums and tambourine.wav,Drums, +1,drums and percs.wav,Drums, +1,drums and perc.wav,Drums, +1,drums and loop end.wav,Drums, +1,drums and eurodance.wav,Drums, +1,drums and cymb.wav,Drums, +1,drums 102bpm.wav,Drums, +1,drums 1 + 2.wav,Drums, +1,drums (loop).wav,Drums, +1,drums & percs.wav,Drums, +1,drum&perc.wav,Drums, +1,drum set 2 left.wav,Drums, +1,drum set 1 right.wav,Drums, +1,drum kit 2.wav,Drums, +1,drum kit 1.wav,Drums, +1,drum and dradds.wav,Drums, +1,drum (loop).wav,Drums, +1,drop_synth.wav,Other, +1,droiteguitar.wav,Other, +1,drivegt 2.wav,Other, +1,drive by.wav,Other, +1,drievgt 3.wav,Other, +1,drievgt 2.wav,Other, +1,drel.wav,Other, +1,dre synth.wav,Other, +1,drama_synth_1.wav,Other, +1,dragonball_s_synth_leads.wav,Other, +1,dragonball_s_orch_strings.wav,Other, +1,dragonball_s_orch_percussion_timpanis.wav,Other, +1,dragonball_s_orch_percussion_edit.wav,Other, +1,dragonball_s_orch_harp.wav,Other, +1,dragonball_s_lv.wav,Other, +1,dragonball_s_guitars_rhythm.wav,Other, +1,dragonball_s_guitars_lead.wav,Other, +1,dragonball_s_guitar_dub_02.wav,Other, +1,dragonball_s_guitar_dub_01.wav,Other, +1,dragonball_s_drums.wav,Other, +1,dragonball_s_bv.wav,Other, +1,dragonball_s_bass.wav,Other, +1,dr. dre-adlib.wav,Other, +1,dove cameron.wav,Other, +1,doubleblass.wav,Other, +1,doublebass pizzicato.wav,Other, +1,dobro slide.wav,Other, +1,dnce.wav,Other, +1,dnce-adlib.wav,Other, +1,dnb bass.wav,Other, +1,dmx.wav,Other, +1,dmc.wav,Other, +1,dlygtr.wav,Other, +1,djembe.wav,Other, +1,dj.wav,Other, +1,dj trick + woosh + moog.wav,Other, +1,dj khalid.wav,Other, +1,dj kay gee.wav,Other, +1,dj kane.wav,Other, +1,dj fx.wav,Other, +1,dj ez.wav,Other, +1,dizzee rascal.wav,Other, +1,distosynth.wav,Other, +1,distortion gtr.wav,Electric Guitar, +1,distortedguitar.wav,Electric Guitar, +1,distorted guitar.wav,Electric Guitar, +1,distorsion guitar solo.wav,Electric Guitar, +1,distoguitar 4.wav,Electric Guitar, +1,distoguitar 1.wav,Electric Guitar, +1,distogtrs1.wav,Electric Guitar, +1,distogtr23 lr.wav,Electric Guitar, +1,distogtr2.wav,Electric Guitar, +1,distogtr.wav,Electric Guitar, +1,distoelguitarstereolow.wav,Electric Guitar, +1,distoelguitarstereohigh.wav,Electric Guitar, +1,distobass and sinebass.wav,Electric Guitar, +1,disto.wav,Electric Guitar, +1,disto solo eg.wav,Electric Guitar, +1,disto right gtr 4.wav,Electric Guitar, +1,disto right gtr 2.wav,Electric Guitar, +1,disto right eg.wav,Electric Guitar, +1,disto mono center eg.wav,Electric Guitar, +1,disto left gtr 3.wav,Electric Guitar, +1,disto left gtr 1.wav,Electric Guitar, +1,disto left eg.wav,Electric Guitar, +1,disto guitar.wav,Electric Guitar, +1,disto guit.wav,Electric Guitar, +1,disto gtrs.wav,Electric Guitar, +1,disto gtr2.wav,Electric Guitar, +1,disto eg2.wav,Electric Guitar, +1,disto ass lead.wav,Electric Guitar, +1,distleadguitar.wav,Electric Guitar, +1,distguitardelay.wav,Electric Guitar, +1,distguitar.wav,Electric Guitar, +1,distgtrs.wav,Electric Guitar, +1,dist_guitars.wav,Electric Guitar, +1,dist. guitar.wav,Electric Guitar, +1,dist guitar.wav,Electric Guitar, +1,dis right.wav,Electric Guitar, +1,dirty hypersaw resosub wooble.wav,Electric Guitar, +1,dirty guits.wav,Electric Guitar, +1,dinco d.wav,Other, +1,digital_piano.wav,Other, +1,digital.wav,Other, +1,digital-piano.wav,Other, +1,digital comp.wav,Other, +1,digeridoo.wav,Other, +1,dig piano.wav,Other, +1,dierks bentley.wav,Other, +1,didg.wav,Other, +1,diamante.wav,Other, +1,di_guitar.wav,Other, +1,dgtr 1.wav,Other, +1,dgauche.wav,Other, +1,devin dawson.wav,Other, +1,deuce.wav,Other, +1,delaysynth.wav,Other, +1,delayguitar.wav,Other, +1,delay guit.wav,Other, +1,del the funky homosapien.wav,Other, +1,def.wav,Other, +1,decompte.wav,Other, +1,decks.wav,Other, +1,decay.wav,Other, +1,dblbass.wav,Other, +1,daw.wav,Other, +1,david guetta.wav,Other, +1,david gilmour.wav,Other, +1,david bowie.wav,Other, +1,david archuleta.wav,Other, +1,dave matthews.wav,Other, +1,dave hollister.wav,Other, +1,dave haywood.wav,Other, +1,darryl mcdaniels.wav,Other, +1,daron malakian.wav,Other, +1,dark strings.wav,Other, +1,darell.wav,Other, +1,danny worsnop.wav,Other, +1,danny worsnop-adlib.wav,Other, +1,danny boy.wav,Other, +1,daniel caesar-adlib.wav,Other, +1,dance groove.wav,Other, +1,dance basic.wav,Other, +1,dan.wav,Other, +1,dan reynolds.wav,Other, +1,dan caplen.wav,Other, +1,damon albarn.wav,Other, +1,damon albarn-adlib.wav,Other, +1,damien rice.wav,Other, +1,daddy yankee.wav,Other, +1,dacus.wav,Other, +1,da kurlzz.wav,Other, +1,d50.wav,Other, +1,d50 staccato heaven.wav,Other, +1,d.o.e..wav,Other, +1,d-roc.wav,Other, +1,cymbs.wav,Other, +1,cymbalum.wav,Other, +1,cymbal.wav,Other, +1,curtis harding.wav,Other, +1,cuivres.wav,Other, +1,cuica.wav,Other, +1,cuatro.wav,Other, +1,cuatro-.wav,Other, +1,crystal rhodes.wav,Other, +1,crush decay.wav,Other, +1,crunchy black.wav,Other, +1,crunchgtr.wav,Other, +1,crunchgt.wav,Other, +1,crunch wahwah eg.wav,Other, +1,crunch strumming eg.wav,Other, +1,crunch right eg.wav,Other, +1,crunch arpeggio eg.wav,Other, +1,crunch left eg.wav,Other, +1,crowd voices.wav,Other, +1,cris pad.wav,Other, +1,crickets.wav,Other, +1,crescendo.wav,Other, +1,crash.wav,Other, +1,crack.wav,Other, +1,cp rhodes.wav,Other, +1,cp piano.wav,Other, +1,cp 80.wav,Other, +1,courtney laplante.wav,Other, +1,countoff.wav,Other, +1,counting crows.wav,Other, +1,counter gtr.wav,Other, +1,countdown.wav,Other, +1,count_&_fx.wav,Other, +1,corona.wav,Other, +1,conway twitty.wav,Other, +1,contrebasse.wav,Other, +1,compusaw.wav,Other, +1,colter wall.wav,Other, +1,collective soul - shine - lv.wav,Other, +1,collective soul - shine - guitar 3.wav,Other, +1,collective soul - shine - guitar 2.wav,Other, +1,collective soul - shine - guitar 1.wav,Other, +1,collective soul - shine - drum.wav,Other, +1,collective soul - shine - bv.wav,Other, +1,collective soul - shine - bass.wav,Other, +1,collective soul - shine - acc guitar.wav,Other, +1,coldplay.wav,Other, +1,cody wise.wav,Other, +1,cody chesnutt.wav,Other, +1,cloud_shimmer.wav,Other, +1,clock.wav,Other, +1,cloches.wav,Other, +1,clngtrs.wav,Other, +1,clicks.wav,Other, +1,click2.wav,Other, +1,clic.wav,Other, +1,cleanguitardelay.wav,Electric Guitar, +1,cleanguitar 3.wav,Electric Guitar, +1,cleanguitar 2.wav,Electric Guitar, +1,cleangtr.wav,Electric Guitar, +1,cleangt left.wav,Electric Guitar, +1,cleangt 3.wav,Electric Guitar, +1,cleangt 2 right.wav,Electric Guitar, +1,clean wahwha eg.wav,Electric Guitar, +1,clean right eggtr 2.wav,Electric Guitar, +1,clean right eg.wav,Electric Guitar, +1,clean mute.wav,Electric Guitar, +1,clean left eg.wav,Electric Guitar, +1,clean left eg.wav,Electric Guitar, +1,clean guitars.wav,Electric Guitar, +1,clean guitar 2.wav,Electric Guitar, +1,clean guit.wav,Electric Guitar, +1,clean guit delay.wav,Electric Guitar, +1,clean gtrs.wav,Electric Guitar, +1,clean gtr1.wav,Electric Guitar, +1,clean gtr 2.wav,Electric Guitar, +1,clean gtr 1.wav,Electric Guitar, +1,clean gt.wav,Electric Guitar, +1,clean gt 2.wav,Electric Guitar, +1,clean funk eg.wav,Electric Guitar, +1,clean electric gtr.wav,Electric Guitar, +1,clean e.guitar.wav,Electric Guitar, +1,clean center eg.wav,Electric Guitar, +1,clean arr eg.wav,Electric Guitar, +1,clean arp right eg.wav,Electric Guitar, +1,clavinets.wav,Keyboard,Clavinet +1,clavinet+glock.wav,Keyboard,Clavinet +1,clavinet synth.wav,Keyboard,Clavinet +1,clavinet ep.wav,Keyboard,Clavinet +1,clavinet 1.wav,Keyboard,Clavinet +1,clavinet 1 left.wav,Keyboard,Clavinet +1,clavier and lead.wav,Keyboard,Clavinet +1,clavi piano.wav,Keyboard,Clavinet +1,claves.wav,Keyboard,Clavinet +1,clav synths.wav,Keyboard,Clavinet +1,clav synth.wav,Keyboard,Clavinet +1,classical solo guitar right.wav,Other, +1,classical solo guitar left.wav,Other, +1,classical rhythm guitarwav.wav,Other, +1,classic guitar.wav,Other, +1,clarnet.wav,Other, +1,clarinet 2.wav,Other, +1,clarinet 1.wav,Other, +1,claps-01.wav,Other,Claps +1,claps+sfx.wav,Other,Claps +1,claps+rise.wav,Other,Claps +1,claps and snaps.wav,Other,Claps +1,claps & hats.wav,Other,Claps +1,clapp.wav,Other,Claps +1,clap fx.wav,Other,Claps +1,clap crowd.wav,Other,Claps +1,cl.wav,Other, +1,city girls.wav,Other, +1,cindy wilson.wav,Other, +1,cicus.wav,Other, +1,chuggtrdelay.wav,Other, +1,chrome.wav,Other, +1,chrom perc+bells.wav,Other, +1,chris stapleton.wav,Other, +1,chris martin.wav,Other, +1,chris brown-adlib.wav,Other, +1,chorusldguitar.wav,Other, +1,choruslayersynth.wav,Other, +1,chorusgtr+filtered.wav,Other, +1,chorusdistguitar.wav,Other, +1,chorusacoustic2.wav,Other, +1,chorusacoustic.wav,Other, +1,chorus guitar.wav,Other, +1,chorld.wav,Other, +1,chordsynth.wav,Other, +1,chord synth.wav,Other, +1,choirsynth.wav,Other, +1,choir_strings_synth.wav,Other, +1,choir vst.wav,Other, +1,choir synth.wav,Other, +1,choir synth mixmaster.wav,Other, +1,choir pad 12.wav,Other, +1,choir bv.wav,Other, +1,choir ahhs.wav,Other, +1,choeurs_the_cars_good_times_roll.wav,Other, +1,choeurs_stone_temple_pilots_dead_and_bloated.wav,Other, +1,chiquis rivera.wav,Other, +1,chior.wav,Other, +1,chimes timbales.wav,Other, +1,chilli.wav,Other, +1,child_voice.wav,Other, +1,chicago sufjan stevens wurlitzer right.wav,Other, +1,chicago sufjan stevens wurlitzer 2 left.wav,Other, +1,chicago sufjan stevens vibraphone.wav,Other, +1,chicago sufjan stevens trumpet.wav,Other, +1,chicago sufjan stevens strings section.wav,Other, +1,chicago sufjan stevens rhodes.wav,Other, +1,chicago sufjan stevens perc.wav,Other, +1,chicago sufjan stevens ld.wav,Other, +1,chicago sufjan stevens drums.wav,Other, +1,chicago sufjan stevens bv.wav,Other, +1,chicago sufjan stevens bass.wav,Other, +1,chicago sufjan stevens a guitar 2.wav,Other, +1,chicago sufjan stevens a guitar 1.wav,Other, +1,cher lloyd.wav,Other, +1,chencho corleone.wav,Other, +1,cheesey synth.wav,Other, +1,chat vox crowd.wav,Other, +1,charlie chaplin sample.wav,Other, +1,charlie brown.wav,Other, +1,charli xcx.wav,Other, +1,charlez aznavour.wav,Other, +1,chantolina.wav,Other, +1,chant.wav,Other, +1,centergtr 6.wav,Electric Guitar, +1,centergtr 5.wav,Electric Guitar, +1,centergtr 4.wav,Electric Guitar, +1,centergtr 2.wav,Electric Guitar, +1,centergtr 1.wav,Electric Guitar, +1,center gtr 5.wav,Electric Guitar, +1,center gtr 3.wav,Electric Guitar, +1,center gtr 1.wav,Electric Guitar, +1,center gtr 3.wav,Electric Guitar, +1,center clean rhythmic eg.wav,Electric Guitar, +1,cello lead.wav,Cello, +1,cello 02.wav,Cello, +1,cello 01.wav,Cello, +1,celli.wav,Cello, +1,celine dion.wav,Other, +1,celine dion-adlib.wav,Other, +1,celesta_1.wav,Other, +1,cav.wav,Other, +1,casting synth 3.wav,Other, +1,casting synth 2.wav,Other, +1,casting synth 1.wav,Other, +1,casting strings.wav,Other, +1,casting piano.wav,Other, +1,casting lv.wav,Other, +1,casting guitar 3.wav,Other, +1,casting guitar 2.wav,Other, +1,casting guitar 1.wav,Other, +1,casting drum.wav,Other, +1,casting crowns.wav,Other, +1,casting crowns-adlib.wav,Other, +1,casting bv.wav,Other, +1,casting brass.wav,Other, +1,casting bass.wav,Other, +1,casting acc guitar.wav,Other, +1,castaznets.wav,Other, +1,castanets.wav,Other, +1,cassadee pope.wav,Other, +1,casper.wav,Other, +1,carter beauford.wav,Other, +1,carly pearce.wav,Other, +1,carlprit.wav,Other, +1,carlos vives.wav,Other, +1,cardi b bv.wav,Other, +1,car fx_synth.wav,Other, +1,calvin harris.wav,Other, +1,calliope.wav,Other, +1,cajon flamenco.wav,Other, +1,cabasa.wav,Other, +1,c.wav,Other, +1,c gtr.wav,Other, +1,bvs speak and fx.wav,Voice,Backing +1,bvs female.wav,Voice,Backing +1,bvs and fx bvs.wav,Voice,Backing +1,bvs and adds.wav,Voice,Backing +1,bvox only-1.wav,Voice,Backing +1,bvox ok.wav,Voice,Backing +1,bvnew.wav,Voice,Backing +1,bvmix.wav,Voice,Backing +1,bvgr.wav,Voice,Backing +1,bv_weeknd.wav,Voice,Backing +1,bv_rap.wav,Voice,Backing +1,bv_ok.wav,Voice,Backing +1,bv_male.wav,Voice,Backing +1,bv_male mix.wav,Voice,Backing +1,bv_male 3.wav,Voice,Backing +1,bv_male 2.wav,Voice,Backing +1,bv_male 1.wav,Voice,Backing +1,bv_madonna.wav,Voice,Backing +1,bv_fem.wav,Voice,Backing +1,bv_fame.wav,Voice,Backing +1,bv_chorus.wav,Voice,Backing +1,bv_chester.wav,Voice,Backing +1,bv_anglais.wav,Voice,Backing +1,bv_2.wav,Voice,Backing +1,bv4.wav,Voice,Backing +1,bv2+3mix.wav,Voice,Backing +1,bv2 fx watchawant.wav,Voice,Backing +1,bv1 spoken oxy cotton.wav,Voice,Backing +1,bv.2.wav,Voice,Backing +1,bv..wav,Voice,Backing +1,bv-voc1+2+3mix.wav,Voice,Backing +1,bv-talkbox.wav,Voice,Backing +1,bv-male.wav,Voice,Backing +1,bv-m.a.a.d city.wav,Voice,Backing +1,bv-lyrics.wav,Voice,Backing +1,bv-girls.wav,Voice,Backing +1,bv-gimme&ahhs.wav,Voice,Backing +1,bv-boys.wav,Voice,Backing +1,bv-adds2.wav,Voice,Backing +1,bv-adds1.wav,Voice,Backing +1,bv-3.wav,Voice,Backing +1,bv-2+3mix.wav,Voice,Backing +1,bv-1 right.wav,Voice,Backing +1,bv+voc1.wav,Voice,Backing +1,bv+voc1+2bmix.wav,Voice,Backing +1,bv+voc1+1b+2bmix.wav,Voice,Backing +1,bv+ldbouble.wav,Voice,Backing +1,bv+breath.wav,Voice,Backing +1,bv+add.wav,Voice,Backing +1,bv(vocoder).wav,Voice,Backing +1,bv(solo).wav,Voice,Backing +1,bv(scream).wav,Voice,Backing +1,bv will.wav,Voice,Backing +1,bv vox.wav,Voice,Backing +1,bv vocoder.wav,Voice,Backing +1,bv stereo.wav,Voice,Backing +1,bv rap.wav,Voice,Backing +1,bv philippine.wav,Voice,Backing +1,bv ok.wav,Voice,Backing +1,bv oh.wav,Voice,Backing +1,bv nicky.wav,Voice,Backing +1,bv mix.wav,Voice,Backing +1,bv kristie 1+2.wav,Voice,Backing +1,bv intro.wav,Voice,Backing +1,bv him.wav,Voice,Backing +1,bv gospel.wav,Voice,Backing +1,bv fx.wav,Voice,Backing +1,bv fem + male.wav,Voice,Backing +1,bv eb 140bpm.wav,Voice,Backing +1,bv dv adds.wav,Voice,Backing +1,bv choir.wav,Voice,Backing +1,bv bob.wav,Voice,Backing +1,bv bass.wav,Voice,Backing +1,bv and speach.wav,Voice,Backing +1,bv and scream.wav,Voice,Backing +1,bv and sampler.wav,Voice,Backing +1,bv and da kurlzz.wav,Voice,Backing +1,bv and crowd.wav,Voice,Backing +1,bv and bv scream.wav,Voice,Backing +1,bv adds and wistling.wav,Voice,Backing +1,bv add.wav,Voice,Backing +1,bv 5.wav,Voice,Backing +1,bv 4.wav,Voice,Backing +1,bv 3.wav,Voice,Backing +1,bv 3 fx.wav,Voice,Backing +1,bv 2 r.wav,Voice,Backing +1,bv 2 megan.wav,Voice,Backing +1,bv 1+2.wav,Voice,Backing +1,bv 1 renee.wav,Voice,Backing +1,bv 1 light it up.wav,Voice,Backing +1,bv 1 l.wav,Voice,Backing +1,bv + whistle.wav,Voice,Backing +1,bv + breathing.wav,Voice,Backing +1,bv (3).wav,Voice,Backing +1,burna boy.wav,Other, +1,bun b.wav,Other, +1,bugle.wav,Other, +1,buena vista social club.wav,Other, +1,buddy guy.wav,Other, +1,bts.wav,Other, +1,bryson tiller.wav,Other, +1,brush kit.wav,Other, +1,brittni jessie.wav,Other, +1,bright synth.wav,Other, +1,bright square synth.wav,Other, +1,bright pad.wav,Other, +1,bright fuzz.wav,Other, +1,bridgers.wav,Other, +1,bridgeacoustic.wav,Other, +1,bridge synth.wav,Other, +1,brian burkheiser.wav,Other, +1,brenda russell.wav,Other, +1,brenda lee.wav,Other, +1,breland.wav,Other, +1,breaking benjamin.wav,Other, +1,brasssynth.wav,Other,Brass +1,brasshit.wav,Other,Brass +1,brasses ensemble.wav,Other,Brass +1,brass_sect.wav,Other,Brass +1,brass2 left.wav,Other,Brass +1,brass-stabs.wav,Other,Brass +1,brass,Other,Brass +1,brass+flute.wav,Other,Brass +1,brass v3.wav,Other,Brass +1,brass synths.wav,Other,Brass +1,brass strings.wav,Other,Brass +1,brass strings wind.wav,Other,Brass +1,brass solo.wav,Other,Brass +1,brass ensemble.wav,Other,Brass +1,brass end.wav,Other,Brass +1,brass emsemble.wav,Other,Brass +1,brass arr.wav,Other,Brass +1,brass and trumpet.wav,Other,Brass +1,brass 2.wav,Other,Brass +1,brass 1.wav,Other,Brass +1,brass + woodwind.wav,Other,Brass +1,brass + trombone.wav,Other,Brass +1,brases.wav,Other, +1,bras vst.wav,Other, +1,boyz ii men.wav,Other, +1,bowl.wav,Other, +1,bounce.wav,Other, +1,both pads.wav,Other, +1,boop synth.wav,Other, +1,boomfx.wav,Other, +1,boomers.wav,Other, +1,boom bass drop.wav,Other, +1,bono.wav,Other, +1,bongo.wav,Other, +1,bones.wav,Other, +1,boef.wav,Other, +1,bobby valentino.wav,Other, +1,blurgrass banjo.wav,Other, +1,blueface.wav,Other, +1,blow.wav,Other, +1,blip_synth.wav,Other, +1,blip synth.wav,Other, +1,bling bling.wav,Other, +1,blake shelton-adlib.wav,Other, +1,black eyed peas.wav,Other, +1,bkq.wav,Other, +1,bkgnds2lyrics.wav,Other, +1,bkgnds1ahhs.wav,Other, +1,bkgnds1+2mix.wav,Other, +1,bkgnds and voc 1b.wav,Other, +1,bkgnds 3.wav,Other, +1,bkgnds 2 bass.wav,Other, +1,bkgnds 123.wav,Other, +1,bkgnds 1+2.wav,Other, +1,bkgnds 1 bass.wav,Other, +1,bkgnds 1 2.wav,Other, +1,bit crush.wav,Other, +1,bit chrush synth.wav,Other, +1,birds.wav,Other, +1,billy strings.wav,Other, +1,billy ray cyrus.wav,Other, +1,billy ray cyrus-adlib.wav,Other, +1,bill champlin.wav,Other, +1,big trance.wav,Other, +1,big skye.wav,Other, +1,big sean-adlib.wav,Other, +1,big hawk.wav,Other, +1,big bank hank.wav,Other, +1,bgv maluma.wav,Other, +1,bgv becky.wav,Other, +1,bg vocals 12.wav,Other, +1,bg vocal 1.wav,Other, +1,bg knocc out.wav,Other, +1,bg female.wav,Other, +1,bg 4.wav,Other, +1,bg 3effect.wav,Other, +1,bg 2.wav,Other, +1,beyonce-adlib.wav,Other, +1,berimbau.wav,Other, +1,benson boone.wav,Other, +1,bender.wav,Other, +1,bend synth.wav,Other, +1,ben shapiro.wav,Other, +1,ben bruce.wav,Other, +1,belltree.wav,Other, +1,bellsynth.wav,Keyboard,Synth Bells +1,bellssynth and vibes.wav,Keyboard,Synth Bells +1,bells with fx.wav,Keyboard,Synth Bells +1,bells synth.wav,Keyboard,Synth Bells +1,bells and synthbells.wav,Keyboard,Synth Bells +1,bells and key.wav,Keyboard,Synth Bells +1,bells 2.wav,Keyboard,Synth Bells +1,bell_tuned.wav,Keyboard,Synth Bells +1,bell_synth.wav,Keyboard,Synth Bells +1,bell synths+harp synth.wav,Keyboard,Synth Bells +1,bell pad.wav,Keyboard,Synth Bells +1,bell fx.wav,Keyboard,Synth Bells +1,bell and keys.wav,Keyboard,Synth Bells +1,bell and arr.wav,Keyboard,Synth Bells +1,beep synth.wav,Other, +1,beenie man.wav,Other, +1,bee.wav,Other, +1,bebe rexha.wav,Other, +1,beautilful precount.wav,Other, +1,beats piano.wav,Other, +1,beats drums.wav,Other, +1,beats bass.wav,Other, +1,beatbox perc.wav,Other, +1,beat box 1 + 2.wav,Other, +1,beat box + synth2.wav,Other, +1,bea miller.wav,Other, +1,bd sub + claps.wav,Other, +1,bbox.wav,Other, +1,bazzi.wav,Other, +1,bazzi-adlib.wav,Other, +1,batterie_the_cars_good_times_roll.wav,Other, +1,batterie_stone_temple_pilots_dead_and_bloated.wav,Other, +1,batterie_over_the_hills_and_far_away.wav,Other, +1,baterie.wav,Other, +1,bata.wav,Other, +1,bassslap.wav,Bass Guitar, +1,bassoons.wav,Other, +1,bassgtr.wav,Bass Guitar, +1,bassfx2.wav,Bass Guitar, +1,bassfx.wav,Other, +1,basses.wav,Bass Guitar, +1,basse_the_cars_good_times_roll.wav,Bass Guitar, +1,basse_stone_temple_pilots_dead_and_bloated.wav,Bass Guitar, +1,basse_over_the_hills_and_far_away.wav,Bass Guitar, +1,basse synth.wav,Other, +1,basse synth soft.wav,Other, +1,basse electrique.wav,Bass Guitar, +1,basse crunch.wav,Bass Guitar, +1,bassboom.wav,Other, +1,bass_sub.wav,Other, +1,bass_pad.wav,Other, +1,bass_gliss.wav,Bass Guitar, +1,bass_bus.wav,Other, +1,bass_attack.wav,Bass Guitar, +1,bass_as_kick_function.wav,Other, +1,bass_arrangement.wav,Bass Guitar, +1,bass_add.wav,Bass Guitar, +1,bass1 synth4.wav,Other, +1,bass.wav.wav,Bass Guitar, +1,bass-sample.wav,Bass Guitar, +1,bass-gtr.wav,Bass Guitar, +1,bass-2.wav,Bass Guitar, +1,bass-02.wav,Bass Guitar, +1,bass+synthbass.wav,Bass Guitar, +1,bass+low pad.wav,Bass Guitar, +1,bass(synth).wav,Bass Guitar, +1,bass(solo).wav,Bass Guitar, +1,bass(lead).wav,Bass Guitar, +1,bass(arp).wav,Bass Guitar, +1,bass vox.wav,Other, +1,bass vocal.wav,Other, +1,bass upright.wav,Other, +1,bass taurus pedal.wav,Bass Guitar, +1,bass synths.wav,Other, +1,bass synth_ok.wav,Other, +1,bass synth and sub bass.wav,Other, +1,bass sub.wav,Other, +1,bass slide.wav,Bass Guitar, +1,bass slap + bass.wav,Bass Guitar, +1,bass sample.wav,Bass Guitar, +1,bass organ.wav,Other, +1,bass ok.wav,Other, +1,bass mixmaster.wav,Bass Guitar, +1,bass keys.wav,Other, +1,bass intro.wav,Bass Guitar, +1,bass gtr.wav,Bass Guitar, +1,bass growl.wav,Bass Guitar, +1,bass fx.wav,Bass Guitar, +1,bass funk and slide.wav,Bass Guitar, +1,bass fretless.wav,Bass Guitar, +1,bass ells.wav,Bass Guitar, +1,bass el_ok.wav,Bass Guitar, +1,bass eb 140bpm.wav,Bass Guitar, +1,bass drum.wav,Other, +1,bass drop.wav,Bass Guitar, +1,bass clean 02.wav,Bass Guitar, +1,bass clean 01.wav,Bass Guitar, +1,bass bus.wav,Bass Guitar, +1,bass brass.wav,Other, +1,bass bell.wav,Other, +1,bass arp.wav,Other, +1,bass and sub.wav,Bass Guitar, +1,bass and fx.wav,Bass Guitar, +1,bass and double.wav,Bass Guitar, +1,bass _01.wav,Bass Guitar, +1,bass 3.wav,Bass Guitar, +1,bass 2 right.wav,Bass Guitar, +1,bass 2 disto.wav,Bass Guitar, +1,bass 1+2+4.wav,Bass Guitar, +1,bass 1 and solo.wav,Bass Guitar, +1,bass + synth bass.wav,Other, +1,bass + synth 3.wav,Other, +1,bass (loop).wav,Other, +1,basoon.wav,Other, +1,basic synth 2.wav,Other, +1,barry manilow looks like we made it synth.wav,Other, +1,barry manilow looks like we made it strings.wav,Other, +1,barry manilow looks like we made it piano.wav,Other, +1,barry manilow looks like we made it lv.wav,Other, +1,barry manilow looks like we made it horns.wav,Other, +1,barry manilow looks like we made it harp.wav,Other, +1,barry manilow looks like we made it guitar 2.wav,Other, +1,barry manilow looks like we made it guitar 1.wav,Other, +1,barry manilow looks like we made it flugel 2.wav,Other, +1,barry manilow looks like we made it flugel 1.wav,Other, +1,barry manilow looks like we made it drum.wav,Other, +1,barry manilow looks like we made it bv.wav,Other, +1,barry manilow looks like we made it bass.wav,Other, +1,bark fx.wav,Other, +1,baritonesax.wav,Saxophone,Baritone +1,baritone saxophone.wav,Saxophone,Baritone +1,bari.wav,Saxophone,Baritone +1,bar.wav,Other, +1,banjos.wav,Banjo, +1,banjomandolinbouzouki.wav,Banjo, +1,banjo extra.wav,Banjo, +1,banjo 2.wav,Banjo, +1,banjo 1.wav,Banjo, +1,bang.wav,Other, +1,bakermat.wav,Other, +1,baker.wav,Other, +1,bajo.wav,Other, +1,bad wolves.wav,Other, +1,bad bunny-adlib.wav,Other, +1,backwardsgtr.wav,Other, +1,backstreet xilophone.wav,Other, +1,backstreet synth 2.wav,Other, +1,backstreet synth 1.wav,Other, +1,backstreet piano.wav,Other, +1,backstreet perc.wav,Other, +1,backstreet drum.wav,Other, +1,backstreet bv.wav,Other, +1,backstreet bass.wav,Other, +1,backstreet acc guitar 2.wav,Other, +1,backstreet acc guitar 1.wav,Other, +1,backing vox.wav,Other, +1,backing vocals (male).wav,Other, +1,backing vocals (female).wav,Other, +1,backin_vocals.wav,Other, +1,background.wav,Other, +1,babyfx.wav,Other, +1,baby ranks.wav,Other, +1,baa.wav,Other, +1,b.v. (talking).wav,Other, +1,b.b. king-adlib.wav,Other, +1,b vox.wav,Other, +1,b vox only fx.wav,Other, +1,b vox onl.wav,Other, +1,b vox only.wav,Other, +1,ayliva.wav,Other, +1,axl rose.wav,Other, +1,avi kaplan.wav,Other, +1,audio fxs.wav,Other, +1,atmoguitar2.wav,Other, +1,atmo + lead.wav,Other, +1,atmo + pad.wav,Other, +1,astrid s.wav,Other, +1,ashanti.wav,Other, +1,arrow benjamin.wav,Other, +1,arrange_guitars.wav,Other, +1,arrange_electric_guitar_3.wav,Other, +1,arr synth.wav,Other, +1,arr gt.wav,Other, +1,arr eg trs delay.wav,Other, +1,arr eg 4.wav,Other, +1,arr disto guits.wav,Other, +1,arr crunch eg.wav,Other, +1,arr analog strings.wav,Other, +1,arps lr.wav,Other, +1,arppegiator.wav,Keyboard,Synth Arpeggios +1,arpfx and cr-78 loop.wav,Keyboard,Synth Arpeggios +1,arpegio_lead_synth.wav,Keyboard,Synth Arpeggios +1,arpegio.wav,Keyboard,Synth Arpeggios +1,arpegiator.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth4.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth3.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth2.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth1.wav,Keyboard,Synth Arpeggios +1,arpeggiators.wav,Keyboard,Synth Arpeggios +1,arpeggiator synth 2.wav,Keyboard,Synth Arpeggios +1,arpeggiator synth 1.wav,Keyboard,Synth Arpeggios +1,arpeggiator 4.wav,Keyboard,Synth Arpeggios +1,arpeggiator 3.wav,Keyboard,Synth Arpeggios +1,arpeggiatedsynth.wav,Keyboard,Synth Arpeggios +1,arpeges.wav,Keyboard,Synth Arpeggios +1,arpeg.wav,Keyboard,Synth Arpeggios +1,arpacougt.wav,Keyboard,Synth Arpeggios +1,arp pluck.wav,Keyboard,Synth Arpeggios +1,arp mix.wav,Keyboard,Synth Arpeggios +1,arp gtr.wav,Other, +1,arp bass.wav,Other, +1,arp bass synth.wav,Other, +1,arp and synth1.wav,Other, +1,armonica.wav,Other, +1,armonic sinth intro.wav,Other, +1,arm.wav,Other, +1,ariana grande-adlib.wav,Other, +1,arco bass.wav,Other, +1,apocalyptica not strong enough violin 2.wav,Other, +1,apocalyptica not strong enough violin 1.wav,Other, +1,apocalyptica not strong enough synth 1.wav,Other, +1,apocalyptica not strong enough strings.wav,Other, +1,apocalyptica not strong enough string 2.wav,Other, +1,apocalyptica not strong enough perc.wav,Other, +1,apocalyptica not strong enough lv.wav,Other, +1,apocalyptica not strong enough guitar 3.wav,Other, +1,apocalyptica not strong enough guitar 2.wav,Other, +1,apocalyptica not strong enough guitar 1.wav,Other, +1,apocalyptica not strong enough drum.wav,Other, +1,apocalyptica not strong enough bv.wav,Other, +1,apocalyptica not strong enough bass.wav,Other, +1,apocalyptica i dot care bass.wav,Other, +1,apocalyptica i dont care violin.wav,Other, +1,apocalyptica i dont care strings.wav,Other, +1,apocalyptica i dont care piano.wav,Other, +1,apocalyptica i dont care perc.wav,Other, +1,apocalyptica i dont care lv.wav,Other, +1,apocalyptica i dont care guitar 2.wav,Other, +1,apocalyptica i dont care guitar 1.wav,Other, +1,apocalyptica i dont care drum.wav,Other, +1,apocalyptica i dont care cello 4.wav,Other, +1,apocalyptica i dont care cello 3.wav,Other, +1,apocalyptica i dont care cello 2.wav,Other, +1,apocalyptica i dont care cello 1.wav,Other, +1,apocalyptica i dont care bv.wav,Other, +1,aple.de.ap.wav,Other, +1,apaheart_s_synth_03.wav,Other, +1,apaheart_s_synth_02.wav,Other, +1,apaheart_s_synth_01.wav,Other, +1,apaheart_s_perc_&_fx.wav,Other, +1,apaheart_s_lv.wav,Other, +1,apaheart_s_guitar.wav,Other, +1,apaheart_s_drums.wav,Other, +1,apaheart_s_bv.wav,Other, +1,apaheart_s_bass_01.wav,Other, +1,apache 207.wav,Other, +1,anthony hamilton.wav,Other, +1,anthony hamilton-adlib.wav,Other, +1,annoying synth voice.wav,Other, +1,annoying backing vocal.wav,Other, +1,anne-marie-adlib.wav,Other, +1,anna wise.wav,Other, +1,ann peebles.wav,Other, +1,andy partridge.wav,Other, +1,andrew taggart-adlib.wav,Other, +1,analogleadsynth.wav,Other, +1,analog synth.wav,Other, +1,analog drums.wav,Other, +1,analog bass.wav,Other, +1,anaconda.wav,Other, +1,amythyst kiah.wav,Other, +1,amy grant.wav,Other, +1,amorfoda piano.wav,Other, +1,amorfoda ld.wav,Other, +1,amorfoda fx.wav,Other, +1,amorfoda bv.wav,Other, +1,amil.wav,Other, +1,ambtalk.wav,Other, +1,ambientsynth.wav,Other, +1,ambient sfx.wav,Other, +1,ambience.wav,Other, +1,ambience-fx.wav,Other, +1,ambience v2.wav,Other, +1,ambiantgtr + fx.wav,Other, +1,ambiance.wav,Other, +1,ambiance pads fx.wav,Other, +1,ambi stack.wav,Other, +1,amb.wav,Other, +1,amb pads.wav,Other, +1,alto saxophone.wav,Other, +1,altmclaran.wav,Other, +1,allison ponthier.wav,Other, +1,allison krauss.wav,Other, +1,all pads.wav,Other, +1,all lv.wav,Other, +1,all keys.wav,Other, +1,all keys and synths.wav,Other, +1,all fxs.wav,Other, +1,all drums.wav,Other, +1,all bvs and adds.wav,Other, +1,all brass.wav,Other, +1,all bgv.wav,Other, +1,alicia keys-adlib.wav,Other, +1,alice in chains rotten apple synth pad.wav,Other, +1,alice in chains rotten apple lv.wav,Other, +1,alice in chains rotten apple guitar 4.wav,Other, +1,alice in chains rotten apple guitar 3.wav,Other, +1,alice in chains rotten apple guitar 2.wav,Other, +1,alice in chains rotten apple guitar 1.wav,Other, +1,alice in chains rotten apple drum.wav,Other, +1,alice in chains rotten apple bv.wav,Other, +1,alice in chains rotten apple bass.wav,Other, +1,alice in chains rotten apple acc guitar.wav,Other, +1,ali tamposi.wav,Other, +1,alexa goddard.wav,Other, +1,alex clare.wav,Other, +1,alessiacara.wav,Other, +1,alessia cara.wav,Other, +1,alejandro sanz cuando nadie me ve violin 3.wav,Other, +1,alejandro sanz cuando nadie me ve violin 2.wav,Other, +1,alejandro sanz cuando nadie me ve violin 1.wav,Other, +1,alejandro sanz cuando nadie me ve synth pad.wav,Other, +1,alejandro sanz cuando nadie me ve strings.wav,Other, +1,alejandro sanz cuando nadie me ve perc.wav,Other, +1,alejandro sanz cuando nadie me ve nylon guitar.wav,Other, +1,alejandro sanz cuando nadie me ve lv.wav,Other, +1,alejandro sanz cuando nadie me ve e piano 2.wav,Other, +1,alejandro sanz cuando nadie me ve e piano 1.wav,Other, +1,alejandro sanz cuando nadie me ve drum.wav,Other, +1,alejandro sanz cuando nadie me ve bass.wav,Other, +1,alejandro sanz cuando nadie me ve acc guitar 1.wav,Other, +1,alejandro fernandez.wav,Other, +1,alejandro fernandez no vihuela.wav,Other, +1,alejandro fernandez no tp 2.wav,Other, +1,alejandro fernandez no tp 1.wav,Other, +1,alejandro fernandez no strings.wav,Other, +1,alejandro fernandez no piano.wav,Other, +1,alejandro fernandez no perc.wav,Other, +1,alejandro fernandez no metalophone.wav,Other, +1,alejandro fernandez no lv.wav,Other, +1,alejandro fernandez no drum.wav,Other, +1,alejandro fernandez no brasses.wav,Other, +1,alejandro fernandez no bass.wav,Other, +1,alecbenjamin.wav,Other, +1,alecbenjamin-adlib.wav,Other, +1,alarm fx.wav,Other, +1,alan walker.wav,Other, +1,al green.wav,Other, +1,akkr.wav,Other, +1,akkl.wav,Other, +1,aj mclean & brian littrell.wav,Other, +1,air supply - lost in love - synth vocals.wav,Other, +1,air supply - lost in love - synth brass.wav,Other, +1,air supply - lost in love - synth 3.wav,Other, +1,air supply - lost in love - synth 1.wav,Other, +1,air supply - lost in love - piano.wav,Other, +1,air supply - lost in love - organ.wav,Other, +1,air supply - lost in love - harp.wav,Other, +1,air supply - lost in love - drum.wav,Other, +1,air supply - lost in love - bv.wav,Other, +1,air supply - lost in love - bass.wav,Other, +1,air supply - lost in love - acc guitar.wav,Other, +1,air pad + pad + warm + choir + flute 1 + 2.wav,Other, +1,ahh synth.wav,Other, +1,aguitars.wav,Acoustic Guitar, +1,aguitar.wav,Acoustic Guitar, +1,agtr 4 + 5 + 6.wav,Acoustic Guitar, +1,agtr 1 + 2 + 3.wav,Acoustic Guitar, +1,agt 4.wav,Acoustic Guitar, +1,agt 3.wav,Acoustic Guitar, +1,agslide.wav,Acoustic Guitar, +1,ags.wav,Acoustic Guitar, +1,agny.wav,Acoustic Guitar, +1,agmute2.wav,Acoustic Guitar, +1,agmelody.wav,Acoustic Guitar, +1,aglead.wav,Acoustic Guitar, +1,aggtr.wav,Acoustic Guitar, +1,agfx.wav,Acoustic Guitar, +1,agdrums.wav,Acoustic Guitar, +1,agdistortion2.wav,Acoustic Guitar, +1,agdistortion.wav,Acoustic Guitar, +1,agchords.wav,Acoustic Guitar, +1,ag_r(low).wav,Acoustic Guitar, +1,ag_r(12str).wav,Acoustic Guitar, +1,ag_r 2.wav,Acoustic Guitar, +1,ag_nylon.wav,Acoustic Guitar, +1,ag_l2.wav,Acoustic Guitar, +1,ag_l(low).wav,Acoustic Guitar, +1,ag_l(di).wav,Acoustic Guitar, +1,ag_l(12str).wav,Acoustic Guitar, +1,ag4.wav,Acoustic Guitar, +1,ag12strings.wav,Acoustic Guitar, +1,ag12str.wav,Acoustic Guitar, +1,ag1 left.wav,Acoustic Guitar, +1,ag(perc).wav,Acoustic Guitar, +1,ag twelve strings.wav,Acoustic Guitar, +1,ag trem.wav,Acoustic Guitar, +1,ag stereo.wav,Acoustic Guitar, +1,ag steel.wav,Acoustic Guitar, +1,ag rythm r (piezo).wav,Acoustic Guitar, +1,ag rythm r (mic).wav,Acoustic Guitar, +1,ag rythm l (piezo).wav,Acoustic Guitar, +1,ag rythm l (piezo) 2.wav,Acoustic Guitar, +1,ag rythm l (mic).wav,Acoustic Guitar, +1,ag rhythmic.wav,Acoustic Guitar, +1,ag rhythmic 3.wav,Acoustic Guitar, +1,ag rhythmic 2.wav,Acoustic Guitar, +1,ag rhythmic 1.wav,Acoustic Guitar, +1,ag rhythm.wav,Acoustic Guitar, +1,ag nylon mix.wav,Acoustic Guitar, +1,ag nylon main+fxs.wav,Acoustic Guitar, +1,ag n.wav,Acoustic Guitar, +1,ag n-notdups.wav,Acoustic Guitar, +1,ag muted.wav,Acoustic Guitar, +1,ag mute.wav,Acoustic Guitar, +1,ag left.wav,Acoustic Guitar, +1,ag left + right.wav,Acoustic Guitar, +1,ag ld.wav,Acoustic Guitar, +1,ag l r.wav,Acoustic Guitar, +1,ag gtr.wav,Acoustic Guitar, +1,ag center.wav,Acoustic Guitar, +1,ag arregements.wav,Acoustic Guitar, +1,ag arr 2 left.wav,Acoustic Guitar, +1,ag arr 1 right.wav,Acoustic Guitar, +1,ag arp.wav,Acoustic Guitar, +1,ag 6.wav,Acoustic Guitar, +1,ag 5.wav,Acoustic Guitar, +1,ag 5 right.wav,Acoustic Guitar, +1,ag 5 + 6.wav,Acoustic Guitar, +1,ag 4 muted.wav,Acoustic Guitar, +1,ag 3 mute.wav,Acoustic Guitar, +1,ag 3 fx.wav,Acoustic Guitar, +1,ag 3 end.wav,Acoustic Guitar, +1,ag 3 end right.wav,Acoustic Guitar, +1,ag 3 + 4.wav,Acoustic Guitar, +1,ag 2+spanish guitar.wav,Acoustic Guitar, +1,ag 2 right end.wav,Acoustic Guitar, +1,ag 2 arr.wav,Acoustic Guitar, +1,ag 2 + filter.wav,Acoustic Guitar, +1,ag 2 + 3 + 4 + 5.wav,Acoustic Guitar, +1,ag 13.wav,Acoustic Guitar, +1,ag 12 str.wav,Acoustic Guitar, +1,ag 12 str left.wav,Acoustic Guitar, +1,ag 12 lr.wav,Acoustic Guitar, +1,ag 1+2.wav,Acoustic Guitar, +1,ag 1+2+3.wav,Acoustic Guitar, +1,ag 1 muted.wav,Acoustic Guitar, +1,ag 1 2.wav,Acoustic Guitar, +1,ag 1 + 3.wav,Acoustic Guitar, +1,ag 1 + 2 + 3.wav,Acoustic Guitar, +1,ag 1 + 2 + 3 + 4.wav,Acoustic Guitar, +1,ag 02 r.wav,Acoustic Guitar, +1,ag 02 muted.wav,Acoustic Guitar, +1,ag 02 left.wav,Acoustic Guitar, +1,ag 01 right.wav,Acoustic Guitar, +1,ag 01 left+right 1+2.wav,Acoustic Guitar, +1,ag 01 l.wav,Acoustic Guitar, +1,ag 2 + eg.wav,Acoustic Guitar, +1,adeleye omotayo.wav,Other, +1,adele.wav,Other, +1,addsynthgt.wav,Other, +1,addsynth.wav,Other, +1,adds vocs.wav,Other, +1,adds voc mixmaster.wav,Other, +1,adds uhh.wav,Other, +1,adds synth.wav,Other, +1,adds 1+2.wav,Other, +1,addpad.wav,Other, +1,addlib.wav,Other, +1,additional-synth.wav,Other, +1,additional-instruments.wav,Other, +1,addgt_r.wav,Other, +1,addgt_l.wav,Other, +1,adddrivegt_r.wav,Other, +1,adddrivegt_l.wav,Other, +1,adddrivegt.wav,Other, +1,addclean.wav,Other, +1,addacougt.wav,Other, +1,add_synth.wav,Other, +1,add_nylongt.wav,Other, +1,add2 + solo.wav,Other, +1,add vox fx.wav,Other, +1,add synth.wav,Other, +1,add guitar.wav,Other, +1,add guitar feedback.wav,Other, +1,add fx.wav,Other, +1,adblib voc 2.wav,Other, +1,adam levine.wav,Other, +1,adam levine-adlib.wav,Other, +1,ad_lib.wav,Other, +1,ad-lib.wav,Other, +1,ad lib vocals.wav,Other, +1,ad lib vocal.wav,Other, +1,acst-gtr-notdups.wav,Acoustic Guitar, +1,acoustique.wav,Acoustic Guitar, +1,acoustique r.wav,Acoustic Guitar, +1,acoustique l.wav,Acoustic Guitar, +1,acoustique centre.wav,Acoustic Guitar, +1,acousticgtrr.wav,Acoustic Guitar, +1,acousticgtrc.wav,Acoustic Guitar, +1,acousticgtr r.wav,Acoustic Guitar, +1,acousticgtr l.wav,Acoustic Guitar, +1,acoustic_steel_guitar_2.wav,Acoustic Guitar, +1,acoustic_steel_guitar_1.wav,Acoustic Guitar, +1,acoustic_steel_guitar.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_steel_left.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_steel.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_2.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_1.wav,Acoustic Guitar, +1,acoustic_lead_guitar_steel.wav,Acoustic Guitar, +1,acoustic_guitar_tremolo.wav,Acoustic Guitar, +1,acoustic_guitar_treble.wav,Acoustic Guitar, +1,acoustic_guitar_steel_rhythm_right.wav,Acoustic Guitar, +1,acoustic_guitar_steel_rhythm_left.wav,Acoustic Guitar, +1,acoustic_guitar_steel_center+right.wav,Acoustic Guitar, +1,acoustic_guitar_steel_arrangement lr.wav,Acoustic Guitar, +1,acoustic_guitar_steel_adds.wav,Acoustic Guitar, +1,acoustic_guitar_steel_5.wav,Acoustic Guitar, +1,acoustic_guitar_steel_2.wav,Acoustic Guitar, +1,acoustic_guitar_steel_1.wav,Acoustic Guitar, +1,acoustic_guitar_steel-notdup.wav,Acoustic Guitar, +1,acoustic_guitar_perc.wav,Acoustic Guitar, +1,acoustic_guitar_low.wav,Acoustic Guitar, +1,acoustic_guitar_lead.wav,Acoustic Guitar, +1,acoustic_guitar_arr.wav,Acoustic Guitar, +1,acoustic_guitar_2.wav,Acoustic Guitar, +1,acoustic_guitar_1.wav,Acoustic Guitar, +1,acoustic rhythm.wav,Acoustic Guitar, +1,acoustic nylon guitar.wav,Acoustic Guitar, +1,acoustic line.wav,Acoustic Guitar, +1,acoustic guitarstrumming.wav,Acoustic Guitar, +1,acoustic guitars rhythm.wav,Acoustic Guitar, +1,acoustic guitars bass notes.wav,Acoustic Guitar, +1,acoustic guitars 3 & 4 - rhythm.wav,Acoustic Guitar, +1,acoustic guitars 2.wav,Acoustic Guitar, +1,acoustic guitars 1.wav,Acoustic Guitar, +1,acoustic guitars 1 & 2 - lead.wav,Acoustic Guitar, +1,acoustic guitars - rhythm.wav,Acoustic Guitar, +1,acoustic guitarright.wav,Acoustic Guitar, +1,acoustic guitarleft.wav,Acoustic Guitar, +1,acoustic guitar(strumming) right.wav,Acoustic Guitar, +1,acoustic guitar r.wav,Acoustic Guitar, +1,acoustic guitar mute.wav,Acoustic Guitar, +1,acoustic guitar left.wav,Acoustic Guitar, +1,acoustic guitar lead.wav,Acoustic Guitar, +1,acoustic guitar l.wav,Acoustic Guitar, +1,acoustic guitar arpp.wav,Acoustic Guitar, +1,acoustic guitar 2 - r.wav,Acoustic Guitar, +1,acoustic guitar 1 - l.wav,Acoustic Guitar, +1,acoustic guitar - lead.wav,Acoustic Guitar, +1,acoustic guit.wav,Acoustic Guitar, +1,acoustic gtr fx.wav,Acoustic Guitar, +1,acoustic gtr - all.wav,Acoustic Guitar, +1,acoustic gt.wav,Acoustic Guitar, +1,acoustic fx.wav,Other, +1,acoustic drums.wav,Other, +1,acoustic drum.wav,Other, +1,acoustic drum kit.wav,Other, +1,acoustic arpeg.wav,Other, +1,acoust-guitar-solo.wav,Other, +1,acoust-guitar-percussion.wav,Other, +1,acoust-guitar-fx.wav,Other, +1,acoust-guitar-1.wav,Other, +1,acouleadgt.wav,Other, +1,acouguitr.wav,Other, +1,acouguitl.wav,Other, +1,acordion.wav,Other, +1,acordeons.wav,Other, +1,acordeon-.wav,Other, +1,acmute.wav,Other, +1,acmain.wav,Other, +1,acid.wav,Other, +1,acid attack.wav,Other, +1,acguitsolo.wav,Acoustic Guitar, +1,acguits.wav,Acoustic Guitar, +1,acguitright.wav,Acoustic Guitar, +1,acguitrhythm.wav,Acoustic Guitar, +1,acguitarrhythm.wav,Acoustic Guitar, +1,acguitarlead.wav,Acoustic Guitar, +1,acguit1et2.wav,Acoustic Guitar, +1,acgtrs2.wav,Acoustic Guitar, +1,acgtrs1.wav,Acoustic Guitar, +1,acgtrs1+2.wav,Acoustic Guitar, +1,acgtr_solo.wav,Acoustic Guitar, +1,acgtr3.wav,Acoustic Guitar, +1,acgtr2r.wav,Acoustic Guitar, +1,acgtr2 right.wav,Acoustic Guitar, +1,acgtr1l.wav,Acoustic Guitar, +1,acgtr1 left.wav,Acoustic Guitar, +1,acgtr03.wav,Acoustic Guitar, +1,acgtr02.wav,Acoustic Guitar, +1,acgtr01.wav,Acoustic Guitar, +1,acgtr r.wav,Acoustic Guitar, +1,acgtr main.wav,Acoustic Guitar, +1,acgtr main 12 strings.wav,Acoustic Guitar, +1,acgtr l.wav,Acoustic Guitar, +1,acgtleft.wav,Acoustic Guitar, +1,accoustic_guitar_steel.wav,Other, +1,accoridon.wav,Accordion, +1,accordion fx.wav,Accordion, +1,accordion and pads.wav,Accordion, +1,accord.wav,Accordion, +1,acc guitar muted.wav,Acoustic Guitar, +1,acc guitar fx.wav,Acoustic Guitar, +1,acc guitar 2 right.wav,Acoustic Guitar, +1,acc guitar 1 left.wav,Acoustic Guitar, +1,acc gtr 3.wav,Acoustic Guitar, +1,acc gtr 2 right.wav,Acoustic Guitar, +1,ac_guitar.wav,Acoustic Guitar, +1,ac_guitar 2.wav,Acoustic Guitar, +1,ac_guitar 1.wav,Acoustic Guitar, +1,ac_fade_out.wav,Acoustic Guitar, +1,ac_6_cordes_right.wav,Acoustic Guitar, +1,ac_2.wav,Acoustic Guitar, +1,ac_12_cordes_left.wav,Acoustic Guitar, +1,ac_1.wav,Acoustic Guitar, +1,ac.wav,Acoustic Guitar, +1,ac.gtrs rhythm.wav,Acoustic Guitar, +1,ac.gtr solo.wav,Acoustic Guitar, +1,ac.gtr rhythm.wav,Acoustic Guitar, +1,ac.gtr r.wav,Acoustic Guitar, +1,ac.gtr l.wav,Acoustic Guitar, +1,ac.gtr 1.wav,Acoustic Guitar, +1,ac rhythmic 2.wav,Acoustic Guitar, +1,ac rhythmic 1.wav,Acoustic Guitar, +1,ac l + r.wav,Acoustic Guitar, +1,ac guitare.wav,Acoustic Guitar, +1,ac guitar vst.wav,Acoustic Guitar, +1,ac guitar rhytmic l&r.wav,Acoustic Guitar, +1,ac guitar rhytmic 2.wav,Acoustic Guitar, +1,ac guitar rhytmic 1.wav,Acoustic Guitar, +1,ac guitar rhitmic 2.wav,Acoustic Guitar, +1,ac guitar rhitmic 1.wav,Acoustic Guitar, +1,ac guitar jerry.wav,Acoustic Guitar, +1,ac guitar bob.wav,Acoustic Guitar, +1,ac guitar arragement.wav,Acoustic Guitar, +1,ac guitar 4.wav,Acoustic Guitar, +1,ac guitar 3.wav,Acoustic Guitar, +1,ac guitar 03.wav,Acoustic Guitar, +1,ac guitar 02.wav,Acoustic Guitar, +1,ac guitar 01.wav,Acoustic Guitar, +1,ac guit bright.wav,Acoustic Guitar, +1,ac guit add.wav,Acoustic Guitar, +1,ac guit 1 + 3 right.wav,Acoustic Guitar, +1,ac guit 1 + 2.wav,Acoustic Guitar, +1,ac gtr1+classic gtr.wav,Acoustic Guitar, +1,ac gtr 6.wav,Acoustic Guitar, +1,ac gtr 5.wav,Acoustic Guitar, +1,ac gtr 4.wav,Acoustic Guitar, +1,ac gtr 3 right.wav,Acoustic Guitar, +1,ac gtr 3 left.wav,Acoustic Guitar, +1,ac gtr 12.wav,Acoustic Guitar, +1,ac gtr 1 left.wav,Acoustic Guitar, +1,ac gt r.wav,Acoustic Guitar, +1,ac gt l.wav,Acoustic Guitar, +1,ac gt arp melo.wav,Acoustic Guitar, +1,ac gt 3.wav,Acoustic Guitar, +1,ac gt 2.wav,Acoustic Guitar, +1,ac gt 1.wav,Acoustic Guitar, +1,ac git.wav,Acoustic Guitar, +1,ac git lead.wav,Acoustic Guitar, +1,ac 4.wav,Acoustic Guitar, +1,ac 3.wav,Acoustic Guitar, +1,ac 2.wav,Acoustic Guitar, +1,ac 1.wav,Acoustic Guitar, +1,abraxas.wav,Other, +1,aaron neville.wav,Other, +1,aaa samples.wav,Other, +1,a.gtr.wav,Acoustic Guitar, +1,a.b. quintanilla.wav,Other, +1,a nylon guit 2.wav,Acoustic Guitar, +1,a nylon guit 1.wav,Acoustic Guitar, +1,a guitar st.wav,Acoustic Guitar, +1,a guitar r.wav,Acoustic Guitar, +1,a guitar l.wav,Acoustic Guitar, +1,a guitar 2 right.wav,Acoustic Guitar, +1,a guitar 2 eb 140bpm.wav,Acoustic Guitar, +1,a guitar 1 left.wav,Acoustic Guitar, +1,a guitar 1 eb 140bpm.wav,Acoustic Guitar, +1,a great big world.wav,Other, +1,a day to remember.wav,Other, +1,a day to remember all signs point to lauderdale strings.wav,Other, +1,a day to remember all signs point to lauderdale precount.wav,Other, +1,a day to remember all signs point to lauderdale perc.wav,Other, +1,a day to remember all signs point to lauderdale lv.wav,Other, +1,a day to remember all signs point to lauderdale guitar 3.wav,Other, +1,a day to remember all signs point to lauderdale guitar 2.wav,Other, +1,a day to remember all signs point to lauderdale guitar 1.wav,Other, +1,a day to remember all signs point to lauderdale drum.wav,Other, +1,a day to remember all signs point to lauderdale bv.wav,Other, +1,a day to remember all signs point to lauderdale bass.wav,Other, +1,a day to remember all signs point to lauderdale acordeon.wav,Other, +1,_voix.wav,Other, +1,_piano.wav,Other, +1,_pad.wav,Other, +1,_bv.wav,Other, +1,_arr clean eg.wav,Other, +1,9200 lead vocal.wav,Other, +1,9100 backing vocals.wav,Other, +1,9 synth pad.wav,Other, +1,808 sub bass.wav,Other, +1,8 eg solo.wav,Other, +1,7 eg b right.wav,Other, +1,6-str.wav,Other, +1,6 eg a left.wav,Other, +1,5th piano.wav,Other, +1,50 cent-adlib.wav,Other, +1,5 ag.wav,Other, +1,4530 synth choir.wav,Other, +1,4520 synth strings.wav,Other, +1,4510 synth pad.wav,Other, +1,4 bass.wav,Other, +1,3300 electric guitar fx.wav,Other, +1,3200 electric guitar.wav,Other, +1,3100 acoustic guitar.wav,Other, +1,3 fx.wav,Other, +1,2pac-adlib.wav,Other, +1,2d.wav,Other, +1,28_bv.wav,Other, +1,27_lv.wav,Other, +1,24kgoldn.wav,Other, +1,24kgoldn-adlib.wav,Other, +1,24_bv.wav,Other, +1,2200 electric bass.wav,Other, +1,21_ld 1+2.wav,Other, +1,2 timbal.wav,Other, +1,2 chainz lead.wav,Other, +1,19_strings.wav,Other, +1,19_bv.wav,Other, +1,1999 synth 2.wav,Other, +1,1999 precount.wav,Other, +1,1999 perc.wav,Other, +1,1999 guitar 3.wav,Other, +1,1999 guitar 2.wav,Other, +1,1999 guitar 1.wav,Other, +1,1999 fx synth.wav,Other, +1,1999 drum.wav,Other, +1,1999 bv.wav,Other, +1,1999 bass.wav,Other, +1,1999 bass synth.wav,Other, +1,17_vox pads.wav,Other, +1,17_lv.wav,Other, +1,17_bv.wav,Other, +1,16_flute.wav,Other, +1,15_synth.wav,Other, +1,15_saxos vst.wav,Other, +1,15_lv.wav,Other, +1,15_dance synth.wav,Other, +1,15_bv2.wav,Other, +1,15 bv.wav,Other, +1,14_synths str.wav,Other, +1,14_sax solos.wav,Other, +1,14_ep.wav,Other, +1,14_eg4 r.wav,Other, +1,14_bv1.wav,Other, +1,13_vocal adds.wav,Other, +1,13_synth melo.wav,Other, +1,13_pulsar synths.wav,Other, +1,13_lv adds.wav,Other, +1,13_eg3 l.wav,Other, +1,13 lead vocal.wav,Other, +1,12_synth saw.wav,Other, +1,12_synth lead.wav,Other, +1,12_synth brasses.wav,Other, +1,12_pads.wav,Other, +1,12_gtr fx amp.wav,Other, +1,12_ep.wav,Other, +1,12_eg3.wav,Other, +1,12_eg2.wav,Other, +1,12_cordes_2_over_the_hills_and_far_away.wav,Other, +1,12_cordes_1 right.wav,Other, +1,1200_mix loop+percs.wav,Other, +1,12-str.wav,Other, +1,12 strings.wav,Other, +1,12 organ.wav,Other, +1,12 lead vocal.wav,Other, +1,12 choir female.wav,Other, +1,12 backing vocals.wav,Other, +1,11_violin.wav,Other, +1,11_synth flute.wav,Other, +1,11_synth bell.wav,Other, +1,11_strings.wav,Other, +1,11_space piano.wav,Other, +1,11_plucked arp.wav,Other, +1,11_pads.wav,Other, +1,11_mallet.wav,Other, +1,11_lv.wav,Other, +1,11_low pad.wav,Other, +1,11_ld.wav,Other, +1,11_egfx.wav,Other, +1,11_eg3 r.wav,Other, +1,11_eg1 solo.wav,Other, +1,11_bv.wav,Other, +1,11_belly arp.wav,Other, +1,11_ac piano.wav,Other, +1,1110 acoustic drums.wav,Other, +1,11 synth voice.wav,Other, +1,11 piano.wav,Other, +1,11 choir male.wav,Other, +1,11 backing vocals.wav,Other, +1,10_vocal pads.wav,Other, +1,10_synth choir.wav,Other, +1,10_synth 80s.wav,Other, +1,10_sax.wav,Other, +1,10_saw2.wav,Other, +1,10_pads.wav,Other, +1,10_ld.wav,Other, +1,10_hammond.wav,Other, +1,10_eg6r.wav,Other, +1,10_eg5 r.wav,Other, +1,10_eg3 r.wav,Other, +1,10_eg3 l.wav,Other, +1,10_eg1.wav,Other, +1,10_eg r.wav,Other, +1,10_eg l.wav,Other, +1,10_bv.wav,Other, +1,1-adlib.wav,Other, +1,1 drums.wav,Other, +1,0percussion.wav,Other, +1,0drums.wav,Other, +1,09_violas intro.wav,Other, +1,09_synths.wav,Other, +1,09_synth bells.wav,Other, +1,09_synth bell.wav,Other, +1,09_organ.wav,Other, +1,09_lv.wav,Other, +1,09_hammond.wav,Other, +1,09_gtr rev.wav,Other, +1,09_end pad.wav,Other, +1,09_eg5l.wav,Other, +1,09_eg4 right.wav,Other, +1,09_eg r.wav,Other, +1,09_eg l.wav,Other, +1,09_eg adds c.wav,Other, +1,09_choir.wav,Other, +1,09_brasses.wav,Other, +1,09_bells.wav,Other, +1,09 synth lead.wav,Other, +1,09 strings.wav,Other, +1,09 harp.wav,Other, +1,09 hammond.wav,Other, +1,09 choir.wav,Other, +1,08_solo hammond.wav,Other, +1,08_seq saw.wav,Other, +1,08_rhodes.wav,Other, +1,08_mallets.wav,Other, +1,08_hi synth.wav,Other, +1,08_ep mk.wav,Other, +1,08_eg4r.wav,Other, +1,08_eg3 arp r.wav,Other, +1,08_eg2.wav,Other, +1,08_eg2 l.wav,Other, +1,08_eg1 l.wav,Other, +1,08_eg intro.wav,Other, +1,08_eg funky.wav,Other, +1,08_clavi r.wav,Other, +1,08_brasses.wav,Other, +1,08_ac gtr r.wav,Other, +1,08 tubular bells.wav,Other, +1,08 synth voice.wav,Other, +1,08 synth bass.wav,Other, +1,08 pipe organ.wav,Other, +1,08 choir.wav,Other, +1,08 brass.wav,Other, +1,08 banjo.wav,Other, +1,07_xylophone.wav,Other, +1,07_saw uni keys.wav,Other, +1,07_polysynth l.wav,Other, +1,07_marimba.wav,Other, +1,07_hammond low.wav,Other, +1,07_eg3l.wav,Other, +1,07_eg3 r.wav,Other, +1,07_eg2 melo.wav,Other, +1,07_eg2 l.wav,Other, +1,07_eg1.wav,Other, +1,07_eg1 r.wav,Other, +1,07_eg crunch r.wav,Other, +1,07_clavi c.wav,Other, +1,07_bass 3.wav,Other, +1,070 shake.wav,Other, +1,07 synths.wav,Other, +1,07 synth pad.wav,Other, +1,07 synth lead.wav,Other, +1,07 sfx.wav,Other, +1,07 piano.wav,Other, +1,07 organ.wav,Other, +1,07 hammond.wav,Other, +1,07 el guitar vox.wav,Other, +1,06_synth bass.wav,Other, +1,06_hammond no filt.wav,Other, +1,06_gtr synth.wav,Other, +1,06_eg2r.wav,Other, +1,06_eg2 r.wav,Other, +1,06_eg2 l.wav,Other, +1,06_eg1 left.wav,Other, +1,06_eg solo.wav,Other, +1,06_eg disto.wav,Other, +1,06_eg clean c.wav,Other, +1,06_clavi l.wav,Other, +1,06_bass.wav,Other, +1,06_ac gtr2.wav,Other, +1,06_ac gtr.wav,Other, +1,06 synths.wav,Other, +1,06 synth bass.wav,Other, +1,06 piano.wav,Other, +1,06 lead guitar r.wav,Other, +1,06 lead guitar 2.wav,Other, +1,06 hammond.wav,Other, +1,06 el guitar fender.wav,Other, +1,06 e piano.wav,Other, +1,06 backing vocals.wav,Other, +1,05_plucked square.wav,Other, +1,05_piano r.wav,Other, +1,05_hammond filt.wav,Other, +1,05_eg1l.wav,Other, +1,05_eg1 l.wav,Other, +1,05_eg.wav,Other, +1,05_eg solo.wav,Other, +1,05_eg rhy.wav,Other, +1,05_eg r.wav,Other, +1,05_eg l.wav,Other, +1,05_ac gtr1.wav,Other, +1,05_ac gtr.wav,Other, +1,05_ac gtr l.wav,Other, +1,05 synths.wav,Other, +1,05 lead guitar.wav,Other, +1,05 lead guitar l.wav,Other, +1,05 lead guitar 1.wav,Other, +1,05 hi gain guitar.wav,Other, +1,05 electric guitar.wav,Other, +1,05 el guitar marshall.wav,Other, +1,04_slap bass.wav,Other, +1,04_sfx.wav,Other, +1,04_eg1 l.wav,Other, +1,04_eg l.wav,Other, +1,04_bass 2.wav,Other, +1,04 rhythm guitar.wav,Other, +1,04 rhythm guitar r.wav,Other, +1,04 rhythm guitar 2.wav,Other, +1,04 rhodes.wav,Other, +1,04 lead guitars.wav,Other, +1,04 electric guitar.wav,Other, +1,03_bass 1.wav,Other, +1,03_ac bass.wav,Other, +1,03 timpani.wav,Other, +1,03 synth.wav,Other, +1,03 sfx.wav,Other, +1,03 rhythm guitar l.wav,Other, +1,03 rhythm guitar 1.wav,Other, +1,03 percussion.wav,Other, +1,03 electric guitar.wav,Other, +1,02_percu.wav,Other, +1,02 electronic drums.wav,Other, +1,02 clap.wav,Other, +1,02 bass guitar.wav,Other, +1,01_drums.wav,Other, +1,01 acoustic drums.wav,Other, diff --git a/lambda/jamtrack-importer/metadata.csv b/lambda/jamtrack-importer/metadata.csv new file mode 100644 index 000000000..06ae31de0 --- /dev/null +++ b/lambda/jamtrack-importer/metadata.csv @@ -0,0 +1,8602 @@ +Artist,Song,Source,Override Artist,Override Song,Skip,DisableExisting,tency_id,NoMatch +'Til Tuesday,Voices Carry,new,,,,,55335,FALSE +'Til Tuesday,What About Love,new,,,,,80094,FALSE +"10,000 Maniacs",Because the Night,new,,,,,11395,FALSE +"10,000 Maniacs",Like the Weather,new,,,,,9984,FALSE +"10,000 Maniacs",These Are Days,new,,,,,62799,FALSE +"10,000 Maniacs",Trouble Me,new,,,,,73264,FALSE +10 Years,Fix Me,new,,,,,74351,FALSE +10 Years,Through The Iris,new,,,,,14826,FALSE +10cc,I'm Not In Love,existing,,,,,,FALSE +2 Chainz,Birthday Song,new,,,,,58358,FALSE +2 Chainz,Feds Watching,new,,,,,45174,FALSE +2 Chainz,I'm Different,new,,,,,65901,FALSE +2 Chainz,We Own It (Fast & Furious),new,,,,,44085,FALSE +24kGoldn,Mood,new,,,,,62601,FALSE +24kGoldn,More Than Friends,new,,,,,67954,FALSE +257ers,Holz,new,,,,,51889,FALSE +257ers,Ti Amo,new,,,,,65103,FALSE +2Pac,2 of Amerikaz Most Wanted,new,,,,,68770,FALSE +2Pac,All Eyez on Me,new,,,,,81694,FALSE +2Pac,Ambitionz Az a Ridah,new,,,,,82242,FALSE +2Pac,California Love (Remix),new,,,,,12691,FALSE +2Pac,California Love,new,,,,,35574,FALSE +2Pac,Changes,new,,,,,34615,FALSE +2Pac,Dear Mama,new,,,,,35778,FALSE +2Pac,Do for Love,new,,,,,34989,FALSE +2Pac,Hail Mary,new,,,,,77452,FALSE +2Pac,Hit 'Em Up,new,,,,,69398,FALSE +2Pac,How Do U Want It,new,,,,,41111,FALSE +2Pac,I Ain't Mad at Cha,new,,,,,74521,FALSE +2Pac,I Get Around,new,,,,,29046,FALSE +2Pac,Keep Ya Head Up,new,,,,,28003,FALSE +2Pac,So Many Tears,new,,,,,68169,FALSE +2Pac,Thugz Mansion,new,,,,,60425,FALSE +2Pac,To Live and Die in L.A.,new,,,,,74394,FALSE +2Pac,Until the End of Time,new,,,,,73054,FALSE +30 Seconds to Mars,A Beautiful Lie,new,,,,,67314,FALSE +30 Seconds to Mars,Closer to the Edge,new,,,,,37132,FALSE +30 Seconds to Mars,Hurricane,new,,,,,66848,FALSE +30 Seconds to Mars,Kings and Queens,new,,,,,59022,FALSE +30 Seconds to Mars,Stay,new,,,,,83512,FALSE +30 Seconds to Mars,The Kill (live),new,,,,,80081,FALSE +30 Seconds to Mars,The Kill,new,,,,,14674,FALSE +30 Seconds to Mars,This Is War,new,,,,,75132,FALSE +30 Seconds to Mars,Up in the Air,new,,,,,43708,FALSE +30 Seconds to Mars,Walk on Water,new,,,,,54051,FALSE +311,All Mixed Up,new,,,,,49571,FALSE +311,Amber,new,,,,,29602,FALSE +311,Beautiful Disaster,new,,,,,70009,FALSE +311,Beyond The Gray Sky,new,,,,,25858,FALSE +311,Creatures (For a While),new,,,,,29033,FALSE +311,Down,new,,,,,62846,FALSE +311,I'll Be Here Awhile,new,,,,,30762,FALSE +311,Love Song,new,,,,,42501,FALSE +311,You Wouldn't Believe,new,,,,,5814,FALSE +38 Special,Back Where You Belong,new,,,,,35938,FALSE +38 Special,Caught Up In You,new,,,,,14834,FALSE +38 Special,Fantasy Girl,new,,,,,69211,FALSE +38 Special,Hold On Loosely,new,,,,,52786,FALSE +38 Special,If I'd Been the One,new,,,,,62931,FALSE +38 Special,Rockin into the Night,new,,,,,65638,FALSE +38 Special,Second Chance,new,,,,,10893,FALSE +38 Special,Somebody Like You,new,,,,,70326,FALSE +38 Special,"Teacher, Teacher",new,,,,,71067,FALSE +38 Special,Wild-Eyed Southern Boys,new,,,,,70352,FALSE +4 Non Blondes,What's Up,existing,,,,,,FALSE +42nd Street Musical,Forty Second Street (A Cappella),existing,,,,,,FALSE +5 Seconds of Summer,Amnesia,new,,,,,47402,FALSE +5 Seconds of Summer,Complete Mess,new,,,,,47773,FALSE +5 Seconds of Summer,Don't Stop,new,,,,,47095,FALSE +5 Seconds of Summer,Easier,new,,,,,58526,FALSE +5 Seconds of Summer,Ghost of You,new,,,,,56017,FALSE +5 Seconds of Summer,Girls Talk Boys,new,,,,,51608,FALSE +5 Seconds of Summer,Good Girls,new,,,,,47035,FALSE +5 Seconds of Summer,Hey Everybody!,new,,,,,50556,FALSE +5 Seconds of Summer,She Looks So Perfect,new,,,,,46805,FALSE +5 Seconds of Summer,She's Kinda Hot,new,,,,,72561,FALSE +5 Seconds of Summer,Teeth,new,,,,,59300,FALSE +5 Seconds of Summer,Want You Back,new,,,,,55771,FALSE +5 Seconds of Summer,What I like About You,new,,,,,50428,FALSE +5 Seconds of Summer,Youngblood,new,,,,,55596,FALSE +50 Cent,21 Questions,new,,,,,14847,FALSE +50 Cent,Baby By Me,new,,,,,25939,FALSE +50 Cent,Candy Shop,new,,,,,12409,FALSE +50 Cent,Disco Inferno,new,,,,,14839,FALSE +50 Cent,Hate It Or Love It,new,,,,,26858,FALSE +50 Cent,In Da Club,existing,,,,,,FALSE +50 Cent,Many Men (Wish Death),new,,,,,73057,FALSE +50 Cent,Outta Control,new,,,,,14844,FALSE +50 Cent,P.I.M.P. (remix),new,,,,,14848,FALSE +50 Cent,P.I.M.P.,new,,,,,75459,FALSE +50 Cent,Patiently Waiting,new,,,,,62672,FALSE +50 Cent,Wanksta,new,,,,,82808,FALSE +A Day to Remember,2nd Sucks,new,,,,,81121,FALSE +A Day to Remember,All I Want,new,,,,,38737,FALSE +A Day to Remember,All Signs Point to Lauderdale,new,,,,,8571,FALSE +A Day to Remember,Have Faith in Me,new,,,,,73073,FALSE +A Day to Remember,"I'm Made of Wax, Larry, What Are You Made Of",new,,,,,74844,FALSE +A Day to Remember,If It Means a Lot to You,new,,,,,68670,FALSE +A Day to Remember,Mr. Highway's Thinking About the End,new,,,,,81407,FALSE +A Day to Remember,Over My Head (Cable Car),new,,,,,74735,FALSE +A Day to Remember,Since U Been Gone,new,,,,,70451,FALSE +A Day to Remember,The Downfall of Us All,new,,,,,27803,FALSE +A Flock Of Seagulls,I Ran So Far Away,existing,,,,,,FALSE +A Flock Of Seagulls,Space Age Love Song,new,A Flock Of Seagulls,,,,61457,FALSE +A Flock Of Seagulls,Wishing (If I Had a Photograph of You),new,A Flock Of Seagulls,,,,52972,FALSE +A Great Big World,Already Home,new,,,,,46454,FALSE +A Great Big World,Hold Each Other,new,,,,,49863,FALSE +A Great Big World,I Really Want It,new,,,,,46510,FALSE +A Great Big World,Rockstar,new,,,,,46550,FALSE +A Great Big World,Say Something,existing,,,,,,FALSE +A Great Big World,You'll Be Okay,new,,,,,47189,FALSE +A Star is Born,Alibi,new,A Star Is Born,,,,56549,FALSE +A Star is Born,Always Remember Us This Way,new,A Star Is Born,,,,56466,FALSE +A Star is Born,Before I Cry,new,A Star Is Born,,,,56541,FALSE +A Star is Born,Black Eyes,new,A Star Is Born,,,,56539,FALSE +A Star is Born,Diggin' My Grave,new,A Star Is Born,,,,56578,FALSE +A Star is Born,Hair Body Face,new,A Star Is Born,,,,56900,FALSE +A Star is Born,Heal Me,new,A Star Is Born,,,,56607,FALSE +A Star is Born,I Don't Know What Love Is,new,A Star Is Born,,,,56543,FALSE +A Star is Born,I'll Never Love Again,new,A Star Is Born,,,,56478,FALSE +A Star is Born,Is That Alright,new,A Star Is Born,,,,56469,FALSE +A Star is Born,La vie en rose,new,A Star Is Born,,,,56738,FALSE +A Star is Born,Look What I Found,new,A Star Is Born,,,,56512,FALSE +A Star is Born,Maybe It's Time,new,A Star Is Born,,,,56540,FALSE +A Star is Born,Music to My Eyes,new,A Star Is Born,,,,56545,FALSE +A Star is Born,Shallow (Nesco Remix),new,A Star Is Born,,,,57997,FALSE +A Star is Born,Shallow,new,A Star Is Born,,,,56442,FALSE +A Star is Born,Too Far Gone (Bradley Cooper),new,A Star Is Born,,,,56616,FALSE +A Star is Born,Why Did You Do That,new,A Star Is Born,,,,56623,FALSE +A Taste of Honey,Boogie Oogie Oogie,new,,,,,8652,FALSE +A Tribe Called Quest,Can I Kick It ?,existing,,,,,,FALSE +A Tribe Called Quest,Can I Kick It,new,,,,,31163,FALSE +A Tribe Called Quest,Check the Rhime,new,,,,,80262,FALSE +A Tribe Called Quest,Electric Relaxation,new,,,,,79987,FALSE +A Tribe Called Quest,Scenario,new,,,,,70195,FALSE +A-Ha,Take On Me,existing,,,,,,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Azucar,new,,,,,80631,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Baila esta kumbia,new,,,,,70239,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Fuiste mala,new,,,,,81691,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Na Na Na (Dulce Nina),new,,,,,73696,FALSE +A. B. Quintanilla III & Los Kumbia Kings,Sabes a chocolate,new,,,,,73516,FALSE +ABBA,Dancing Queen,existing,,,,,,FALSE +ABBA,Mamma Mia,existing,,,,,,FALSE +ABBA,Take A Chance On Me,existing,,,,,,FALSE +ABBA,The Winner Takes It All,existing,,,,,,FALSE +ABC,Be Near Me,new,,,,,23826,FALSE +ABC,Poison Arrow,new,,,,,21071,FALSE +ABC,When Smokey Sings,new,,,,,27958,FALSE +AC/DC,Back In Black,existing,,,,,,FALSE +AC/DC,Dirty Deeds Done Dirt Cheap,existing,,,,,,FALSE +AC/DC,For Those About To Rock,existing,,,,,,FALSE +AC/DC,Hells Bells,existing,,,,,,FALSE +AC/DC,Highway To Hell,existing,,,,,,FALSE +AC/DC,Rock And Roll Ain't Noise Pollution,existing,,,,,,FALSE +AC/DC,Shoot To Thrill,existing,,,,,,FALSE +AC/DC,T.N.T.,existing,,,,,,FALSE +AC/DC,Thunderstruck,existing,,,,,,FALSE +AC/DC,Whole Lotta Rosie,existing,,,,,,FALSE +AC/DC,You Shook Me All Night Long,existing,,,,,,FALSE +AJR,100 Bad Days,new,,,,,72805,FALSE +AJR,Bang!,new,,,,,62629,FALSE +AJR,Burn the House Down,new,,,,,70406,FALSE +AJR,I'm Not Famous,new,,,,,82168,FALSE +AJR,I'm Ready,new,,,,,47744,FALSE +AJR,Inertia,new,,,,,79717,FALSE +AJR,Karma,new,,,,,82119,FALSE +AJR,Sober Up,new,,,,,55860,FALSE +AJR,Steve's Going to London,new,,,,,78984,FALSE +AJR,The Dumb Song,new,,,,,75748,FALSE +AJR,Way Less Sad,new,,,,,70725,FALSE +AJR,Weak,new,,,,,69147,FALSE +AJR,World's Smallest Violin,new,,,,,70788,FALSE +AJR,Yes I'm a Mess,new,,,,,50604,FALSE +ALX,Runnin',existing,,,,,,FALSE +ASAP Rocky,Fuckin' Problems,new,,,,,43246,FALSE +ASAP Rocky,Praise the Lord (Da Shine),new,,,,,76038,FALSE +ASAP Rocky,Wild For The Night,new,,,,,43188,FALSE +Abba,Angel Eyes,existing,ABBA,,,,,FALSE +Abba,Chiquitita,existing,ABBA,,,,,FALSE +Abba,Does Your Mother Know ?,existing,ABBA,,,,,FALSE +Abba,Fernando,existing,ABBA,,,,,FALSE +Abba,Gimme Gimme Gimme,existing,ABBA,,,,,FALSE +Abba,Hole In Your Soul - Live,existing,ABBA,,,,,FALSE +Abba,Honey Honey,existing,ABBA,,,,,FALSE +Abba,I Do,existing,ABBA,,,,,FALSE +Abba,I Have a Dream,existing,ABBA,,,,,FALSE +Abba,Knowing Me Knowing You,existing,ABBA,,,,,FALSE +Abba,Lay All Your Love On Me,existing,ABBA,,,,,FALSE +Abba,Money,existing,ABBA,,,,,FALSE +Abba,Name of the Game,existing,ABBA,,,,,FALSE +Abba,One of Us,existing,ABBA,,,,,FALSE +Abba,Our Last Summer,existing,ABBA,,,,,FALSE +Abba,Ring Ring,existing,ABBA,,,,,FALSE +Abba,S.O.S.,existing,ABBA,,,,,FALSE +Abba,Summer Night City,existing,ABBA,,,,,FALSE +Abba,Super Trouper,existing,ABBA,,,,,FALSE +Abba,Thank You for the Music,existing,ABBA,,,,,FALSE +Abba,Voulez Vous,existing,ABBA,,,,,FALSE +Abba,Waterloo,existing,ABBA,,,,,FALSE +Abc,Look of Love,existing,ABC,,,,,FALSE +Ace of Base,All That She Wants,new,,,,,7115,FALSE +Ace of Base,The Sign,new,,,,,10111,FALSE +Adam & The Ants,Prince Charming,existing,,,,,,FALSE +Adam & The Ants,Stand & Deliver,existing,,,,,,FALSE +Adam Ant,Goody Two Shoes,new,,,,,10914,FALSE +Adam Ant,Strip,new,,,,,36907,FALSE +Adam Lambert,For Your Entertainment,new,,,,,26530,FALSE +Adam Lambert,Ghost Town,new,,,,,49229,FALSE +Adam Lambert,If I Had You,new,,,,,28969,FALSE +Adam Lambert,Whataya Want From Me,existing,,,,,,FALSE +Adele,Chasing Pavements,existing,,,,,,FALSE +Adele,Cold Shoulder,existing,,,,,,FALSE +Adele,Easy On Me (with Chris Stapleton),new,,,,,67387,FALSE +Adele,Easy on Me,new,,,,,66627,FALSE +Adele,Hello,new,,,,,50052,FALSE +Adele,Make You Feel My Love,existing,,,,,,FALSE +Adele,One & Only,existing,,,,,,FALSE +Adele,Rolling In The Deep,existing,,,,,,FALSE +Adele,Set Fire To The Rain,existing,,,,,,FALSE +Adele,Skyfall,existing,,,,,,FALSE +Adele,Someone Like You,existing,,,,,,FALSE +Adele,When We Were Young,new,,,,,50191,FALSE +Aerosmith,Amazing,existing,,,,,,FALSE +Aerosmith,Dream On,existing,,,,,,FALSE +Aerosmith,I Don't Want To Miss A Thing,existing,,,,,,FALSE +Aerosmith,Janie's Got A Gun,existing,,,,,,FALSE +Aerosmith,Love In An Elevator,existing,,,,,,FALSE +Aerosmith,Same Old Song and Dance,new,,,,,16805,FALSE +Aerosmith,Sweet Emotion,existing,,,,,,FALSE +Aerosmith,Walk This Way,existing,,,,,,FALSE +Aerosmith,What It Takes,existing,,,,,,FALSE +African-American Spiritual,Joshua Fit The Battle of Jericho (A Cappella),existing,,,,,,FALSE +Afrojack,As Your Friend,new,,,,,43709,FALSE +Afrojack,Hey,new,,,,,51302,FALSE +Afrojack,Take Over Control,new,,,,,35757,FALSE +Afrojack,Ten Feet Tall,new,,,,,47048,FALSE +Afrojack,The Spark,new,,,,,45824,FALSE +Air Supply,All Out of Love,new,,,,,10286,FALSE +Air Supply,Even the Nights Are Better,new,,,,,14878,FALSE +Air Supply,Lost in Love,new,,,,,6111,FALSE +Air Supply,Making Love Out of Nothing at All,new,,,,,20934,FALSE +Air Supply,Without You,new,,,,,75266,FALSE +Akon,Angel,new,,,,,36091,FALSE +Akon,Belly Dancer (Bananza),new,,,,,83618,FALSE +Akon,Don't Matter,new,,,,,11781,FALSE +Akon,I Wanna Love You,new,,,,,78615,FALSE +Akon,Locked Up,new,,,,,14880,FALSE +Akon,Lonely,new,,,,,14881,FALSE +Akon,Oh Africa,new,,,,,28932,FALSE +Akon,Right Now (Na Na Na),new,,,,,21231,FALSE +Akon,Smack That,new,,,,,59765,FALSE +Akon,"Sorry, Blame It on Me",new,,,,,12506,FALSE +Al Green,Here I Am (Come And Take Me),new,,,,,34044,FALSE +Al Green,I'm Still In Love With You,new,,,,,16814,FALSE +Al Green,Let's Stay Together,existing,,,,,,FALSE +Al Green,Love And Happiness,existing,,,,,,FALSE +Al Green,Tired Of Being Alone,new,,,,,16812,FALSE +Al Martino,Speak Softly Love,existing,,,,,,FALSE +Al Stewart,Time Passages,new,,,,,67244,FALSE +Al Stewart,Year of the Cat,new,,,,,37428,FALSE +Alabama,Born Country,new,,,,,6630,FALSE +Alabama,Dixieland Delight,new,,,,,30054,FALSE +Alabama,I'm in a Hurry (And Don't Know Why),new,,,,,6753,FALSE +Alabama,If You're Gonna Play in Texas (You Gotta Have a Fiddle in the Band),new,,,,,14890,FALSE +Alabama,Mountain Music,new,,,,,14895,FALSE +Alabama,Song of the South,new,,,,,14889,FALSE +Alabama Shakes,Don't Wanna Fight,new,,,,,51409,FALSE +Alabama Shakes,Hold On,existing,,,,,,FALSE +Alan Jackson,Chasin' That Neon Rainbow,new,,,,,6704,FALSE +Alan Jackson,Chattahoochee,new,,,,,6423,FALSE +Alan Jackson,Don't Rock the Jukebox,new,,,,,6583,FALSE +Alan Jackson,Drive (For Daddy Gene),new,,,,,8140,FALSE +Alan Jackson,Gone Country,new,,,,,9501,FALSE +Alan Jackson,Good Time,new,,,,,19880,FALSE +Alan Jackson,It's Five O'Clock Somewhere,existing,,,,,,FALSE +Alan Jackson,Little Bitty,new,,,,,10623,FALSE +Alan Jackson,Livin' on Love,new,,,,,9493,FALSE +Alan Jackson,Remember When,existing,,,,,,FALSE +Alan Walker,All Falls Down,new,,,,,81051,FALSE +Alan Walker,Alone,new,,,,,52622,FALSE +Alan Walker,"Alone, Pt. II",new,,,,,76738,FALSE +Alan Walker,Darkside,new,,,,,56639,FALSE +Alan Walker,Diamond Heart,new,,,,,56967,FALSE +Alan Walker,Faded,new,,,,,50790,FALSE +Alan Walker,Lily,new,,,,,74969,FALSE +Alan Walker,Sing Me to Sleep,new,,,,,52064,FALSE +Alan Walker,The Spectre,new,,,,,78224,FALSE +Alanis Morissette,Hand in My Pocket,new,,,,,14440,FALSE +Alanis Morissette,Head over Feet,new,,,,,14527,FALSE +Alanis Morissette,Ironic,new,,,,,14441,FALSE +Alanis Morissette,Thank U,new,,,,,9267,FALSE +Alanis Morissette,You Learn,new,,,,,10839,FALSE +Alanis Morissette,You Oughta Know,existing,,,,,,FALSE +Alannah Myles,Black Velvet,existing,,,,,,FALSE +Albert Hammond,It Never Rains In Southern California,existing,,,,,,FALSE +Albert King,Born Under a Bad Sign,new,,,,,55885,FALSE +Albert King,I'll Play the Blues for You,new,,,,,53248,FALSE +Albert King,Killing Floor,new,,,,,67495,FALSE +Alec Benjamin,Devil Doesn't Bargain,new,,,,,73283,FALSE +Alec Benjamin,I Built a Friend,new,,,,,83219,FALSE +Alec Benjamin,If I Killed Someone for You,new,,,,,78577,FALSE +Alec Benjamin,If We Had Each Other,new,,,,,75206,FALSE +Alec Benjamin,Let Me Down Slowly (feat. Alessia Cara),new,,,,,57354,FALSE +Alec Benjamin,Let Me Down Slowly,new,,,,,57353,FALSE +Alec Benjamin,Oh my God,new,,,,,61755,FALSE +Alec Benjamin,Outrunning Karma,new,,,,,80772,FALSE +Alejandro Fernandez,Caballero,new,,,,,76237,FALSE +Alejandro Fernandez,Canta corazon,new,,,,,27117,FALSE +Alejandro Fernandez,Como quien pierde una estrella,new,,,,,60828,FALSE +Alejandro Fernandez,Eres,new,,,,,22335,FALSE +Alejandro Fernandez,Hoy tengo ganas de ti,new,,,,,69844,FALSE +Alejandro Fernandez,Las mananitas,new,,,,,60496,FALSE +Alejandro Fernandez,Matalas,new,,,,,59682,FALSE +Alejandro Fernandez,Me dedique a perderte,new,,,,,14316,FALSE +Alejandro Fernandez,Me estoy enamorando,new,,,,,27075,FALSE +Alejandro Fernandez,No,new,,,,,77564,FALSE +Alejandro Fernandez,Nube Viajera,new,,,,,76136,FALSE +Alejandro Fernandez,Se me va la voz,new,,,,,36098,FALSE +Alejandro Fernandez,Tantita pena,new,,,,,16064,FALSE +Alejandro Fernandez,Te voy a perder,new,,,,,22336,FALSE +Alejandro Sanz,Amiga mia,new,,,,,63777,FALSE +Alejandro Sanz,Aprendiz,new,,,,,6786,FALSE +Alejandro Sanz,Corazon Partio,existing,,,,,,FALSE +Alejandro Sanz,Cuando nadie me ve,new,,,,,74896,FALSE +Alejandro Sanz,Deja que te bese,new,,,,,52147,FALSE +Alejandro Sanz,Desde cuando,new,,,,,36071,FALSE +Alejandro Sanz,Looking for Paradise,new,,,,,25929,FALSE +Alejandro Sanz,Mi persona favorita,new,,,,,80568,FALSE +Alejandro Sanz,Mi soledad y yo,new,,,,,76943,FALSE +Alejandro Sanz,No es lo mismo,new,,,,,20659,FALSE +Alejandro Sanz,No me compares,new,,,,,41905,FALSE +Alejandro Sanz,"Te lo agradezco, pero no",new,,,,,16582,FALSE +Alejandro Sanz,"Y, Si fuera ella",new,,,,,71574,FALSE +Alesha Dixon,Boy Does Nothing,existing,,,,,,FALSE +Alessia Cara,Here,new,,,,,49814,FALSE +Alessia Cara,I Choose,new,,,,,62219,FALSE +Alessia Cara,Out of Love,new,,,,,58978,FALSE +Alessia Cara,River of Tears,new,,,,,52846,FALSE +Alessia Cara,Scars to Your Beautiful,new,,,,,51263,FALSE +Alessia Cara,Wild Things,new,,,,,50911,FALSE +Alesso,Heroes (We Could Be),new,,,,,48356,FALSE +Alesso,The End,new,,,,,62732,FALSE +Alesso,When I'm Gone,new,,,,,67800,FALSE +Alexander O'neal,Criticise,existing,,,,,,FALSE +Alexandra Burke,Bad Boys,existing,,,,,,FALSE +Alexandra Burke,Hallelujah,existing,,,,,,FALSE +Alexandra Stan,Mr Saxobeat,existing,,,,,,FALSE +Alice Cooper,Feed My Frankenstein,new,,,,,51466,FALSE +Alice Cooper,I'm Eighteen,existing,,,,,,FALSE +Alice Cooper,No More Mister Nice Guy,new,,,,,26418,FALSE +Alice Cooper,Poison,new,,,,,13025,FALSE +Alice Cooper,School's Out,existing,,,,,,FALSE +Alice In Chains,Rooster,existing,,,,,,FALSE +Alice In Chains,Check My Brain,new,Alice In Chains,,,,70361,FALSE +Alice In Chains,Down in a Hole,new,Alice In Chains,,,,65815,FALSE +Alice In Chains,Man in the Box,new,Alice In Chains,,,,38603,FALSE +Alice In Chains,No Excuses,new,Alice In Chains,,,,44076,FALSE +Alice In Chains,Nutshell (unplugged),new,Alice In Chains,,,,74283,FALSE +Alice In Chains,Nutshell,new,Alice In Chains,,,,36455,FALSE +Alice In Chains,Rotten Apple,new,Alice In Chains,,,,70302,FALSE +Alice In Chains,Them Bones,new,Alice In Chains,,,,63879,FALSE +Alice In Chains,Would,new,Alice In Chains,,,,40750,FALSE +Alicia Keys,Empire State of Mind - Part 2,existing,,,,,,FALSE +Alicia Keys,Fallin' - Live Arragnement,existing,,,,,,FALSE +Alicia Keys,Fallin',new,,,,,5487,FALSE +Alicia Keys,Girl On Fire,existing,,,,,,FALSE +Alicia Keys,If I Ain't Got You,existing,,,,,,FALSE +Alicia Keys,No One,new,,,,,13212,FALSE +Alicia Keys,Un-Thinkable (I'm Ready),new,,,,,29598,FALSE +Alicia Keys,You Don't Know My Name,new,,,,,13455,FALSE +Alien Ant Farm,Smooth Criminal,new,,,,,7992,FALSE +Alison Krauss,Baby Now That I've Found You,existing,,,,,,FALSE +Alison Krauss,Down To The River To Pray,existing,,,,,,FALSE +Alison Krauss,I'll Fly Away,existing,,,,,,FALSE +Alison Krauss,Oh Atlanta,new,,,,,79002,FALSE +Alison Krauss And Union Station,When You Say Nothing At All,existing,,,,,,FALSE +Alison Moyet,All Cried Out,existing,,,,,,FALSE +Alison Moyet,That Ole Devil Called Love,existing,,,,,,FALSE +All Time Low,"Dear Maria, Count Me in",new,,,,,66893,FALSE +All Time Low,I Feel Like Dancin',new,,,,,37302,FALSE +All Time Low,Monsters,new,,,,,70518,FALSE +All Time Low,Remembering Sunday,new,,,,,31263,FALSE +All Time Low,Therapy,new,,,,,77459,FALSE +All Time Low,Weightless,new,,,,,74243,FALSE +Alle Farben,Little Hollywood,new,,,,,53594,FALSE +Alle Farben,Supergirl,new,,,,,49310,FALSE +Alligatoah,Du bist schon,new,,,,,31297,FALSE +Alligatoah,Willst du,new,,,,,66244,FALSE +Aloe Blacc,I Need a Dollar,existing,,,,,,FALSE +Aloe Blacc,The Man,new,,,,,46338,FALSE +Aloe Blacc,Wake Me Up (acoustic),new,,,,,45267,FALSE +Alok,Deep Down,new,,,,,73878,FALSE +Alok,Hear Me Now,new,,,,,53062,FALSE +Alok,Wherever You Go,new,,,,,67189,FALSE +Alok,Work with My Love,new,,,,,74895,FALSE +Alt-J,Breezeblocks,new,,,,,55868,FALSE +Alt-J,Left Hand Free,new,,,,,73097,FALSE +Alt-J,Tessellate,new,,,,,80492,FALSE +Alvaro Soler,El mismo sol (feat. Jennifer Lopez),new,,,,,63050,FALSE +Alvaro Soler,La Cintura,new,,,,,55396,FALSE +Alvaro Soler,Manila,new,,,,,68163,FALSE +Alvaro Soler,Sofia,new,,,,,51106,FALSE +Alvin Lee,Bluest Blues,existing,,,,,,FALSE +Alvin Stardust,My Coo Ca Choo,existing,,,,,,FALSE +Alvin Stardust,Pretend,existing,,,,,,FALSE +Ambrosia,Biggest Part Of Me,new,,,,,16837,FALSE +Ambrosia,Holdin' On to Yesterday,new,,,,,63429,FALSE +Ambrosia,How Much I Feel,new,,,,,53046,FALSE +Ambrosia,You're the Only Woman (You & I),new,,,,,63625,FALSE +Amelia Lily,You Bring Me Joy,existing,,,,,,FALSE +Amen Corner,(If Paradise Is) Half as Nice,existing,,,,,,FALSE +Amen Corner,Bend Me Shape Me,existing,,,,,,FALSE +America,A Horse With No Name,existing,,,,,,FALSE +America,All My Life,new,,,,,8429,FALSE +America,I Need You,new,,,,,8419,FALSE +America,Lonely People,new,,,,,8425,FALSE +America,Sister Golden Hair,new,,,,,8426,FALSE +America,Tin Man,new,,,,,8424,FALSE +America,Ventura Highway,existing,,,,,,FALSE +America,You Can Do Magic,existing,,,,,,FALSE +American Authors,Best Day of My Life,existing,,,,,,FALSE +Amii Stewart,Knock On Wood,existing,,,,,,FALSE +Amy Grant,A Christmas to Remember,new,,,,,59406,FALSE +Amy Grant,Baby Baby,new,,,,,6091,FALSE +Amy Grant,"Baby, It's Christmas",new,,,,,45365,FALSE +Amy Grant,Believe (Theme from Three Wishes),new,,,,,14939,FALSE +Amy Grant,Better than a Hallelujah,new,,,,,78918,FALSE +Amy Grant,Big Yellow Taxi,new,,,,,10788,FALSE +Amy Grant,Breath Of Heaven (Mary's Song),new,,,,,35565,FALSE +Amy Grant,Christmas Can't Be Very Far Away,new,,,,,56487,FALSE +Amy Grant,El Shaddai,new,,,,,6448,FALSE +Amy Grant,Every Heartbeat,new,,,,,6099,FALSE +Amy Grant,Good for Me,new,,,,,16911,FALSE +Amy Grant,Grown-Up Christmas List,new,,,,,62124,FALSE +Amy Grant,House of Love,new,,,,,10086,FALSE +Amy Grant,I Will Be Your Friend,new,,,,,9197,FALSE +Amy Grant,I Will Remember You,new,,,,,6795,FALSE +Amy Grant,I'll Be Home for Christmas,new,,,,,14940,FALSE +Amy Grant,It Is Well with My Soul The River's Gonna Keep on Rolling,new,,,,,81418,FALSE +Amy Grant,It's the Most Wonderful Time of the Year,new,,,,,56435,FALSE +Amy Grant,Jingle Bell Rock,new,,,,,50093,FALSE +Amy Grant,Lucky One,new,,,,,11460,FALSE +Amy Grant,Rockin' Around the Christmas Tree,new,,,,,50079,FALSE +Amy Grant,Sing Your Praise to the Lord,new,,,,,61206,FALSE +Amy Grant,Sleigh Ride,new,,,,,56429,FALSE +Amy Grant,Takes A Little Time,new,,,,,9563,FALSE +Amy Grant,Tennessee Christmas,new,,,,,14937,FALSE +Amy Grant,That's What Love is For,new,,,,,16910,FALSE +Amy Grant,Winter Wonderland,new,,,,,7542,FALSE +Amy Mcdonald,Mr Rock & Roll,existing,,,,,,FALSE +Amy Mcdonald,This Is the Life,existing,,,,,,FALSE +Amy Winehouse,Back To Black,existing,,,,,,FALSE +Amy Winehouse,Love Is a Losing Game,existing,,,,,,FALSE +Amy Winehouse,Our Day Will Come,existing,,,,,,FALSE +Amy Winehouse,Rehab,existing,,,,,,FALSE +Amy Winehouse,Tears Dry On Their Own,existing,,,,,,FALSE +Amy Winehouse,Valerie,existing,,,,,,FALSE +Amy Winehouse,Will You Still Love Me Tomorrow,existing,,,,,,FALSE +Amy Winehouse,You Know I'm No Good,existing,,,,,,FALSE +Anastacia,I'm Outta Love,existing,,,,,,FALSE +Anastacia,Left Outside Alone,existing,,,,,,FALSE +Anastacia,Sick and Tired,new,,,,,5421,FALSE +Anderson .Paak,Am I Wrong,new,,,,,78523,FALSE +Anderson .Paak,Come Down,new,,,,,64556,FALSE +Anderson .Paak,Make It Better,new,,,,,59538,FALSE +Andrea Bocelli,Con te partiro,new,,,,,5976,FALSE +Andrea Bocelli,Time to Say Goodbye,new,,,,,14578,FALSE +Andrea Bocelli,Vivo per lei,new,,,,,70608,FALSE +Andrew Gold,Never Let Her Slip Away,existing,,,,,,FALSE +Andrews Sisters,Boogie Woogie Bugle Boy (A Cappella),existing,The Andrews Sisters,,,,,FALSE +Andy Gibb,I Just Want To Be Your Everything,new,,,,,14952,FALSE +Andy Gibb,Shadow Dancing,new,,,,,14951,FALSE +Andy Williams,Butterfly,existing,,,,,,FALSE +Andy Williams,Can't Take My Eyes off You,existing,,,,,,FALSE +Andy Williams,It's the Most Wonderful Time of the Year,existing,,,,,,FALSE +Animal Magnet,Welcome To the Monkey House,existing,,,,,,FALSE +Anne Murray,I Just Fall In Love Again,new,,,,,10284,FALSE +Anne Murray,Just Another Woman In Love,new,,,,,16923,FALSE +Anne Murray,You Needed Me,new,,,,,17559,FALSE +Anne-Marie,2002 (acoustic),new,,,,,56252,FALSE +Anne-Marie,Ciao Adios,new,,,,,52868,FALSE +Anne-Marie,Friends,new,,,,,55256,FALSE +Anne-Marie,Unhealthy,new,,,,,75207,FALSE +Annie Lennox,I Put a Spell on You,new,,,,,48790,FALSE +Annie Lennox,No More I Love You's,new,,,,,7156,FALSE +Annie Lennox,Walking on Broken Glass,new,,,,,6433,FALSE +Anthony Hamilton,Best of Me,new,,,,,55358,FALSE +Anthony Hamilton,Charlene,new,,,,,55045,FALSE +Anthrax,Bring the Noise,new,,,,,31947,FALSE +Anthrax,Caught in a Mosh,new,,,,,77651,FALSE +Anthrax,I'm the Man,new,,,,,78018,FALSE +Anthrax,Indians,new,,,,,83544,FALSE +Anthrax,Only,new,,,,,76251,FALSE +Antonio Carlos Jobim,A felicidade,new,,,,,38731,FALSE +Antonio Carlos Jobim,Brazil (Aquarela do Brasil),new,,,,,73744,FALSE +Antonio Carlos Jobim,Eu sei que vou te amar,new,,,,,62963,FALSE +Antonio Carlos Jobim,Luiza,new,,,,,73496,FALSE +Antonio Carlos Jobim,Passarim,new,,,,,75518,FALSE +Antonio Carlos Jobim,The Girl From Ipanema,existing,,,,,,FALSE +Antonio Carlos Jobim,The Girl from Ipanema,new,,,,,35603,FALSE +Apache 207,Breaking Your Heart,new,,,,,74679,FALSE +Apache 207,Neunzig,new,,,,,75320,FALSE +Apache 207,Roller,new,,,,,60492,FALSE +Apache 207,Wunder,new,,,,,82292,FALSE +Apocalyptica,I Don't Care,new,,,,,72555,FALSE +Apocalyptica,I'm Not Jesus,new,,,,,74899,FALSE +Apocalyptica,Not Strong Enough,new,,,,,70568,FALSE +April Wine,Just Between You and Me,new,,,,,64724,FALSE +April Wine,Roller,new,,,,,65203,FALSE +April Wine,Sign Of The Gypsy Queen,existing,,,,,,FALSE +April Wine,You Could Have Been a Lady,new,,,,,25997,FALSE +Arcade Fire,Everything Now,new,,,,,54143,FALSE +Arcade Fire,Intervention,new,,,,,12413,FALSE +Arcade Fire,Wake Up,new,,,,,40150,FALSE +Arcade Fire,We Used to Wait,new,,,,,45720,FALSE +Archie Bell & The Drells,Here I Go Again,existing,,,,,,FALSE +Arctic Monkeys,505,new,,,,,69656,FALSE +Arctic Monkeys,Do I Wanna Know,existing,,,,,,FALSE +Arctic Monkeys,Fluorescent Adolescents,existing,,,,,,FALSE +Arctic Monkeys,I Bet You Look Good On the Dancefloor,existing,,,,,,FALSE +Arctic Monkeys,I Wanna Be Yours,new,,,,,71897,FALSE +Arctic Monkeys,R U Mine,existing,,,,,,FALSE +Arctic Monkeys,Snap Out of It,new,,,,,47249,FALSE +Arctic Monkeys,Why'd You Only Call Me When You're High,new,,,,,58052,FALSE +Aretha Franklin,A Change Is Gonna Come,new,,,,,75117,FALSE +Aretha Franklin,Chain of Fools,new,,,,,14976,FALSE +Aretha Franklin,"Do Right Woman, Do Right Man",new,,,,,35601,FALSE +Aretha Franklin,I Never Loved A Man (The Way I Loved You),existing,,,,,,FALSE +Aretha Franklin,I Say A Little Prayer,existing,,,,,,FALSE +Aretha Franklin,Natural Woman,existing,,,,,,FALSE +Aretha Franklin,Respect,existing,,,,,,FALSE +Aretha Franklin,Rock Steady,existing,,,,,,FALSE +Aretha Franklin,Think,existing,,,,,,FALSE +Aretha Franklin,Until You Come Back to Me,new,,,,,24106,FALSE +Ariana Grande,7 Rings,new,,,,,57318,FALSE +Ariana Grande,Bang Bang,existing,,,,,,FALSE +Ariana Grande,Break Free,existing,,,,,,FALSE +Ariana Grande,Dangerous Woman,new,,,,,50943,FALSE +Ariana Grande,Into You,new,,,,,51326,FALSE +Ariana Grande,Intro (End of the World),new,,,,,80958,FALSE +Ariana Grande,One Last Time,existing,,,,,,FALSE +Ariana Grande,Problem,existing,,,,,,FALSE +Ariana Grande,The Boy Is Mine,new,,,,,80322,FALSE +Ariana Grande,We Can't Be Friends (Wait for Your Love),new,,,,,80253,FALSE +Ariana Grande,"Yes, And",new,,,,,79178,FALSE +Arlo Guthrie,Alice's Restaurant,new,,,,,10573,FALSE +Arlo Guthrie,City of New Orleans,new,,,,,58867,FALSE +Arlo Guthrie,Coming into Los Angeles,new,,,,,76911,FALSE +Arlo Guthrie,The Motorcycle Song,new,,,,,80208,FALSE +Armin Van Buuren,Another You,new,,,,,49240,FALSE +Armin Van Buuren,Beautiful Life,new,,,,,45674,FALSE +Armin Van Buuren,Blah Blah Blah,new,,,,,79872,FALSE +Armin Van Buuren,Heading Up High,new,,,,,50734,FALSE +Armin Van Buuren,In and Out of Love,new,,,,,40328,FALSE +Armin Van Buuren,Saturday Night,new,,,,,40819,FALSE +Armin Van Buuren,Sunny Days,new,,,,,54041,FALSE +Armin Van Buuren,This Is What It Feels Like,new,,,,,43524,FALSE +Arrested Development,Mr. Wendal,existing,,,,,,FALSE +Arrow,Hot Hot Hot,existing,,,,,,FALSE +Art of Noise,Kiss,new,,,,,25950,FALSE +Arthur Conley,Sweet Soul Music,existing,,,,,,FALSE +Ashanti,Don't Leave Me Alone,existing,,,,,,FALSE +Ashlee Simpson,L-O-V-E,existing,,,,,,FALSE +Ashley McBryde,Light on in the Kitchen,new,,,,,74144,FALSE +Ashley McBryde,One Night Standards,new,,,,,57471,FALSE +Ashnikko,Daisy,new,,,,,65764,FALSE +Ashnikko,Deal with It,new,,,,,80428,FALSE +Ashnikko,"Hi, It's Me",new,,,,,78860,FALSE +Ashnikko,Panic Attacks in Paradise,new,,,,,72660,FALSE +Ashnikko,Slumber Party,new,,,,,65587,FALSE +Ashnikko,Stupid,new,,,,,73429,FALSE +Ashnikko,Working Bitch,new,,,,,74536,FALSE +Asking Alexandria,A Prophecy,new,,,,,38807,FALSE +Asking Alexandria,Alone in a Room (acoustic),new,,,,,81435,FALSE +Asking Alexandria,Alone in a Room,new,,,,,75312,FALSE +Asking Alexandria,Moving On,new,,,,,74562,FALSE +Asking Alexandria,Not The American Average,new,,,,,80743,FALSE +Asleep At The Wheel,Miles And Miles Of Texas,existing,,,,,,FALSE +Asleep At The Wheel,Route 66,existing,,,,,,FALSE +Astrud Gilberto,A Certain Sadness,new,,,,,64167,FALSE +Astrud Gilberto,Agua de Beber,new,,,,,19320,FALSE +Astrud Gilberto,Berimbau,new,,,,,67386,FALSE +Astrud Gilberto,Corcovado (Quiet Nights of Quiet Stars),new,,,,,33487,FALSE +Astrud Gilberto,Dindi,new,,,,,83353,FALSE +Astrud Gilberto,Fly Me to the Moon,new,,,,,42282,FALSE +Astrud Gilberto,Goodbye Sadness (Tristeza),new,,,,,65637,FALSE +Astrud Gilberto,Here's That Rainy Day,new,,,,,65047,FALSE +Astrud Gilberto,Light My Fire,new,,,,,63808,FALSE +Astrud Gilberto,Manha de Carnaval,new,,,,,39680,FALSE +Astrud Gilberto,Meditation,new,,,,,74343,FALSE +Astrud Gilberto,So Nice (Summer Samba),new,,,,,64687,FALSE +Astrud Gilberto,Take It Easy My Brother Charlie,new,,,,,64887,FALSE +Astrud Gilberto,The Girl from Ipanema,new,,,,,13584,FALSE +Astrud Gilberto,The Shadow of Your Smile,new,,,,,36889,FALSE +Astrud Gilberto & Stan Getz,The Girl From Ipanema (A Cappella),existing,Astrud Gilberto,,,,,FALSE +Aswad,Don't Turn Around,existing,,,,,,FALSE +Atlanta Rhythm Section,Imaginary Lover,new,,,,,16930,FALSE +Atlanta Rhythm Section,So Into You,existing,,,,,,FALSE +Atlanta Rhythm Section,Spooky,existing,,,,,,FALSE +Atomic Kitten,Eternal Flame,existing,,,,,,FALSE +Audioslave,Be Yourself,new,,,,,15012,FALSE +Audioslave,Cochise,new,,,,,15008,FALSE +Audioslave,Doesn't Remind Me,new,,,,,15014,FALSE +Audioslave,Gasoline,new,,,,,50904,FALSE +Audioslave,I Am the Highway,new,,,,,15010,FALSE +Audioslave,Like A Stone,existing,,,,,,FALSE +Audioslave,Show Me How to Live,new,,,,,15009,FALSE +Australian Crawl,Reckless,existing,,,,,,FALSE +Autograph,Turn Up the Radio,new,,,,,56712,FALSE +Ava Max,Kings & Queens,new,,,,,61054,FALSE +Ava Max,My Head & My Heart,new,,,,,63298,FALSE +Ava Max,Sweet But Psycho,new,,,,,56789,FALSE +Avenged Sevenfold,A Little Piece of Heaven,new,,,,,35247,FALSE +Avenged Sevenfold,Afterlife,existing,,,,,,FALSE +Avenged Sevenfold,Bat Country,new,,,,,70694,FALSE +Avenged Sevenfold,Dear God,new,,,,,65920,FALSE +Avenged Sevenfold,Hail to the King,new,,,,,69172,FALSE +Avenged Sevenfold,Nightmare,new,,,,,59798,FALSE +Avenged Sevenfold,Shepherd of Fire,new,,,,,70537,FALSE +Avenged Sevenfold,So Far Away,new,,,,,57130,FALSE +Average White Band,Let's Go Round Again,existing,,,,,,FALSE +Average White Band,Pick Up The Pieces,existing,,,,,,FALSE +Avicii,Addicted to You,new,,,,,45491,FALSE +Avicii,Hey Brother,existing,,,,,,FALSE +Avicii,I Could Be the One,new,,,,,42665,FALSE +Avicii,Levels,new,,,,,39101,FALSE +Avicii,S.O.S.,new,,,,,58112,FALSE +Avicii,The Nights,new,,,,,48559,FALSE +Avicii,Waiting For Love,new,,,,,49425,FALSE +Avicii,Wake Me Up,existing,,,,,,FALSE +Avicii,Without You,new,,,,,54096,FALSE +Avril Lavigne,Complicated,existing,,,,,,FALSE +Avril Lavigne,Girlfriend,new,,,,,11882,FALSE +Avril Lavigne,Here's To Never Growing Up,existing,,,,,,FALSE +Avril Lavigne,I'm With You,new,,,,,7201,FALSE +Avril Lavigne,Sk8er Boi,new,,,,,6946,FALSE +Avril Lavigne,What The Hell,existing,,,,,,FALSE +Awolnation,Sail,existing,,,,,,FALSE +Axe,Rock N Roll Party In The Streets,existing,,,,,,FALSE +B.B. King,3 O'Clock Blues,new,,,,,75073,FALSE +B.B. King,Blues Man,new,,,,,69071,FALSE +B.B. King,Bring It Home to Me,new,,,,,66021,FALSE +B.B. King,Caldonia,existing,,,,,,FALSE +B.B. King,Choo Choo Ch'Boogie,existing,,,,,,FALSE +B.B. King,Come Rain Or Come Shine,existing,,,,,,FALSE +B.B. King,Don't Answer The Door,existing,,,,,,FALSE +B.B. King,Every Day I Have the Blues,new,,,,,75436,FALSE +B.B. King,How Blue Can You Get,new,,,,,59238,FALSE +B.B. King,Hummingbird,new,,,,,80368,FALSE +B.B. King,I'll Survive,new,,,,,8537,FALSE +B.B. King,Let The Good Times Roll,existing,,,,,,FALSE +B.B. King,"Merry Christmas, Baby",new,,,,,71545,FALSE +B.B. King,Never Make a Move Too Soon,new,,,,,71600,FALSE +B.B. King,Night Life,new,,,,,73024,FALSE +B.B. King,Please Send Me Someone To Love,existing,,,,,,FALSE +B.B. King,Rock Me Baby,existing,,,,,,FALSE +B.B. King,Something You Got,new,,,,,78282,FALSE +B.B. King,Sweet Sixteen,new,,,,,72617,FALSE +B.B. King,The Thrill Is Gone,existing,,,,,,FALSE +B.B. King,Why I Sing the Blues (live),new,,,,,78113,FALSE +B.J. Thomas,Another Somebody Done Somebody Wrong Song,existing,,,,,,FALSE +B.J. Thomas,Raindrops Keep Fallin On My Head,existing,,,,,,FALSE +B.o.B.,Airplanes,existing,,,,,,FALSE +B.o.B.,Nothin On You,existing,,,,,,FALSE +B.o.B.,So Good,existing,,,,,,FALSE +BTS (),"Blood, Sweat & Tears ( )",new,BTS,,,,56921,FALSE +BTS (),Boy With Luv ( ),new,BTS,,,,58943,FALSE +BTS (),Butter,new,BTS,,,,65079,FALSE +BTS (),DNA,new,BTS,,,,62806,FALSE +BTS (),Dynamite (acoustic remix),new,BTS,,,,62303,FALSE +BTS (),Dynamite,new,BTS,,,,62268,FALSE +BTS (),Epiphany,new,BTS,,,,67000,FALSE +BTS (),Euphoria,new,BTS,,,,65939,FALSE +BTS (),Fake Love ( ),new,BTS,,,,56353,FALSE +BTS (),Go Go,new,BTS,,,,62407,FALSE +BTS (),I Need U,new,BTS,,,,69296,FALSE +BTS (),Idol,new,BTS,,,,56956,FALSE +BTS (),Life Goes On,new,BTS,,,,63866,FALSE +BTS (),MIC Drop (Steve Aoki remix),new,BTS,,,,70962,FALSE +BTS (),Mikrokosmos (),new,BTS,,,,65902,FALSE +BTS (),Permission to Dance,new,BTS,,,,65636,FALSE +BTS (),Run BTS ( ),new,BTS,,,,71477,FALSE +BTS (),Save Me,new,BTS,,,,74568,FALSE +BTS (),Serendipity ( ),new,BTS,,,,38685,FALSE +BTS (),Spring Day (),new,BTS,,,,62636,FALSE +BTS (),Stay Gold,new,BTS,,,,64905,FALSE +BTS (),The Truth Untold ( ),new,BTS,,,,73195,FALSE +Baccara,Yes Sir I Can Boogie,existing,,,,,,FALSE +Bachman Turner Overdrive,Takin' Care Of Business,existing,Bachman-Turner Overdrive,,,,,FALSE +Bachman Turner Overdrive (BTO),You Ain't Seen Nothing Yet,existing,Bachman-Turner Overdrive,,,,,FALSE +Bachman Turner Overdrive,Let It Ride,new,,,,,15036,FALSE +Backstreet Boys,As Long as You Love Me,new,,,,,9704,FALSE +Backstreet Boys,Everybody (Backstreet's Back),existing,,,,,,FALSE +Backstreet Boys,I Want It That Way,new,,,,,8530,FALSE +Backstreet Boys,Quit Playing Games (With My Heart),new,,,,,10301,FALSE +Backstreet Boys,Shape of My Heart,new,,,,,7588,FALSE +Bad Bunny,Amorfoda,new,,,,,49096,FALSE +Bad Bunny,Booker T,new,,,,,67575,FALSE +Bad Bunny,Callaita,new,,,,,59399,FALSE +Bad Bunny,Dakiti,new,,,,,62875,FALSE +Bad Bunny,Despues de la playa,new,,,,,69942,FALSE +Bad Bunny,Efecto,new,,,,,70390,FALSE +Bad Bunny,La noche de anoche,new,,,,,63402,FALSE +Bad Bunny,Lo Siento BB,new,,,,,67005,FALSE +Bad Bunny,Me porto bonito,new,,,,,70071,FALSE +Bad Bunny,Mia,new,,,,,57077,FALSE +Bad Bunny,Mojabi Ghost,new,,,,,76396,FALSE +Bad Bunny,Monaco,new,,,,,78581,FALSE +Bad Bunny,Moscow Mule,new,,,,,70065,FALSE +Bad Bunny,Neverita,new,,,,,31287,FALSE +Bad Bunny,Ojitos lindos,new,,,,,70139,FALSE +Bad Bunny,Party,new,,,,,69573,FALSE +Bad Bunny,Perro negro,new,,,,,78539,FALSE +Bad Bunny,Safaera,new,,,,,72490,FALSE +Bad Bunny,Si veo a tu mama,new,,,,,27928,FALSE +Bad Bunny,Te bote (remix),new,,,,,55709,FALSE +Bad Bunny,Titi me pregunto,new,,,,,69801,FALSE +Bad Bunny,Yo no soy celoso,new,,,,,70885,FALSE +Bad Bunny,Yo perreo sola,new,,,,,64199,FALSE +Bad Bunny,Yonaguni,new,,,,,26361,FALSE +Bad Company,Bad Company,existing,,,,,,FALSE +Bad Company,Can't Get Enough,existing,,,,,,FALSE +Bad Company,Feel Like Makin Love,existing,,,,,,FALSE +Bad Company,Good Lovin' Gone Bad,new,,,,,47140,FALSE +Bad Company,Movin On,existing,,,,,,FALSE +Bad Company,Ready For Love,existing,,,,,,FALSE +Bad Company,Rock 'n' Roll Fantasy,new,,,,,55105,FALSE +Bad Company,Rock Steady,existing,,,,,,FALSE +Bad Company,Shooting Star,existing,,,,,,FALSE +Bad English,When I See You Smile,existing,,,,,,FALSE +Bad Manners,Lip Up Fatty,existing,,,,,,FALSE +Bad Manners,My Girl Lollipop,existing,,,,,,FALSE +Bad Manners,Special Brew,existing,,,,,,FALSE +Bad Manners,Woolly Bully,existing,,,,,,FALSE +Bad Omens,Artificial Suicide,new,,,,,82461,FALSE +Bad Omens,Just Pretend,new,,,,,73617,FALSE +Bad Omens,Like a Villain,new,,,,,75183,FALSE +Bad Omens,The Death of Peace of Mind,new,,,,,75234,FALSE +Bad Omens,V.A.N,new,,,,,81924,FALSE +Bad Religion,21st Century (Digital Boy),new,,,,,32583,FALSE +Bad Religion,American Jesus,new,,,,,75268,FALSE +Bad Wolves,Hear Me Now,new,,,,,56283,FALSE +Bad Wolves,Sober,new,,,,,81807,FALSE +Bad Wolves,Zombie,new,,,,,55295,FALSE +Badfinger,Baby Blue,existing,,,,,,FALSE +Badfinger,Day After Day,existing,,,,,,FALSE +Badfinger,No Matter What,existing,,,,,,FALSE +Bailey Zimmerman,Fall in Love,new,,,,,23199,FALSE +Bailey Zimmerman,Religiously,new,,,,,74636,FALSE +Bailey Zimmerman,Rock and a Hard Place,new,,,,,70245,FALSE +Bailey Zimmerman,Where It Ends,new,,,,,71930,FALSE +Bakermat,Ain't Nobody,new,,,,,65718,FALSE +Bakermat,Baby,new,,,,,53745,FALSE +Bakermat,Baiana,new,,,,,65194,FALSE +Bakermat,Living,new,,,,,52969,FALSE +Bakermat,One Day (Vandaag),new,,,,,47449,FALSE +Bakermat,Temptation,new,,,,,68990,FALSE +Ballroom Orchestra,Country Waltz,existing,,,,,,FALSE +Ballroom Orchestra,Foxtrot Groove,existing,,,,,,FALSE +Ballroom Orchestra,Hustle Groove,existing,,,,,,FALSE +Ballroom Orchestra,Merengue Groove,existing,,,,,,FALSE +Ballroom Orchestra,On The Beach Samba,existing,,,,,,FALSE +Ballroom Orchestra,Paso Doble (Original),existing,,,,,,FALSE +Ballroom Orchestra,Paso Doble,existing,,,,,,FALSE +Ballroom Orchestra,Rhumba Groove,existing,,,,,,FALSE +Ballroom Orchestra,Salsa Groove,existing,,,,,,FALSE +Ballroom Orchestra,Samba Groove,existing,,,,,,FALSE +Ballroom Orchestra,Swing Groove,existing,,,,,,FALSE +Ballroom Orchestra,Waltz Groove,existing,,,,,,FALSE +Bananarama,Cruel Summer,new,,,,,11413,FALSE +Bananarama,Venus,existing,,,,,,FALSE +Band Aid,Do They Know It's Christmas ?,existing,,,,,,FALSE +Band of Horses,Funeral,new,Band Of Horses,,,,74780,FALSE +Band of Horses,No One's Gonna Love You,new,Band Of Horses,,,,60510,FALSE +Barbershop Polecat,Down Our Way (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Heart Of My Heart (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Honey-Little 'Lize Medley (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Sweet And Lovely (A Cappella),existing,,,,,,FALSE +Barbershop Polecat,Sweet,existing,,,,,,FALSE +Barbra Streisand,As If We Never Said Goodbye,existing,,,,,,FALSE +Barbra Streisand,Can't Help Lovin' That Man Of Mine (A Cappella),existing,,,,,,FALSE +Barbra Streisand,Don't Rain On My Parade,existing,,,,,,FALSE +Barbra Streisand,The Way We Were (A Cappella),existing,,,,,,FALSE +Barbra Streisand,Woman In Love,existing,,,,,,FALSE +Barbra Streisand & Neil Diamond,You Don't Bring Me Flowers,existing,,,,,,FALSE +Barenaked Ladies,If I Had 1000000 dollars,new,,,,,15055,FALSE +Barenaked Ladies,It's All Been Done,new,,,,,9304,FALSE +Barenaked Ladies,One Week,new,,,,,13051,FALSE +Barrett Strong,Money (That's What I Want),existing,,,,,,FALSE +Barry Manilow,Can't Smile Without You,new,,,,,12221,FALSE +Barry Manilow,Copacabana,existing,,,,,,FALSE +Barry Manilow,Even Now - Live At the O2 Arena,existing,,,,,,FALSE +Barry Manilow,I Made It Through the Rain,existing,,,,,,FALSE +Barry Manilow,I Write The Songs,new,,,,,12222,FALSE +Barry Manilow,Looks Like We Made It,new,,,,,17070,FALSE +Barry Manilow,Mandy,new,,,,,12220,FALSE +Barry Mcguire,Eve of Destruction,existing,,,,,,FALSE +Barry Ryan,Eloise,existing,,,,,,FALSE +Barry White,Can't Get Enough Of Your Love Babe,existing,,,,,,FALSE +Barry White,I'm Gonna Love You Just a Little Bit More Babe,existing,,,,,,FALSE +Barry White,Just the Way You Are,existing,,,,,,FALSE +Barry White,Never Never Gonna Give You Up,existing,,,,,,FALSE +Barry White,You're The First The Last My Everything,existing,,,,,,FALSE +Bastille,Good Grief,new,,,,,51676,FALSE +Bastille,Of the Night,new,,,,,45826,FALSE +Bastille,Pompeii,existing,,,,,,FALSE +Bastille,Things We Lost In The Fire,new,,,,,45861,FALSE +Battle Of The Choirs,Robbie Williams Medley,existing,,,,,,FALSE +Bauhaus,Bela Lugosi's Dead,new,,,,,75303,FALSE +Bauhaus,Ziggy Stardust,new,,,,,75386,FALSE +Bay City Rollers,Bye Bye Baby,existing,,,,,,FALSE +Bay City Rollers,Saturday Night,new,,,,,31030,FALSE +Bay City Rollers,Shang-A-Lang,existing,,,,,,FALSE +Bea Miller,Fire N Gold,new,,,,,49639,FALSE +Bea Miller,S.L.U.T.,new,,,,,75755,FALSE +Bea Miller,That Bitch,new,,,,,80625,FALSE +Beach Boys,Good Vibrations (A Cappella),existing,The Beach Boys,,,,,FALSE +Beach Boys,Little Saint Nick (A Cappella),existing,The Beach Boys,,,,,FALSE +Beach Bunny,Cloud 9,new,,,,,82833,FALSE +Beach Bunny,Prom Queen,new,,,,,73390,FALSE +Beach Bunny,Sports,new,,,,,83742,FALSE +Beastie Boys,(You Gotta) Fight For Your Right (To Party),existing,,,,,,FALSE +Beastie Boys,Brass Monkey,new,,,,,55214,FALSE +Beastie Boys,Girls,existing,,,,,,FALSE +Beastie Boys,Intergalactic,new,,,,,55287,FALSE +Beastie Boys,No Sleep Til Brooklyn,existing,,,,,,FALSE +Beastie Boys,Sabotage,new,,,,,55031,FALSE +Beastie Boys,So What'cha Want,new,,,,,56259,FALSE +Beatles,Because (A Cappella),existing,The Beatles,,,,,FALSE +Beats International,Dub Be Good To Me,existing,,,,,,FALSE +Beautiful South,Don't Marry Her Have Me,existing,,,,,,FALSE +Beautiful South,I Need a Little Time,existing,,,,,,FALSE +Beautiful South,Song for Whoever,existing,,,,,,FALSE +Beck,Debra,new,,,,,72335,FALSE +Beck,E-Pro,new,,,,,15066,FALSE +Beck,Girl,new,,,,,15067,FALSE +Beck,Loser,existing,,,,,,FALSE +Beck,Lost Cause,new,,,,,74561,FALSE +Beck,Sexx Laws,new,,,,,8907,FALSE +Beck,Where It's At,new,,,,,70310,FALSE +Becky G,Arranca,new,,,,,74367,FALSE +Becky G,Baila asi,new,,,,,67978,FALSE +Becky G,Baile con mi ex,new,,,,,70416,FALSE +Becky G,Chanel,new,,,,,75451,FALSE +Becky G,Fulanito,new,,,,,65796,FALSE +Becky G,La respuesta,new,,,,,58156,FALSE +Becky G,Mala Santa,new,,,,,60767,FALSE +Becky G,Mayores,new,,,,,53988,FALSE +Becky G,Play It Again,new,,,,,44437,FALSE +Becky G,Shower,new,,,,,47269,FALSE +Becky G,Sin Pijama,new,,,,,55492,FALSE +Becky Hill,Caution To The Wind,new,,,,,48190,FALSE +Becky Hill,Disconnect,new,,,,,76353,FALSE +Becky Hill,False Alarm,new,,,,,69083,FALSE +Becky Hill,Forever Young,new,,,,,63600,FALSE +Becky Hill,Gecko (Overdrive),new,,,,,47196,FALSE +Becky Hill,Losing,new,,,,,47887,FALSE +Becky Hill,My Heart Goes (La Di Da),new,,,,,66821,FALSE +Becky Hill,Never Be Alone,new,,,,,80085,FALSE +Becky Hill,Outside of Love,new,,,,,81306,FALSE +Becky Hill,Remember,new,,,,,66033,FALSE +Becky Hill,Run,new,,,,,68778,FALSE +Becky Hill,Side Effects,new,,,,,76154,FALSE +Bee Gees,How Can You Mend a Broken Heart,new,The Bee Gees,,,,22340,FALSE +Bee Gees,How Deep Is Your Love,new,The Bee Gees,,,,9771,FALSE +Bee Gees,If I Can't Have You,new,The Bee Gees,,,,67476,FALSE +Bee Gees,Jive Talkin',new,The Bee Gees,,,,7521,FALSE +Bee Gees,More Than a Woman,new,The Bee Gees,,,,13864,FALSE +Bee Gees,Night Fever,new,The Bee Gees,,,,8648,FALSE +Bee Gees,Nights On Broadway,new,The Bee Gees,,,,31986,FALSE +Bee Gees,Stayin' Alive,new,The Bee Gees,,,,5447,FALSE +Bee Gees,To Love Somebody,new,The Bee Gees,,,,17091,FALSE +Bee Gees,Too Much Heaven,new,The Bee Gees,,,,13863,FALSE +Bee Gees,You Should Be Dancing,new,The Bee Gees,,,,7536,FALSE +Belinda Carlisle,Heaven Is a Place On Earth,existing,,,,,,FALSE +Bell Biv DeVoe,Poison,new,,,,,43953,FALSE +Ben E. King,Stand By Me (A Cappella),existing,,,,,,FALSE +Ben E. King,Stand By Me,existing,,,,,,FALSE +Ben Folds,You Don't Know Me,existing,,,,,,FALSE +Ben Folds Five,Brick,new,,,,,9930,FALSE +Ben Harper,Burn One Down,new,,,,,78870,FALSE +Ben Harper,Diamonds On The Inside,new,,,,,32594,FALSE +Ben Harper,Sexual Healing (live),new,,,,,75323,FALSE +Ben Harper,Steal My Kisses,new,,,,,7501,FALSE +Ben Harper,Waiting on an Angel,new,,,,,64249,FALSE +Benny Golson,Killer Joe,existing,,,,,,FALSE +Benson Boone,Be Someone,new,,,,,82439,FALSE +Benson Boone,Beautiful Things (acoustic),new,,,,,80411,FALSE +Benson Boone,Beautiful Things,new,,,,,79443,FALSE +Benson Boone,Before You,new,,,,,73697,FALSE +Benson Boone,Cry,new,,,,,80813,FALSE +Benson Boone,Drunk in My Mind,new,,,,,80979,FALSE +Benson Boone,Ghost Town,new,,,,,66895,FALSE +Benson Boone,In the Stars (french version),new,,,,,74522,FALSE +Benson Boone,In the Stars,new,,,,,27929,FALSE +Benson Boone,Pretty Slowly,new,,,,,83368,FALSE +Benson Boone,Slow It Down,new,,,,,80590,FALSE +Benson Boone,To Love Someone,new,,,,,79242,FALSE +Berlin,Masquerade,new,,,,,83349,FALSE +Berlin,No More Words,new,,,,,62032,FALSE +Berlin,Sex (I'm A...),new,,,,,70045,FALSE +Berlin,The Metro,new,,,,,59344,FALSE +Bette Midler,From a Distance,existing,,,,,,FALSE +Bette Midler,Wind Beneath My Wings,existing,,,,,,FALSE +Better Than Ezra,A Lifetime,new,,,,,15077,FALSE +Better Than Ezra,At the Stars,new,,,,,9343,FALSE +Better Than Ezra,Desperately Wanting,new,,,,,74824,FALSE +Better Than Ezra,Good,new,,,,,55907,FALSE +Betty Wright,Clean Up Woman,existing,,,,,,FALSE +Beverley Knight,Piece of My Heart,existing,,,,,,FALSE +Beyonce,7:11,existing,,,,,,FALSE +Beyonce,Baby Boy,new,,,,,5776,FALSE +Beyonce,Beautiful Liar,new,,,,,11928,FALSE +Beyonce,Crazy In Love,existing,,,,,,FALSE +Beyonce,Cuff It,new,,,,,71318,FALSE +Beyonce,Drunk In Love,existing,,,,,,FALSE +Beyonce,Halo,existing,,,,,,FALSE +Beyonce,If I Were a Boy,new,,,,,21309,FALSE +Beyonce,Irreplaceable,new,,,,,12431,FALSE +Beyonce,Love On Top,new,,,,,37791,FALSE +Beyonce,Single Ladies (Put A Ring On It),existing,,,,,,FALSE +Beyonce,Texas Hold 'Em,new,,,,,79703,FALSE +Beyoncé,Ave Maria,existing,Beyonce,,,,,FALSE +Beyoncé,Listen,existing,Beyonce,,,,,FALSE +Biffy Clyro,Many of Horror,existing,,,,,,FALSE +Big And Rich,Save A Horse (Ride A Cowboy),existing,,,,,,FALSE +Big Country,Fields of Fire (400 Miles),existing,,,,,,FALSE +Big Country,In A Big Country,existing,,,,,,FALSE +Big Data,Dangerous,new,,,,,70476,FALSE +Big Head Todd and the Monsters,Bittersweet,new,,,,,72678,FALSE +Big Mountain,Baby I Love Your Way,existing,,,,,,FALSE +Big Sean,Beware,new,,,,,80180,FALSE +Big Sean,Dance (ASS) (remix),new,,,,,35244,FALSE +Big Sean,I Don't Fuck with You,new,,,,,66797,FALSE +Bill Haley And His Comets,Rock Around The Clock,existing,,,,,,FALSE +Bill Haley And His Comets,Shake Rattle And Roll,existing,,,,,,FALSE +Bill Medley & Jennifer Warnes,Time of My Life,existing,,,,,,FALSE +Bill Monroe,Blue Moon of Kentucky,new,,,,,15088,FALSE +Bill Monroe,In the Pines,new,,,,,82208,FALSE +Bill Withers,Ain't No Sunshine,existing,,,,,,FALSE +Bill Withers,Just The Two Of Us,existing,,,,,,FALSE +Bill Withers,Lean On Me,existing,,,,,,FALSE +Bill Withers,Lovely Day,existing,,,,,,FALSE +Bill Withers,Use Me,existing,,,,,,FALSE +Billie Eilish,Birds of a Feather,new,,,,,81536,FALSE +Billie Eilish,Blue,new,,,,,81601,FALSE +Billie Eilish,Chihiro,new,,,,,81600,FALSE +Billie Eilish,L'amour De Ma Vie,new,,,,,81647,FALSE +Billie Eilish,Lovely,new,,,,,56015,FALSE +Billie Eilish,Lunch,new,,,,,81527,FALSE +Billie Eilish,Ocean Eyes,new,,,,,55140,FALSE +Billie Eilish,Wildflower,new,,,,,81611,FALSE +Billie Holiday,Ain't Nobody's Business,existing,,,,,,FALSE +Billie Holiday,All Of Me,existing,,,,,,FALSE +Billie Holiday,Blue Moon,new,,,,,64815,FALSE +Billie Holiday,Come Rain or Come Shine,new,,,,,9308,FALSE +Billie Holiday,Easy Living,new,,,,,17111,FALSE +Billie Holiday,God Bless The Child,existing,,,,,,FALSE +Billie Holiday,Lady Sings the Blues,new,,,,,57926,FALSE +Billie Holiday,Love For Sale,existing,,,,,,FALSE +Billie Holiday,Night and Day,new,,,,,9315,FALSE +Billie Holiday,Summertime,new,,,,,64801,FALSE +Billie Holiday,The Very Thought of You,new,,,,,65793,FALSE +Billie Jo Spears,What I've Got In Mind,existing,,,,,,FALSE +Billy Bragg,California Stars,new,,,,,75859,FALSE +Billy Currington,Good Directions,existing,,,,,,FALSE +Billy Currington,Hey Girl,existing,,,,,,FALSE +Billy Currington,People Are Crazy,existing,,,,,,FALSE +Billy Dean,Thank God I'm A Country Boy,existing,,,,,,FALSE +Billy Fury,Halfway To Paradise,existing,,,,,,FALSE +Billy Fury,Thousand Stars,existing,,,,,,FALSE +Billy Idol,Dancing With Myself,new,,,,,32404,FALSE +Billy Idol,Eyes Without a Face,new,,,,,20517,FALSE +Billy Idol,Mony Mony,new,,,,,17128,FALSE +Billy Idol,Rebel Yell,existing,,,,,,FALSE +Billy Idol,White Wedding,existing,,,,,,FALSE +Billy Joel,Allentown,new,,,,,32844,FALSE +Billy Joel,An Innocent Man,existing,,,,,,FALSE +Billy Joel,Big Shot,existing,,,,,,FALSE +Billy Joel,Captain Jack,new,,,,,59115,FALSE +Billy Joel,Don't Ask Me Why,new,,,,,32849,FALSE +Billy Joel,Honesty,new,,,,,5094,FALSE +Billy Joel,It's Still Rock and Roll to Me,new,,,,,6402,FALSE +Billy Joel,Just The Way You Are,existing,,,,,,FALSE +Billy Joel,Movin Out (Anthony's Song),existing,,,,,,FALSE +Billy Joel,My Life,existing,,,,,,FALSE +Billy Joel,New York State Of Mind,existing,,,,,,FALSE +Billy Joel,Only the Good Die Young,new,,,,,17135,FALSE +Billy Joel,Piano Man,existing,,,,,,FALSE +Billy Joel,Scenes From An Italian Restaurant,existing,,,,,,FALSE +Billy Joel,She's Always A Woman,existing,,,,,,FALSE +Billy Joel,The Longest Time,existing,,,,,,FALSE +Billy Joel,The Stranger,existing,,,,,,FALSE +Billy Joel,Uptown Girl,existing,,,,,,FALSE +Billy Joel,We Didn't Start the Fire,new,,,,,13116,FALSE +Billy Joel,You May Be Right,existing,,,,,,FALSE +Billy Ocean,Caribbean Queen,existing,,,,,,FALSE +Billy Ocean,Get Outta My Dreams,existing,,,,,,FALSE +Billy Ocean,Love Really Hurts Without You,existing,,,,,,FALSE +Billy Ocean,Suddenly,existing,,,,,,FALSE +Billy Porter,Land of Lola,existing,,,,,,FALSE +Billy Ray Cyrus,Achy Breaky Heart,existing,,,,,,FALSE +Billy Squier,Everybody Wants You,new,,,,,57240,FALSE +Billy Squier,Lonely Is the Night,new,,,,,56670,FALSE +Billy Squier,Rock Me Tonite,existing,,,,,,FALSE +Billy Squier,The Stroke,new,,,,,46158,FALSE +Billy Strings,California Sober,new,,,,,80765,FALSE +Billy Strings,Dust in a Baggie,new,,,,,27810,FALSE +Billy Strings,Secrets,new,,,,,72611,FALSE +Billy Talent,Fallen Leaves,new,,,,,68452,FALSE +Billy Talent,Red Flag,new,,,,,77874,FALSE +Billy Talent,Rusted from the Rain,new,,,,,74354,FALSE +Billy Thorpe,Children Of The Sun,existing,,,,,,FALSE +Bing Crosby,Let Me Call You Sweetheart (A Cappella),existing,,,,,,FALSE +Bing Crosby & Grace Kelly,True Love,existing,,,,,,FALSE +Birdy,Not About Angels,new,,,,,47146,FALSE +Birdy,People Help The People,existing,,,,,,FALSE +Birdy,Skinny Love,existing,,,,,,FALSE +Birdy,Wings,existing,,,,,,FALSE +Bishop Briggs,River,new,,,,,51610,FALSE +Bitty Mclean,Dedicated To the One I Love,existing,,,,,,FALSE +Bjork,Army of Me,new,,,,,20550,FALSE +Bjork,Human Behaviour,new,,,,,72397,FALSE +Bjork,It's Oh So Quiet,new,,,,,14217,FALSE +Bjork,Venus as a Boy,new,,,,,75169,FALSE +Black Eyed Peas,Boom Boom Pow,existing,,,,,,FALSE +Black Eyed Peas,I Gotta Feeling,existing,,,,,,FALSE +Black Eyed Peas,Just Can't Get Enough,new,,,,,35997,FALSE +Black Eyed Peas,Meet Me Halfway,existing,,,,,,FALSE +Black Eyed Peas,My Humps,new,,,,,12433,FALSE +Black Eyed Peas,Pump It,new,,,,,15115,FALSE +Black Eyed Peas,Ritmo (Bad Boys for Life),new,,,,,59977,FALSE +Black Eyed Peas,Where Is The Love,new,,,,,5208,FALSE +Black Sabbath,Children of the Grave,new,,,,,63511,FALSE +Black Sabbath,Heaven And Hell,new,,,,,49132,FALSE +Black Sabbath,Iron Man,existing,,,,,,FALSE +Black Sabbath,N.I.B.,new,,,,,63423,FALSE +Black Sabbath,Paranoid,existing,,,,,,FALSE +Black Sabbath,Planet Caravan,new,,,,,31311,FALSE +Black Sabbath,War Pigs,existing,,,,,,FALSE +Blackbear,Do Re Mi,new,,,,,54626,FALSE +Blackbear,Hot Girl Bummer,new,,,,,60264,FALSE +Blackbear,Idfc,new,,,,,72922,FALSE +Blackpink (),How You Like That,new,Blackpink,,,,61845,FALSE +Blackpink (),Kill This Love,new,Blackpink,,,,57996,FALSE +Blackpink (),Pink Venom,new,Blackpink,,,,71191,FALSE +Blackpink (),Shut Down,new,Blackpink,,,,72414,FALSE +Blake Shelton,Austin,new,,,,,7880,FALSE +Blake Shelton,Boys Round Here,existing,,,,,,FALSE +Blake Shelton,Came Here To Forget,new,,,,,51031,FALSE +Blake Shelton,God Gave Me You,existing,,,,,,FALSE +Blake Shelton,God's Country,new,,,,,58009,FALSE +Blake Shelton,Honey Bee,existing,,,,,,FALSE +Blake Shelton,Nobody But You,new,,,,,60268,FALSE +Blake Shelton,Ol' Red,new,,,,,6820,FALSE +Blake Shelton,Sangria,new,,,,,49202,FALSE +Blake Shelton,Sure Be Cool If You Did,existing,,,,,,FALSE +Blancmange,Living On the Ceiling,existing,,,,,,FALSE +Bleachers,Don't Take the Money,new,,,,,79390,FALSE +Bleachers,I Wanna Get Better,new,,,,,73050,FALSE +Bleachers,Rollercoaster,new,,,,,80000,FALSE +Blind Faith,Can't Find My Way Home,existing,,,,,,FALSE +Blind Melon,No Rain,existing,,,,,,FALSE +Blink-182,Adam's Song,new,,,,,7379,FALSE +Blink-182,All The Small Things,existing,,,,,,FALSE +Blink-182,Dammit (Growing Up),new,,,,,34606,FALSE +Blink-182,Feeling This,new,,,,,28684,FALSE +Blink-182,First Date,new,,,,,15134,FALSE +Blink-182,I Miss You,existing,,,,,,FALSE +Blink-182,The Rock Show,new,,,,,15133,FALSE +Blink-182,What's My Age Again,new,,,,,8698,FALSE +Blondie,(I'm Always Touched By Your) Presence Dear,existing,,,,,,FALSE +Blondie,Atomic,existing,,,,,,FALSE +Blondie,Call Me,existing,,,,,,FALSE +Blondie,Denis,existing,,,,,,FALSE +Blondie,Dreaming,existing,,,,,,FALSE +Blondie,Hanging On the Telephone,existing,,,,,,FALSE +Blondie,Heart Of Glass,existing,,,,,,FALSE +Blondie,Mother,existing,,,,,,FALSE +Blondie,One Way Or Another,existing,,,,,,FALSE +Blondie,Picture This,existing,,,,,,FALSE +Blondie,Rapture,existing,,,,,,FALSE +Blondie,Sunday Girl,existing,,,,,,FALSE +Blondie,Tide Is High,existing,,,,,,FALSE +Blondie,Union City Blue,existing,,,,,,FALSE +Blood Sweat And Tears,Spinning Wheel,existing,,,,,,FALSE +Blood Sweat And Tears,You've Made Me So Very Happy,existing,,,,,,FALSE +Bloodhound Gang,Foxtrot Uniform Charlie Kilo,new,,,,,69995,FALSE +Bloodhound Gang,The Bad Touch,new,,,,,13118,FALSE +Blue,One Love,existing,,,,,,FALSE +Blue Oyster Cult,Burnin' for You,new,,,,,55636,FALSE +Blue Oyster Cult,Don't Fear The Reaper,existing,,,,,,FALSE +Blue Oyster Cult,Godzilla,existing,,,,,,FALSE +Blue Oyster Cult,Veteran of the Psychic Wars,new,,,,,69545,FALSE +Blue Swede,Hooked On A Feeling,existing,,,,,,FALSE +Blue With Elton John,Sorry Seems To Be the Hardest Word,existing,,,,,,FALSE +Blues Traveler,Run Around,existing,,,,,,FALSE +Blur,Charmless Man,existing,,,,,,FALSE +Blur,Coffee & TV,new,,,,,44122,FALSE +Blur,Girls & Boys,new,,,,,12781,FALSE +Blur,Parklife,new,,,,,28723,FALSE +Blur,Song 2,existing,,,,,,FALSE +Bo Diddley,I'm A Man,existing,,,,,,FALSE +Bob Dylan,All Along the Watchtower,new,,,,,76339,FALSE +Bob Dylan,Blowin In The Wind,existing,,,,,,FALSE +Bob Dylan,"Don't Think Twice, It's All Right",new,,,,,67111,FALSE +Bob Dylan,It Ain't Me Babe,new,,,,,29160,FALSE +Bob Dylan,"It's All Over Now, Baby Blue",new,,,,,63542,FALSE +Bob Dylan,Just Like A Woman,existing,,,,,,FALSE +Bob Dylan,Knocking On Heavens Door,existing,,,,,,FALSE +Bob Dylan,Lay Lady Lay,existing,,,,,,FALSE +Bob Dylan,Like A Rolling Stone,existing,,,,,,FALSE +Bob Dylan,Make You Feel My Love,new,,,,,57990,FALSE +Bob Dylan,Mr. Tambourine Man,existing,,,,,,FALSE +Bob Dylan,Positively 4th Street,new,,,,,9974,FALSE +Bob Dylan,Rainy Day Women #12 & 35,new,,,,,10002,FALSE +Bob Dylan,Shelter from the Storm,new,,,,,27737,FALSE +Bob Dylan,Subterranean Homesick Blues,existing,,,,,,FALSE +Bob Dylan,Tangled Up in Blue,new,,,,,55660,FALSE +Bob Dylan,The Times They Are A Changin,existing,,,,,,FALSE +Bob Marley,Buffalo Soldier,existing,,,,,,FALSE +Bob Marley,Could You Be Loved,existing,,,,,,FALSE +Bob Marley,Get Up Stand Up,existing,,,,,,FALSE +Bob Marley,I Shot The Sheriff,existing,,,,,,FALSE +Bob Marley,Jamming,existing,,,,,,FALSE +Bob Marley,No Woman No Cry,existing,,,,,,FALSE +Bob Marley,One Love (People Get Ready),existing,,,,,,FALSE +Bob Marley,Redemption Song,existing,,,,,,FALSE +Bob Marley,Roots Rock Reggae,existing,,,,,,FALSE +Bob Marley,Stir It Up,existing,,,,,,FALSE +Bob Marley,Three Little Birds,existing,,,,,,FALSE +Bob Marley,Waiting In Vain,existing,,,,,,FALSE +Bob Seger,Against The Wind,existing,,,,,,FALSE +Bob Seger,Fire Down Below,existing,,,,,,FALSE +Bob Seger,Her Strut,existing,,,,,,FALSE +Bob Seger,Hollywood Nights,new,,,,,31315,FALSE +Bob Seger,Katmandu,new,,,,,58023,FALSE +Bob Seger,Like A Rock,existing,,,,,,FALSE +Bob Seger,Mainstreet,existing,,,,,,FALSE +Bob Seger,Night Moves,new,,,,,17148,FALSE +Bob Seger,Old Time Rock And Roll,existing,,,,,,FALSE +Bob Seger,Rock And Roll Never Forgets,existing,,,,,,FALSE +Bob Seger,Still The Same,new,,,,,17145,FALSE +Bob Seger,Turn the Page,new,,,,,15153,FALSE +Bob Seger,We've Got Tonight,new,,,,,17146,FALSE +Bob Seger,You'll Accomp'ny Me,existing,,,,,,FALSE +Bob Weir,Mexicali Blues,new,,,,,73408,FALSE +Bobby 'Boris' Pickett,Monster Mash,existing,,,,,,FALSE +Bobby Darin,(It's Only a) Paper Moon,existing,,,,,,FALSE +Bobby Darin,As Long As I'm Singin' (A Cappella),existing,,,,,,FALSE +Bobby Darin,Beyond the Sea,existing,,,,,,FALSE +Bobby Darin,Don't Rain On My Parade,existing,,,,,,FALSE +Bobby Darin,Dream Lover,existing,,,,,,FALSE +Bobby Darin,If I Were a Carpenter,existing,,,,,,FALSE +Bobby Darin,Mack The Knife,existing,,,,,,FALSE +Bobby Darin,More Than,existing,,,,,,FALSE +Bobby Darin,Splish Splash,existing,,,,,,FALSE +Bobby Darin,Things,existing,,,,,,FALSE +Bobby Gentry,I'll Never Fall In Love Again,existing,,,,,,FALSE +Bobby Valentino,Slow Down,existing,,,,,,FALSE +Bobby Vee,Night Has a Thousand Eyes,existing,,,,,,FALSE +Bon Jovi,Always,existing,,,,,,FALSE +Bon Jovi,Bad Medicine,existing,,,,,,FALSE +Bon Jovi,Bed of Roses,existing,,,,,,FALSE +Bon Jovi,In These Arms,existing,,,,,,FALSE +Bon Jovi,It's My Life,existing,,,,,,FALSE +Bon Jovi,Livin' On a Prayer,existing,,,,,,FALSE +Bon Jovi,Runaway,new,,,,,13034,FALSE +Bon Jovi,Wanted Dead Or Alive,existing,,,,,,FALSE +Bon Jovi,You Give Love A Bad Name,existing,,,,,,FALSE +Boney M,Boney M Megamix,existing,,,,,,FALSE +Boney M,Mary's Boy Child,existing,,,,,,FALSE +Bonnie Raitt,Angel From Montgomery,existing,,,,,,FALSE +Bonnie Raitt,I Can't Make You Love Me,existing,,,,,,FALSE +Bonnie Raitt,Nick Of Time,existing,,,,,,FALSE +Bonnie Raitt,Something to Talk About,new,,,,,7173,FALSE +Bonnie Tyler,Holding Out for a Hero,existing,,,,,,FALSE +Bonnie Tyler,It's A Heartache,existing,,,,,,FALSE +Bonnie Tyler,Total Eclipse Of The Heart,existing,,,,,,FALSE +Booba,92i Veyron,new,,,,,73646,FALSE +Booba,Scarface,new,,,,,62308,FALSE +Borns,Electric Love,new,,,,,51759,FALSE +Borns,Past Lives,new,,,,,77213,FALSE +Boston,A Man I'll Never Be,new,,,,,52337,FALSE +Boston,Amanda,new,,,,,17180,FALSE +Boston,Cool the Engines,new,,,,,70066,FALSE +Boston,Don't Look Back,new,,,,,52723,FALSE +Boston,Feelin' Satisfied,new,,,,,69799,FALSE +Boston,Foreplay Long Time,new,,,,,52038,FALSE +Boston,Hitch a Ride,new,,,,,64613,FALSE +Boston,It's Easy,new,,,,,70764,FALSE +Boston,Let Me Take You Home Tonight,new,,,,,40058,FALSE +Boston,Long Time,new,,,,,63396,FALSE +Boston,More Than A Feeling,existing,,,,,,FALSE +Boston,Peace Of Mind,existing,,,,,,FALSE +Boston,Rock And Roll Band,new,,,,,25207,FALSE +Boston,Smokin,existing,,,,,,FALSE +Boston,Something About You,new,,,,,69611,FALSE +Boston,We're Ready,new,,,,,71205,FALSE +Box Tops,Letter,existing,,,,,,FALSE +Box Tops,Soul Deep,existing,,,,,,FALSE +Boygenius,Cool About It,new,,,,,82834,FALSE +Boygenius,Not Strong Enough,new,,,,,74838,FALSE +Boyz II Men,I'll Make Love to You,new,,,,,11463,FALSE +Boyz II Men,Motownphilly,new,,,,,15198,FALSE +Boyzone,Love You Anyway,existing,,,,,,FALSE +Boz Scaggs,Lido Shuffle,existing,,,,,,FALSE +Boz Scaggs,Lowdown,new,,,,,17249,FALSE +Boz Scaggs,Sierra,existing,,,,,,FALSE +Brad Paisley,I'm Gonna Miss Her,new,,,,,8254,FALSE +Brad Paisley,Mud On The Tires,existing,,,,,,FALSE +Brad Paisley,Remind Me,new,,,,,37497,FALSE +Brad Paisley,She's Everything,existing,,,,,,FALSE +Brad Paisley,Then,new,,,,,23347,FALSE +Brad Paisley,We Danced,new,,,,,7482,FALSE +Brad Paisley,When I Get Where I'm Going,new,,,,,15204,FALSE +Brad Paisley,Whiskey Lullaby,existing,,,,,,FALSE +Branford Marsalis,Here's That Rainy Day,existing,,,,,,FALSE +Brantley Gilbert,Bottoms Up,new,,,,,46310,FALSE +Brantley Gilbert,Kick it in the Sticks,new,,,,,57825,FALSE +Brantley Gilbert,The Weekend,new,,,,,52413,FALSE +Bread,Baby I'm a Want You,existing,,,,,,FALSE +Bread,Everything I Own,existing,,,,,,FALSE +Bread,Guitar Man,existing,,,,,,FALSE +Bread,Make It With You,existing,,,,,,FALSE +Breaking Benjamin,Angels Fall,new,,,,,79986,FALSE +Breaking Benjamin,Blow Me Away,new,,,,,70833,FALSE +Breaking Benjamin,Breath,new,,,,,21597,FALSE +Breaking Benjamin,Dance with the Devil,new,,,,,70538,FALSE +Breaking Benjamin,Failure,new,,,,,82884,FALSE +Breaking Benjamin,I Will Not Bow,new,,,,,64277,FALSE +Breaking Benjamin,So Cold,existing,,,,,,FALSE +Breaking Benjamin,Sooner Or Later,existing,,,,,,FALSE +Breaking Benjamin,The Diary Of Jane,existing,,,,,,FALSE +Brett Eldredge,Beat of the Music,new,,,,,71650,FALSE +Brett Eldredge,Lose My Mind,new,,,,,49928,FALSE +Brett Eldredge,Love Someone,new,,,,,58552,FALSE +Brett Eldredge,The Long Way,new,,,,,54445,FALSE +Brett Eldredge,Wanna Be That Song,new,,,,,52463,FALSE +Brett Young,Catch,new,,,,,59161,FALSE +Brett Young,In Case You Didn't Know,new,,,,,52827,FALSE +Brett Young,Like I Loved You,new,,,,,53654,FALSE +Brett Young,Mercy,new,,,,,53309,FALSE +Brett Young,Sleep Without You,new,,,,,51938,FALSE +Brian Hyland,Ginny Come Lately,existing,,,,,,FALSE +Brian Hyland,Itsy Bitsy Teenie Weenie Yellow Polka Dot Bikini,existing,,,,,,FALSE +Brian Setzer Orchestra,Rock This Town,existing,,,,,,FALSE +Brian Wilson & Various Artists,God Only Knows,existing,,,,,,FALSE +Bring Me the Horizon,Can You Feel My Heart,new,Bring Me The Horizon,,,,70048,FALSE +Bring Me the Horizon,Drown,new,Bring Me The Horizon,,,,48296,FALSE +Bring Me the Horizon,Kingslayer,new,Bring Me The Horizon,,,,79373,FALSE +Bring Me the Horizon,Sleepwalking,new,Bring Me The Horizon,,,,73917,FALSE +Bring Me the Horizon,Throne,new,Bring Me The Horizon,,,,68671,FALSE +Britney Spears,Baby,existing,,,,,,FALSE +Britney Spears,Circus,new,,,,,18840,FALSE +Britney Spears,Gimme More,new,,,,,12847,FALSE +Britney Spears,Oops!... I Did It Again,new,,,,,5920,FALSE +Britney Spears,Toxic,existing,,,,,,FALSE +Britney Spears,Womanizer,new,,,,,21230,FALSE +Broken Bells,After The Disco,new,,,,,46946,FALSE +Bronski Beat,Smalltown Boy,new,,,,,20553,FALSE +Bronski Beat,Why,new,,,,,20551,FALSE +Brooks And Dunn,Brand New Man (with Luke Combs),new,,,,,58015,FALSE +Brooks And Dunn,Neon Moon,new,,,,,6229,FALSE +Brooks And Dunn,Play Something Country,new,,,,,5641,FALSE +Brooks And Dunn,Boot Scootin Boogie,existing,Brooks & Dunn,,,,,FALSE +Brooks And Dunn,My Maria,existing,Brooks & Dunn,,,,,FALSE +Brooks And Dunn,Red Dirt Road,existing,Brooks & Dunn,,,,,FALSE +Brotherhood Of Man,Angelo,existing,,,,,,FALSE +Brotherhood Of Man,Save All Your Kisses for Me,existing,,,,,,FALSE +Brothers Osborne,It Ain't My Fault,new,,,,,52909,FALSE +Brothers Osborne,Stay a Little Longer,new,,,,,51065,FALSE +Bruce Channel,Hey Baby,existing,,,,,,FALSE +Bruce Hornsby,Every Little Kiss,existing,,,,,,FALSE +Bruce Hornsby,Mandolin Rain,new,,,,,58254,FALSE +Bruce Hornsby,The Way It Is,existing,,,,,,FALSE +Bruce Springsteen,Badlands,existing,,,,,,FALSE +Bruce Springsteen,Born In the USA,existing,,,,,,FALSE +Bruce Springsteen,Born To Run,existing,,,,,,FALSE +Bruce Springsteen,Brilliant Disguise,new,,,,,11295,FALSE +Bruce Springsteen,Cover Me,existing,,,,,,FALSE +Bruce Springsteen,Dancing In the Dark,existing,,,,,,FALSE +Bruce Springsteen,Girls In Their Summer Clothes,existing,,,,,,FALSE +Bruce Springsteen,Glory Days,existing,,,,,,FALSE +Bruce Springsteen,Human Touch,existing,,,,,,FALSE +Bruce Springsteen,Hungry Heart,new,,,,,11296,FALSE +Bruce Springsteen,I'm On Fire,existing,,,,,,FALSE +Bruce Springsteen,Jungleland,existing,,,,,,FALSE +Bruce Springsteen,Out in the Street,new,,,,,78330,FALSE +Bruce Springsteen,Rosalita (Come Out Tonight),new,,,,,59758,FALSE +Bruce Springsteen,Secret Garden,existing,,,,,,FALSE +Bruce Springsteen,Tenth Avenue Freeze-Out,new,,,,,43986,FALSE +Bruce Springsteen,The River,existing,,,,,,FALSE +Bruce Springsteen,Thunder Road,existing,,,,,,FALSE +Bruce Springsteen,Tunnel of Love,new,,,,,73536,FALSE +Bruno Mars,24K Magic,new,,,,,51925,FALSE +Bruno Mars,Grenade,existing,,,,,,FALSE +Bruno Mars,Just the Way You Are,existing,,,,,,FALSE +Bruno Mars,Lazy Song,existing,,,,,,FALSE +Bruno Mars,Locked Out of Heaven,existing,,,,,,FALSE +Bruno Mars,Marry You,existing,,,,,,FALSE +Bruno Mars,Talking to the Moon,new,,,,,32782,FALSE +Bruno Mars,That's What I Like,new,,,,,52184,FALSE +Bruno Mars,Treasure,existing,,,,,,FALSE +Bruno Mars,Uptown Funk,existing,,,,,,FALSE +Bruno Mars,When I Was Your Man,existing,,,,,,FALSE +Bryan Adams,Can't Stop This Thing We Started,new,,,,,6975,FALSE +Bryan Adams,Cuts Like A Knife,existing,,,,,,FALSE +Bryan Adams,Everything I Do (I Do It for You),existing,,,,,,FALSE +Bryan Adams,Have You Ever Really Loved a Woman,new,,,,,7131,FALSE +Bryan Adams,Heaven,new,,,,,11227,FALSE +Bryan Adams,Run to You,new,,,,,13175,FALSE +Bryan Adams,Straight from the Heart,new,,,,,9724,FALSE +Bryan Adams,Summer Of 69,existing,,,,,,FALSE +Bryan Adams,When You Love Someone,existing,,,,,,FALSE +Bryan Ferry,Let's Stick Together,existing,,,,,,FALSE +Bryan Ferry,Price of Love,existing,,,,,,FALSE +Bryan Ferry,Slave To Love,existing,,,,,,FALSE +Buck Owens,Act Naturally,existing,,,,,,FALSE +Buddy Guy,Damn Right I've Got The Blues,existing,,,,,,FALSE +Buddy Guy,Feels Like Rain,new,,,,,56689,FALSE +Buddy Guy,"I'd Rather Be Blind, Crippled & Crazy",new,,,,,63412,FALSE +Buddy Guy,Midnight Train,new,,,,,67855,FALSE +Buddy Guy,Mustang Sally,new,,,,,56456,FALSE +Buddy Guy,Red House,new,,,,,63443,FALSE +Buddy Guy,Skin Deep,new,,,,,62958,FALSE +Buddy Holly,It Doesn't Matter Anymore,existing,,,,,,FALSE +Buddy Holly,It's So Easy,existing,,,,,,FALSE +Buddy Holly,Maybe Baby,existing,,,,,,FALSE +Buddy Holly,Oh Boy,existing,,,,,,FALSE +Buddy Holly,Peggy Sue,existing,,,,,,FALSE +Buddy Holly,Raining In My Heart,existing,,,,,,FALSE +Buddy Holly,Rave On,existing,,,,,,FALSE +Buddy Holly,That'll Be The Day,existing,,,,,,FALSE +Buddy Holly,Think It Over,existing,,,,,,FALSE +Buddy Holly,True Love Ways,existing,,,,,,FALSE +Buddy Holly,Wait Til The Sun Shines,existing,,,,,,FALSE +Buddy Knox,Party Doll,existing,,,,,,FALSE +Buena Vista Social Club,Chan Chan,new,,,,,20525,FALSE +Buena Vista Social Club,Dos gardenias,new,,,,,42539,FALSE +Buena Vista Social Club,El cuarto de tula,new,,,,,61302,FALSE +Buena Vista Social Club,Lagrimas negras,new,,,,,61278,FALSE +Buena Vista Social Club,One Step Too Far,new,,,,,61445,FALSE +Buena Vista Social Club,She Will Be Loved,new,,,,,71657,FALSE +Buena Vista Social Club,Veinte anos,new,,,,,63711,FALSE +Buffalo Springfield,For What It's Worth,existing,,,,,,FALSE +Buggles,Video Killed the Radio Star,existing,The Buggles,,,,,FALSE +Bullet for My Valentine,All These Things I Hate,new,Bullet For My Valentine,,,,73366,FALSE +Bullet for My Valentine,Hearts Burst into Fire,new,Bullet For My Valentine,,,,74737,FALSE +Bullet for My Valentine,Scream Aim Fire,new,Bullet For My Valentine,,,,78077,FALSE +Bullet for My Valentine,Tears Don't Fall,new,Bullet For My Valentine,,,,30429,FALSE +Bullet for My Valentine,Waking the Demon,new,Bullet For My Valentine,,,,71779,FALSE +Bullet for My Valentine,Your Betrayal,new,Bullet For My Valentine,,,,70947,FALSE +Burna Boy,For My Hand,new,,,,,71773,FALSE +Burna Boy,Last Last,new,,,,,71394,FALSE +Burna Boy,On the Low,new,,,,,69048,FALSE +Burna Boy,Ye,new,,,,,70952,FALSE +Bush,Comedown,new,,,,,55921,FALSE +Bush,Everything Zen,new,,,,,71050,FALSE +Bush,Glycerine,new,,,,,42272,FALSE +Bush,Machinehead,new,,,,,33969,FALSE +Busta Rhymes,Break Ya Neck,new,,,,,78185,FALSE +Busta Rhymes,Calm Down,new,,,,,26217,FALSE +Busta Rhymes,Dangerous,new,,,,,32685,FALSE +Busta Rhymes,I Love My Chick,new,,,,,13484,FALSE +Busta Rhymes,Put Your Hands Where My Eyes Could See,new,,,,,74042,FALSE +Busta Rhymes,Thank You,new,,,,,46259,FALSE +Busta Rhymes,What's It Gonna Be,new,,,,,35166,FALSE +Busta Rhymes,Woo Hah!! Got You All in Check,new,,,,,34104,FALSE +Busted,What I Go To School tor,existing,,,,,,FALSE +Busted,Year 3000,existing,,,,,,FALSE +Butthole Surfers,Pepper,new,,,,,66801,FALSE +Butthole Surfers,Who Was in My Room Last Night,new,,,,,75809,FALSE +Byron Lee,Hot Hot Hot,existing,,,,,,FALSE +Cab Calloway,Minnie the Moocher,existing,,,,,,FALSE +Cage the Elephant,Ain't No Rest for the Wicked,new,,,,,54906,FALSE +Cage the Elephant,Cigarette Daydreams,new,,,,,68246,FALSE +Cage the Elephant,Cold Cold Cold,new,,,,,77504,FALSE +Cage the Elephant,Come a Little Closer,new,,,,,73163,FALSE +Cage the Elephant,Trouble,new,,,,,51358,FALSE +Cake,I Will Survive,new,,,,,53020,FALSE +Cake,Never There,new,,,,,55870,FALSE +Cake,Short Skirt Long Jacket,new,,,,,24335,FALSE +Cake,The Distance,existing,,,,,,FALSE +Cake,War Pigs,new,,,,,74346,FALSE +Calum Scott,Dancing on My Own,new,,,,,51439,FALSE +Calum Scott,You Are the Reason,new,,,,,54840,FALSE +Calvin Harris,Blame,existing,,,,,,FALSE +Calvin Harris,Feel So Close,new,,,,,38105,FALSE +Calvin Harris,How Deep Is Your Love,new,,,,,49674,FALSE +Calvin Harris,My Way,new,,,,,52139,FALSE +Calvin Harris,One Kiss,new,,,,,55468,FALSE +Calvin Harris,Outside,existing,,,,,,FALSE +Calvin Harris,Slide,new,,,,,52877,FALSE +Calvin Harris,Summer,existing,,,,,,FALSE +Calvin Harris,This Is What You Came For,new,,,,,51251,FALSE +Calvin Harris Feat. Ellie Goulding,I Need Your Love,existing,,,,,,FALSE +Cameo,Word Up,existing,,,,,,FALSE +Camila,Alejate De Mi,existing,,,,,,FALSE +Camila,Mientes,existing,,,,,,FALSE +Camila Cabello,Bam Bam,new,,,,,68587,FALSE +Camila Cabello,Beautiful,new,,,,,56759,FALSE +Camila Cabello,Havana,new,,,,,54071,FALSE +Camila Cabello,My Oh My,new,,,,,60619,FALSE +Camila Cabello,Never Be the Same,new,,,,,54920,FALSE +Camila Cabello,Shameless,new,,,,,59378,FALSE +Candi Staton,Nights On Broadway,existing,,,,,,FALSE +Candi Staton,Young Hearts Run Free,existing,,,,,,FALSE +Cardi B,Be Careful,new,,,,,55807,FALSE +Cardi B,Bodak Yellow,new,,,,,54473,FALSE +Cardi B,Bongos,new,,,,,77140,FALSE +Cardi B,Enough (Miami),new,,,,,80554,FALSE +Cardi B,Hot Shit,new,,,,,70523,FALSE +Cardi B,I Do,new,,,,,78058,FALSE +Cardi B,I Like It,new,,,,,55775,FALSE +Cardi B,Like What (Freestyle),new,,,,,80397,FALSE +Cardi B,Money,new,,,,,57601,FALSE +Cardi B,Please Me,new,,,,,57571,FALSE +Cardi B,Ring,new,,,,,72403,FALSE +Cardi B,Thru Your Phone,new,,,,,73376,FALSE +Cardi B,Up,new,,,,,64046,FALSE +Cardi B,WAP,new,,,,,51289,FALSE +Carl Douglas,Kung Fu Fighting,existing,,,,,,FALSE +Carly Pearce,Every Little Thing,new,,,,,53229,FALSE +Carly Pearce,I Hope You're Happy Now,new,,,,,59459,FALSE +Carly Pearce,Next Girl,new,,,,,23082,FALSE +Carly Pearce,What He Didn't Do,new,,,,,66793,FALSE +Carly Rae Jepsen,Call Me Maybe,existing,,,,,,FALSE +Carly Simon,Anticipation,new,,,,,15289,FALSE +Carly Simon,Nobody Does It Better,existing,,,,,,FALSE +Carly Simon,You're so Vain,existing,,,,,,FALSE +Carole King,I Feel The Earth Move,existing,,,,,,FALSE +Carole King,It's Too Late,new,,,,,15290,FALSE +Carole King,So Far Away,new,,,,,15291,FALSE +Carole King,You've Got a Friend,new,,,,,14673,FALSE +Carousel The Musical,Soliloquy (A Cappella),existing,,,,,,FALSE +Carrie Underwood,Before He Cheats,existing,,,,,,FALSE +Carrie Underwood,Blown Away,existing,,,,,,FALSE +Carrie Underwood,Church Bells,new,,,,,50091,FALSE +Carrie Underwood,Cowboy Casanova,new,,,,,25157,FALSE +Carrie Underwood,Good Girl,existing,,,,,,FALSE +Carrie Underwood,"Jesus, Take the Wheel",new,,,,,14570,FALSE +Carrie Underwood,Out of That Truck,new,,,,,74261,FALSE +Carrie Underwood,Something In The Water,existing,,,,,,FALSE +Carrie Underwood,The Champion,new,,,,,55032,FALSE +Cascada,Evacuate the Dancefloor,existing,,,,,,FALSE +Cascada,Everytime We Touch,new,,,,,12436,FALSE +Cassandra Wilson,Darkness On The Delta (A Cappella),existing,,,,,,FALSE +Casting Crowns,Just Be Held,new,,,,,79358,FALSE +Casting Crowns,Nobody,new,,,,,67917,FALSE +Casting Crowns,Voice of Truth,new,,,,,76569,FALSE +Casting Crowns,Who am I,new,,,,,68932,FALSE +Cat Stevens,Father and Son,new,,,,,22477,FALSE +Cat Stevens,If You Want to Sing Out,new,,,,,74238,FALSE +Cat Stevens,Moonshadow,existing,,,,,,FALSE +Cat Stevens,Morning Has Broken,existing,,,,,,FALSE +Cat Stevens,Oh Very Young,new,,,,,55345,FALSE +Cat Stevens,Peace Train,existing,,,,,,FALSE +Cat Stevens,The Wind,new,,,,,51192,FALSE +Cat Stevens,Trouble,new,,,,,81172,FALSE +Cat Stevens,Where Do the Children Play,new,,,,,40562,FALSE +Cat Stevens,Wild World,existing,,,,,,FALSE +CeCe Peniston,Finally,new,,,,,6397,FALSE +Cee Lo Green,Bright Lights Bigger City,existing,,,,,,FALSE +Cee Lo Green,Forget You,existing,,,,,,FALSE +Celia Cruz,Azucar Negra,existing,,,,,,FALSE +Celia Cruz,Guantanamera,existing,,,,,,FALSE +Celia Cruz,La Vida Es Un Carnaval,existing,,,,,,FALSE +Celia Cruz,Que Le Den Candela,existing,,,,,,FALSE +Celia Cruz,Rie Y Llora,existing,,,,,,FALSE +Celia Cruz,Yo Vivire,existing,,,,,,FALSE +Celine Dion,All by Myself,new,,,,,5943,FALSE +Celine Dion,Ashes,new,,,,,55512,FALSE +Celine Dion,Because You Loved Me,existing,,,,,,FALSE +Celine Dion,I'm Alive,new,,,,,7077,FALSE +Celine Dion,It's All Coming Back to Me Now,new,,,,,11187,FALSE +Celine Dion,My Heart Will Go On,existing,,,,,,FALSE +Celine Dion,The Power of Love,new,,,,,10065,FALSE +Chairman Of The Board,Give Me Just a Little More Time,existing,,,,,,FALSE +Chaka Khan,Ain't Nobody,existing,,,,,,FALSE +Chaka Khan,I'm Every Woman,existing,,,,,,FALSE +Chappell Roan,After Midnight,new,,,,,48373,FALSE +Chappell Roan,California,new,,,,,82632,FALSE +Chappell Roan,Casual,new,,,,,80491,FALSE +Chappell Roan,Coffee,new,,,,,82570,FALSE +Chappell Roan,Femininomenon,new,,,,,81658,FALSE +Chappell Roan,"Good Luck, Babe!",new,,,,,80846,FALSE +Chappell Roan,Guilty Pleasure,new,,,,,82710,FALSE +Chappell Roan,Hot to Go!,new,,,,,80547,FALSE +Chappell Roan,Kaleidoscope,new,,,,,82492,FALSE +Chappell Roan,Love Me Anyway,new,,,,,82917,FALSE +Chappell Roan,My Kink Is Karma,new,,,,,80610,FALSE +Chappell Roan,Naked in Manhattan,new,,,,,80984,FALSE +Chappell Roan,Picture You,new,,,,,82256,FALSE +Chappell Roan,Pink Pony Club,new,,,,,79097,FALSE +Chappell Roan,Red Wine Supernova,new,,,,,76222,FALSE +Chappell Roan,Super Graphic Ultra Modern Girl,new,,,,,81681,FALSE +Charlene,Never Been To Me,existing,,,,,,FALSE +Charles & Eddie,Would I Lie To You,existing,,,,,,FALSE +Charley Pride,Is Anybody Goin' to San Antone,new,,,,,6605,FALSE +Charley Pride,Kiss an Angel Good Mornin',new,,,,,15308,FALSE +Charli XCX,360,new,,,,,81983,FALSE +Charli XCX,365,new,,,,,82636,FALSE +Charli XCX,Apple,new,,,,,82503,FALSE +Charli XCX,"Girl, So Confusing",new,,,,,82336,FALSE +Charli XCX,Guess (feat. Billie Eilish),new,,,,,83006,FALSE +Charli XCX,Von Dutch,new,,,,,81182,FALSE +Charlie Daniles Band,Devil Went Down To Georgia,existing,The Charlie Daniels Band,,,,,FALSE +Charlie Pride,Crystal Chandelier,existing,,,,,,FALSE +Charlie Puth,Attention,new,,,,,53088,FALSE +Charlie Puth,How Long,new,,,,,54402,FALSE +Charlie Puth,Left and Right,new,,,,,70288,FALSE +Charlie Puth,Marvin Gaye,new,,,,,49091,FALSE +Charlie Puth,One Call Away,new,,,,,50332,FALSE +Charlie Puth,See You Again (piano version),new,,,,,49130,FALSE +Charlie Puth,We Don't Talk Anymore,new,,,,,50886,FALSE +Charlie Rich,Behind Closed Doors,existing,,,,,,FALSE +Charlie Rich,Most Beautiful Girl In the World,existing,,,,,,FALSE +Chauncey Olcott,My Wild Irish Rose (A Cappella),existing,,,,,,FALSE +Cheap Trick,Dream Police,new,,,,,5618,FALSE +Cheap Trick,I Want You To Want Me (Live Version),existing,,,,,,FALSE +Cheap Trick,Surrender,existing,,,,,,FALSE +Cher,Believe,existing,,,,,,FALSE +Cher,Gypsies,existing,,,,,,FALSE +Cher,If I Could Turn Back Time,existing,,,,,,FALSE +Cher,Just Like Jesse James,existing,,,,,,FALSE +Cher,Shoop Shoop Song,existing,,,,,,FALSE +Cher Lloyd,Want U Back,existing,,,,,,FALSE +Cheryl Cole,Fight for This Love,existing,,,,,,FALSE +Chet Baker,But Not for Me,new,,,,,66219,FALSE +Chet Baker,I Fall in Love Too Easily,new,,,,,72330,FALSE +Chet Baker,My Funny Valentine,new,,,,,66455,FALSE +Chic,Everybody Dance,existing,,,,,,FALSE +Chic,Good Times,new,,,,,8651,FALSE +Chic,Le Freak,new,,,,,8644,FALSE +Chicago,25 Or 6 To 4,existing,,,,,,FALSE +Chicago,Hard To Say I'm Sorry (Single Version),existing,,,,,,FALSE +Chicago,If You Leave Me Now,existing,,,,,,FALSE +Chicago (band),"Baby, What a Big Surprise",new,Chicago,,,,15347,FALSE +Chicago (band),Does Anybody Really Know What Time It Is,new,Chicago,,,,32333,FALSE +Chicago (band),Feelin' Stronger Every Day,new,Chicago,,,,60473,FALSE +Chicago (band),Hard Habit To Break,new,Chicago,,,,8593,FALSE +Chicago (band),Saturday in the Park,new,Chicago,,,,8590,FALSE +Chicago The Musical,Razzle Dazzle (A Cappella),existing,,,,,,FALSE +Chico And The Gypsies,Besame Mucho,existing,,,,,,FALSE +Chico And The Gypsies,La Bohemia,existing,,,,,,FALSE +Childish Gambino,3005,new,,,,,46400,FALSE +Childish Gambino,Bonfire,new,,,,,69581,FALSE +Childish Gambino,Feels Like Summer,new,,,,,56527,FALSE +Childish Gambino,Heartbeat,new,,,,,73275,FALSE +Childish Gambino,Redbone,new,,,,,54320,FALSE +Chris Andrews,Yesterday Man,existing,,,,,,FALSE +Chris Brown,Five More Hours,new,,,,,49454,FALSE +Chris Brown,Forever,new,,,,,19780,FALSE +Chris Brown,Kiss Kiss,new,,,,,13594,FALSE +Chris Brown,Loyal,new,,,,,46653,FALSE +Chris Brown,No Guidance,new,,,,,68477,FALSE +Chris Brown,Under the Influence,new,,,,,71484,FALSE +Chris Brown,With You,new,,,,,14641,FALSE +Chris De Burgh,Patricia the Stripper,existing,,,,,,FALSE +Chris Farlowe,Out of Time,existing,,,,,,FALSE +Chris Isaak,Wicked Game,new,,,,,6337,FALSE +Chris Janson,Buy Me a Boat,new,,,,,49481,FALSE +Chris Janson,Done,new,,,,,60963,FALSE +Chris Janson,Drunk Girl,new,,,,,55249,FALSE +Chris Janson,Fix a Drink,new,,,,,53273,FALSE +Chris Janson,Good Vibes,new,,,,,58250,FALSE +Chris Montez,Let's Dance,existing,,,,,,FALSE +Chris Rea,Driving Home for Christmas,existing,,,,,,FALSE +Chris Stapleton,Broken Halos,new,,,,,53051,FALSE +Chris Stapleton,Millionaire,new,,,,,54451,FALSE +Chris Stapleton,Parachute,new,,,,,50730,FALSE +Chris Stapleton,Starting Over,new,,,,,62311,FALSE +Chris Stapleton,Tennessee Whiskey,new,,,,,49375,FALSE +Chris Stapleton,Think I'm in Love with You,new,,,,,77146,FALSE +Chris Stapleton,Traveller,new,,,,,50295,FALSE +Chris Stapleton,White Horse,new,,,,,76263,FALSE +Chris Stapleton,You Should Probably Leave,new,,,,,63026,FALSE +Chris Young,Aw Naw,new,,,,,44795,FALSE +Chris Young,Famous Friends,new,,,,,64303,FALSE +Chris Young,Gettin' You Home,new,,,,,22691,FALSE +Chris Young,I'm Comin' Over,new,,,,,49638,FALSE +Chris Young,Think Of You,new,,,,,50979,FALSE +Chris Young,Tomorrow,new,,,,,37120,FALSE +Christie,Yellow River,existing,,,,,,FALSE +Christina Aguilera,Ain't No Other Man,existing,,,,,,FALSE +Christina Aguilera,Beautiful,existing,,,,,,FALSE +Christina Aguilera,But I Am a Good Girl,existing,,,,,,FALSE +Christina Aguilera,Candy Man,existing,,,,,,FALSE +Christina Aguilera,Dirrty,new,,,,,14431,FALSE +Christina Aguilera,Fighter,new,,,,,6206,FALSE +Christina Aguilera,Genie in a Bottle,new,,,,,8629,FALSE +Christina Aguilera,Hurt,existing,,,,,,FALSE +Christina Aguilera,Voice Within,existing,,,,,,FALSE +Christina Aguilera / Lil Kim / Mya / Pink,Lady Marmalade,existing,,,,,,FALSE +Christina Perri,Jar of Hearts,existing,,,,,,FALSE +Christmas Carol,All Through the Night,new,,,,,24973,FALSE +Christmas Carol,Angels We Have Heard on High,new,,,,,34350,FALSE +Christmas Carol,Angels from the Realms of Glory,new,,,,,26554,FALSE +Christmas Carol,Away in a Manger,new,,,,,24703,FALSE +Christmas Carol,Campanas De Navidad,new,,,,,25234,FALSE +Christmas Carol,Carol of the Bells,new,,,,,25235,FALSE +Christmas Carol,Deck the Halls (long version),new,,,,,26797,FALSE +Christmas Carol,Deck the Halls,new,,,,,26796,FALSE +Christmas Carol,Ding Dong Merrily on High,new,,,,,33781,FALSE +Christmas Carol,Ding dong que alegria,new,,,,,38644,FALSE +Christmas Carol,Doce Dias De Navidad,new,,,,,34450,FALSE +Christmas Carol,"Douce nuit, sainte nuit (version lente)",new,,,,,37071,FALSE +Christmas Carol,"Douce nuit, sainte nuit",new,,,,,5081,FALSE +Christmas Carol,El Acebo Y La Hiedra,new,,,,,34451,FALSE +Christmas Carol,El Buen Rey Wenceslao,new,,,,,34452,FALSE +Christmas Carol,En Un Pesebrito,new,,,,,34454,FALSE +Christmas Carol,Escucha! Los Angeles Cantan,new,,,,,34455,FALSE +Christmas Carol,"God Rest Ye Merry, Gentlemen (slow version)",new,,,,,26880,FALSE +Christmas Carol,"God Rest Ye Merry, Gentlemen",new,,,,,24201,FALSE +Christmas Carol,Good King Wenceslas,new,,,,,33782,FALSE +Christmas Carol,Gozo de Dios,new,,,,,34456,FALSE +Christmas Carol,Hark! The Herald Angels Sing (slow version),new,,,,,26949,FALSE +Christmas Carol,Hark! The Herald Angels Sing,new,,,,,24873,FALSE +Christmas Carol,I Saw Three Ships,new,,,,,25177,FALSE +Christmas Carol,Il est ne le divin enfant (version dance),new,,,,,37072,FALSE +Christmas Carol,It Came Upon A Midnight Clear,new,,,,,26596,FALSE +Christmas Carol,Joy to the World,new,,,,,24241,FALSE +Christmas Carol,La primera Navidad,new,,,,,34453,FALSE +Christmas Carol,Mon beau sapin,new,,,,,5085,FALSE +Christmas Carol,"Navidad, Navidad",new,,,,,34458,FALSE +Christmas Carol,Noche De Paz,new,,,,,34459,FALSE +Christmas Carol,Nosotros Los Tres Reyes,new,,,,,34356,FALSE +Christmas Carol,O Christmas Tree,new,,,,,5086,FALSE +Christmas Carol,O Come All Ye Faithful (alternate version),new,,,,,25647,FALSE +Christmas Carol,O Come All Ye Faithful,new,,,,,24742,FALSE +Christmas Carol,"O Come, O Come, Emmanuel",new,,,,,27446,FALSE +Christmas Carol,O Holy Night,new,,,,,34376,FALSE +Christmas Carol,O Little Town of Bethlehem,new,,,,,25645,FALSE +Christmas Carol,O Tannenbaum,new,,,,,5087,FALSE +Christmas Carol,Once in Royal David's City,new,,,,,33783,FALSE +Christmas Carol,Oyelas Bien,new,,,,,25236,FALSE +Christmas Carol,Querida ciudad de Belen,new,,,,,34461,FALSE +Christmas Carol,Quien es este nino,new,,,,,34463,FALSE +Christmas Carol,Silent Night (Man Voice),new,,,,,26636,FALSE +Christmas Carol,Silent Night (Woman Voice),new,,,,,26635,FALSE +Christmas Carol,Silent Night,new,,,,,5082,FALSE +Christmas Carol,"Stille Nacht, Heilige Nacht",new,,,,,5084,FALSE +Christmas Carol,Te deseamos una Feliz Navidad,new,,,,,34464,FALSE +Christmas Carol,The Christmas Song (Chestnuts Roasting),existing,,,,,,FALSE +Christmas Carol,The First Noel,new,,,,,24722,FALSE +Christmas Carol,The Holly and the Ivy,new,,,,,33784,FALSE +Christmas Carol,Toda La Noche,new,,,,,25443,FALSE +Christmas Carol,Toyland,new,,,,,25217,FALSE +Christmas Carol,Twelve Days of Christmas (alternate version),new,,,,,26950,FALSE +Christmas Carol,Twelve Days of Christmas,new,,,,,24963,FALSE +Christmas Carol,Up on the House Top,new,,,,,26910,FALSE +Christmas Carol,We Three Kings (alternate version),new,,,,,25649,FALSE +Christmas Carol,We Three Kings,new,,,,,24965,FALSE +Christmas Carol,We Wish You a Merry Christmas (Alternate Version),new,,,,,25650,FALSE +Christmas Carol,We Wish You a Merry Christmas (slow version),new,,,,,24222,FALSE +Christmas Carol,We Wish You a Merry Christmas,new,,,,,5025,FALSE +Christmas Carol,What Child Is This,new,,,,,26915,FALSE +Christmas Carol,While Shepherds Watched Their Flocks,new,,,,,33785,FALSE +Christmas Carol,Winter Wonderland,new,,,,,67353,FALSE +Christmas Song,Jingle Bells (A Cappella),existing,,,,,,FALSE +Christopher Cross,Arthur's Theme (The Best That You Can Do),new,,,,,10095,FALSE +Christopher Cross,Ride Like the Wind,new,,,,,12449,FALSE +Christopher Cross,Sailing (A Cappella),existing,,,,,,FALSE +Christopher Cross,Sailing,existing,,,,,,FALSE +Chubbey Checker,Let's Twist Again,existing,Chubby Checker,,,,,FALSE +Chuck Berry,Almost Grown,existing,,,,,,FALSE +Chuck Berry,Johnny B Goode,existing,,,,,,FALSE +Chuck Berry,Little Queenie,new,,,,,47641,FALSE +Chuck Berry,My Ding-a-Ling,new,,,,,42215,FALSE +Chuck Berry,No Particular Place To Go,existing,,,,,,FALSE +Chuck Berry,Rock And Roll Music,existing,,,,,,FALSE +Chuck Berry,Roll Over Beethoven,existing,,,,,,FALSE +Chuck Berry,You Never Can Tell,existing,,,,,,FALSE +Chumbawamba,Tubthumping,existing,,,,,,FALSE +Chvrches,The Mother We Share,new,,,,,47599,FALSE +Ciara,"1, 2 Step",new,,,,,12448,FALSE +Ciara,Goodies,new,,,,,49530,FALSE +Ciara,Level Up,new,,,,,79613,FALSE +Ciara,Like a Boy,new,,,,,11904,FALSE +Ciara,Oh,new,,,,,75849,FALSE +Cilla Black,You're My World,existing,,,,,,FALSE +Citizen Cope,Son's Gonna Rise,new,,,,,81662,FALSE +Clarence 'Frogman' Henry,I Don't Know Why I Love You (but I Do),existing,,,,,,FALSE +Clean Bandit,Baby,new,,,,,56731,FALSE +Clean Bandit,I Miss You,new,,,,,54759,FALSE +Clean Bandit,Rather Be feat. Jess Glynne,existing,,,,,,FALSE +Clean Bandit,Rather Be,new,,,,,46232,FALSE +Clean Bandit,Rockabye,new,,,,,52043,FALSE +Clean Bandit,Solo,new,,,,,55644,FALSE +Clean Bandit,Symphony,new,,,,,52887,FALSE +Cliff Richard,Bachelor Boy,existing,,,,,,FALSE +Cliff Richard,Do You Wanna Dance,existing,,,,,,FALSE +Cliff Richard,I Could Easily Fall,existing,,,,,,FALSE +Cliff Richard,I Love You,existing,,,,,,FALSE +Cliff Richard,In The Country,existing,,,,,,FALSE +Cliff Richard,Johnny B Goode,existing,,,,,,FALSE +Cliff Richard,Minute You're Gone,existing,,,,,,FALSE +Cliff Richard,Mistletoe & Wine,existing,,,,,,FALSE +Cliff Richard,Move It,existing,,,,,,FALSE +Cliff Richard,Rip It Up,existing,,,,,,FALSE +Cliff Richard,School Days,existing,,,,,,FALSE +Cliff Richard,Sealed With a Kiss,existing,,,,,,FALSE +Cliff Richard,Stood Up,existing,,,,,,FALSE +Cliff Richard,Stuck On You,existing,,,,,,FALSE +Cliff Richard,Such a Night,existing,,,,,,FALSE +Cliff Richard,Summer Holiday,existing,,,,,,FALSE +Cliff Richard,Travellin' Light,existing,,,,,,FALSE +Cliff Richard,Young Ones,existing,,,,,,FALSE +Climax Blues Band,Couldn't Get It Right,new,,,,,34116,FALSE +Clout,Substitute,existing,,,,,,FALSE +Clyde Mcphatter,Lover's Question,existing,,,,,,FALSE +Coast To Coast,Do the Hucklebuck,existing,,,,,,FALSE +Cody Jinks,Hippies & Cowboys,new,,,,,53895,FALSE +Cody Jinks,Loud and Heavy,new,,,,,57428,FALSE +Cody Jinks,Mamma Song,new,,,,,60512,FALSE +Cody Jinks,Must Be the Whiskey,new,,,,,56076,FALSE +Cody Johnson,Dance Her Home,new,,,,,55306,FALSE +Cody Johnson,Diamond in My Pocket,new,,,,,27918,FALSE +Cody Johnson,Me and My Kind,new,,,,,69089,FALSE +Cody Johnson,The Painter,new,,,,,76737,FALSE +Cody Johnson,With You I Am,new,,,,,53172,FALSE +Coheed And Cambria,A Favor House Atlantic,existing,,,,,,FALSE +Coheed And Cambria,Welcome Home,existing,,,,,,FALSE +Coheed And Cambria,A Favor House Atlantic,new,Coheed And Cambria,,,,29039,FALSE +Coheed And Cambria,Blood Red Summer,new,Coheed And Cambria,,,,24850,FALSE +Coheed And Cambria,The Suffering,new,Coheed And Cambria,,,,15388,FALSE +Coheed And Cambria,Welcome Home,new,Coheed And Cambria,,,,28920,FALSE +Colbie Caillat,Bubbly,existing,,,,,,FALSE +Colbie Caillat,Try,existing,,,,,,FALSE +Cold War Kids,First,new,,,,,63967,FALSE +Cold War Kids,Hang Me Up to Dry,new,,,,,76215,FALSE +Coldplay,A Head Full of Dreams,new,,,,,50466,FALSE +Coldplay,A Rush of Blood to the Head,new,,,,,53386,FALSE +Coldplay,A Sky Full Of Stars,existing,,,,,,FALSE +Coldplay,Adventure of a Lifetime,new,,,,,50144,FALSE +Coldplay,Charlie Brown,existing,,,,,,FALSE +Coldplay,Clocks,existing,,,,,,FALSE +Coldplay,Fix You,existing,,,,,,FALSE +Coldplay,Hymn for the Weekend (Seeb Remix),new,,,,,62621,FALSE +Coldplay,Hymn for the Weekend,new,,,,,50674,FALSE +Coldplay,In My Place,existing,,,,,,FALSE +Coldplay,Magic,existing,,,,,,FALSE +Coldplay,Paradise,existing,,,,,,FALSE +Coldplay,Sky Full of Stars,existing,,,,,,FALSE +Coldplay,Speed of Sound,existing,,,,,,FALSE +Coldplay,Spies,new,,,,,82450,FALSE +Coldplay,The Scientist,new,,,,,5737,FALSE +Coldplay,Viva La Vida,existing,,,,,,FALSE +Coldplay,White Shadows,existing,,,,,,FALSE +Coldplay,Yellow,new,,,,,7788,FALSE +Cole Porter,Begin The Beguine,existing,,,,,,FALSE +Cole Porter,Every Time We Say Goodbye,existing,,,,,,FALSE +Cole Porter,I Get A Kick Out Of You,existing,,,,,,FALSE +Cole Porter,I've Got You Under My Skin,existing,,,,,,FALSE +Cole Porter,It's De-Lovely,existing,,,,,,FALSE +Cole Swindell,Chillin' It,new,,,,,47972,FALSE +Cole Swindell,Flatliner,new,,,,,52865,FALSE +Cole Swindell,Middle of a Memory,new,,,,,51799,FALSE +Cole Swindell,She Had Me at Heads Carolina,new,,,,,69251,FALSE +Cole Swindell,Single Saturday Night,new,,,,,65598,FALSE +Cole Swindell,You Should Be Here,new,,,,,50675,FALSE +Collective Soul,December,new,,,,,17445,FALSE +Collective Soul,Heavy,new,,,,,8516,FALSE +Collective Soul,Shine,new,,,,,35895,FALSE +Collective Soul,The World I Know,new,,,,,10834,FALSE +Colter Wall,Cowpoke,new,,,,,77710,FALSE +Colter Wall,Fraulein,new,,,,,56998,FALSE +Colter Wall,Kate McCannon,new,,,,,68325,FALSE +Colter Wall,Motorcycle,new,,,,,76262,FALSE +Colter Wall,Sleeping on the Blacktop,new,,,,,67265,FALSE +Colter Wall,The Devil Wears a Suit and Tie,new,,,,,66178,FALSE +Commodores,Brick House,new,The Commodores,,TRUE,,15400,FALSE +Commodores,Easy,new,The Commodores,,TRUE,,13677,FALSE +Commodores,Lady (You Bring Me Up),new,The Commodores,,,,55442,FALSE +Commodores,Nightshift,new,The Commodores,,TRUE,,17447,FALSE +Commodores,Sail On,new,The Commodores,,,,33486,FALSE +Commodores,Still,new,The Commodores,,TRUE,,17448,FALSE +Commodores,Three Times A Lady,new,The Commodores,,TRUE,,13632,FALSE +Connie Francis,Jealous Heart,existing,,,,,,FALSE +Connie Francis,Lipstick On Your Collar,existing,,,,,,FALSE +Connie Francis,Stupid Cupid,existing,,,,,,FALSE +Connie Francis,Where the Boys Are,existing,,,,,,FALSE +Connie Francis,You Tell Me Your Dream (A Cappella),existing,,,,,,FALSE +Conor Maynard,Can't Say No,existing,,,,,,FALSE +Conway Twitty,Hello Darlin',new,,,,,14824,FALSE +Conway Twitty,"Louisiana Woman, Mississippi Man",new,,,,,17449,FALSE +Conway Twitty,Slow Hand,new,,,,,14268,FALSE +Conway Twitty,Tight Fittin' Jeans,new,,,,,15410,FALSE +Coolio,Fantastic Voyage,existing,,,,,,FALSE +Coolio,Gangsta's Paradise,existing,,,,,,FALSE +Corinne Bailey Rae,Put Your Records On,existing,,,,,,FALSE +Cornershop,Brimful of Asha (Norman Cook Remix),existing,,,,,,FALSE +Corrosion Of Conformity,Albatross,existing,,,,,,FALSE +Count Basie,Cute,existing,,,,,,FALSE +Counting Crows,A Long December,new,,,,,11213,FALSE +Counting Crows,Big Yellow Taxi,new,,,,,5779,FALSE +Counting Crows,Mr. Jones,new,,,,,11440,FALSE +Counting Crows,Round Here,new,,,,,11420,FALSE +Country Standards,Cotton Eyed Joe,existing,,,,,,FALSE +Cowboy Bebop (),Call Me Call Me,new,Cowboy Bebop,,,,82987,FALSE +Cowboy Bebop (),The Real Folk Blues,new,Cowboy Bebop,,,,81369,FALSE +Crazy,One Foot Cock,existing,,,,,,FALSE +Cream,Born Under A Bad Sign,existing,,,,,,FALSE +Cream,Crossroads,existing,,,,,,FALSE +Cream,Outside Woman Blues (Live),existing,,,,,,FALSE +Cream,Strange Brew,new,,,,,24075,FALSE +Cream,Sunshine Of Your Love,existing,,,,,,FALSE +Cream,White Room,existing,,,,,,FALSE +Creed,Higher,new,,,,,8817,FALSE +Creed,My Sacrifice,new,,,,,8086,FALSE +Creed,One Last Breath,new,,,,,6830,FALSE +Creed,Torn,new,,,,,59093,FALSE +Creed,With Arms Wide Open,new,,,,,7377,FALSE +Creedence Clearwater Revival,Bad Moon Rising,existing,,,,,,FALSE +Creedence Clearwater Revival,Born on the Bayou,new,,,,,14464,FALSE +Creedence Clearwater Revival,Down On The Corner,existing,,,,,,FALSE +Creedence Clearwater Revival,Fortunate Son,new,,,,,9998,FALSE +Creedence Clearwater Revival,Have You Ever Seen The Rain,existing,,,,,,FALSE +Creedence Clearwater Revival,I Heard It Through the Grapevine (single version),new,,,,,13270,FALSE +Creedence Clearwater Revival,Proud Mary (A Cappella),existing,,,,,,FALSE +Creedence Clearwater Revival,Proud Mary,new,,,,,5462,FALSE +Creedence Clearwater Revival,Run Through the Jungle,new,,,,,46009,FALSE +Creedence Clearwater Revival,Suzie Q,new,,,,,8967,FALSE +Creedence Clearwater Revival,The Midnight Special,new,,,,,8957,FALSE +Creedence Clearwater Revival,Travelin' Band,existing,,,,,,FALSE +Creedence Clearwater Revival,Who'll Stop the Rain,new,,,,,15438,FALSE +"Crosby, Stills, Nash and Young",Helpless,new,,,,,65988,FALSE +"Crosby, Stills, Nash and Young",Helplessly Hoping,new,,,,,53236,FALSE +"Crosby, Stills, Nash and Young",Love the One You're With (live),new,,,,,66240,FALSE +"Crosby, Stills, Nash and Young",Marrakesh Express,new,,,,,60798,FALSE +"Crosby, Stills, Nash and Young",Southern Cross,new,,,,,45050,FALSE +"Crosby, Stills, Nash and Young",Wasted On The Way,new,,,,,41086,FALSE +"Crosby, Stills, Nash and Young",Wooden Ships,new,,,,,61398,FALSE +"Crosby, Stills, Nash and Young",Woodstock,new,,,,,50642,FALSE +Crosby Stills And Nash,Our House,existing,,,,,,FALSE +Crosby Stills And Nash,Suite Judy Blue Eyes,existing,,,,,,FALSE +Crosby Stills And Nash,Teach Your Children,existing,,,,,,FALSE +Crowded House,Don't Dream It's Over,existing,,,,,,FALSE +Crowded House,Four Seasons In One Day,existing,,,,,,FALSE +Crowded House,Something So Strong,new,,,,,41198,FALSE +Crowded House,Weather With You,existing,,,,,,FALSE +Crystal Gayle,Don't It Make Your Brown Eyes Blue,existing,,,,,,FALSE +Culture Club,Do You Really Want To Hurt Me,new,,,,,12022,FALSE +Culture Club,I'll Tumble 4 Ya,new,,,,,78356,FALSE +Culture Club,Karma Chameleon,new,,,,,11301,FALSE +Curiosity Killed The Cat,Down To Earth,existing,,,,,,FALSE +Curtis Mayfield,Move On Up,new,,,,,48503,FALSE +Curtis Mayfield,Superfly,new,,,,,15457,FALSE +Cutting Crew,(I Just) Died In Your Arms,existing,,,,,,FALSE +Cyndi Lauper,All Through the Night,new,,,,,15459,FALSE +Cyndi Lauper,Girls Just Wanna Have Fun,existing,,,,,,FALSE +Cyndi Lauper,She Bop,new,,,,,20853,FALSE +Cyndi Lauper,Time After Time,new,,,,,13259,FALSE +Cyndi Lauper,True Colours,existing,,,,,,FALSE +D:Ream,Things Can Only Get Better,existing,,,,,,FALSE +DJ Khaled,All I Do Is Win,new,,,,,52130,FALSE +DJ Khaled,I'm On One,new,,,,,79729,FALSE +DJ Khaled,I'm So Hood,new,,,,,13714,FALSE +DJ Khaled,I'm the One,new,,,,,53372,FALSE +DJ Khaled,No Brainer,new,,,,,56170,FALSE +DJ Khaled,Popstar,new,,,,,71559,FALSE +DJ Khaled,Wild Thoughts,new,,,,,53526,FALSE +DJ Otzi,Hey Baby,existing,,,,,,FALSE +DJ Sammy,Boys of Summer,existing,,,,,,FALSE +DMX,Party Up,new,,,,,54980,FALSE +DMX,Ruff Ryders' Anthem,new,,,,,69200,FALSE +DMX,Slippin',new,,,,,77813,FALSE +DMX,What These Bitches Want,new,,,,,70299,FALSE +DMX,Where the Hood At,new,,,,,64541,FALSE +DMX,X Gon' Give it To Ya,new,,,,,54903,FALSE +DNCE,Cake by the Ocean,new,,,,,50329,FALSE +DNCE,Kissing Strangers,new,,,,,53137,FALSE +DNCE,Toothbrush,new,,,,,51517,FALSE +Daft Punk,Around the World,new,,,,,43219,FALSE +Daft Punk,Digital Love,new,,,,,20856,FALSE +Daft Punk,Fragments of Time,new,,,,,64226,FALSE +Daft Punk,Get Lucky,existing,,,,,,FALSE +Daft Punk,"Harder, Better, Faster, Stronger",new,,,,,64154,FALSE +Daft Punk,Instant Crush,new,,,,,44068,FALSE +Daft Punk,Lose Yourself to Dance,new,,,,,44392,FALSE +Daft Punk,One More Time,new,,,,,13275,FALSE +Daft Punk,Something About Us,new,,,,,38553,FALSE +Daft Punk,Technologic,new,,,,,52766,FALSE +Damien Rice,9 Crimes,new,,,,,32117,FALSE +Damien Rice,Cannonball,new,,,,,24509,FALSE +Damien Rice,Delicate,new,,,,,64057,FALSE +Damien Rice,The Blowers Daughter,new,,,,,21148,FALSE +Damn Yankees,Bad Reputation,new,,,,,15465,FALSE +Damn Yankees,Come Again,new,,,,,76445,FALSE +Damn Yankees,Coming of Age,new,,,,,15466,FALSE +Damn Yankees,High Enough,new,,,,,15464,FALSE +Dan + Shay,"10,000 Hours",new,,,,,59487,FALSE +Dan + Shay,All to Myself,new,,,,,81414,FALSE +Dan + Shay,From the Ground Up,new,,,,,51412,FALSE +Dan + Shay,Glad You Exist,new,,,,,63822,FALSE +Dan + Shay,Nothin' Like You,new,,,,,51254,FALSE +Dan + Shay,Speechless,new,,,,,55969,FALSE +Dan + Shay,Tequila,new,,,,,55116,FALSE +Dan Auerbach,Shine on Me,new,,,,,53208,FALSE +Dan Auerbach,Waiting on a Song,new,,,,,65246,FALSE +Dan Fogelberg,Leader of the Band,new,,,,,17456,FALSE +Dan Fogelberg,Longer,new,,,,,10285,FALSE +Dan Fogelberg,Same Old Lang Syne,new,,,,,17457,FALSE +Dan Hartman,Instant Replay,existing,,,,,,FALSE +Dan Hill,Sometimes When We Touch,existing,,,,,,FALSE +Daniel Bedingfield,If You're Not the One,existing,,,,,,FALSE +Daniel Boone,Beautiful Sunday,existing,,,,,,FALSE +Daniel Caesar,Always,new,,,,,83119,FALSE +Daniel Caesar,Best Part,new,,,,,55821,FALSE +Daniel Caesar,Blessed,new,,,,,68563,FALSE +Daniel Caesar,Get You,new,,,,,56087,FALSE +Daniel Caesar,Japanese Denim,new,,,,,58388,FALSE +Daniel Merriweather,Red,existing,,,,,,FALSE +Daniel Powter,Bad Day (A Cappella),existing,,,,,,FALSE +Danny & The Juniors,At the Hop,existing,,,,,,FALSE +Danny Wilson,Mary's Prayer,existing,,,,,,FALSE +Danzig,Dirty Black Summer,existing,,,,,,FALSE +Danzig,Mother,new,,,,,54257,FALSE +Danzig,Twist of Cain,new,,,,,68516,FALSE +Darius Rucker,Alright,new,,,,,22844,FALSE +Darius Rucker,Beers and Sunshine,new,,,,,62101,FALSE +Darius Rucker,For the First Time,new,,,,,54639,FALSE +Darius Rucker,If I Told You,new,,,,,53133,FALSE +Darius Rucker,Wagon Wheel,new,,,,,43412,FALSE +Dashboard Confessional,Hands Down,new,,,,,15479,FALSE +Dashboard Confessional,Screaming Infidelities,new,,,,,64214,FALSE +Dashboard Confessional,Stolen,new,,,,,11883,FALSE +Dashboard Confessional,Vindicated,new,,,,,15481,FALSE +Daughtry,Home,new,,,,,11867,FALSE +Daughtry,It's Not Over,new,,,,,11732,FALSE +Daughtry,Life After You,new,,,,,26930,FALSE +Daughtry,Over You,new,,,,,11868,FALSE +Daughtry,Waiting For Superman,new,,,,,45993,FALSE +Dave Berry,Little Things,existing,,,,,,FALSE +Dave Clark Five,Bits & Pieces,existing,,,,,,FALSE +Dave Clark Five,Glad All Over,existing,,,,,,FALSE +Dave Edmunds,I Hear You Knocking,existing,,,,,,FALSE +Dave Edmunds,Queen of Hearts,existing,,,,,,FALSE +Dave Mason,We Just Disagree,new,,,,,50606,FALSE +Dave Matthews Band,#41,new,,,,,74806,FALSE +Dave Matthews Band,American Baby,new,,,,,5626,FALSE +Dave Matthews Band,Ants Marching,new,,,,,18259,FALSE +Dave Matthews Band,Crash into Me,new,,,,,10211,FALSE +Dave Matthews Band,Crush,new,,,,,9251,FALSE +Dave Matthews Band,Don't Drink the Water,new,,,,,79570,FALSE +Dave Matthews Band,Gravedigger,new,,,,,64927,FALSE +Dave Matthews Band,Grey Street,new,,,,,76271,FALSE +Dave Matthews Band,Satellite,new,,,,,67530,FALSE +Dave Matthews Band,So Much to Say,new,,,,,32116,FALSE +Dave Matthews Band,Stay (Wasting Time),new,,,,,9145,FALSE +Dave Matthews Band,The Space Between,new,,,,,7897,FALSE +Dave Matthews Band,Too Much,new,,,,,11000,FALSE +Dave Matthews Band,Tripping Billies,new,,,,,10421,FALSE +Dave Matthews Band,What Would You Say,new,,,,,59242,FALSE +Dave Matthews Band,Where Are You Going,new,,,,,15486,FALSE +Dave Matthews Band,You and Me,new,,,,,76578,FALSE +Dave Sebree,Halfway To Avalon,existing,,,,,,FALSE +Dave Sebree,Head Over Heels,existing,,,,,,FALSE +David Allan Coe,Longhaired Redneck,new,,,,,74214,FALSE +David Allan Coe,The Ride,new,,,,,15493,FALSE +David Allan Coe,You Never Even Called Me by My Name,new,,,,,15489,FALSE +David Archuleta,Crush,new,,,,,20648,FALSE +David Archuleta,From a Distance,new,,,,,62272,FALSE +David Bowie,Absolute Beginners,existing,,,,,,FALSE +David Bowie,Blue Jean,new,,,,,17464,FALSE +David Bowie,Changes,existing,,,,,,FALSE +David Bowie,China Girl,new,,,,,12905,FALSE +David Bowie,Dancing in the Street,new,,,,,12995,FALSE +David Bowie,Fame,existing,,,,,,FALSE +David Bowie,Golden Years,new,,,,,55232,FALSE +David Bowie,Heroes,new,,,,,12733,FALSE +David Bowie,Jean Genie,existing,,,,,,FALSE +David Bowie,Let's Dance,existing,,,,,,FALSE +David Bowie,Life On Mars,existing,,,,,,FALSE +David Bowie,Modern Love,new,,,,,12739,FALSE +David Bowie,Moonage Daydream,new,,,,,47434,FALSE +David Bowie,Oh You Pretty Things,existing,,,,,,FALSE +David Bowie,Rebel Rebel,existing,,,,,,FALSE +David Bowie,Sorrow,existing,,,,,,FALSE +David Bowie,Space Oddity,existing,,,,,,FALSE +David Bowie,Starman,existing,,,,,,FALSE +David Bowie,Suffragette City,existing,,,,,,FALSE +David Bowie,Young Americans,new,,,,,35278,FALSE +David Bowie,Ziggy Stardust,existing,,,,,,FALSE +David Essex,Gonna Make You A Star,existing,,,,,,FALSE +David Essex,Winters Tale,existing,,,,,,FALSE +David Gilmour,Between Two Points,new,,,,,82153,FALSE +David Gilmour,Comfortably Numb (live in Gdansk),new,,,,,68805,FALSE +David Gilmour,In Any Tongue,new,,,,,49913,FALSE +David Gilmour,Luck and Strange,new,,,,,83700,FALSE +David Gilmour,On an Island,new,,,,,62461,FALSE +David Gilmour,Rattle That Lock,new,,,,,49661,FALSE +David Gilmour,The Blue,new,,,,,75546,FALSE +David Gilmour,The Piper's Call,new,,,,,81449,FALSE +David Gilmour,There's No Way Out of Here,new,,,,,75024,FALSE +David Gray,Babylon,new,,,,,7693,FALSE +David Guetta,Baby Don't Hurt Me,new,,,,,74647,FALSE +David Guetta,Be My Lover,new,,,,,75739,FALSE +David Guetta,I Don't Wanna Wait,new,,,,,80741,FALSE +David Guetta,I'm Good (Blue),new,,,,,71382,FALSE +David Guetta,Memories,new,,,,,27729,FALSE +David Guetta,Sexy Bitch,new,,,,,24127,FALSE +David Guetta,Titanium (A Cappella),existing,,,,,,FALSE +David Guetta,Titanium,existing,,,,,,FALSE +David Guetta,When We Were Young (The Logical Song),new,,,,,79359,FALSE +David Guetta,Where Them Girls At,new,,,,,36910,FALSE +David Guetta Feat. Nicki Minaj,Turn Me On,existing,David Guetta,,,,,FALSE +David Guetta Vs The Egg,Love Don't Let Me Go (Walking Away),existing,David Guetta,,,,,FALSE +David Lee Roth,Just a Gigolo,existing,,,,,,FALSE +Dawes,All Your Favorite Bands,new,,,,,80298,FALSE +Dawn,Knock Three Times,existing,,,,,,FALSE +Dawn,Tie a Yellow Ribbon Round the Old Oak Tree,existing,,,,,,FALSE +Dawn Penn,You Don't Love Me (No,existing,,,,,,FALSE +Dazz Band,Let It Whip,new,,,,,47583,FALSE +De Barge,Rhythm of the Night,existing,,,,,,FALSE +Deacon Blue,Dignity,existing,,,,,,FALSE +Deacon Blue,Fergus Sings the Blues,existing,,,,,,FALSE +Deacon Blue,I'll Never Fall In Love Again,existing,,,,,,FALSE +Deacon Blue,Real Gone Kid,existing,,,,,,FALSE +Dead Kennedys,California Uber Alles,new,,,,,77001,FALSE +Dead Kennedys,Holiday in Cambodia,new,,,,,70706,FALSE +Dead Kennedys,Police Truck,new,,,,,74280,FALSE +Dead Kennedys,Too Drunk to Fuck,new,,,,,64956,FALSE +Dead Or Alive,You Spin Me Round (Like A Record),existing,,,,,,FALSE +Deadmau5,I Remember,new,,,,,38258,FALSE +Dean Lewis,Be Alright,new,,,,,56268,FALSE +Dean Lewis,Half a Man,new,,,,,74563,FALSE +Dean Lewis,How Do I Say Goodbye,new,,,,,72204,FALSE +Dean Lewis,Waves,new,,,,,53370,FALSE +Dean Martin,(I Love You) For Sentimental Reasons,new,,,,,31171,FALSE +Dean Martin,Ain't That a Kick in the Head,new,,,,,12685,FALSE +Dean Martin,All of Me,new,,,,,51274,FALSE +Dean Martin,Almost Like Being in Love,new,,,,,60252,FALSE +Dean Martin,Blue Moon,new,,,,,36464,FALSE +Dean Martin,Buona Sera,new,,,,,53635,FALSE +Dean Martin,Dream a Little Dream of Me,new,,,,,48049,FALSE +Dean Martin,Everybody Loves Somebody,existing,,,,,,FALSE +Dean Martin,I Can't Give You Anything but Love,new,,,,,27513,FALSE +Dean Martin,I Left My Heart in San Francisco,new,,,,,48805,FALSE +Dean Martin,King of the Road,new,,,,,36028,FALSE +Dean Martin,L.O.V.E.,new,,,,,56918,FALSE +Dean Martin,Little Ole Wine Drinker Me,existing,,,,,,FALSE +Dean Martin,Sway,existing,,,,,,FALSE +Dean Martin,That's Amore,existing,,,,,,FALSE +Dean Martin,What a Difference a Day Makes,new,,,,,54606,FALSE +Dean Martin,When You're Smiling,new,,,,,34950,FALSE +Dean Martin,You're Nobody Till Somebody Loves You,new,,,,,15502,FALSE +Death Cab For Cutie,I Will Follow You Into The Dark,new,,,,,28496,FALSE +Death Cab For Cutie,Soul Meets Body,new,,,,,15504,FALSE +Debbie Harry,French Kissing In the USA,existing,,,,,,FALSE +Deborah Harry,I Want That Man,existing,Debbie Harry,,,,,FALSE +Deep Purple,Child In Time,new,,,,,30060,FALSE +Deep Purple,Highway Star,existing,,,,,,FALSE +Deep Purple,Hush,new,,,,,51930,FALSE +Deep Purple,Perfect Strangers,new,,,,,48851,FALSE +Deep Purple,Smoke On The Water,existing,,,,,,FALSE +Deep Purple,Space Truckin',new,,,,,46358,FALSE +Def Leppard,Animal,new,,,,,19977,FALSE +Def Leppard,Bringin' On the Heartbreak,new,,,,,42531,FALSE +Def Leppard,Foolin',new,,,,,62027,FALSE +Def Leppard,Hysteria,new,,,,,35382,FALSE +Def Leppard,Love Bites,new,,,,,15512,FALSE +Def Leppard,Photograph,new,,,,,35253,FALSE +Def Leppard,Pour Some Sugar On Me,existing,,,,,,FALSE +Def Leppard,Rock of Ages,new,,,,,49664,FALSE +Deftones,Be Quiet And Drive (Far Away),new,,,,,64742,FALSE +Deftones,Change (In the House of Flies),new,,,,,55466,FALSE +Deftones,Cherry Waves,new,,,,,82858,FALSE +Deftones,My Own Summer (Shove It),new,,,,,63893,FALSE +Deftones,Sextape,new,,,,,75668,FALSE +Del Amitri,Always the Last To Know,existing,,,,,,FALSE +Del Amitri,Nothing Ever Happens,existing,,,,,,FALSE +Del Amitri,Roll to Me,new,,,,,10827,FALSE +Del Shannon,Answer to Everything,existing,,,,,,FALSE +Del Shannon,Hats off To Larry,existing,,,,,,FALSE +Del Shannon,Little Town Flirt,existing,,,,,,FALSE +Del Shannon,Runaway,existing,,,,,,FALSE +Deloris & The Sisters,Spread the Love Around,existing,,,,,,FALSE +Demi Lovato,Confident,new,,,,,50142,FALSE +Demi Lovato,Cool for the Summer,new,,,,,49521,FALSE +Demi Lovato,Give Your Heart a Break,new,,,,,38776,FALSE +Demi Lovato,Heart Attack,existing,,,,,,FALSE +Demi Lovato,Let It Go,existing,,,,,,FALSE +Demi Lovato,Really Don't Care,new,,,,,44585,FALSE +Demi Lovato,Solo,new,,,,,24113,FALSE +Demi Lovato,Sorry Not Sorry,new,,,,,53804,FALSE +Deniece Williams,Let's Hear It for the Boy,existing,,,,,,FALSE +Dennis Brown,Love Has Found It's Way,existing,,,,,,FALSE +Depeche Mode,Behind the Wheel,existing,,,,,,FALSE +Depeche Mode,Blasphemous Rumours,new,,,,,71996,FALSE +Depeche Mode,Enjoy the Silence,existing,,,,,,FALSE +Depeche Mode,Everything Counts,existing,,,,,,FALSE +Depeche Mode,I Feel You,existing,,,,,,FALSE +Depeche Mode,It's No Good,new,,,,,10236,FALSE +Depeche Mode,Just Can't Get Enough,existing,,,,,,FALSE +Depeche Mode,Master and Servant,new,,,,,20885,FALSE +Depeche Mode,Never Let Me Down Again,new,,,,,61943,FALSE +Depeche Mode,Never Let Me Down,existing,,,,,,FALSE +Depeche Mode,People Are People,new,,,,,9976,FALSE +Depeche Mode,Personal Jesus,new,,,,,12804,FALSE +Depeche Mode,Policy of Truth,new,,,,,20886,FALSE +Depeche Mode,Precious,new,,,,,20758,FALSE +Depeche Mode,Shake the Disease,existing,,,,,,FALSE +Depeche Mode,Strangelove,existing,,,,,,FALSE +Depeche Mode,World In My Eyes,existing,,,,,,FALSE +Derek And The Dominos,Layla,existing,,,,,,FALSE +Derek And the Dominos,Little Wing,new,Derek And The Dominos,,,,58030,FALSE +Derek And the Dominos,Nobody Knows You When You're Down and Out,new,Derek And The Dominos,,,,59209,FALSE +Dermot Kennedy,Better Days,new,,,,,67019,FALSE +Dermot Kennedy,Giants,new,,,,,62038,FALSE +Dermot Kennedy,Kiss Me,new,,,,,71677,FALSE +Dermot Kennedy,Outnumbered,new,,,,,59303,FALSE +Dermot Kennedy,Power Over Me,new,,,,,57768,FALSE +Dermot Kennedy,Something to Someone,new,,,,,72746,FALSE +Desmond Dekker & The Aces,Israelites,existing,,,,,,FALSE +Destiny's Child,"Bills, Bills, Bills",new,,,,,8703,FALSE +Destiny's Child,Bootylicious,existing,,,,,,FALSE +Destiny's Child,Independent Women Part I,new,,,,,13200,FALSE +Destiny's Child,"Jumpin, Jumpin",new,,,,,7425,FALSE +Destiny's Child,Say My Name,existing,,,,,,FALSE +Destiny's Child,Survivor,new,,,,,15158,FALSE +Detroit Spinners,Working My Way Back To You,existing,,,,,,FALSE +Devo,(I Can't Get No) Satisfaction,new,,,,,31213,FALSE +Devo,Beautiful World,new,,,,,31933,FALSE +Devo,Freedom of Choice,new,,,,,77034,FALSE +Devo,Girl U Want,new,,,,,31932,FALSE +Devo,Uncontrollable Urge,new,,,,,76820,FALSE +Devo,Whip It,existing,,,,,,FALSE +Dexy's Midnight Runners,Come On Eileen,existing,,,,,,FALSE +Dexy's Midnight Runners,Geno,existing,,,,,,FALSE +Dexy's Midnight Runners,Jackie Wilson,existing,,,,,,FALSE +Diana Ross,Chain Reaction,existing,,,,,,FALSE +Diana Ross,Endless Love,existing,,,,,,FALSE +Diana Ross,I'm Coming Out,existing,,,,,,FALSE +Diana Ross,I'm Still Waiting,existing,,,,,,FALSE +Diana Ross,Theme from Mahogany - Do You Know Where You're Going to ?,existing,,,,,,FALSE +Diana Ross,Upside Down,existing,,,,,,FALSE +Diana Ross & The Supremes,Stop! In the Name of Love,existing,,,,,,FALSE +Diana Ross & The Supremes,Where Did Our Love Go ?,existing,,,,,,FALSE +Dido,Here With Me,new,,,,,7593,FALSE +Dido,Life For Rent,new,,,,,5224,FALSE +Dido,Thank You,new,,,,,7698,FALSE +Dido,White Flag,existing,,,,,,FALSE +Die Toten Hosen,Auld Lang Syne,existing,,,,,,FALSE +Dierks Bentley,5-1-5-0,new,,,,,41178,FALSE +Dierks Bentley,5150,existing,,,,,,FALSE +Dierks Bentley,Beers on Me,new,,,,,66053,FALSE +Dierks Bentley,Drunk On A Plane,new,,,,,49650,FALSE +Dierks Bentley,Somewhere on a Beach,new,,,,,51209,FALSE +Dierks Bentley,What Was I Thinkin,existing,,,,,,FALSE +Dio,Holy Diver,new,,,,,49078,FALSE +Dio,Rainbow in the Dark,new,,,,,51334,FALSE +Dio,The Last in Line,new,,,,,57806,FALSE +Dio,We Rock,new,,,,,63417,FALSE +Dion & The Belmonts,Runaround Sue,existing,,,,,,FALSE +Dion & The Belmonts,Teenager In Love,existing,,,,,,FALSE +Dion & The Belmonts,Wanderer,existing,,,,,,FALSE +Dionne Warwick,Do You Know the Way To San Jose?,existing,,,,,,FALSE +Dionne Warwick,Heartbreaker,existing,,,,,,FALSE +Dionne Warwick,House Is Not a Home,existing,,,,,,FALSE +Diplo,Don't Forget My Love,new,,,,,35245,FALSE +Diplo,Heartbroken,new,,,,,76861,FALSE +Diplo,Heartless,new,,,,,60186,FALSE +Diplo,Use Me (Brutal Hearts),new,,,,,75258,FALSE +Dire Straits,Brothers In Arms,existing,,,,,,FALSE +Dire Straits,Down to the Waterline,new,,,,,47335,FALSE +Dire Straits,Money For Nothing,existing,,,,,,FALSE +Dire Straits,Private Investigations,existing,,,,,,FALSE +Dire Straits,Romeo And Juliet,existing,,,,,,FALSE +Dire Straits,Skateaway,existing,,,,,,FALSE +Dire Straits,So Far Away,new,,,,,11917,FALSE +Dire Straits,Sultans Of Swing,existing,,,,,,FALSE +Dire Straits,Tunnel Of Love,existing,,,,,,FALSE +Dire Straits,Walk Of Life,existing,,,,,,FALSE +Disney,A Dream Is A Wish Your Heart Makes (A Cappella),existing,,,,,,FALSE +Disney,A Little Patch Of Heaven (A Cappella),existing,,,,,,FALSE +Disney's Dumbo,When I See An Elephant Fly (A Cappella),existing,Disney,,,,,FALSE +Disney's Toy Story,When She Loved Me (A Cappella),existing,Disney,,,,,FALSE +Disturbed,Down with the Sickness,new,,,,,24224,FALSE +Disturbed,Indestructible,new,,,,,71693,FALSE +Disturbed,Stricken,new,,,,,15550,FALSE +Disturbed,Ten Thousand Fists,new,,,,,75021,FALSE +Disturbed,The Sound of Silence (Cyril remix),new,,,,,79947,FALSE +Disturbed,The Sound of Silence,new,,,,,50491,FALSE +Dixie Chicks,Landslide (Duet),existing,,,,,,FALSE +Dixie Chicks,Travelin Soldier,existing,,,,,,FALSE +Dixieland Boys,Alexander's Ragtime Band,existing,,,,,,FALSE +Dixieland Boys,Down By The Riverside,existing,,,,,,FALSE +Dixieland Boys,James Street Funeral March,existing,,,,,,FALSE +Dixieland Boys,Twelfth Street Rag,existing,,,,,,FALSE +Dizzee Rascal,Bonkers,new,,,,,22788,FALSE +Dizzee Rascal,Dance wiv Me,new,,,,,20093,FALSE +Dizzee Rascal Feat. Calvin Harris,Dance Wiv Me,existing,Dizzee Rascal,,,,,FALSE +Dobie Gray,Drift Away,new,,,,,33938,FALSE +Doja Cat,Agora Hills,new,,,,,77432,FALSE +Doja Cat,Boss Btch,new,,,,,61358,FALSE +Doja Cat,Kiss Me More,new,,,,,64976,FALSE +Doja Cat,Need to Know,new,,,,,65995,FALSE +Doja Cat,Paint the Town Red,new,,,,,76515,FALSE +Doja Cat,Streets,new,,,,,40336,FALSE +Doja Cat,Woman,new,,,,,36137,FALSE +Doja Cat,You Right,new,,,,,65448,FALSE +Dokken,Alone Again,new,,,,,63803,FALSE +Dokken,Breaking the Chains,new,,,,,28534,FALSE +Dokken,Dream Warriors,new,,,,,64972,FALSE +Dokken,In My Dreams,new,,,,,65210,FALSE +Dokken,It's Not Love,existing,,,,,,FALSE +Dokken,Unchain the Night,new,,,,,69833,FALSE +Dolly Parton,9 To 5,existing,,,,,,FALSE +Dolly Parton,Here You Come Again,new,,,,,14533,FALSE +Dolly Parton,I Will Always Love You (duet),new,,,,,10730,FALSE +Dolly Parton,Islands In The Stream,existing,,,,,,FALSE +Dolly Parton,Jolene,existing,,,,,,FALSE +Don Felder,Heavy Metal (Takin' a Ride),new,,,,,69742,FALSE +Don Gibson,Sea of Heartbreak,existing,,,,,,FALSE +Don Henley,All She Wants To Do Is Dance,new,,,,,32190,FALSE +Don Henley,Boys of Summer,existing,,,,,,FALSE +Don Henley,Dirty Laundry,new,,,,,32191,FALSE +Don Henley,New York Minute,new,,,,,32193,FALSE +Don Henley,Sunset Grill,new,,,,,32195,FALSE +Don Henley,The End of the Innocence,new,,,,,32197,FALSE +Don Henley,The Heart of the Matter,new,,,,,27566,FALSE +Don McLean,American Pie,existing,,,,,,FALSE +Don Williams,I Believe in You,new,,,,,26338,FALSE +Don Williams,To Be Your Man,existing,,,,,,FALSE +Don Williams,Tulsa Time,new,,,,,15573,FALSE +Donald O'Connor,Make 'Em Laugh (A Cappella),existing,,,,,,FALSE +Donna Summer,Bad Girls,existing,,,,,,FALSE +Donna Summer,Hot Stuff,existing,,,,,,FALSE +Donna Summer,I Feel Love,new,,,,,13072,FALSE +Donna Summer,Last Dance,new,,,,,10359,FALSE +Donna Summer,On the Radio,existing,,,,,,FALSE +Donna Summer,She Works Hard for the Money,new,,,,,8650,FALSE +Donnie Iris,Ah Leah,new,,,,,58419,FALSE +Donnie Iris,Love Is Like a Rock,new,,,,,70916,FALSE +Donovan,Hurdy Gurdy Man,new,,,,,69712,FALSE +Donovan,Mellow Yellow,new,,,,,34671,FALSE +Donovan,Season of the Witch,new,,,,,62692,FALSE +Donovan,Sunshine Superman,new,,,,,34674,FALSE +Doris Day,Deadwood Stage,existing,,,,,,FALSE +Doris Day,Que Sera Sera(Whatever Will Be Will Be),existing,,,,,,FALSE +Dorothy Moore,Misty Blue,existing,,,,,,FALSE +Dr. Dre,Forgot About Dre,new,,,,,54953,FALSE +Dr. Dre,I Need a Doctor,new,,,,,36037,FALSE +Dr. Dre,Keep Their Heads Ringin',new,,,,,35796,FALSE +Dr. Dre,Nuthin' but a 'G' Thang,new,,,,,55041,FALSE +Dr. Dre,Still D.R.E.,new,,,,,55748,FALSE +Dr. Dre,Super Bowl LVI Halftime Show,new,,,,,69460,FALSE +Dr. Dre,The Next Episode,new,,,,,63930,FALSE +Dr. Dre,What's the Difference,new,,,,,80166,FALSE +Dr. Dre,Xxplosive,new,,,,,68724,FALSE +Dr. Feelgood,Milk & Alcohol,existing,,,,,,FALSE +Dr. Hook,A Little Bit More,existing,,,,,,FALSE +Dr. Hook,If Not You,existing,,,,,,FALSE +Dr. Hook,Sylvia's Mother,existing,,,,,,FALSE +Dr. Hook,When You're In Love With a Beautiful Woman,existing,,,,,,FALSE +Dr. Hook,Wild Colonial Boy,existing,,,,,,FALSE +Dr. Hook & The Medicine Show,Sharing the Night Together,new,,,,,31788,FALSE +Dr. Hook & The Medicine Show,The Cover of the Rolling Stone,new,,,,,7532,FALSE +Dr. Hook & The Medicine Show,When You're in Love with a Beautiful Woman,new,,,,,13759,FALSE +Dr. John,Iko Iko,new,,,,,72599,FALSE +Dragon Ball (),Cha-La Head-Cha-La () (2005 version),new,Dragon Ball,,,,65128,FALSE +Dragon Ball (),Cha-La Head-Cha-La (),new,Dragon Ball,,,,64778,FALSE +Dragon Ball (),Dan dan kokoro hikareteku (DAN DAN ),new,Dragon Ball,,,,79049,FALSE +Dragon Ball (),Du wirst unbesiegbar sein,new,Dragon Ball,,,,82627,FALSE +Drake,All Me,new,,,,,59064,FALSE +Drake,Best I Ever Had,new,,,,,23342,FALSE +Drake,Child's Play,new,,,,,78178,FALSE +Drake,Controlla,new,,,,,55275,FALSE +Drake,Fake Love,new,,,,,55170,FALSE +Drake,Family Matters,new,,,,,82022,FALSE +Drake,Fancy,new,,,,,82640,FALSE +Drake,Find Your Love,new,,,,,31040,FALSE +Drake,First Person Shooter,new,,,,,78995,FALSE +Drake,Forever,new,,,,,25292,FALSE +Drake,God's Plan,new,,,,,55200,FALSE +Drake,HYFR (Hell Ya Fucking Right),new,,,,,69578,FALSE +Drake,Headlines,new,,,,,45714,FALSE +Drake,"Hold On, We're Going Home",new,,,,,44950,FALSE +Drake,Hotline Bling,new,,,,,50178,FALSE +Drake,In My Feelings,new,,,,,56074,FALSE +Drake,Knife Talk,new,,,,,71088,FALSE +Drake,Marvin's Room,new,,,,,60130,FALSE +Drake,Massive,new,,,,,71193,FALSE +Drake,Nice for What,new,,,,,55565,FALSE +Drake,Nonstop,new,,,,,64048,FALSE +Drake,One Dance,new,,,,,51212,FALSE +Drake,Over,new,,,,,29583,FALSE +Drake,Passionfruit,new,,,,,53132,FALSE +Drake,Rich Baby Daddy,new,,,,,77831,FALSE +Drake,Rich Flex,new,,,,,73038,FALSE +Drake,Search & Rescue,new,,,,,75084,FALSE +Drake,Shot for Me,new,,,,,78638,FALSE +Drake,Slime You Out,new,,,,,77875,FALSE +Drake,Spin Bout U,new,,,,,81716,FALSE +Drake,Started From The Bottom,new,,,,,42973,FALSE +Drake,Sticky,new,,,,,71601,FALSE +Drake,Take Care,new,,,,,38928,FALSE +Drake,The Motto,new,,,,,67119,FALSE +Drake,Too Good,new,,,,,51437,FALSE +Drake,Toosie Slide,new,,,,,81323,FALSE +Drake,Up All Night,new,,,,,75997,FALSE +Drake,Wants and Needs (clean),new,,,,,31227,FALSE +Drake,Wants and Needs,new,,,,,71641,FALSE +Drake,Way 2 Sexy,new,,,,,67351,FALSE +Drake,Worst Behavior,new,,,,,47342,FALSE +Drake,You Broke My Heart,new,,,,,78896,FALSE +Dream Theater,Another Day,new,,,,,63415,FALSE +Dream Theater,Pull Me Under,new,,,,,58991,FALSE +Drive-By Truckers,Goddamn Lonely Love,new,,,,,83246,FALSE +Drive-By Truckers,Outfit,new,,,,,82543,FALSE +Dropkick Murphys,I'm Shipping Up To Boston,existing,The Dropkick Murphys,,,,,FALSE +Dropkick Murphys,Rose Tattoo,new,The Dropkick Murphys,,,,55573,FALSE +Dropkick Murphys,The State of Massachusetts,new,The Dropkick Murphys,,,,72172,FALSE +Dua Lipa,Cold Heart (PNAU remix),new,,,,,66024,FALSE +Dua Lipa,Don't Start Now,new,,,,,59760,FALSE +Dua Lipa,Houdini,new,,,,,78085,FALSE +Dua Lipa,Levitating,new,,,,,61060,FALSE +Dua Lipa,New Rules,new,,,,,53752,FALSE +Dua Lipa,Training Season,new,,,,,79760,FALSE +Duan Stephenson,Border,existing,,,,,,FALSE +Duffy,Mercy,existing,,,,,,FALSE +Duffy,Warwick Avenue,existing,,,,,,FALSE +Duke Ellington,It Don't Mean a Thing (If It Ain't Got That Swing),new,,,,,77341,FALSE +Duran Duran,A View to a Kill,new,,,,,14221,FALSE +Duran Duran,Girls On Film,existing,,,,,,FALSE +Duran Duran,Hungry Like the Wolf,existing,,,,,,FALSE +Duran Duran,Is There Something I Should Know ?,existing,,,,,,FALSE +Duran Duran,New Moon on Monday,new,,,,,68627,FALSE +Duran Duran,Notorious,new,,,,,36127,FALSE +Duran Duran,Ordinary World,new,,,,,13613,FALSE +Duran Duran,Reflex,existing,,,,,,FALSE +Duran Duran,Rio,existing,,,,,,FALSE +Duran Duran,Save A Prayer,existing,,,,,,FALSE +Duran Duran,The Wild Boys,new,,,,,13747,FALSE +Duran Duran,Union of the Snake,new,,,,,65377,FALSE +Duran Duran,View To a Kill,existing,,,,,,FALSE +Dustin Lynch,Small Town Boy,new,,,,,49110,FALSE +Dustin Lynch,Thinking 'Bout You,new,,,,,67847,FALSE +Dusty Springfield,I Close My Eyes & Count to Ten,existing,,,,,,FALSE +Dusty Springfield,I Just Don't Know What to Do With Myself,existing,,,,,,FALSE +Dusty Springfield,I Only Wanna Be With You,existing,,,,,,FALSE +Dusty Springfield,I'm Going Back,existing,,,,,,FALSE +Dusty Springfield,Look of Love,existing,,,,,,FALSE +Dusty Springfield,Son of a Preacher Man,existing,,,,,,FALSE +Dusty Springfield,Take Another Little Piece of My Heart,existing,,,,,,FALSE +Dusty Springfield,What Are You Doing the Rest of Your Life?,existing,,,,,,FALSE +Dusty Springfield,Wishin' & Hopin',existing,,,,,,FALSE +Dusty Springfield,You Don't Have to Say You Love Me,existing,,,,,,FALSE +Dwight Yoakam,A Thousand Miles From Nowhere,new,,,,,5886,FALSE +Dwight Yoakam,Fast As You,new,,,,,6041,FALSE +Dwight Yoakam,Guitars,existing,,,,,,FALSE +EMF,Unbelievable,existing,,,,,,FALSE +Eagles,Desperado (A Cappella),existing,The Eagles,,,,,FALSE +Eagles,One of These Nights,new,The Eagles,,,,6145,FALSE +Eagles,The Long Run,new,The Eagles,,,,25258,FALSE +"Earth Wind And Fire",Sing a Song,new,,,,,20740,FALSE +Earth Wind And Fire,After The Love Has Gone,existing,,,,,,FALSE +Earth Wind And Fire,Got To Get You Into My Life,existing,,,,,,FALSE +Earth Wind And Fire,September,existing,,,,,,FALSE +Earth Wind And Fire,Shining Star,existing,,,,,,FALSE +Earth Wind And Fire,That's The Way Of The World,existing,,,,,,FALSE +Eartha Kitt,C'est Si Bon,new,,,,,29141,FALSE +Eartha Kitt,Champagne Taste (live),new,,,,,71879,FALSE +Eartha Kitt,I Don't Care,new,,,,,46099,FALSE +Eartha Kitt,I Want to Be Evil,new,,,,,38200,FALSE +Eartha Kitt,I'd Rather Be Burned As a Witch,new,,,,,59187,FALSE +Eartha Kitt,Le danseur de charleston,new,,,,,39931,FALSE +Eartha Kitt,Santa Baby,existing,,,,,,FALSE +Eartha Kitt,This Is My Life,new,,,,,26534,FALSE +Eartha Kitt,Where Is My Man,new,,,,,20938,FALSE +East 17,Stay Another Day,existing,,,,,,FALSE +Eazy-E,Boyz-n-the-Hood,new,,,,,51733,FALSE +Eazy-E,Gimmie That Nutt,new,,,,,67307,FALSE +Eazy-E,Real Muthaphuckkin G's,new,,,,,67494,FALSE +Echo & The Bunnymen,Killing Moon,existing,,,,,,FALSE +Echo & The Bunnymen,Lips Like Sugar,new,,,,,63610,FALSE +Ed Sheeran,Bad Habits,new,,,,,65438,FALSE +Ed Sheeran,Castle on the Hill,new,,,,,52435,FALSE +Ed Sheeran,Don't,existing,,,,,,FALSE +Ed Sheeran,Galway Girl,new,,,,,52822,FALSE +Ed Sheeran,I Don't Care,new,,,,,58271,FALSE +Ed Sheeran,I See Fire,existing,,,,,,FALSE +Ed Sheeran,Perfect (acoustic),new,,,,,59295,FALSE +Ed Sheeran,Perfect,new,,,,,52796,FALSE +Ed Sheeran,Photograph,new,,,,,47400,FALSE +Ed Sheeran,Shape of You,new,,,,,52432,FALSE +Ed Sheeran,Shivers,new,,,,,66223,FALSE +Ed Sheeran,Sing,existing,,,,,,FALSE +Ed Sheeran,Thinking Out Loud,existing,,,,,,FALSE +Eddie Arnold,Make the World Go Away,existing,,,,,,FALSE +Eddie Cochran,C'Mon Everybody,existing,,,,,,FALSE +Eddie Cochran,Three Steps To Heaven,existing,,,,,,FALSE +Eddie Floyd,Knock On Wood,existing,,,,,,FALSE +Eddie Money,Gimme Some Water,existing,,,,,,FALSE +Eddie Money,Shakin',new,,,,,55864,FALSE +Eddie Money,Take Me Home Tonight,new,,,,,40115,FALSE +Eddie Money,Think I'm in Love,new,,,,,59316,FALSE +Eddie Money,Two Tickets To Paradise,existing,,,,,,FALSE +Eddie Rabbitt,Drivin My Life Away,existing,,,,,,FALSE +Eddie Rabbitt,I Love A Rainy Night,existing,,,,,,FALSE +Eddy Grant,Electric Avenue,existing,,,,,,FALSE +Edie Brickell,What I Am,existing,,,,,,FALSE +Edison Lighthouse,Love Grows Where My Rosemary Goes,existing,,,,,,FALSE +Edit Piaf,Non Je Ne Regrette Rien,existing,Edith Piaf,,,,,FALSE +Edith Piaf,La Vie En Rose - (English Version),existing,,,,,,FALSE +Edith Piaf,La Vie En Rose,existing,,,,,,FALSE +Edward Sharpe And The Magnetic Zeros,Home,existing,,,,,,FALSE +Edwin Starr,Stop Her On Sight - S.O.S,existing,,,,,,FALSE +Edwin Starr,War,existing,,,,,,FALSE +Elaine Page & Barbara Dickson,I Know Him so Well,existing,,,,,,FALSE +Elastica,Connection,new,,,,,52457,FALSE +Elbow,One Day Like This,existing,,,,,,FALSE +Electric Callboy,Pump It,new,,,,,78337,FALSE +Electric Callboy,We Got the Moves,new,,,,,79678,FALSE +Electric Light Orchestra,Can't Get It Out of My Head,new,,,,,55835,FALSE +Electric Light Orchestra,Don't Bring Me Down,existing,,,,,,FALSE +Electric Light Orchestra,Evil Woman,new,,,,,27718,FALSE +Electric Light Orchestra,Hold On Tight,existing,,,,,,FALSE +Electric Light Orchestra,Livin Thing,existing,,,,,,FALSE +Electric Light Orchestra,Long Black Road,existing,,,,,,FALSE +Electric Light Orchestra,Mr. Blue Sky,existing,,,,,,FALSE +Electric Light Orchestra,Roll Over Beethoven,existing,,,,,,FALSE +Electric Light Orchestra,Strange Magic,new,,,,,61040,FALSE +Electric Light Orchestra,Sweet Talkin' Woman,new,,,,,59314,FALSE +Electric Light Orchestra,Telephone Line,existing,,,,,,FALSE +Electric Light Orchestra,Turn to Stone,new,,,,,56363,FALSE +Electric Light Orchestra,Wild West Hero,existing,,,,,,FALSE +Elis Regina,Mas Que Nada,existing,,,,,,FALSE +Elkie Brooks,Fool If You Think It's Over,existing,,,,,,FALSE +Elkie Brooks,Pearl's a Singer,existing,,,,,,FALSE +Ella Fitzgerald,A Night in Tunisia,new,,,,,37423,FALSE +Ella Fitzgerald,"A-Tisket, A-Tasket",new,,,,,17617,FALSE +Ella Fitzgerald,All of Me,new,,,,,43756,FALSE +Ella Fitzgerald,"Bewitched, Bothered and Bewildered",new,,,,,47858,FALSE +Ella Fitzgerald,Blue Moon,new,,,,,35331,FALSE +Ella Fitzgerald,Caravan,new,,,,,29370,FALSE +Ella Fitzgerald,Cheek to Cheek,new,,,,,6993,FALSE +Ella Fitzgerald,Cry Me a River,new,,,,,39689,FALSE +Ella Fitzgerald,Dream a Little Dream of Me,new,,,,,33657,FALSE +Ella Fitzgerald,Embraceable You,new,,,,,64618,FALSE +Ella Fitzgerald,Everytime We Say Goodbye,existing,,,,,,FALSE +Ella Fitzgerald,Georgia On My Mind,existing,,,,,,FALSE +Ella Fitzgerald,God Bless the Child,new,,,,,58410,FALSE +Ella Fitzgerald,I Got Rhythm,new,,,,,25695,FALSE +Ella Fitzgerald,I Only Have Eyes for You,new,,,,,27348,FALSE +Ella Fitzgerald,I've Got My Love to Keep Me Warm,new,,,,,8414,FALSE +Ella Fitzgerald,I've Got You Under My Skin,new,,,,,72602,FALSE +Ella Fitzgerald,It Don't Mean a Thing,new,,,,,48650,FALSE +Ella Fitzgerald,Let's Call the Whole Thing Off,new,,,,,8411,FALSE +Ella Fitzgerald,Mack The Knife,existing,,,,,,FALSE +Ella Fitzgerald,Night And Day,existing,,,,,,FALSE +Ella Fitzgerald,Off Key (Desafinado),new,,,,,25024,FALSE +Ella Fitzgerald,Satin Doll,existing,,,,,,FALSE +Ella Fitzgerald,Someone To Watch Over Me,existing,,,,,,FALSE +Ella Fitzgerald,Stormy Weather,existing,,,,,,FALSE +Ella Fitzgerald,Summertime,new,,,,,16317,FALSE +Ella Fitzgerald,Take The A Train,existing,,,,,,FALSE +Ella Fitzgerald,The Lady Is A Tramp,existing,,,,,,FALSE +Ella Fitzgerald,The Thrill Is Gone,new,,,,,51953,FALSE +Ella Fitzgerald,They Can't Take That Away from Me,new,,,,,46245,FALSE +Ella Fitzgerald,You Took Advantage Of Me (A Cappella),existing,,,,,,FALSE +Ella Henderson,Alibi,new,,,,,79710,FALSE +Ella Henderson,Ghost,existing,,,,,,FALSE +Ella Langley,Country Boy's Dream Girl,new,,,,,83106,FALSE +Ella Langley,You Look Like You Love Me,new,,,,,82143,FALSE +Elle King,America's Sweetheart,new,,,,,50965,FALSE +Elle King,Drunk (And I Don't Wanna to Go Home),new,,,,,64066,FALSE +Elle King,Ex's & Oh's,new,,,,,49067,FALSE +Ellie Goulding,Burn,existing,,,,,,FALSE +Ellie Goulding,Hate Me,new,,,,,77420,FALSE +Ellie Goulding,How Long Will I Love You,new,,,,,45414,FALSE +Ellie Goulding,How Long Will i Love You?,existing,,,,,,FALSE +Ellie Goulding,Lights,existing,,,,,,FALSE +Ellie Goulding,Love Me Like You Do,new,,,,,48548,FALSE +Elliott Smith,Between the Bars,new,,,,,73140,FALSE +Elliott Smith,Waltz #2 (XO),new,,,,,40590,FALSE +Ellis Island,With A Little Help from My Friends,existing,,,,,,FALSE +Elton John,Are You Ready for Love,existing,,,,,,FALSE +Elton John,Bennie And The Jets,existing,,,,,,FALSE +Elton John,Blue Eyes,existing,,,,,,FALSE +Elton John,Border Song,new,,,,,52965,FALSE +Elton John,Candle In the Wind,existing,,,,,,FALSE +Elton John,Circle of Life,existing,,,,,,FALSE +Elton John,Crocodile Rock,existing,,,,,,FALSE +Elton John,Daniel,existing,,,,,,FALSE +Elton John,Don't Go Breaking My Heart,existing,,,,,,FALSE +Elton John,Don't Let The Sun Go Down On Me,existing,,,,,,FALSE +Elton John,Goodbye Yellow Brick Road,new,,,,,6128,FALSE +Elton John,Honky Cat,existing,,,,,,FALSE +Elton John,I Guess That's Why They Call It The Blues,existing,,,,,,FALSE +Elton John,I'm Still Standing,existing,,,,,,FALSE +Elton John,Levon,existing,,,,,,FALSE +Elton John,Madman Across the Water,new,,,,,57846,FALSE +Elton John,Mona Lisas and Mad Hatters,new,,,,,64363,FALSE +Elton John,Philadelphia Freedom,new,,,,,7525,FALSE +Elton John,Rocket Man,existing,,,,,,FALSE +Elton John,Sad Songs Say So Much,existing,,,,,,FALSE +Elton John,Saturday Night's Alright For Fighting,existing,,,,,,FALSE +Elton John,Someone Saved My Life Tonight,new,,,,,17636,FALSE +Elton John,Step Into Christmas,existing,,,,,,FALSE +Elton John,Take Me to the Pilot,new,,,,,57224,FALSE +Elton John,The Bitch is Back,new,,,,,17628,FALSE +Elton John,This Train Don't Stop There Anymore,existing,,,,,,FALSE +Elton John,Tiny Dancer,existing,,,,,,FALSE +Elton John,Your Song,existing,,,,,,FALSE +Elton John & Kd Lang,Teardrops,existing,Elton John,,,,,FALSE +Elton John & Kiki Dee,Don't Go Breaking My Heart,existing,Elton John,,,,,FALSE +Elvin Bishop,Fooled Around And Fell In Love,existing,,,,,,FALSE +Elvis,A Fool Such As I (A Cappella),existing,Elvis Presley,,,,,FALSE +Elvis,I Want You,existing,Elvis Presley,,,,,FALSE +Elvis,Love Me (A Cappella),existing,Elvis Presley,,,,,FALSE +Elvis,Teddy Bear (A Cappella),existing,Elvis Presley,,,,,FALSE +Elvis Costello,(I Don't Want to Go to) Chelsea,new,,,,,32750,FALSE +Elvis Costello,"(What's So Funny 'Bout) Peace, Love, and Understanding",new,,,,,58246,FALSE +Elvis Costello,Accidents Will Happen,new,,,,,65945,FALSE +Elvis Costello,Alison,existing,,,,,,FALSE +Elvis Costello,Everyday I Write the Book,existing,,,,,,FALSE +Elvis Costello,Good Year for the Roses,new,,,,,32754,FALSE +Elvis Costello,I Can't Stand Up for Falling Down,new,,,,,32753,FALSE +Elvis Costello,Olivers Army,existing,,,,,,FALSE +Elvis Costello,Pump It Up,existing,,,,,,FALSE +Elvis Costello,Radio Radio,new,,,,,73222,FALSE +Elvis Costello,She,existing,,,,,,FALSE +Elvis Costello,Veronica,new,,,,,73150,FALSE +Elvis Costello,Watching the Detectives,new,,,,,32751,FALSE +Elvis Presley,(You're the) Devil In Disguise,existing,,,,,,FALSE +Elvis Presley,All Shook Up,existing,,,,,,FALSE +Elvis Presley,Always On My Mind,existing,,,,,,FALSE +Elvis Presley,American Trilogy,existing,,,,,,FALSE +Elvis Presley,Are You Lonesome Tonight?,existing,,,,,,FALSE +Elvis Presley,Blue Suede Shoes,existing,,,,,,FALSE +Elvis Presley,C.C. Rider,existing,,,,,,FALSE +Elvis Presley,Can't Help Falling In Love,existing,,,,,,FALSE +Elvis Presley,Crying In the Chapel,existing,,,,,,FALSE +Elvis Presley,Didja Ever,existing,,,,,,FALSE +Elvis Presley,Don't Be Cruel,existing,,,,,,FALSE +Elvis Presley,Don't,existing,,,,,,FALSE +Elvis Presley,Elvis Megamix,existing,,,,,,FALSE +Elvis Presley,G.I. Blues,existing,,,,,,FALSE +Elvis Presley,Girl of My Best Friend,existing,,,,,,FALSE +Elvis Presley,Good Luck Charm,existing,,,,,,FALSE +Elvis Presley,Guitar Man,existing,,,,,,FALSE +Elvis Presley,Heartbreak Hotel,existing,,,,,,FALSE +Elvis Presley,Hound Dog,existing,,,,,,FALSE +Elvis Presley,I Can't Help Falling In Love With You,existing,,,,,,FALSE +Elvis Presley,I Need Your Love Tonight,existing,,,,,,FALSE +Elvis Presley,If Everyday Was Like Christmas ,existing,,,,,,FALSE +Elvis Presley,If I Can Dream,existing,,,,,,FALSE +Elvis Presley,In the Ghetto,existing,,,,,,FALSE +Elvis Presley,It's Now Or Never,existing,,,,,,FALSE +Elvis Presley,Jailhouse Rock,existing,,,,,,FALSE +Elvis Presley,Kiss Me Quick,existing,,,,,,FALSE +Elvis Presley,Little Sister,existing,,,,,,FALSE +Elvis Presley,Love Letters,existing,,,,,,FALSE +Elvis Presley,Love Me Tender,existing,,,,,,FALSE +Elvis Presley,Love Me,existing,,,,,,FALSE +Elvis Presley,Marie's the Name of His Latest Flame,existing,,,,,,FALSE +Elvis Presley,Mess of Blues,existing,,,,,,FALSE +Elvis Presley,One Night,existing,,,,,,FALSE +Elvis Presley,Pledge My Love,existing,,,,,,FALSE +Elvis Presley,Polk Salad Annie,existing,,,,,,FALSE +Elvis Presley,Return To Sender,existing,,,,,,FALSE +Elvis Presley,Rock a Hula Baby,existing,,,,,,FALSE +Elvis Presley,She's Not You,existing,,,,,,FALSE +Elvis Presley,Suspicious Minds,existing,,,,,,FALSE +Elvis Presley,Teddy Bear,existing,,,,,,FALSE +Elvis Presley,That's Alright,existing,,,,,,FALSE +Elvis Presley,Viva Las Vegas,existing,,,,,,FALSE +Elvis Presley,Way Down,existing,,,,,,FALSE +Elvis Presley,Wear My Ring Around Your Neck,existing,,,,,,FALSE +Elvis Presley,Wonder of You,existing,,,,,,FALSE +Elvis Presley,Wooden Heart,existing,,,,,,FALSE +Elvis Presley,Your Cheating Heart,existing,,,,,,FALSE +Emeli Sande,Clown,new,,,,,40155,FALSE +Emeli Sande,Next To Me,existing,,,,,,FALSE +Emeli Sande,Next to Me,new,,,,,39659,FALSE +Emeli Sande,Read All About It (Pt. III),new,,,,,39955,FALSE +"Emerson Lake And Palmer",C'est La Vie,new,"Emerson, Lake & Palmer",,,,64440,FALSE +"Emerson Lake And Palmer",From the Beginning,new,"Emerson, Lake & Palmer",,,,53006,FALSE +"Emerson Lake And Palmer","Karn Evil 9 (1st Impression, Pt 1)",new,"Emerson, Lake & Palmer",,,,63262,FALSE +"Emerson Lake And Palmer","Karn Evil 9 (1st Impression, Pt 2)",new,"Emerson, Lake & Palmer",,,,78393,FALSE +"Emerson Lake And Palmer",Still...You Turn Me On,new,"Emerson, Lake & Palmer",Still... You Turn Me On,,,62157,FALSE +Emerson Lake And Palmer,Lucky Man,existing,"Emerson, Lake & Palmer",,,,,FALSE +Emile Ford & The Checkmates,Counting Teardrops,existing,,,,,,FALSE +Eminem,Godzilla,new,,,,,60606,FALSE +Eminem,Houdini,new,,,,,81780,FALSE +Eminem,Lose Yourself,existing,,,,,,FALSE +Eminem,Love The Way You Lie,existing,,,,,,FALSE +Eminem,Mockingbird,new,,,,,15662,FALSE +Eminem,Stan,new,,,,,12907,FALSE +Eminem,Superman,new,,,,,15659,FALSE +Eminem,The Real Slim Shady,new,,,,,7504,FALSE +Eminem,Without Me,new,,,,,27276,FALSE +Empire of the Sun,Alive,new,Empire Of The Sun,,,,43714,FALSE +Empire of the Sun,Walking on a Dream,new,Empire Of The Sun,,,,21428,FALSE +Empire of the Sun,We Are the People,new,Empire Of The Sun,,,,22462,FALSE +En Vogue,Free Your Mind,existing,,,,,,FALSE +Engelbert Humperdinck,Last Waltz,existing,,,,,,FALSE +Engelbert Humperdinck,Les Bicyclettes De Belsize,existing,,,,,,FALSE +Engelbert Humperdinck,Man Without Love,existing,,,,,,FALSE +Engelbert Humperdinck,Release Me,existing,,,,,,FALSE +Engelbert Humperdinck,Ten Guitars,existing,,,,,,FALSE +Enrique Iglesias,Bailando,new,,,,,46986,FALSE +Enrique Iglesias,Cuando Me Enamoro,existing,,,,,,FALSE +Enrique Iglesias,Duele el corazon,new,,,,,51246,FALSE +Enrique Iglesias,Hero,existing,,,,,,FALSE +Enrique Iglesias,Loco,existing,,,,,,FALSE +Enrique Iglesias,Subeme la radio,new,,,,,52745,FALSE +Enrique Iglesias Feat. P Iitbull,I Like It,existing,Enrique Iglesias,,,,,FALSE +Enya,Orinoco Flow (Sail Away),new,,,,,21638,FALSE +Erasure,A Little Respect,existing,,,,,,FALSE +Erasure,Chains of Love,new,,,,,51587,FALSE +Erasure,Gimme Gimme Gimme,existing,,,,,,FALSE +Erasure,Oh L'Amour,existing,,,,,,FALSE +Erasure,Rain,existing,,,,,,FALSE +Erasure,Stop,existing,,,,,,FALSE +Erasure,Victim of Love,existing,,,,,,FALSE +Eric Burdon,Spill The Wine,existing,,,,,,FALSE +Eric Carmen,All by Myself,new,,,,,12541,FALSE +Eric Church,Drink In My Hand,new,,,,,38921,FALSE +Eric Church,Hell of a View,new,,,,,62717,FALSE +Eric Church,Record Year,new,,,,,51244,FALSE +Eric Church,Smoke A Little Smoke,new,,,,,38011,FALSE +Eric Church,Springsteen,new,,,,,40536,FALSE +Eric Church,Talladega,new,,,,,48144,FALSE +Eric Clapton,After Midnight,existing,,,,,,FALSE +Eric Clapton,Bad Love,existing,,,,,,FALSE +Eric Clapton,Before You Accuse Me,existing,,,,,,FALSE +Eric Clapton,Bell Bottom Blues,new,,,,,47587,FALSE +Eric Clapton,Cocaine,existing,,,,,,FALSE +Eric Clapton,Crossroads (live),new,,,,,51301,FALSE +Eric Clapton,Hold On I'm Comin',new,,,,,44640,FALSE +Eric Clapton,I Can't Stand It,new,,,,,30027,FALSE +Eric Clapton,I Shot the Sheriff,new,,,,,11922,FALSE +Eric Clapton,Knockin' on Heaven's Door,new,,,,,29870,FALSE +Eric Clapton,Lay Down Sally,existing,,,,,,FALSE +Eric Clapton,Layla - Unplugged,existing,,,,,,FALSE +Eric Clapton,Layla,existing,,,,,,FALSE +Eric Clapton,Let It Grow,new,,,,,62171,FALSE +Eric Clapton,Little Wing (live),new,,,,,61873,FALSE +Eric Clapton,Nobody Knows You When You're Down & Out,existing,,,,,,FALSE +Eric Clapton,Promises,existing,,,,,,FALSE +Eric Clapton,Riding with the King,new,,,,,17731,FALSE +Eric Clapton,Running On Faith,existing,,,,,,FALSE +Eric Clapton,Sweet Home Chicago,existing,,,,,,FALSE +Eric Clapton,Tears In Heaven (A Cappella),existing,,,,,,FALSE +Eric Clapton,Tears In Heaven,existing,,,,,,FALSE +Eric Clapton,While My Guitar Gently Weeps,new,,,,,51067,FALSE +Eric Clapton,Willie and the Hand Jive,new,,,,,24659,FALSE +Eric Clapton,Wonderful Tonight,existing,,,,,,FALSE +Eric Johnson,Cliffs Of Dover,existing,,,,,,FALSE +Ernie Ford,Sixteen Tons (A Cappella),existing,,,,,,FALSE +Erykah Badu,Appletree,new,,,,,61159,FALSE +Erykah Badu,Didn't Cha Know,new,,,,,17737,FALSE +Erykah Badu,Next Lifetime,new,,,,,43019,FALSE +Erykah Badu,On & On,new,,,,,15691,FALSE +Estelle Feat. Kanye West,American Boy,existing,,,,,,FALSE +Etta James,At Last,existing,,,,,,FALSE +Etta James,Come Rain Or Come Shine,existing,,,,,,FALSE +Etta James,I Just Want To Make Love To You,existing,,,,,,FALSE +Etta James,I'd Rather Go Blind,existing,,,,,,FALSE +Etta James,Someone To Watch Over Me,existing,,,,,,FALSE +Etta James,Stormy Weather,existing,,,,,,FALSE +Etta James,The Very Thought Of You,existing,,,,,,FALSE +Europe,Final Countdown,existing,,,,,,FALSE +Eurythmics,Here Comes the Rain Again,new,,,,,9460,FALSE +Eurythmics,Sweet Dreams,existing,,,,,,FALSE +Eurythmics,Thorn In My Side,existing,,,,,,FALSE +Eurythmics,When Tomorrow Comes,existing,,,,,,FALSE +Eurythmics,Would I Lie to You,new,,,,,9457,FALSE +Eurythmics & Aretha Franklin,Sisters Are Doing It for Themselves,existing,Eurythmics,,,,,FALSE +Eva Cassidy,Ain't No Sunshine,existing,,,,,,FALSE +Eva Cassidy,What a Wonderful World,existing,,,,,,FALSE +Evanescence,Bring Me To Life,existing,,,,,,FALSE +Evanescence,Call Me When You're Sober,new,,,,,11020,FALSE +Evanescence,Everybody's Fool,new,,,,,5258,FALSE +Evanescence,Going Under,existing,,,,,,FALSE +Evanescence,Lithium,new,,,,,11617,FALSE +Evanescence,My Immortal,existing,,,,,,FALSE +Eve,Let Me Blow Ya Mind,existing,,,,,,FALSE +Evelyn 'Champagne' King,Love Come Down,existing,,,,,,FALSE +Everclear,Father of Mine,new,,,,,9368,FALSE +Everclear,Santa Monica,new,,,,,60204,FALSE +Everlast,What It's Like,existing,,,,,,FALSE +Everly Brothers,Bye Bye,existing,The Everly Brothers,,,,,FALSE +Extreme,Get The Funk Out,new,,,,,47524,FALSE +Extreme,More Than Words,existing,,,,,,FALSE +Extreme,Rest in Peace,new,,,,,31179,FALSE +Faith Hill,Breathe,new,,,,,8802,FALSE +Faith Hill,The Rest of Our Life,new,,,,,55211,FALSE +Faith Hill,The Way You Love Me,new,,,,,8904,FALSE +Faith Hill,There You'll Be,new,,,,,7878,FALSE +Faith Hill,This Kiss,new,,,,,9912,FALSE +Faith Hill,Wild One,new,,,,,6056,FALSE +Faith No More,Easy,new,,,,,30029,FALSE +Faith No More,Epic,existing,,,,,,FALSE +Faith No More,Midlife Crisis,new,,,,,70875,FALSE +Falco,Der Kommissar,existing,,,,,,FALSE +Falco,Rock Me Amadeus,new,,,,,19251,FALSE +Fall Out Boy,Centuries,existing,,,,,,FALSE +Fall Out Boy,"Dance, Dance",new,,,,,15730,FALSE +Fall Out Boy,Immortals,new,,,,,56598,FALSE +Fall Out Boy,My Songs Know What You Did In The Dark,new,,,,,42884,FALSE +Fall Out Boy,"Sugar, We're Goin Down",new,,,,,15731,FALSE +Fall Out Boy,The Phoenix,new,,,,,44104,FALSE +Fall Out Boy,"This Ain't a Scene, It's an Arms Race",new,,,,,11761,FALSE +Fall Out Boy,Thnks Fr Th Mmrs,new,,,,,11965,FALSE +Falling in Reverse,I'm Not a Vampire,new,,,,,71062,FALSE +Falling in Reverse,Popular Monster,new,,,,,69166,FALSE +Falling in Reverse,The Drug In Me Is You,new,,,,,69141,FALSE +Falling in Reverse,Voices in My Head,new,,,,,70063,FALSE +Falling in Reverse,Watch the World Burn,new,,,,,73775,FALSE +Falling in Reverse,Zombified,new,,,,,69259,FALSE +Family Of The Year,Hero,existing,,,,,,FALSE +Fastball,The Way,new,,,,,8974,FALSE +Fatboy Slim,"Eat, Sleep, Rave, Repeat",new,,,,,45902,FALSE +Fatboy Slim,Praise You,new,,,,,8519,FALSE +Fatboy Slim,"Right Here, Right Now",new,,,,,46640,FALSE +Fatboy Slim,Rockafeller Skank,new,,,,,36266,FALSE +Father John Misty,Hollywood Forever Cemetery Sings,new,,,,,78137,FALSE +Father John Misty,Nancy from Now on,new,,,,,78617,FALSE +Father John Misty,Real Love Baby,new,,,,,80652,FALSE +Father John Misty,Total Entertainment Forever,new,,,,,78290,FALSE +Fats Domino,Ain't That A Shame,existing,,,,,,FALSE +Fats Domino,Blueberry Hill,existing,,,,,,FALSE +Fats Domino,I'm Walkin,existing,,,,,,FALSE +Fats Domino,Walkin To New Orleans,existing,,,,,,FALSE +Feist,1234,existing,,,,,,FALSE +Fergie,A Little Party Never Killed Nobody (All We Got),new,,,,,44334,FALSE +Fergie,Big Girls Don't Cry,existing,,,,,,FALSE +Fergie,Fergalicious,new,,,,,20972,FALSE +Fergie,Glamorous,new,,,,,11727,FALSE +Fergie,London Bridge,new,,,,,14666,FALSE +Fiction Factory,Feels Like Heaven,existing,,,,,,FALSE +Filter,"Hey Man, Nice Shot",new,,,,,59104,FALSE +Filter,Take a Picture,new,,,,,8827,FALSE +Final Fantasy (),1000 Words (FFX-2 Mix) (1000),new,Final Fantasy,,,,81283,FALSE +Final Fantasy (),1000 Words (FFX-2 Mix) (english version),new,Final Fantasy,,,,81282,FALSE +Final Fantasy (),Answers,new,Final Fantasy,,,,81252,FALSE +Final Fantasy (),Eyes on Me,new,Final Fantasy,,,,81939,FALSE +Final Fantasy (),Suteki da ne (Isn't It Wonderful) (),new,Final Fantasy,,,,65563,FALSE +Fine Young Cannibals,Good Thing,new,,,,,13635,FALSE +Fine Young Cannibals,She Drives Me Crazy,new,,,,,14010,FALSE +Fine Young Cannibals,Suspicious Minds,existing,,,,,,FALSE +Fiona Apple,Across The Universe,new,,,,,9298,FALSE +Fiona Apple,Criminal,new,,,,,10431,FALSE +Fiona Apple,Fast As You Can,new,,,,,8815,FALSE +Fiona Apple,Get Gone,new,,,,,83342,FALSE +Fiona Apple,I Know,new,,,,,81626,FALSE +Fiona Apple,Paper Bag,new,,,,,31360,FALSE +Fiona Apple,Shadowboxer,new,,,,,15759,FALSE +Fiona Apple,Sleep to Dream,new,,,,,63244,FALSE +First Aid Kit,Emmylou,new,,,,,59147,FALSE +First Aid Kit,My Silver Lining,new,,,,,47448,FALSE +Fitz And The Tantrums,HandClap,new,,,,,51542,FALSE +Fitz And The Tantrums,Moneygrabber,new,,,,,66176,FALSE +Fitz And The Tantrums,Out of My League,new,,,,,54099,FALSE +Fitz And The Tantrums,The Walker,existing,,,,,,FALSE +Five Finger Death Punch,A Little Bit Off,new,,,,,65018,FALSE +Five Finger Death Punch,Bad Company,existing,,,,,,FALSE +Five Finger Death Punch,House Of The Rising Sun,existing,,,,,,FALSE +Five Finger Death Punch,Jekyll And Hyde,new,,,,,50621,FALSE +Five Finger Death Punch,Lift Me Up,new,,,,,51704,FALSE +Five Finger Death Punch,Remember Everything,new,,,,,57201,FALSE +Five Finger Death Punch,Under and Over It,new,,,,,65250,FALSE +Five Finger Death Punch,Wash It All Away,new,,,,,50508,FALSE +Five Finger Death Punch,Wrong Side of Heaven,new,,,,,49543,FALSE +Five Satins,In the Still of The Night,existing,,,,,,FALSE +Five for Fighting,100 Years,new,Five For Fighting,,,,5665,FALSE +Five for Fighting,Superman (It's Not Easy),new,Five For Fighting,,,,7932,FALSE +Fleetwood Mac,As Long as You Follow,new,,,,,62450,FALSE +Fleetwood Mac,Big Love,new,,,,,20975,FALSE +Fleetwood Mac,Don't Stop,existing,,,,,,FALSE +Fleetwood Mac,Dreams,existing,,,,,,FALSE +Fleetwood Mac,Go Your Own Way,existing,,,,,,FALSE +Fleetwood Mac,Gold Dust Woman,existing,,,,,,FALSE +Fleetwood Mac,Gypsy,new,,,,,17783,FALSE +Fleetwood Mac,Hold Me,new,,,,,48269,FALSE +Fleetwood Mac,Hypnotized,new,,,,,62022,FALSE +Fleetwood Mac,Landslide,new,,,,,70102,FALSE +Fleetwood Mac,Little Lies,new,,,,,21804,FALSE +Fleetwood Mac,Oh Daddy,new,,,,,71523,FALSE +Fleetwood Mac,Rhiannon,existing,,,,,,FALSE +Fleetwood Mac,Sara,new,,,,,17781,FALSE +Fleetwood Mac,Second Hand News,existing,,,,,,FALSE +Fleetwood Mac,Silver Springs,new,,,,,9651,FALSE +Fleetwood Mac,Songbird (A Cappella),existing,,,,,,FALSE +Fleetwood Mac,Songbird,new,,,,,32952,FALSE +Fleetwood Mac,The Chain,existing,,,,,,FALSE +Fleetwood Mac,Tusk,new,,,,,47316,FALSE +Fleetwood Mac,You Make Lovin' Fun,existing,,,,,,FALSE +Fleetwood Mac,You Make Loving Fun,existing,,,,,,FALSE +Flo Rida,Club Can't Handle Me,new,,,,,32137,FALSE +Flo Rida,G.D.F.R. (Goin Down For Real),existing,,,,,,FALSE +Flo Rida,Good Feeling,new,,,,,38611,FALSE +Flo Rida,I Cry,new,,,,,41909,FALSE +Flo Rida,Low,new,,,,,19323,FALSE +Flo Rida,My House,new,,,,,50968,FALSE +Flo Rida,Right Round,new,,,,,22210,FALSE +Flo Rida,Whistle,existing,,,,,,FALSE +Flo Rida,Wild Ones,existing,,,,,,FALSE +Flogging Molly,Black Friday Rule,existing,,,,,,FALSE +Flogging Molly,Drunken Lullabies,existing,,,,,,FALSE +Flogging Molly,Salty Dog,existing,,,,,,FALSE +Flora Cash,You're Somebody Else,new,,,,,73941,FALSE +Florence & The Machine,You've Got the Love,existing,Florence + The Machine,,,,,FALSE +Florence & The Machine,Cosmic Love,new,,,,,23833,FALSE +Florence & The Machine,Shake It Out,new,,,,,38441,FALSE +Florence & The Machine,Ship To Wreck,new,,,,,49269,FALSE +Florence & The Machine,Spectrum (Remix),new,,,,,41212,FALSE +Florence And The Machine,Dog Days Are Over,existing,Florence + The Machine,,,,,FALSE +Florida Georgia Line,Anything Goes,new,,,,,43273,FALSE +Florida Georgia Line,Cruise,new,,,,,41984,FALSE +Florida Georgia Line,H.O.L.Y.,new,,,,,51250,FALSE +Florida Georgia Line,May We All,new,,,,,51867,FALSE +Florida Georgia Line,Round Here,new,,,,,44325,FALSE +Florida Georgia Line,Simple,new,,,,,55718,FALSE +Florida Georgia Line,This Is How We Roll,new,,,,,47409,FALSE +Flyleaf,All Around Me,existing,,,,,,FALSE +Flyleaf,I'm So Sick,existing,,,,,,FALSE +Focus,Hocus Pocus,new,,,,,60191,FALSE +Focus,Sylvia (Instrumental),existing,,,,,,FALSE +Foghat,I Just Wanna Make Love To You,existing,,,,,,FALSE +Foghat,Slow Ride,existing,,,,,,FALSE +Fontella Bass,Rescue Me,existing,,,,,,FALSE +Foo Fighters,All My Life,existing,,,,,,FALSE +Foo Fighters,Best of You,new,,,,,13542,FALSE +Foo Fighters,Everlong (acoustic),new,,,,,61490,FALSE +Foo Fighters,Everlong,existing,,,,,,FALSE +Foo Fighters,Learn To Fly,existing,,,,,,FALSE +Foo Fighters,Monkey Wrench,new,,,,,13984,FALSE +Foo Fighters,My Hero,new,,,,,38035,FALSE +Foo Fighters,The Pretender,existing,,,,,,FALSE +Foo Fighters,Times Like These,new,,,,,36110,FALSE +Foo Fighters,Wheels,existing,,,,,,FALSE +Foreigner,"Blue Morning, Blue Day",new,,,,,17785,FALSE +Foreigner,Cold As Ice,new,,,,,30407,FALSE +Foreigner,Dirty White Boy,new,,,,,50855,FALSE +Foreigner,Double Vision,existing,,,,,,FALSE +Foreigner,Feels Like The First Time,new,,,,,41264,FALSE +Foreigner,Head Games,new,,,,,62676,FALSE +Foreigner,Hot Blooded,existing,,,,,,FALSE +Foreigner,I Want To Know What Love Is,existing,,,,,,FALSE +Foreigner,Juke Box Hero,existing,,,,,,FALSE +Foreigner,"Long, Long Way from Home",new,,,,,62438,FALSE +Foreigner,Say You Will,new,,,,,47166,FALSE +Foreigner,Starrider,new,,,,,67467,FALSE +Foreigner,Urgent,new,,,,,21012,FALSE +Foster & Allen,After All These Years,existing,,,,,,FALSE +Foster The People,Pumped Up Kicks,existing,,,,,,FALSE +Foster The People,Call It What You Want,new,Foster The People,,,,38910,FALSE +Foster The People,Coming of Age,new,Foster The People,,,,47885,FALSE +Foster The People,Helena Beat,new,Foster The People,,,,38401,FALSE +Foster The People,Sit Next to Me,new,Foster The People,,,,61836,FALSE +Fountains Of Wayne,Stacy's Mom,existing,,,,,,FALSE +Francis Farmer & Elvis,Aura Lee (A Cappella),existing,,,,,,FALSE +Frank Ocean,Ivy,new,,,,,83339,FALSE +Frank Ocean,Lost,new,,,,,69138,FALSE +Frank Ocean,Novacane,new,,,,,56049,FALSE +Frank Ocean,Pink + White,new,,,,,77872,FALSE +Frank Ocean,Pink Matter,new,,,,,74082,FALSE +Frank Ocean,Thinkin Bout You,new,,,,,41777,FALSE +Frank Sinatra,All Of Me (A Cappella),existing,,,,,,FALSE +Frank Sinatra,Bad Bad Leroy Brown,existing,,,,,,FALSE +Frank Sinatra,Fly Me To The Moon,existing,,,,,,FALSE +Frank Sinatra,I Get A Kick Out of You,existing,,,,,,FALSE +Frank Sinatra,I'm Gonna Live Till I Die (A Cappella),existing,,,,,,FALSE +Frank Sinatra,I've Got The World On A String,existing,,,,,,FALSE +Frank Sinatra,Let Me Try Again,existing,,,,,,FALSE +Frank Sinatra,Let's Face the Music & Dance,existing,,,,,,FALSE +Frank Sinatra,Luck Be A Lady,existing,,,,,,FALSE +Frank Sinatra,My Kind of Town,existing,,,,,,FALSE +Frank Sinatra,My Way,existing,,,,,,FALSE +Frank Sinatra,New York New York,existing,,,,,,FALSE +Frank Sinatra,Saturday Night Is the Loneliest Night of the Week,existing,,,,,,FALSE +Frank Sinatra,Strangers In the Night,existing,,,,,,FALSE +Frank Sinatra,That's Life,existing,,,,,,FALSE +Frank Sinatra,The Tender Trap (A Cappella),existing,,,,,,FALSE +Frank Sinatra,The Very Thought Of You (A Cappella),existing,,,,,,FALSE +Frank Sinatra,Witchcraft (A Cappella),existing,,,,,,FALSE +Frank Sinatra,You Make Me Feel so Young,existing,,,,,,FALSE +Frank Zappa,Bobby Brown,new,,,,,26327,FALSE +Frank Zappa,Catholic Girls,new,,,,,74576,FALSE +Frank Zappa,Dancing Fool,new,,,,,26307,FALSE +Frank Zappa,Dinah-Moe Humm,new,,,,,79413,FALSE +Frank Zappa,Dirty Love,new,,,,,68138,FALSE +Frank Zappa,Don't Eat the Yellow Snow (album version),new,,,,,74385,FALSE +Frank Zappa,Don't Eat the Yellow Snow,new,,,,,73266,FALSE +Frank Zappa,Joe's Garage,new,,,,,74151,FALSE +Frank Zappa,Titties & Beer (live),new,,,,,74369,FALSE +Frank Zappa,Why Does It Hurt When I Pee,new,,,,,73459,FALSE +Frankie Goes To Hollywood,Relax,existing,,,,,,FALSE +Frankie Goes To Hollywood,Two Tribes,existing,,,,,,FALSE +Frankie Laine,High Noon,existing,,,,,,FALSE +Frankie Laine,I Believe,existing,,,,,,FALSE +Frankie Lymon & The Teenagers,Why Do Fools Fall In Love ?,existing,,,,,,FALSE +Frankie Miller,Darlin',existing,,,,,,FALSE +Frankie Valli,Grease,existing,,,,,,FALSE +Frankie Valli,My Eyes Adore You,existing,,,,,,FALSE +Frankie Vaughan,There Must Be a Way,existing,,,,,,FALSE +Franz Ferdinand,Do You Want To,new,,,,,15804,FALSE +Franz Ferdinand,No You Girls,new,,,,,22451,FALSE +Franz Ferdinand,Take Me Out,existing,,,,,,FALSE +Franz Ferdinand,This Fire,new,,,,,15805,FALSE +Fred Astaire,Santa Claus Is Coming To Town (A Cappella),existing,,,,,,FALSE +Freda Payne,Band of Gold,existing,,,,,,FALSE +Freddie Hubbard,Little Sunflower,existing,,,,,,FALSE +Free,All Right Now,existing,,,,,,FALSE +Free,My Brother Jake,existing,,,,,,FALSE +Freemasons,Uninvited,existing,,,,,,FALSE +Freiheit,Keeping the Dream Alive,existing,,,,,,FALSE +From Annie,Tomorrow,existing,Annie (Musical),,,,,FALSE +From Big Deal,Dancin' Dan (Me & My Shadow),existing,Big Deal (Musical),,,,,FALSE +From Cabaret,Cabaret,existing,Cabaret (Musical),,,,,FALSE +From Chicago,Razzle Dazzle,existing,Chicago (Musical),,,,,FALSE +From Hairspray,Good Morning Baltimore,existing,Hairspray (Musical),,,,,FALSE +From Jungle Book,I Wanna Be Like You,existing,Jungle Book (Movie),,,,,FALSE +From Les Miserables,Bring Him Home,existing,Les Miserables (Musical),,,,,FALSE +From Miss Saigon,Bui Doi,existing,Miss Saigon,,,,,FALSE +From Phantom Of The Opera,All I Ask of You,existing,Phantom Of The Opera,,,,,FALSE +From The Jersey Boys,Beggin',existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Can't Take My Eyes off Of You,existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,December 1963 (Oh What a Night),existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Sherry,existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Walk Like a Man,existing,The Jersey Boys,,,,,FALSE +From The Jersey Boys,Who Loves You ?,existing,The Jersey Boys,,,,,FALSE +Frozen,For The First Time In Forever,existing,Frozen (Movie),,,,,FALSE +Fuel,Hemorrhage (In My Hands),new,,,,,7726,FALSE +Fuel,Shimmer,existing,,,,,,FALSE +Fun,Carry On,existing,,,,,,FALSE +Fun,Some Nights,existing,,,,,,FALSE +Fun,We Are Young,existing,,,,,,FALSE +Future,Like That,new,,,,,80683,FALSE +Future,Mask Off,new,,,,,65030,FALSE +Future,Turn on the Lights,new,,,,,81860,FALSE +Future,Type Shit,new,,,,,80953,FALSE +G-Eazy,I Mean It,new,,,,,73598,FALSE +G-Eazy,No Limit,new,,,,,74851,FALSE +Gabby Barrett,I Hope,new,,,,,58103,FALSE +Gabby Barrett,The Good Ones,new,,,,,59872,FALSE +Gabriella Cilmi,Sweet About Me,existing,,,,,,FALSE +Gabrielle,Give Me a Little More Time,existing,,,,,,FALSE +Gabrielle,Out of Reach,existing,,,,,,FALSE +Gabrielle Aplin,Please Don't Say You Love Me,existing,,,,,,FALSE +Galantis,Heartbreak Anthem,new,,,,,65093,FALSE +Galantis,Lighter,new,,,,,80781,FALSE +Galantis,Love on Me,new,,,,,58206,FALSE +Galantis,Peanut Butter Jelly,new,,,,,77718,FALSE +Galantis,Runaway (U & I),new,,,,,49363,FALSE +Garbage,#1 Crush,new,,,,,58663,FALSE +Garbage,Cherry Lips,existing,,,,,,FALSE +Garbage,I Think I'm Paranoid,existing,,,,,,FALSE +Garbage,Only Happy When It Rains,new,,,,,55838,FALSE +Garbage,Stupid Girl,new,,,,,10997,FALSE +Gareth Gates & The Kumars,Spirit In the Sky,existing,,,,,,FALSE +Garth Brooks,Friends In Low Places,existing,,,,,,FALSE +Gary Allan,Every Storm (Runs Out Of Rain),new,,,,,43119,FALSE +Gary Allan,Every Storm Runs Out Of Rain,existing,,,,,,FALSE +Gary Allan,Nothing on but the Radio,new,,,,,8481,FALSE +Gary Allan,Right Where I Need to Be,new,,,,,7793,FALSE +Gary Allan,Watching Airplanes,existing,,,,,,FALSE +Gary Barlow,Let Me Go,existing,,,,,,FALSE +"Gary Clark, Jr.",Bright Lights,new,,,,,62181,FALSE +"Gary Clark, Jr.",Come Together,new,,,,,55127,FALSE +"Gary Clark, Jr.",When My Train Pulls In,new,,,,,79426,FALSE +Gary Moore,Over the Hills & Far Away,existing,,,,,,FALSE +Gary Moore,Parisienne Walkways,new,,,,,26385,FALSE +Gary Moore,Still Got the Blues,new,,,,,5466,FALSE +Gary Numan,Cars,new,,,,,41696,FALSE +Gary Numan & Tubeway Army,Are Friends Electric ?,existing,Gary Numan,,,,,FALSE +Gary Puckett & The Union Gap,Young Girl,existing,,,,,,FALSE +Gatlin Brothers,All The Gold In California,existing,,,,,,FALSE +Gavin DeGraw,Chariot,new,,,,,5651,FALSE +Gavin DeGraw,I Don't Want To Be,existing,,,,,,FALSE +Gavin DeGraw,Not Over You,new,,,,,37880,FALSE +Gavin DeGraw,Soldier,existing,,,,,,FALSE +Gavin James,22,new,,,,,11572,FALSE +Gavin James,Always (feat. Philippine),new,,,,,57943,FALSE +Gavin James,Always,new,,,,,57652,FALSE +Gavin James,Nervous (The Ooh Song Mark McCabe Remix),new,,,,,52439,FALSE +Gavin James,Nervous,new,,,,,52438,FALSE +Gavin James,The Book of Love,new,,,,,49413,FALSE +Gayle,Abcdefu (angrier),new,,,,,67751,FALSE +Gayle,Abcdefu,new,,,,,67392,FALSE +Gene Autry,Back in the Saddle Again,new,,,,,41089,FALSE +Gene Autry,Don't Fence Me in,new,,,,,15835,FALSE +Gene Pitney,24 Hours from Tulsa,existing,,,,,,FALSE +Gene Pitney,I'm Gonna Be Strong,existing,,,,,,FALSE +Gene Vincent,Be-Bop-A-Lula,existing,,,,,,FALSE +Gene Vincent,Race With the Devil,existing,,,,,,FALSE +General Public,Tenderness,new,,,,,83400,FALSE +Genesis,Abacab,new,,,,,14184,FALSE +Genesis,Behind the Lines,new,,,,,65235,FALSE +Genesis,Follow You Follow Me,new,,,,,20766,FALSE +Genesis,Home by the Sea,new,,,,,18075,FALSE +Genesis,I Can't Dance,new,,,,,12921,FALSE +Genesis,Invisible Touch,new,,,,,14185,FALSE +Genesis,Land of Confusion,new,,,,,14186,FALSE +Genesis,Mama,new,,,,,13322,FALSE +Genesis,Misunderstanding,new,,,,,57604,FALSE +Genesis,No Reply at All,new,,,,,71544,FALSE +Genesis,Supper's Ready,new,,,,,27720,FALSE +Genesis,That's All,new,,,,,14187,FALSE +Genesis,The Carpet Crawlers,new,,,,,30920,FALSE +Genesis,The Lamb Lies Down on Broadway,new,,,,,29297,FALSE +Genesis,Throwing It All Away,new,,,,,48323,FALSE +Genesis,"Tonight, Tonight, Tonight",new,,,,,14227,FALSE +Genesis,Turn It On Again,new,,,,,19899,FALSE +George Benson,Give Me The Night,existing,,,,,,FALSE +George Benson,Greatest Love of All,existing,,,,,,FALSE +George Benson,Nothing's Gonna Change My Love for You,new,,,,,13583,FALSE +George Benson,Turn Your Love Around,new,,,,,21017,FALSE +George Ezra,Barcelona,new,,,,,48464,FALSE +George Ezra,Blame It on Me,new,,,,,47486,FALSE +George Ezra,Budapest,existing,,,,,,FALSE +George Ezra,Green Green Grass,new,,,,,69298,FALSE +George Ezra,Hold My Girl,new,,,,,55489,FALSE +George Ezra,Paradise,new,,,,,55133,FALSE +George Ezra,Shotgun,new,,,,,55506,FALSE +George Harrison,All Things Must Pass,new,,,,,28400,FALSE +George Harrison,Give Me Love (Give Me Peace on Earth),new,,,,,57316,FALSE +George Harrison,Got My Mind Set On You,existing,,,,,,FALSE +George Harrison,If Not for You,new,,,,,61972,FALSE +George Harrison,My Sweet Lord,existing,,,,,,FALSE +George Harrison,What Is Life,existing,,,,,,FALSE +George Jones,He Stopped Loving Her Today,existing,,,,,,FALSE +George Jones,I Don't Need Your Rockin' Chair,new,,,,,15854,FALSE +George Jones,She Thinks I Still Care,new,,,,,15859,FALSE +George Jones,The Race Is On,new,,,,,8205,FALSE +George Mccrae,Rock Your Baby,existing,,,,,,FALSE +George Michael,Careless Whisper,existing,,,,,,FALSE +George Michael,Faith,existing,,,,,,FALSE +George Michael,Fast Love,existing,,,,,,FALSE +George Michael,Freedom '90,new,,,,,19978,FALSE +George Michael,I Can't Make You Love Me,existing,,,,,,FALSE +George Michael,Jesus To a Child,existing,,,,,,FALSE +George Michael & Elton John,Don't Let the Sun Go Down On Me (Live),existing,,,,,,FALSE +George Michael & Mary J Blige,As,existing,,,,,,FALSE +George Strait,All My Exes Live In Texas,existing,,,,,,FALSE +George Strait,Amarillo By Morning,existing,,,,,,FALSE +George Strait,Carrying Your Love With Me,new,,,,,10324,FALSE +George Strait,Check Yes Or No,new,,,,,8326,FALSE +George Strait,Give It All We Got Tonight,existing,,,,,,FALSE +George Strait,Give It Away,new,,,,,15871,FALSE +George Strait,Here for a Good Time,new,,,,,37755,FALSE +George Strait,Seashores of Old Mexico,existing,,,,,,FALSE +George Strait,Troubadour,new,,,,,24640,FALSE +George Strait,Write This Down,new,,,,,8444,FALSE +George Strait,You Look So Good In Love,existing,,,,,,FALSE +George Thorogood,Bad To The Bone,existing,,,,,,FALSE +George Thorogood,I Drink Alone,new,,,,,53200,FALSE +George Thorogood,Move It On Over,existing,,,,,,FALSE +George Thorogood,"One Bourbon, One Scotch, One Beer",new,,,,,49609,FALSE +Georgie Fame,Yeh Yeh,existing,,,,,,FALSE +Gerry & The Pacemakers,Ferry 'Cross the Mersey,existing,,,,,,FALSE +Gerry & The Pacemakers,How Do You Do It?,existing,,,,,,FALSE +Gerry & The Pacemakers,You'll Never Walk Alone,existing,,,,,,FALSE +Gerry Rafferty,Baker Street,existing,,,,,,FALSE +Gerry Rafferty,Right Down The Line,existing,,,,,,FALSE +Ghost (band),Call Me Little Sunshine,new,Ghost,,,,68256,FALSE +Ghost (band),Cirice,new,Ghost,,,,57343,FALSE +Ghost (band),Dance Macabre,new,Ghost,,,,56605,FALSE +Ghost (band),Mary on a Cross,new,Ghost,,,,69741,FALSE +Ghost (band),Square Hammer,new,Ghost,,,,52440,FALSE +Ghost (band),Year Zero,new,Ghost,,,,75946,FALSE +Gin Blossoms,Follow You Down,existing,,,,,,FALSE +Gin Blossoms,Found Out About You,new,,,,,11441,FALSE +Gin Blossoms,Hey Jealousy,existing,,,,,,FALSE +Gin Blossoms,Til I Hear It from You,new,,,,,17917,FALSE +Gina G,Ooh..Aah Just a Little Bit,existing,,,,,,FALSE +Ginuwine,Differences,new,,,,,15891,FALSE +Ginuwine,Hell Yeah,new,,,,,15927,FALSE +Ginuwine,Pony,new,,,,,34193,FALSE +Ginuwine,So Anxious,new,,,,,58921,FALSE +Ginuwine,The Best Man I Can Be,new,,,,,35373,FALSE +Ginuwine,There It Is,new,,,,,15925,FALSE +Ginuwine,When Doves Cry,new,,,,,34208,FALSE +Girls Aloud,Loving Kind,existing,,,,,,FALSE +Girls Aloud,Sexy! No,existing,,,,,,FALSE +Girls Aloud,Sound of the Underground,existing,,,,,,FALSE +Girls Aloud,The Promise,existing,,,,,,FALSE +Gladys Knight,Licence To Kill,existing,,,,,,FALSE +Gladys Knight And The Pips,Midnight Train To Georgia,existing,,,,,,FALSE +Glass Animals,Creatures in Heaven,new,,,,,81482,FALSE +Glass Animals,Gooey,new,,,,,69338,FALSE +Glass Animals,Heat Waves,new,,,,,64678,FALSE +Glass Animals,Space Ghost Coast to Coast,new,,,,,82137,FALSE +Glass Animals,The Other Side of Paradise,new,,,,,78859,FALSE +Glee Cast,Defying Gravity,existing,,,,,,FALSE +Glee Cast,Fat Bottomed Girls,existing,,,,,,FALSE +Glee Cast,Hello Goodbye,existing,,,,,,FALSE +Glee Cast,I'll Stand By You,existing,,,,,,FALSE +Glee Cast,It's Not Unusual,existing,,,,,,FALSE +Glee Cast,Jump,existing,,,,,,FALSE +Glee Cast,Leaving On a Jet Plane,existing,,,,,,FALSE +Glen Campbell,By the Time I Get To Phoenix,existing,,,,,,FALSE +Glen Campbell,Galveston,existing,,,,,,FALSE +Glen Campbell,Gentle On My Mind,existing,,,,,,FALSE +Glen Campbell,It's Only Make Believe,existing,,,,,,FALSE +Glen Campbell,Rhinestone Cowboys,existing,,,,,,FALSE +Glen Campbell,Wichita Lineman,existing,,,,,,FALSE +Glen Hansard,Falling Slowly,existing,,,,,,FALSE +Glenn Miller,In The Mood,existing,,,,,,FALSE +GloRilla,TGIF,new,,,,,82335,FALSE +GloRilla,Tomorrow 2,new,,,,,72621,FALSE +GloRilla,Wanna Be,new,,,,,81127,FALSE +GloRilla,Yeah Glo!,new,,,,,80639,FALSE +Gloria Estefan,I Don't Wanna Lose You,existing,,,,,,FALSE +Gloria Estefan,Mi Tierra,existing,,,,,,FALSE +Gloria Estefan,Rhythm Is Gonna Get You,existing,,,,,,FALSE +Gloria Estefan,Turn The Beat Around,existing,,,,,,FALSE +Gloria Gaynor,I Will Survive,existing,,,,,,FALSE +Gloria Gaynor,Never Can Say Goodbye,existing,,,,,,FALSE +Gnarls Barkley,Crazy,existing,,,,,,FALSE +Go West,King of Wishful Thinking,existing,,,,,,FALSE +Go West,We Close Our Eyes,existing,,,,,,FALSE +Godsmack,Awake,new,,,,,64310,FALSE +Godsmack,Bulletproof,new,,,,,68735,FALSE +Godsmack,Cryin' Like a Bitch,new,,,,,64602,FALSE +Godsmack,Greed,existing,,,,,,FALSE +Godsmack,I Stand Alone,existing,,,,,,FALSE +Godsmack,Love-Hate-Sex-Pain,new,,,,,67674,FALSE +Godsmack,Voodoo,new,,,,,54890,FALSE +Godsmack,When Legends Rise,new,,,,,78174,FALSE +Gojira,Flying Whales,new,,,,,83019,FALSE +Gojira,Silvera,new,,,,,76627,FALSE +Gojira,Stranded,new,,,,,73824,FALSE +Golden Earring,Radar Love,existing,,,,,,FALSE +Golden Earring,Twilight Zone,new,,,,,53341,FALSE +Goo Goo Dolls,Iris,existing,,,,,,FALSE +Goo Goo Dolls,Name,new,,,,,18225,FALSE +Goo Goo Dolls,Slide,existing,,,,,,FALSE +Goo Goo Dolls,Sympathy,new,,,,,6215,FALSE +Good Charlotte,I Don't Wanna Be in Love (Dance Floor Anthem),new,,,,,81871,FALSE +Good Charlotte,I Just Wanna Live,new,,,,,15945,FALSE +Good Charlotte,Lifestyles Of The Rich And Famous,existing,,,,,,FALSE +Good Charlotte,The Anthem,existing,,,,,,FALSE +Gordon Haskell,How Wonderful You Are,existing,,,,,,FALSE +Gordon Lightfoot,If You Could Read My Mind,existing,,,,,,FALSE +Gordon Lightfoot,Rainy Day People,existing,,,,,,FALSE +Gordon Lightfoot,Sundown,existing,,,,,,FALSE +Gordon Lightfoot,The Wreck of the Edmund Fitzgerald,new,,,,,39438,FALSE +Gorillaz,19-2000,new,,,,,15950,FALSE +Gorillaz,Clint Eastwood (remix),new,,,,,16885,FALSE +Gorillaz,Clint Eastwood,new,,,,,52486,FALSE +Gorillaz,Controllah,new,,,,,74630,FALSE +Gorillaz,Cracker Island,new,,,,,71342,FALSE +Gorillaz,Dare,new,,,,,12710,FALSE +Gorillaz,Feel Good Inc.,new,,,,,11574,FALSE +Gorillaz,Kids with Guns,new,,,,,73170,FALSE +Gorillaz,On Melancholy Hill,new,,,,,30790,FALSE +Gorillaz,Rhinestone Eyes,new,,,,,74251,FALSE +Gorillaz,Rock the House,new,,,,,78755,FALSE +Gorillaz,Silent Running,new,,,,,74678,FALSE +Gorillaz,Stylo,new,,,,,28696,FALSE +Gospel Singer,A Mighty Fortress Is Our God,existing,,,,,,FALSE +Gospel Singer,All Hail The Power Of Jesus Name,existing,,,,,,FALSE +Gospel Singer,Amazing Grace,existing,,,,,,FALSE +Gospel Singer,Because He Lives,existing,,,,,,FALSE +Gospel Singer,Blessed Assurance,existing,,,,,,FALSE +Gospel Singer,Blessed Be The Tie That Binds,existing,,,,,,FALSE +Gospel Singer,Christ The Lord Is Risen Today,existing,,,,,,FALSE +Gospel Singer,Crown Him With Many Crowns,existing,,,,,,FALSE +Gospel Singer,Faith Of Our Fathers,existing,,,,,,FALSE +Gospel Singer,For The Beauty Of The Earth,existing,,,,,,FALSE +Gospel Singer,He Touched Me,existing,,,,,,FALSE +Gospel Singer,Holy Holy Holy,existing,,,,,,FALSE +Gospel Singer,Hosanna Loud Hosanna,existing,,,,,,FALSE +Gospel Singer,How Firm A Foundation,existing,,,,,,FALSE +Gospel Singer,How Great Thou Art,existing,,,,,,FALSE +Gospel Singer,I Can Only Imagine,existing,,,,,,FALSE +Gospel Singer,I Have Decided To Follow Jesus,existing,,,,,,FALSE +Gospel Singer,I Love To Tell The Story,existing,,,,,,FALSE +Gospel Singer,Jesus Shall Reign,existing,,,,,,FALSE +Gospel Singer,Joyful Joyful We Adore Thee,existing,,,,,,FALSE +Gospel Singer,Just A Closer Walk With Thee,existing,,,,,,FALSE +Gospel Singer,Just As I Am,existing,,,,,,FALSE +Gospel Singer,Lord I Lift Your Name On High,existing,,,,,,FALSE +Gospel Singer,O For A Thousand Tongues To Sing,existing,,,,,,FALSE +Gospel Singer,Onward Christian Soldiers,existing,,,,,,FALSE +Gospel Singer,Peace In The Valley,existing,,,,,,FALSE +Gospel Singer,Praise Him,existing,,,,,,FALSE +Gospel Singer,Praise To The Lord The Almighty,existing,,,,,,FALSE +Gospel Singer,Rock Of Ages,existing,,,,,,FALSE +Gospel Singer,Softly And Tenderly,existing,,,,,,FALSE +Gospel Singer,Stand Up For Jesus,existing,,,,,,FALSE +Gospel Singer,Sweet Hour Of Prayer,existing,,,,,,FALSE +Gospel Singer,Tell Me The Stories Of Jesus,existing,,,,,,FALSE +Gospel Singer,Tell Me The Story Of Jesus,existing,,,,,,FALSE +Gospel Singer,The Church In The Wildwood,existing,,,,,,FALSE +Gospel Singer,The Lord's Prayer,existing,,,,,,FALSE +Gospel Singer,The Strife Is O'er The Battle Done,existing,,,,,,FALSE +Gospel Singer,There Is A Balm In Gilead,existing,,,,,,FALSE +Gospel Singer,This Is My Father's World,existing,,,,,,FALSE +Gospel Singer,We Gather Together,existing,,,,,,FALSE +Gospel Singer,We Shall Overcome,existing,,,,,,FALSE +Gospel Song,Vict'ry Road (A Cappella),existing,,,,,,FALSE +Gotye Feat. Kimbra,Somebody That I Used To Know,existing,,,,,,FALSE +Gov't Mule,Banks of the Deep End,new,,,,,77652,FALSE +Gov't Mule,Beautifully Broken,new,,,,,80497,FALSE +Gov't Mule,Soulshine,new,,,,,52847,FALSE +Grace Potter,Something That I Want,existing,,,,,,FALSE +Grace Potter,Stars (Piano Acoustic),existing,,,,,,FALSE +Grand Funk Railroad,Some Kind Of Wonderful,existing,,,,,,FALSE +Grand Funk Railroad,We're An American Band,existing,,,,,,FALSE +Grandmaster Flash & The Furious Five,The Message,new,,,,,13762,FALSE +Grandmaster Flash & The Furious Five,White Lines (Don't Do It),new,,,,,14528,FALSE +Grateful Dead,Althea,new,,,,,76891,FALSE +Grateful Dead,Bertha,new,,,,,72137,FALSE +Grateful Dead,Box of Rain,new,,,,,69589,FALSE +Grateful Dead,Brown Eyed Women,existing,,,,,,FALSE +Grateful Dead,Casey Jones,existing,,,,,,FALSE +Grateful Dead,Cassidy,existing,,,,,,FALSE +Grateful Dead,China Cat Sunflower,new,,,,,83426,FALSE +Grateful Dead,Deep Elem Blues (live),new,,,,,73992,FALSE +Grateful Dead,Eyes of the World,new,,,,,71819,FALSE +Grateful Dead,Fire on the Mountain,new,,,,,41140,FALSE +Grateful Dead,Franklin's Tower,new,,,,,25828,FALSE +Grateful Dead,Friend of the Devil,new,,,,,61018,FALSE +Grateful Dead,I Know You Rider (live in Paris),new,,,,,79025,FALSE +Grateful Dead,Jack Straw,existing,,,,,,FALSE +Grateful Dead,Ramble on Rose (live),new,,,,,75893,FALSE +Grateful Dead,Ripple,new,,,,,58995,FALSE +Grateful Dead,Scarlet Begonias,new,,,,,69254,FALSE +Grateful Dead,Shakedown Street,new,,,,,28000,FALSE +Grateful Dead,Sugar Magnolia,new,,,,,69318,FALSE +Grateful Dead,Sugaree,existing,,,,,,FALSE +Grateful Dead,Tennessee Jed,existing,,,,,,FALSE +Grateful Dead,Terrapin Station,existing,,,,,,FALSE +Grateful Dead,Touch of Grey,new,,,,,56037,FALSE +Grateful Dead,Truckin',new,,,,,11466,FALSE +Grateful Dead,Truckin,existing,,,,,,FALSE +Grateful Dead,Uncle John's Band,new,,,,,48172,FALSE +Grease,Summer Nights,existing,,,,,,FALSE +Grease,You're The One That I Want,existing,,,,,,FALSE +Great White,Lady Red Light,new,,,,,70514,FALSE +Great White,Once Bitten Twice Shy,existing,,,,,,FALSE +Great White,Rock Me,new,,,,,69553,FALSE +Green Day,21 Guns,new,,,,,23533,FALSE +Green Day,American Idiot,new,,,,,5611,FALSE +Green Day,Basket Case,existing,,,,,,FALSE +Green Day,Boulevard Of Broken Dreams,existing,,,,,,FALSE +Green Day,Brain Stew,new,,,,,54959,FALSE +Green Day,Holiday,new,,,,,5610,FALSE +Green Day,Time Of Your Life (Good Riddance),existing,,,,,,FALSE +Green Day,Wake Me Up When September Ends,existing,,,,,,FALSE +Green Day,When I Come Around,existing,,,,,,FALSE +Greg Kihn Band,Jeopardy,existing,The Greg Kihn Band,,,,,FALSE +Gregg Allman,I'm No Angel,new,,,,,64302,FALSE +Gregg Allman,Midnight Rider,new,,,,,15958,FALSE +Gregg Lake,I Believe In Father Christmas,existing,,,,,,FALSE +Greta Van Fleet,Black Smoke Rising,new,,,,,57930,FALSE +Greta Van Fleet,Heat Above,new,,,,,71698,FALSE +Greta Van Fleet,Highway Tune,new,,,,,57536,FALSE +Greta Van Fleet,Safari Song,new,,,,,58687,FALSE +Gretchen Wilson,Here For The Party,existing,,,,,,FALSE +Gretchen Wilson,Redneck Woman,existing,,,,,,FALSE +Grizzly Bear,Two Weeks,new,,,,,77656,FALSE +Grouplove,Let Me In,new,,,,,47176,FALSE +Grouplove,Tongue Tied,new,,,,,41845,FALSE +Grover Washington Jr,Just The Two Of Us,existing,,,,,,FALSE +Guns N' Roses,Civil War,new,,,,,31646,FALSE +Guns N' Roses,Don't Cry,new,,,,,13605,FALSE +Guns N' Roses,Knockin' On Heaven's Door,existing,,,,,,FALSE +Guns N' Roses,Live and Let Die,new,,,,,13760,FALSE +Guns N' Roses,Mr. Brownstone,existing,,,,,,FALSE +Guns N' Roses,November Rain,new,,,,,7157,FALSE +Guns N' Roses,Paradise City,new,,,,,15965,FALSE +Guns N' Roses,Patience,existing,,,,,,FALSE +Guns N' Roses,Sweet Child O' Mine,existing,,,,,,FALSE +Guns N' Roses,Welcome To The Jungle,existing,,,,,,FALSE +Guns N' Roses,You Could Be Mine,new,,,,,31645,FALSE +Guy Mitchell,Heartaches By the Number,existing,,,,,,FALSE +Guy Mitchell,Singing the Blues,existing,,,,,,FALSE +Gwen Guthrie,Ain't Nothing Going On but the Rent,existing,,,,,,FALSE +Gwen Stefani,Cool,new,,,,,11571,FALSE +Gwen Stefani,Hollaback Girl,new,,,,,5629,FALSE +Gwen Stefani,Luxurious,new,,,,,15967,FALSE +Gwen Stefani,Rich Girl,new,,,,,5615,FALSE +Gwen Stefani,Sweet Escape,existing,,,,,,FALSE +Gwen Stefani,What You Waiting For,new,,,,,11525,FALSE +Gym Class Heroes,Ass Back Home,existing,,,,,,FALSE +Gym Class Heroes,Stereo Hearts,existing,,,,,,FALSE +H.E.R.,Come Through,new,,,,,65402,FALSE +H.E.R.,Comfortable,new,,,,,63151,FALSE +H.E.R.,Damage,new,,,,,63178,FALSE +H.E.R.,Focus,new,,,,,57555,FALSE +H.E.R.,Hard Place,new,,,,,57598,FALSE +H.E.R.,Slide,new,,,,,75722,FALSE +Haim,Don't Save Me,new,,,,,43377,FALSE +Haim,Falling,new,,,,,43247,FALSE +Haim,Forever,new,,,,,47608,FALSE +Haim,If I Could Change Your Mind,new,,,,,47083,FALSE +Haim,The Wire,new,,,,,45004,FALSE +Halestorm,Bad Romance,new,,,,,46944,FALSE +Halestorm,Freak Like Me,new,,,,,49507,FALSE +Halestorm,Here's To Us,existing,,,,,,FALSE +Halestorm,I Get Off,new,,,,,24055,FALSE +Halestorm,I Miss The Misery,existing,,,,,,FALSE +Halestorm,Love Bites So Do I,existing,,,,,,FALSE +Halestorm,Mz. Hyde,new,,,,,48176,FALSE +Haley Reinhart,Can't Help Falling in Love,new,,,,,50719,FALSE +Hall And Oates,Adult Education,new,,,,,70906,FALSE +Hall And Oates,Did It in a Minute,new,,,,,15973,FALSE +Hall And Oates,Family Man,new,,,,,31107,FALSE +Hall And Oates,Kiss on My List,new,,,,,31080,FALSE +Hall And Oates,Method of Modern Love,new,,,,,71870,FALSE +Hall And Oates,One On One,new,,,,,56464,FALSE +Hall And Oates,Out of Touch,new,,,,,44450,FALSE +Hall And Oates,Rich Girl,new,,,,,17958,FALSE +Hall And Oates,Sara Smile,new,,,,,7529,FALSE +Hall And Oates,Say It Isn't So,new,,,,,44067,FALSE +Hall And Oates,You Make My Dreams,new,,,,,40923,FALSE +Hall And Oates,You've Lost That Lovin' Feeling,new,,,,,50426,FALSE +Hall And Oates,I Can't Go For That (No Can Do),existing,Hall & Oates,,,,,FALSE +Hall And Oates,Maneater,existing,Hall & Oates,,,,,FALSE +Hall And Oates,Private Eyes,existing,Hall & Oates,,,,,FALSE +Hall And Oates,She's Gone,existing,Hall & Oates,,,,,FALSE +Halsey,Bad at Love,new,,,,,54231,FALSE +Halsey,Be Kind,new,,,,,61649,FALSE +Halsey,Him & I,new,,,,,55419,FALSE +Halsey,Without Me,new,,,,,56734,FALSE +"Hank Williams Jr.",All My Rowdy Friends (Have Settled Down),new,,,,,24972,FALSE +"Hank Williams Jr.",All My Rowdy Friends Are Coming Over Tonight,new,,,,,15983,FALSE +"Hank Williams Jr.",Dinosaur,new,,,,,23839,FALSE +"Hank Williams Jr.",If Heaven Ain't A Lot Like Dixie,new,,,,,15988,FALSE +"Hank Williams Jr.",Weatherman,new,,,,,69957,FALSE +"Hank Williams Sr.","Hey, Good Lookin'",new,,,,,17962,FALSE +"Hank Williams Sr.",I'm So Lonesome I Could Cry,new,,,,,17960,FALSE +Hank Williams Jr,A Country Boy Can Survive,existing,Hank Williams Jr.,,,,,FALSE +Hank Williams Jr,All My Rowdy Friends Have Settled Down,existing,Hank Williams Jr.,,,,,FALSE +Hank Williams Jr,Family Tradition,existing,Hank Williams Jr.,,,,,FALSE +Hank Williams Jr,Whiskey Bent And Hell Bound,existing,Hank Williams Jr.,,,,,FALSE +Hanumankind,Big Dawgs,new,,,,,83277,FALSE +Hard Fi,Suburban Knights,existing,,,,,,FALSE +Hardy,Give Heaven Some Hell,new,,,,,68507,FALSE +Hardy,He Went to Jared,new,,,,,59345,FALSE +Hardy,One Beer,new,,,,,60965,FALSE +Hardy,Red,new,,,,,73448,FALSE +Hardy,Truck Bed,new,,,,,72700,FALSE +Hardy,Wait in the Truck,new,,,,,71359,FALSE +Harold Faltermeyer,Axel F,existing,,,,,,FALSE +Harold Melvin & The Bluenotes,Love I Lost,existing,,,,,,FALSE +Harold Melvin And The Blue Notes,If You Don't Know Me By Now,existing,Harold Melvin & The Bluenotes,,,,,FALSE +Harry Belafonte,Jump In the Line,existing,,,,,,FALSE +Harry Chapin,Cat's in the Cradle,new,,,,,17963,FALSE +Harry Nilsson,Everybody's Talkin,existing,,,,,,FALSE +Harry Nilsson,Without You,new,,,,,7535,FALSE +Harry Styles,Adore You,new,,,,,60218,FALSE +Harry Styles,As It Was,new,,,,,68930,FALSE +Harry Styles,Falling,new,,,,,60311,FALSE +Harry Styles,Fine Line,new,,,,,81075,FALSE +Harry Styles,Golden,new,,,,,61219,FALSE +Harry Styles,Late Night Talking,new,,,,,69609,FALSE +Harry Styles,Matilda,new,,,,,69659,FALSE +Harry Styles,Satellite,new,,,,,70607,FALSE +Harry Styles,Sign of the Times,new,,,,,53042,FALSE +Harry Styles,Watermelon Sugar,new,,,,,59951,FALSE +Haydn Quartet,Sweet Adeline (A Cappella),existing,,,,,,FALSE +Hazel O'connor,Will You,existing,,,,,,FALSE +Heart,All I Wanna Do Is Make Love To You,existing,,,,,,FALSE +Heart,Alone,existing,,,,,,FALSE +Heart,Barracuda,existing,,,,,,FALSE +Heart,Crazy On You,existing,,,,,,FALSE +Heart,Magic Man,existing,,,,,,FALSE +Heart (band),Dog & Butterfly,new,Heart,,,,41834,FALSE +Heart (band),Dreamboat Annie,new,Heart,,,,57839,FALSE +Heart (band),Even It Up,new,Heart,,,,43976,FALSE +Heart (band),Straight On,new,Heart,,,,55961,FALSE +Heart (band),These Dreams (radio edit),new,Heart,,,,10005,FALSE +Heart (band),What About Love,new,Heart,,,,30224,FALSE +Heather Small,Proud,existing,,,,,,FALSE +Helen Shapiro,Walking Back To Happiness,existing,,,,,,FALSE +Herbie Hancock,A Song for You,new,,,,,23905,FALSE +Herbie Hancock,Imagine,new,,,,,63944,FALSE +Herbie Hancock,Stitched Up,new,,,,,63706,FALSE +Herbie Hancock,The Star Spangled Banner,new,,,,,76996,FALSE +Herbie Hancock,Watermelon Man,existing,,,,,,FALSE +Herbie Hancock,When Love Comes to Town,new,,,,,68126,FALSE +Herman's Hermits,I'm Into Something Good,existing,,,,,,FALSE +Herman's Hermits,My Sentimental Friend,existing,,,,,,FALSE +Herman's Hermits,Silhouettes,existing,,,,,,FALSE +Herman's Hermits,There's A Kind of Hush,existing,,,,,,FALSE +Highly Suspect,Lydia,new,,,,,68214,FALSE +Highly Suspect,My Name Is Human,new,,,,,53084,FALSE +Hinder,Better Than Me,new,,,,,12759,FALSE +Hinder,Lips of an Angel,new,,,,,14595,FALSE +Hole,Celebrity Skin,new,,,,,60740,FALSE +Hole,Malibu,new,,,,,65896,FALSE +Hollywood Undead,Bullet,new,,,,,72006,FALSE +Hollywood Undead,Everywhere I Go,new,,,,,68193,FALSE +Hollywood Undead,Undead,new,,,,,69473,FALSE +Hoobastank,Crawling in the Dark,new,,,,,16117,FALSE +Hoobastank,Out of Control,new,,,,,16119,FALSE +Hoobastank,The Reason,new,,,,,13512,FALSE +Hootie And The Blowfish,Hold My Hand,existing,,,,,,FALSE +Hot Chocolate,Disco Queen,existing,,,,,,FALSE +Hot Chocolate,Every 1's A Winner,new,,,,,31579,FALSE +Hot Chocolate,You Sexy Thing,existing,,,,,,FALSE +Howard Jones,Everlasting Love,new,,,,,71448,FALSE +Howard Jones,Like to Get to Know You Well,new,,,,,71471,FALSE +Howard Jones,New Song,new,,,,,70981,FALSE +Howard Jones,No One Is to Blame,new,,,,,58723,FALSE +Howard Jones,Things Can Only Get Better,new,,,,,18001,FALSE +Howard Jones,What Is Love,new,,,,,36717,FALSE +Howlin' Wolf,Killing Floor,new,,,,,81677,FALSE +Howlin' Wolf,Smokestack Lightning,new,,,,,77317,FALSE +Howlin' Wolf,Spoonful,new,,,,,78721,FALSE +Hozier,Almost (Sweet Music),new,,,,,57963,FALSE +Hozier,From Eden,existing,,,,,,FALSE +Hozier,Like Real People Do,new,,,,,73560,FALSE +Hozier,Someone New,new,,,,,49064,FALSE +Hozier,Take Me To Church,existing,,,,,,FALSE +Hozier,Too Sweet,new,,,,,80539,FALSE +Hozier,Work Song,new,,,,,48526,FALSE +Huey Lewis,It's Alright (A Cappella),existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,Do You Believe In Love,new,,,,,16132,FALSE +Huey Lewis And The News,Hip to Be Square,new,,,,,16134,FALSE +Huey Lewis And The News,If This Is It,new,,,,,20850,FALSE +Huey Lewis & The News,Power of Love,existing,,,,,,FALSE +Huey Lewis And The News,Heart And Soul,existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,Heart Of Rock And Roll,existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,I Want A New Drug,existing,Huey Lewis & The News,,,,,FALSE +Huey Lewis And The News,Power Of Love,existing,Huey Lewis & The News,,,,,FALSE +Human League,Don't You Want Me,existing,The Human League,,,,,FALSE +Human League,Mirror Man,existing,,,,,,FALSE +Hunter Hayes,I Want Crazy,new,,,,,43746,FALSE +Hunter Hayes,Wanted,new,,,,,40834,FALSE +Hurt,Wonderful Life,existing,,,,,,FALSE +I Prevail,Blank Space,new,,,,,58554,FALSE +I Prevail,Bow Down,new,,,,,76087,FALSE +I Prevail,Hurricane,new,,,,,75866,FALSE +I Prevail,Scars,new,,,,,73164,FALSE +INXS,Beautiful Girl,new,,,,,18015,FALSE +INXS,Devil Inside,existing,,,,,,FALSE +INXS,Don't Change,new,,,,,34054,FALSE +INXS,Mystify,existing,,,,,,FALSE +INXS,Need You Tonight,existing,,,,,,FALSE +INXS,Suicide Blonde,new,,,,,12897,FALSE +INXS,What You Need,existing,,,,,,FALSE +Ian Dury & The Blockheads,Hit Me With Your Rhythm Stick,existing,,,,,,FALSE +Ice Cube,Check Yo Self,new,,,,,35460,FALSE +Ice Cube,Down For Whatever,new,,,,,37974,FALSE +Ice Cube,It Was a Good Day,new,,,,,54976,FALSE +Ice Cube,No Vaseline,new,,,,,74471,FALSE +Ice Cube,You Can Do It (Put Your Ass Into It),new,,,,,28569,FALSE +Ice Spice,Deli,new,,,,,76732,FALSE +Ice Spice,Did It First,new,,,,,83123,FALSE +Ice Spice,In Ha Mood,new,,,,,73771,FALSE +Ice Spice,Princess Diana,new,,,,,75141,FALSE +Ice Spice,Think U the Shit (Fart),new,,,,,81334,FALSE +Ice-T,Colors,new,,,,,70127,FALSE +Icehouse,Electric Blue,new,,,,,62057,FALSE +Icehouse,Great Southern Land,new,,,,,62243,FALSE +Idles,Never Fight a Man with a Perm,new,,,,,80422,FALSE +Iggy Azalea,Black Widow,existing,,,,,,FALSE +Iggy Azalea,Bounce,new,,,,,44564,FALSE +Iggy Azalea,Change Your Life,new,,,,,45543,FALSE +Iggy Azalea,Fancy,existing,,,,,,FALSE +Iggy Azalea,Trouble,new,,,,,49022,FALSE +Iggy Azalea,Work,new,,,,,43532,FALSE +Iggy Pop,Lust for Life,new,,,,,51312,FALSE +Iggy Pop,Real Wild Child,existing,,,,,,FALSE +Ike & Tina Turner,Nutbush City Limits,existing,,,,,,FALSE +Imagine Dragons,Believer,new,,,,,52644,FALSE +Imagine Dragons,Bones,new,,,,,68712,FALSE +Imagine Dragons,Demons,existing,,,,,,FALSE +Imagine Dragons,Enemy (solo version),new,,,,,69672,FALSE +Imagine Dragons,It's Time,existing,,,,,,FALSE +Imagine Dragons,Natural,new,,,,,56156,FALSE +Imagine Dragons,On Top of the World,new,,,,,43366,FALSE +Imagine Dragons,Radioactive,existing,,,,,,FALSE +Imagine Dragons,Thunder,new,,,,,53367,FALSE +Imagine Dragons,Whatever It Takes,new,,,,,53170,FALSE +Imelda May,Big Bad Handsome Man,existing,,,,,,FALSE +Imelda May,Inside Out,existing,,,,,,FALSE +In This Moment,Black Wedding,new,,,,,71492,FALSE +In This Moment,Blood,new,,,,,72331,FALSE +In This Moment,Whore,new,,,,,67946,FALSE +Incubus,Anna Molly,new,,,,,21037,FALSE +Incubus,Are You In,new,,,,,70866,FALSE +Incubus,Dig,new,,,,,69148,FALSE +Incubus,Drive,existing,,,,,,FALSE +Incubus,Pardon Me,new,,,,,62984,FALSE +Incubus,Stellar,new,,,,,21770,FALSE +Incubus,Wish You Were Here,new,,,,,16148,FALSE +India Arie,Brown Skin,new,,,,,20779,FALSE +India Arie,Video,new,,,,,8156,FALSE +Indigo Girls,Closer to Fine,new,,,,,67104,FALSE +Indigo Girls,Galileo,new,,,,,70513,FALSE +Information Society,What's On Your Mind (Pure Energy),existing,,,,,,FALSE +Ingrid Michaelson,Girls Chase Boys,existing,,,,,,FALSE +Ingrid Michaelson,The Way I Am,existing,,,,,,FALSE +Ingrid Michaelson,You And I,existing,,,,,,FALSE +Ini Kamoze,Here Comes the Hotstepper,existing,,,,,,FALSE +Inna,Hot,new,,,,,29250,FALSE +Inna,Sun Is Up,new,,,,,36182,FALSE +Interpol,Evil,new,,,,,71983,FALSE +Interpol,Obstacle 1,new,,,,,75769,FALSE +Inxs,Never Tear Us Apart,existing,INXS,,,,,FALSE +Inxs,New Sensation,existing,INXS,,,,,FALSE +Irene Cara,Flashdance (What a Feeling),existing,,,,,,FALSE +Irish Traditional,Dirty Old Town,existing,,,,,,FALSE +Irish Traditional,Whiskey In the Jar,existing,,,,,,FALSE +Irish Traditional,Wild Rover,existing,,,,,,FALSE +Iron Maiden,2 Minutes to Midnight,new,,,,,21669,FALSE +Iron Maiden,Aces High,new,,,,,21877,FALSE +Iron Maiden,Fear Of The Dark,existing,,,,,,FALSE +Iron Maiden,Hallowed Be Thy Name,new,,,,,21880,FALSE +Iron Maiden,Run To The Hills,existing,,,,,,FALSE +Iron Maiden,The Number of the Beast,new,,,,,21883,FALSE +Iron Maiden,The Trooper,existing,,,,,,FALSE +Iron Maiden,Wasted Years,new,,,,,21888,FALSE +Iron Maiden,Where Eagles Dare,new,,,,,69610,FALSE +Iron Maiden,Wrathchild,new,,,,,21890,FALSE +Ivete Sangalo,Berimbau Metalizado,existing,,,,,,FALSE +Ivete Sangalo,Chupa Toda,existing,,,,,,FALSE +Ivete Sangalo,Perere,existing,,,,,,FALSE +Ivy Queen,Quiero Bailar,existing,,,,,,FALSE +J Geils Band,Centerfold,existing,The J. Geils Band,,,,,FALSE +J Geils Band,Freeze Frame,existing,The J. Geils Band,,,,,FALSE +J Geils Band,Love Stinks,existing,The J. Geils Band,,,,,FALSE +J-Kwon,Tipsy,new,,,,,16169,FALSE +J-Sqruipt,Don't Worry,existing,,,,,,FALSE +J. Cole,KOD,new,,,,,83030,FALSE +J. Cole,Middle Child,new,,,,,76576,FALSE +J. Cole,Neighbors,new,,,,,76225,FALSE +J. Cole,No Role Modelz,new,,,,,63430,FALSE +J. Cole,Power Trip,new,,,,,43809,FALSE +J. Cole,Pride Is the Devil,new,,,,,72932,FALSE +J. Cole,Wet Dreamz,new,,,,,70786,FALSE +J. Cole,Work Out,new,,,,,70980,FALSE +J. Geils Band,Must of Got Lost,new,The J. Geils Band,,,,71846,FALSE +J. Holiday,Bed,new,,,,,12868,FALSE +J. Holiday,Suffocate,new,,,,,14998,FALSE +JJ Grey & Mofro,Lochloosa,new,,,,,75952,FALSE +JJ Grey & Mofro,The Sun Is Shining Down,new,,,,,83315,FALSE +JJ Grey & Mofro,This River,new,,,,,50894,FALSE +JP Cooper,September Song,new,,,,,52603,FALSE +JP Cooper,Sing It with Me,new,,,,,66585,FALSE +Ja Rule,Always on Time,new,,,,,55244,FALSE +Ja Rule,Put It on Me,new,,,,,56814,FALSE +Jaci Velasquez,He,existing,,,,,,FALSE +Jaci Velasquez,Jesus Is,existing,,,,,,FALSE +Jaci Velasquez,Lost Without You,existing,,,,,,FALSE +Jack Harlow,First Class,new,,,,,40208,FALSE +Jack Harlow,Lovin on Me,new,,,,,78349,FALSE +Jack Harlow,Same Guy,new,,,,,64512,FALSE +Jack Harlow,What's Poppin',new,,,,,69703,FALSE +Jack Johnson,At Or With Me,existing,,,,,,FALSE +Jack Johnson,Banana Pancakes,new,,,,,18492,FALSE +Jack Johnson,Better Together,new,,,,,14090,FALSE +Jack Johnson,Flake,existing,,,,,,FALSE +Jack Johnson,Good People,new,,,,,32615,FALSE +Jack Johnson,I Got You,existing,,,,,,FALSE +Jack Johnson,Sitting Waiting Wishing,existing,,,,,,FALSE +Jack Johnson,Upside Down,existing,,,,,,FALSE +Jack Johnson,You And Your Heart,existing,,,,,,FALSE +Jack White,Love Is Blindness,existing,,,,,,FALSE +Jackie Wilson,Higher & Higher,existing,,,,,,FALSE +Jackie Wilson,Reet Petite,existing,,,,,,FALSE +Jackson Browne,Doctor My Eyes,existing,,,,,,FALSE +Jackson Browne,Rock Me on the Water,new,,,,,78620,FALSE +Jackson Browne,Running On Empty,existing,,,,,,FALSE +Jackson Browne,Somebody's Baby,existing,,,,,,FALSE +Jackson Browne,Stay,existing,,,,,,FALSE +Jackson Browne,Tender Is the Night,new,,,,,57092,FALSE +Jackson Browne,The Load-Out,new,,,,,66696,FALSE +Jackson Browne,The Pretender,new,,,,,58627,FALSE +Jackson Dean,Don't Come Lookin',new,,,,,70150,FALSE +Jain,Come,new,,,,,50519,FALSE +Jain,Makeba,new,,,,,51014,FALSE +Jake Owen,American Country Love Song,new,,,,,59264,FALSE +Jake Owen,Barefoot Blue Jean Night,existing,,,,,,FALSE +Jake Owen,Beachin,existing,,,,,,FALSE +Jake Owen,Down to the Honkytonk,new,,,,,56310,FALSE +Jake Owen,I Was Jack (You Were Diane),new,,,,,55520,FALSE +Jake Owen,Made for You,new,,,,,61508,FALSE +James,Sit Down,existing,,,,,,FALSE +James Arthur,Can I Be Him,new,,,,,53329,FALSE +James Arthur,Car's Outside,new,,,,,77186,FALSE +James Arthur,Falling like the Stars,new,,,,,58438,FALSE +James Arthur,Impossible,existing,,,,,,FALSE +James Arthur,Naked,new,,,,,54683,FALSE +James Arthur,Say You Won't Let Go,new,,,,,51857,FALSE +James Arthur,Train Wreck,new,,,,,37378,FALSE +James Bay,Hold Back the River,new,,,,,48195,FALSE +James Bay,If You Ever Want to Be in Love,new,,,,,49987,FALSE +James Bay,Let It Go,new,,,,,48767,FALSE +James Bay,Us,new,,,,,61677,FALSE +James Blunt,1973,existing,,,,,,FALSE +James Blunt,Bonfire Heart,existing,,,,,,FALSE +James Blunt,Goodbye My Lover,existing,,,,,,FALSE +James Blunt,You're Beautiful,existing,,,,,,FALSE +James Brown,Cold Sweat,existing,,,,,,FALSE +James Brown,Get Up (I Feel Like Being A) Sex Machine,existing,,,,,,FALSE +James Brown,Get Up Offa That Thing,new,,,,,25377,FALSE +James Brown,I Got You (I Feel Good),existing,,,,,,FALSE +James Brown,It's a Man's Man's Man's World,new,,,,,14537,FALSE +James Brown,Living In America,existing,,,,,,FALSE +James Brown,Papa's Got A Brand New Bag,existing,,,,,,FALSE +James Morrison,Broken Strings,existing,,,,,,FALSE +James Morrison,I Won't Let You Go,existing,,,,,,FALSE +James Taylor,Carolina in My Mind,new,,,,,18065,FALSE +James Taylor,Don't Let Me Be Lonely Tonight,existing,,,,,,FALSE +James Taylor,Fire And Rain,existing,,,,,,FALSE +James Taylor,How Sweet It Is (To Be Loved By You),existing,,,,,,FALSE +James Taylor,Mexico,new,,,,,18062,FALSE +James Taylor,Shower The People,existing,,,,,,FALSE +James Taylor,Something (A Cappella),existing,,,,,,FALSE +James Taylor,Something in the Way She Moves,new,,,,,18061,FALSE +James Taylor,Sweet Baby James,existing,,,,,,FALSE +James Taylor,Walking Man,new,,,,,18064,FALSE +James Taylor,You've Got A Friend,existing,,,,,,FALSE +James Taylor,Your Smiling Face,new,,,,,18066,FALSE +Jamey Johnson,In Color,existing,,,,,,FALSE +Jamie Cullum,Don't Stop The Music,existing,,,,,,FALSE +Jamie Cullum,Everlasting Love,existing,,,,,,FALSE +Jamie Cullum,These Are the Days,existing,,,,,,FALSE +Jamie Cullum,What A Difference A Day Made,existing,,,,,,FALSE +Jamiroquai,Cosmic Girl,new,,,,,13196,FALSE +Jamiroquai,Little L,new,,,,,13227,FALSE +Jamiroquai & Jools Holland,I'm In the Mood for Love,existing,Jamiroquai,,,,,FALSE +Jane Mc Donald,Burt Bacharach Medley - Live At the London Paladium,existing,,,,,,FALSE +Jane's Addiction,Been Caught Stealing,new,,,,,69690,FALSE +Jane's Addiction,Jane Says,new,,,,,54061,FALSE +Jane's Addiction,Just Because,existing,,,,,,FALSE +Jane's Addiction,Mountain Song,new,,,,,35199,FALSE +Janelle Monae,I Like That,new,,,,,75958,FALSE +Janelle Monae,Make Me Feel,new,,,,,55217,FALSE +Janet Jackson,All for You,new,,,,,7801,FALSE +Janet Jackson,Alright,new,,,,,7233,FALSE +Janet Jackson,Control,new,,,,,29145,FALSE +Janet Jackson,Escapade,new,,,,,6098,FALSE +Janet Jackson,Let's Wait Awhile,new,,,,,35797,FALSE +Janet Jackson,Nasty,new,,,,,16238,FALSE +Janet Jackson,That's the Way Love Goes,new,,,,,6471,FALSE +Janet Jackson,Together Again,new,,,,,9725,FALSE +Janis Ian,At Seventeen,existing,,,,,,FALSE +Janis Joplin,Cry Baby,new,,,,,30822,FALSE +Janis Joplin,Me And Bobby McGee,existing,,,,,,FALSE +Janis Joplin,Move Over,existing,,,,,,FALSE +Janis Joplin,Piece Of My Heart,existing,,,,,,FALSE +Janis Joplin,Try (Just a Little Bit Harder),new,,,,,59915,FALSE +Japan,Quiet Life,existing,,,,,,FALSE +Jason Aldean,Big Green Tractor,new,,,,,23688,FALSE +Jason Aldean,Burnin' It Down,new,,,,,47932,FALSE +Jason Aldean,Dirt Road Anthem,new,,,,,63315,FALSE +Jason Aldean,Don't You Wanna Stay,existing,,,,,,FALSE +Jason Aldean,Got What I Got,new,,,,,60439,FALSE +Jason Aldean,She's Country,new,,,,,28837,FALSE +Jason Aldean,You Make It Easy,new,,,,,55139,FALSE +Jason Derulo,Acapulco,new,,,,,66838,FALSE +Jason Derulo,Savage Love (Laxed Siren Beat),new,,,,,61738,FALSE +Jason Derulo,Swalla,new,,,,,53097,FALSE +Jason Derulo,Take You Dancing,new,,,,,62251,FALSE +Jason Derulo,Talk Dirty,new,,,,,44865,FALSE +Jason Derulo,Trumpets,new,,,,,45825,FALSE +Jason Derulo,Want To Want Me,existing,,,,,,FALSE +Jason Derulo,Whatcha Say,new,,,,,24695,FALSE +Jason Isbell,24 Frames,new,,,,,76563,FALSE +Jason Isbell,Cover Me Up,new,,,,,67833,FALSE +Jason Mraz,93 Million Miles,new,,,,,40584,FALSE +Jason Mraz,Have It All,new,,,,,55643,FALSE +Jason Mraz,I Won't Give Up,existing,,,,,,FALSE +Jason Mraz,I'm Yours,existing,,,,,,FALSE +Jason Mraz,Love Someone,new,,,,,47405,FALSE +Jason Mraz,Lucky,existing,,,,,,FALSE +Jay Sean,2012 (It Ain't The End),new,,,,,33927,FALSE +Jay Sean,Do You Remember,new,,,,,26902,FALSE +Jay Sean,Down (Candle Light Remix),new,,,,,29640,FALSE +Jay Sean,Down,new,,,,,24210,FALSE +Jay Sean,Hit The Lights,new,,,,,36354,FALSE +Jay Sean,Ride It,new,,,,,14589,FALSE +Jay Sean,So High,new,,,,,42046,FALSE +Jay-Z,99 Problems,new,,,,,16260,FALSE +Jay-Z,Big Pimpin',new,,,,,55400,FALSE +Jay-Z,Can I Get a...,new,,,,,64572,FALSE +Jay-Z,Change Clothes,new,,,,,16258,FALSE +Jay-Z,Dirt Off Your Shoulder,new,,,,,16261,FALSE +Jay-Z,Empire State Of Mind,existing,,,,,,FALSE +Jay-Z,Excuse Me Miss,new,,,,,77954,FALSE +Jay-Z,Hard Knock Life (Ghetto Anthem),new,,,,,28302,FALSE +Jay-Z,Holy Grail,existing,,,,,,FALSE +Jay-Z,I Just Wanna Love You,existing,,,,,,FALSE +Jay-Z,Izzo (H.O.V.A.),new,,,,,78071,FALSE +Jay-Z,Nias in Paris,new,,,,,40143,FALSE +Jay-Z,Numb Encore,new,,,,,21592,FALSE +Jay-Z,Part II (On the Run),new,,,,,79831,FALSE +Jay-Z,Renegade,new,,,,,81711,FALSE +Jay-Z,Run This Town,new,,,,,24237,FALSE +Jay-Z,Young Forever,existing,,,,,,FALSE +Jazz Standards,(Back Home in) Pasadena,new,,,,,41083,FALSE +Jazz Standards,Don't Get Around Much Anymore,new,,,,,39270,FALSE +Jazz Standards,Frosty the Snowman,new,,,,,39281,FALSE +Jazz Standards,Have Yourself a Merry Little Christmas,new,,,,,26969,FALSE +Jazz Standards,Is You Is or Is You Ain't My Baby,new,,,,,81488,FALSE +Jazz Standards,Jingle Bells,new,,,,,39280,FALSE +Jazz Standards,Lullaby of Broadway,new,,,,,29810,FALSE +Jazz Standards,My Baby Just Cares for Me,new,,,,,55203,FALSE +Jazz Standards,Tangerine,new,,,,,41054,FALSE +Jazz Standards,That's All,new,,,,,39271,FALSE +Jazz Standards,Up a Lazy River,new,,,,,31472,FALSE +Jazzy Christmas,Frosty the Snowman,new,,,,,35159,FALSE +Jazzy Christmas,I'll Be Home for Christmas,new,,,,,54838,FALSE +Jazzy Christmas,Lindo Arbol De Navidad,new,,,,,34457,FALSE +Jazzy Christmas,Llego a mi medianoche,new,,,,,34346,FALSE +Jazzy Christmas,O Christmas Tree,new,,,,,24384,FALSE +Jazzy Gershwin,Embraceable You,existing,,,,,,FALSE +Jazzy Gershwin,Fascinatin Rhythm,existing,,,,,,FALSE +Jazzy Gershwin,I Got Rhythm,existing,,,,,,FALSE +Jazzy Gershwin,I'm Bidin My Time,existing,,,,,,FALSE +Jazzy Gershwin,I've Got A Crush On You,existing,,,,,,FALSE +Jazzy Gershwin,Let's Call The Whole Thing Off,existing,,,,,,FALSE +Jazzy Gershwin,Nice Work If You Can Get It,existing,,,,,,FALSE +Jazzy Gershwin,Of Thee I Sing,existing,,,,,,FALSE +Jazzy Gershwin,Oh Lady Be Good,existing,,,,,,FALSE +Jazzy Gershwin,S Wonderful,existing,,,,,,FALSE +Jazzy Gershwin,Someone To Watch Over Me,existing,,,,,,FALSE +Jazzy Gershwin,The Man I Love,existing,,,,,,FALSE +Jeff Beck,Going Down,new,,,,,49981,FALSE +Jeff Beck,Hi Ho Silver Lining,existing,,,,,,FALSE +Jeff Beck,I Ain't Superstitious,new,,,,,73092,FALSE +Jeff Beck,I Put A Spell On You,existing,,,,,,FALSE +Jeff Beck,Isolation,new,,,,,61226,FALSE +Jeff Beck,People Get Ready,existing,,,,,,FALSE +Jeff Buckley,Hallelujah (A Cappella),existing,,,,,,FALSE +Jeff Buckley,Hallelujah,existing,,,,,,FALSE +Jeff Buckley,Last Goodbye,new,,,,,64152,FALSE +Jeff Buckley,"Lover, You Should've Come Over",new,,,,,40990,FALSE +Jeff Buckley,So Real,existing,,,,,,FALSE +Jefferson Airplane,Somebody To Love,existing,,,,,,FALSE +Jefferson Airplane,White Rabbit,existing,,,,,,FALSE +Jefferson Starship,Find Your Way Back,new,,,,,28181,FALSE +Jefferson Starship,Jane,new,,,,,56450,FALSE +Jelly Roll,Need a Favor,new,,,,,73215,FALSE +Jelly Roll,Save Me,new,,,,,62024,FALSE +Jelly Roll,Son of a Sinner,new,,,,,67398,FALSE +Jennifer Hudson,I Love You I Do,existing,,,,,,FALSE +Jennifer Hudson,If This Isn't Love,existing,,,,,,FALSE +Jennifer Hudson,Spotlight,existing,,,,,,FALSE +Jennifer Lopez,Ain't Your Mama,new,,,,,51253,FALSE +Jennifer Lopez,Dance Again,existing,,,,,,FALSE +Jennifer Lopez,I'm Real,new,,,,,7778,FALSE +Jennifer Lopez,Jenny from the Block,new,,,,,14446,FALSE +Jennifer Lopez,Let's Get Loud,existing,,,,,,FALSE +Jennifer Lopez,Love Don't Cost a Thing,new,,,,,7732,FALSE +Jennifer Lopez,On The Floor,existing,,,,,,FALSE +Jerome Kern,All The Things You Are,existing,,,,,,FALSE +Jerry Lee Lewis,Great Balls Of Fire,existing,,,,,,FALSE +Jerry Lee Lewis,Rockin My Life Away,existing,,,,,,FALSE +Jerry Lee Lewis,Whole Lotta Shakin Goin On,existing,,,,,,FALSE +Jersey Boys,Jersey Boys Medley (A Cappella),existing,The Jersey Boys,,,,,FALSE +Jess Glynne,Don't Be So Hard On Yourself,new,,,,,49713,FALSE +Jess Glynne,Hold My Hand,existing,,,,,,FALSE +Jess Glynne,I'll Be There,new,,,,,55631,FALSE +Jess Glynne,Take Me Home,new,,,,,50126,FALSE +Jessica Rabbit,Why Don't You Do Right ?,existing,,,,,,FALSE +Jessie J,Bang Bang (acoustic),new,,,,,48762,FALSE +Jessie J,Do It Like A Dude,new,,,,,35652,FALSE +Jessie J,Domino,existing,,,,,,FALSE +Jessie J,Flashlight,existing,,,,,,FALSE +Jessie J,It's My Party,existing,,,,,,FALSE +Jessie J,Masterpiece,new,,,,,48184,FALSE +Jessie J,Price Tag,existing,,,,,,FALSE +Jessie J,Who You Are,new,,,,,35694,FALSE +Jessie Murph,How Could You,new,,,,,78645,FALSE +Jessie Murph,Wild Ones,new,,,,,77732,FALSE +Jesus Jones,Right Here Right Now,new,,,,,36265,FALSE +Jet,Are You Gonna Be My Girl,existing,,,,,,FALSE +Jet,Cold Hard Bitch,new,,,,,15713,FALSE +Jet,Look What You've Done,existing,,,,,,FALSE +Jethro Tull,Aqualung,existing,,,,,,FALSE +Jethro Tull,Bungle in the Jungle,new,,,,,56035,FALSE +Jethro Tull,Cross-Eyed Mary,new,,,,,50831,FALSE +Jethro Tull,Living in the Past,new,,,,,56107,FALSE +Jethro Tull,Locomotive Breath,existing,,,,,,FALSE +Jethro Tull,Skating Away (On the Thin Ice of the New Day),new,,,,,69415,FALSE +Jethro Tull,Thick As a Brick (Edit No. 1),new,,,,,64144,FALSE +Jethro Tull,Too Old to Rock 'n' Roll Too Young to Die,new,,,,,71784,FALSE +Jewel,Foolish Games,new,,,,,8458,FALSE +Jewel,Who Will Save Your Soul,new,,,,,11035,FALSE +Jewel,You Were Meant for Me,new,,,,,11209,FALSE +Jill Scott,A Long Walk,existing,,,,,,FALSE +Jill Scott,Golden,new,,,,,16300,FALSE +Jill Scott,He Loves Me,existing,,,,,,FALSE +Jill Scott,It's Love,new,,,,,18158,FALSE +Jilted John,Jilted John,existing,,,,,,FALSE +Jim Capaldi,Love Hurts,existing,,,,,,FALSE +Jim Croce,Bad Bad Leroy Brown,existing,,,,,,FALSE +Jim Croce,I'll Have To Say I Love You In a Song,existing,,,,,,FALSE +Jim Croce,Time In A Bottle,existing,,,,,,FALSE +Jim Reeves,I Won't Forget You,existing,,,,,,FALSE +Jim Reeves,Welcome To My World,existing,,,,,,FALSE +Jimi Hendrix,All Along the Watchtower,new,,,,,13786,FALSE +Jimi Hendrix,Are You Experienced,new,,,,,67136,FALSE +Jimi Hendrix,Crosstown Traffic,existing,,,,,,FALSE +Jimi Hendrix,Fire,new,,,,,47323,FALSE +Jimi Hendrix,Foxy Lady,new,,,,,41920,FALSE +Jimi Hendrix,Hey Joe,new,,,,,25332,FALSE +Jimi Hendrix,Little Wing,new,,,,,28805,FALSE +Jimi Hendrix,Manic Depression,new,,,,,49275,FALSE +Jimi Hendrix,Purple Haze,new,,,,,17518,FALSE +Jimi Hendrix,Voodoo Child (Slight Return),new,,,,,48123,FALSE +Jimi Hendrix,Wind Cries Mary,existing,,The Wind Cries Mary,,,,FALSE +Jimmy Boyd,I Saw Mommy Kissing Santa Claus (A Cappella),existing,,,,,,FALSE +Jimmy Buffett,"Changes in Latitudes, Changes in Attitudes",new,,,,,16314,FALSE +Jimmy Buffett,Cheeseburger In Paradise,existing,,,,,,FALSE +Jimmy Buffett,Come Monday,new,,,,,9807,FALSE +Jimmy Buffett,Margaritaville,existing,,,,,,FALSE +Jimmy Cliff,Higher And Higher,existing,,,,,,FALSE +Jimmy Cliff,I Can See Clearly Now,existing,,,,,,FALSE +Jimmy Cliff,One More (Live Version),existing,,,,,,FALSE +Jimmy Crawford,I Go To Rio,existing,,,,,,FALSE +Jimmy Eat World,Bleed American,existing,,,,,,FALSE +Jimmy Eat World,Pain,existing,,,,,,FALSE +Jimmy Eat World,The Middle,existing,,,,,,FALSE +Jimmy Ruffin,What Becomes of the Broken Hearted,existing,,,,,,FALSE +Jo Dee Messina,Heads Carolina Tails California,existing,,,,,,FALSE +Joan Jett,Bad Reputation,existing,,,,,,FALSE +Joan Jett,Cherry Bomb,new,,,,,60601,FALSE +Joan Jett,Crimson and Clover,new,,,,,18161,FALSE +Joan Jett,I Hate Myself For Loving You,existing,,,,,,FALSE +Joan Jett,I Love Rock 'N' Roll,existing,,,,,,FALSE +Joan Jett,Love Hurts,new,,,,,72047,FALSE +Joao Gilberto,Aguas de Marco,new,,,,,63291,FALSE +Joao Gilberto,Desafinado,existing,,,,,,FALSE +Joao Gilberto,Doralice,new,,,,,58868,FALSE +Joao Gilberto,O barquinho,new,,,,,74380,FALSE +Joao Gilberto,O pato,new,,,,,63238,FALSE +Jocelyn Brown,Somebody Else's Guy,existing,,,,,,FALSE +Joe Arroyo,La rebelion,new,,,,,67439,FALSE +Joe Bonamassa,Asking Around for You,new,,,,,81055,FALSE +Joe Bonamassa,Bird on a Wire,new,,,,,80674,FALSE +Joe Bonamassa,Black Night,new,,,,,65222,FALSE +Joe Bonamassa,Blues Deluxe,new,,,,,62520,FALSE +Joe Bonamassa,Different Shades of Blue,new,,,,,57780,FALSE +Joe Bonamassa,Django,existing,,,,,,FALSE +Joe Bonamassa,Drive,new,,,,,67763,FALSE +Joe Bonamassa,Driving Towards the Daylight,new,,,,,67956,FALSE +Joe Bonamassa,Dust Bowl,new,,,,,65845,FALSE +Joe Bonamassa,Give Me One Reason,new,,,,,75016,FALSE +Joe Bonamassa,Going Down (live at the Greek Theatre),new,,,,,79742,FALSE +Joe Bonamassa,I'll Play the Blues for You (live),new,,,,,66037,FALSE +Joe Bonamassa,If Heartaches Were Nickels,new,,,,,71740,FALSE +Joe Bonamassa,Just Got Paid,new,,,,,78776,FALSE +Joe Bonamassa,Let The Good Times Roll (live at the Greek Theatre),new,,,,,79663,FALSE +Joe Bonamassa,Lonesome Road Blues,new,,,,,80216,FALSE +Joe Bonamassa,Mountain Time,new,,,,,74764,FALSE +Joe Bonamassa,Sloe Gin,new,,,,,51636,FALSE +Joe Bonamassa,So Many Roads,new,,,,,80037,FALSE +Joe Bonamassa,Stop!,new,,,,,56140,FALSE +Joe Bonamassa,The Ballad of John Henry,new,,,,,65691,FALSE +Joe Bonamassa,The Thrill Is Gone (live),new,,,,,70028,FALSE +Joe Bonamassa,This Train,new,,,,,81064,FALSE +Joe Bonamassa,Twenty-Four Hour Blues,new,,,,,80671,FALSE +Joe Bonamassa,You Upset Me Baby,existing,,,,,,FALSE +Joe Bonamassa,Your Heart Is as Black as Night,new,,,,,59167,FALSE +Joe Cocker,Feelin' Alright,new,,,,,30061,FALSE +Joe Cocker,Unchain My Heart,existing,,,,,,FALSE +Joe Cocker,Up Where We Belong,existing,,,,,,FALSE +Joe Cocker,With A Little Help From My Friends,existing,,,,,,FALSE +Joe Cocker,You Are So Beautiful,existing,,,,,,FALSE +Joe Cocker,You Can Leave Your Hat On,new,,,,,13157,FALSE +Joe Jackson,Different for Girls,existing,,,,,,FALSE +Joe Jackson,Is She Really Going Out With Him ?,existing,,,,,,FALSE +Joe Jackson,Steppin' Out,existing,,,,,,FALSE +Joe Jackson,You Can't Get What You Want (Till You Know What You Want),existing,,,,,,FALSE +Joe Mcelderry,Ambitions,existing,,,,,,FALSE +Joe Nichols,Brokenheartsville,existing,,,,,,FALSE +Joe Nichols,Tequila Makes Her Clothes Fall Off,existing,,,,,,FALSE +Joe Ramone,What a Wonderful World,existing,,,,,,FALSE +Joe Walsh,A Life of Illusion,new,,,,,80495,FALSE +Joe Walsh,All Night Long,existing,,,,,,FALSE +Joe Walsh,Life's Been Good,new,,,,,25139,FALSE +Joe Walsh,Rocky Mountain Way,new,,,,,16343,FALSE +John Cougar Mellencamp,Jack & Diane,existing,,,,,,FALSE +John Denver,Annie's Song,existing,,,,,,FALSE +John Denver,Back Home Again,existing,,,,,,FALSE +John Denver,Follow Me,new,,,,,18252,FALSE +John Denver,For Baby (For Bobbie),new,,,,,73727,FALSE +John Denver,Goodbye Again,new,,,,,78706,FALSE +John Denver,Leaving on a Jet Plane,new,,,,,14099,FALSE +John Denver,Rocky Mountain High,new,,,,,18246,FALSE +John Denver,Sunshine On My Shoulders,existing,,,,,,FALSE +John Denver,Take Me Home,existing,,,,,,FALSE +John Denver,Thank God I'm A Country Boy,existing,,,,,,FALSE +John Goodman, Dan Aykroyd & The Blues Brothers,existing,,,,,,FALSE +John Hiatt,Feels Like Rain,new,,,,,75432,FALSE +John Hiatt,Have a Little Faith in Me,new,,,,,40581,FALSE +John Lee Hooker,Boom Boom,new,,,,,11262,FALSE +John Legend,All Of Me,existing,,,,,,FALSE +John Legend,Conversations in the Dark,new,,,,,73774,FALSE +John Legend,Love Me Now,new,,,,,52232,FALSE +John Legend,Ordinary People,existing,,,,,,FALSE +John Legend,Tonight (Best You Ever Had),new,,,,,41244,FALSE +John Legend,You And I (Nobody In The World),existing,,,,,,FALSE +John Lennon,#9 Dream,new,,,,,18263,FALSE +John Lennon,(Just Like) Starting Over,new,,,,,18270,FALSE +John Lennon,Beautiful Boy (Darling Boy),new,,,,,33297,FALSE +John Lennon,Happy Christmas (War Is Over),existing,,,,,,FALSE +John Lennon,Imagine,existing,,,,,,FALSE +John Lennon,Instant Karma! (We All Shine On),new,,,,,12631,FALSE +John Lennon,Jealous Guy,new,,,,,14031,FALSE +John Lennon,Watching the Wheels,new,,,,,18268,FALSE +John Lennon,Whatever Gets You Thru the Night,new,,,,,18275,FALSE +John Lennon,Woman,existing,,,,,,FALSE +John Mayer,Crossroads,existing,,,,,,FALSE +John Mayer,Daughters,existing,,,,,,FALSE +John Mayer,Gravity,new,,,,,22863,FALSE +John Mayer,Half Of My Heart,existing,,,,,,FALSE +John Mayer,Heartbreak Warfare,existing,,,,,,FALSE +John Mayer,New Light,new,,,,,55595,FALSE +John Mayer,Slow Dancing in a Burning Room,new,,,,,26019,FALSE +John Mayer,Waiting On the World to Change,new,,,,,14600,FALSE +John Mayer,XO,new,,,,,81504,FALSE +John Mayer,Your Body Is A Wonderland,existing,,,,,,FALSE +John Mellencamp,Authority Song,new,,,,,42500,FALSE +John Mellencamp,Cherry Bomb,new,,,,,38225,FALSE +John Mellencamp,Hurts So Good,existing,,,,,,FALSE +John Mellencamp,Jack & Diane,new,,,,,16352,FALSE +John Mellencamp,Lonely Ol' Night,new,,,,,61992,FALSE +John Mellencamp,Paper in Fire,new,,,,,56008,FALSE +John Mellencamp,Pink Houses,new,,,,,41576,FALSE +John Mellencamp,R.O.C.K. In The U.S.A.,existing,,,,,,FALSE +John Mellencamp,Small Town,existing,,,,,,FALSE +John Newman,Love Me Again,existing,,,,,,FALSE +John Prine,Angel From Montgomery,new,,,,,58873,FALSE +John Prine,Clay Pigeons,new,,,,,76420,FALSE +John Prine,In Spite of Ourselves,new,,,,,51434,FALSE +John Prine,Souvenirs,new,,,,,63628,FALSE +John Prine,That's the Way That the World Goes Round,new,,,,,61667,FALSE +John Rowles,If I Only Had Time,existing,,,,,,FALSE +John Travolta,Greased Lightning,existing,,,,,,FALSE +John Williamson,Waltzing Matilda,existing,,,,,,FALSE +Johnny & The Hurricanes,Red River Rock,existing,,,,,,FALSE +Johnny Burnette,You're Sixteen,existing,,,,,,FALSE +Johnny Cash,(Ghost) Riders in the Sky,new,,,,,11584,FALSE +Johnny Cash,Boy Named Sue,existing,,,,,,FALSE +Johnny Cash,Don't Take Your Guns to Town,new,,,,,64346,FALSE +Johnny Cash,Folsom Prison Blues,existing,,,,,,FALSE +Johnny Cash,God's Gonna Cut You Down,new,,,,,52625,FALSE +Johnny Cash,Hurt,new,,,,,14438,FALSE +Johnny Cash,I Walk The Line,existing,,,,,,FALSE +Johnny Cash,I've Been Everywhere,existing,,,,,,FALSE +Johnny Cash,One,existing,,,,,,FALSE +Johnny Cash,Ring Of Fire,existing,,,,,,FALSE +Johnny Cash,Thing Called Love,existing,,,,,,FALSE +Johnny Green,Body and Soul,existing,,,,,,FALSE +Johnny Kidd & The Pirates,Shakin' All Over,existing,,,,,,FALSE +Johnny Mathis,Misty,existing,,,,,,FALSE +Johnny Mathis,Send In the Clowns,existing,,,,,,FALSE +Johnny Mathis & Deniece Williams,Too Much,existing,Johnny Mathis,,,,,FALSE +Johnny Nash,Cupid,existing,,,,,,FALSE +Johnny Nash,I Can See Clearly Now,existing,,,,,,FALSE +Johnny Paycheck,Take This Job And Shove It,existing,,,,,,FALSE +Johnny Preston,Running Bear,existing,,,,,,FALSE +Johnny Ray,Just Walkin' In the Rain,existing,,,,,,FALSE +Johnny Tillotson,Poetry In Motion,existing,,,,,,FALSE +Joji,Die for You,new,,,,,72435,FALSE +Joji,Glimpse of Us,new,,,,,70038,FALSE +Joji,Sanctuary,new,,,,,75959,FALSE +Joji,Slow Dancing in the Dark,new,,,,,69129,FALSE +Joji,Yeah Right,new,,,,,77237,FALSE +Jon Bellion,All Time Low,new,,,,,52511,FALSE +Jon Pardi,Dirt on My Boots,new,,,,,52117,FALSE +Jon Pardi,Head Over Boots,new,,,,,50183,FALSE +Jon Pardi,Heartache Medication,new,,,,,58560,FALSE +Jon Pardi,Heartache on the Dance Floor,new,,,,,53260,FALSE +Jon Pardi,Night Shift,new,,,,,56521,FALSE +Jona Lewie,Stop the Cavalry,existing,,,,,,FALSE +Jonas Blue,Fast Car,new,,,,,50559,FALSE +Jonas Blue,Mama,new,,,,,53717,FALSE +Jonas Blue,Perfect Strangers,new,,,,,51649,FALSE +Jonas Blue,Rise,new,,,,,56291,FALSE +Jonas Brothers,Burnin' Up,new,,,,,21320,FALSE +Jonas Brothers,Only Human,new,,,,,59158,FALSE +Jonas Brothers,Sucker,new,,,,,57730,FALSE +Jonas Brothers,What a Man Gotta Do,new,,,,,60451,FALSE +Joni Mitchell,All I Want,new,,,,,78280,FALSE +Joni Mitchell,Big Yellow Taxi,new,,,,,16390,FALSE +Joni Mitchell,Blue,existing,,,,,,FALSE +Joni Mitchell,Both Sides Now (2000 version),new,,,,,14608,FALSE +Joni Mitchell,"Both Sides, Now",new,,,,,71196,FALSE +Jools Holland & Prince Buster,Enjoy YourSelf,existing,Jools Holland,,,,,FALSE +Jools Holland & Rumer,Acc-Cent-Tchu-Ate the Positive,existing,Jools Holland,,,,,FALSE +Jordin Sparks,No Air,new,,,,,16813,FALSE +Joseph & The Amazing Technicolor Dreamcoat,Any Dream Will Do,existing,,,,,,FALSE +Joseph Kosma,Autumn Leaves,existing,,,,,,FALSE +Josh Groban,You Are Loved (Don't Give Up),existing,,,,,,FALSE +Josh Groban,You Raise Me Up,existing,,,,,,FALSE +Josh Turner,Hometown Girl,new,,,,,53218,FALSE +Josh Turner,Time Is Love,existing,,,,,,FALSE +Josh Turner,Why Don't We Just Dance,new,,,,,25355,FALSE +Josh Turner,Would You Go With Me,existing,,,,,,FALSE +Josh Turner,Your Man,existing,,,,,,FALSE +Joss Stone,Don't Cha Wanna Ride,existing,,,,,,FALSE +Joss Stone,Right To Be Wrong,existing,,,,,,FALSE +Joss Stone,Super Duper Love,existing,,,,,,FALSE +Journey,After the Fall,new,,,,,65417,FALSE +Journey,Any Way You Want It,existing,,,,,,FALSE +Journey,Don't Stop Believing,existing,,,,,,FALSE +Journey,Escape,new,,,,,67492,FALSE +Journey,Faithfully,new,,,,,19318,FALSE +Journey,Feeling That Way,new,,,,,57850,FALSE +Journey,I'll Be Alright Without You,new,,,,,62412,FALSE +Journey,Just the Same Way,new,,,,,62701,FALSE +Journey,Lights,existing,,,,,,FALSE +Journey,"Lovin', Touchin', Squeezin'",new,,,,,18342,FALSE +Journey,Open Arms,new,,,,,11231,FALSE +Journey,Patiently,new,,,,,48094,FALSE +Journey,Send Her My Love,new,,,,,18348,FALSE +Journey,Separate Ways (Worlds Apart),existing,,,,,,FALSE +Journey,Stone In Love,existing,,,,,,FALSE +Journey,The Party's Over (Hopelessly in Love),new,,,,,64991,FALSE +Journey,Wheel In The Sky,existing,,,,,,FALSE +Journey,Who's Crying Now,new,,,,,18350,FALSE +Joy Division,Atmosphere,new,,,,,76424,FALSE +Joy Division,Disorder,new,,,,,75801,FALSE +Joy Division,Love Will Tear Us Apart,new,,,,,37605,FALSE +Joy Division,She's Lost Control,new,,,,,38090,FALSE +Joy Division,Transmission,new,,,,,67007,FALSE +Juan Luis Guerra,Bachata En Fukuoka,existing,,,,,,FALSE +Judas Priest,Breaking The Law,existing,,,,,,FALSE +Judas Priest,Living After Midnight,new,,,,,46359,FALSE +Judas Priest,Painkiller,new,,,,,63418,FALSE +Judas Priest,You've Got Another Thing Comin',new,,,,,52173,FALSE +Judy Clay & William Bell,Private Number,existing,,,,,,FALSE +Judy Garland,Get Happy,existing,,,,,,FALSE +Julia Michaels,Heaven,new,,,,,55198,FALSE +Julia Michaels,Hurt Somebody,new,,,,,56054,FALSE +Julia Michaels,Issues,new,,,,,52880,FALSE +Julia Michaels,What a Time,new,,,,,59514,FALSE +Julie London,Cry Me a River,existing,,,,,,FALSE +Jungkook (),Seven,new,Jungkook,,,,76203,FALSE +Jungkook (),Standing Next to You,new,Jungkook,,,,78189,FALSE +Junior Mervin,Police & Thieves,existing,,,,,,FALSE +Junior Walker,Road Runner,existing,,,,,,FALSE +Justin Bieber,As Long As You Love Me,existing,,,,,,FALSE +Justin Bieber,Baby,existing,,,,,,FALSE +Justin Bieber,Beauty And A Beat,existing,,,,,,FALSE +Justin Bieber,Boyfriend,existing,,,,,,FALSE +Justin Bieber,Ghost,new,,,,,66897,FALSE +Justin Bieber,Love Yourself,new,,,,,50244,FALSE +Justin Bieber,Peaches,new,,,,,64270,FALSE +Justin Bieber,Sorry,new,,,,,50130,FALSE +Justin Bieber,What Do You Mean,new,,,,,49767,FALSE +Justin Hayward,Forever Autumn,existing,,,,,,FALSE +Justin Hayward & John Lodge,Blue Guitar,existing,Justin Hayward,,,,,FALSE +Justin Timberlake,Cry Me a River,existing,,,,,,FALSE +Justin Timberlake,Mirrors,existing,,,,,,FALSE +Justin Timberlake,Rock Your Body,existing,,,,,,FALSE +Justin Timberlake,Senorita,existing,,,,,,FALSE +Justin Timberlake,Sexyback,existing,,,,,,FALSE +K'NAAN,Wavin Flag,existing,,,,,,FALSE +K'NAAN,Bang Bang,new,K'NAAN,,,,33284,FALSE +K'NAAN,Is Anybody Out There,new,K'NAAN,,,,40367,FALSE +K'NAAN,Wavin' Flag,new,K'NAAN,,,,25807,FALSE +K.C. And The Sunshine Band,"(Shake, Shake, Shake) Shake Your Booty",existing,KC & The Sunshine Band,,,,,FALSE +K.C. And The Sunshine Band,Boogie Shoes,existing,KC & The Sunshine Band,,,,,FALSE +K.C. And The Sunshine Band,Get Down Tonight,existing,KC & The Sunshine Band,,,,,FALSE +K.C. And The Sunshine Band,That's The Way I Like It,existing,KC & The Sunshine Band,,,,,FALSE +K.Flay,Blood in the Cut,new,,,,,71800,FALSE +K.Flay,High Enough,new,,,,,74140,FALSE +KC & The Sunshine Band,"(Shake, Shake, Shake) Shake Your Booty",new,,,,,13985,FALSE +KC & The Sunshine Band,Boogie Shoes,new,,,,,39611,FALSE +KC & The Sunshine Band,Get Down Tonight,new,,,,,15581,FALSE +KC & The Sunshine Band,I'm Your Boogie Man,new,,,,,7519,FALSE +KC & The Sunshine Band,That's the Way (I Like It),new,,,,,17517,FALSE +KT Tunstall,Black Horse And The Cherry Tree,existing,,,,,,FALSE +KT Tunstall,Suddenly I See,existing,,,,,,FALSE +Kacey Musgraves,Biscuits,existing,,,,,,FALSE +Kacey Musgraves,Butterflies,new,,,,,55470,FALSE +Kacey Musgraves,Deeper Well,new,,,,,80487,FALSE +Kacey Musgraves,Follow Your Arrow,existing,,,,,,FALSE +Kacey Musgraves,Golden Hour,new,,,,,56405,FALSE +Kacey Musgraves,Merry Go Round,existing,,,,,,FALSE +Kacey Musgraves,Rainbow,new,,,,,57299,FALSE +Kacey Musgraves,Slow Burn,new,,,,,56027,FALSE +Kaiser Chiefs,I Predict a Riot,new,,,,,5381,FALSE +Kaiser Chiefs,Ruby,new,,,,,11746,FALSE +Kaleo,All the Pretty Girls,new,,,,,75455,FALSE +Kaleo,Broken Bones,new,,,,,70278,FALSE +Kaleo,I Can't Go On Without You,new,,,,,57962,FALSE +Kaleo,No Good,new,,,,,57785,FALSE +Kaleo,Way Down We Go,new,,,,,51461,FALSE +Kali Uchis,After the Storm,new,,,,,72723,FALSE +Kali Uchis,Dead to Me,new,,,,,75867,FALSE +Kali Uchis,Igual que un angel,new,,,,,79620,FALSE +Kali Uchis,Moonlight,new,,,,,75449,FALSE +Kali Uchis,Telepatia,new,,,,,64621,FALSE +Kameron Marlowe,Girl on Fire,new,,,,,73904,FALSE +Kameron Marlowe,Giving You Up,new,,,,,70209,FALSE +Kane Brown,Be Like That,new,,,,,63015,FALSE +Kane Brown,Heaven,new,,,,,55153,FALSE +Kane Brown,Miles on It,new,,,,,81259,FALSE +Kane Brown,One Thing Right,new,,,,,59036,FALSE +Kane Brown,What Ifs,new,,,,,53355,FALSE +Kansas,Carry On Wayward Son,existing,,,,,,FALSE +Kansas,Dust In The Wind,existing,,,,,,FALSE +Kansas,Point of Know Return,new,,,,,61571,FALSE +Kansas,Portrait (He Knew),new,,,,,69302,FALSE +Kanye West,All Falls Down,new,,,,,16435,FALSE +Kanye West,Bound 2,new,,,,,67694,FALSE +Kanye West,Carnival,new,,,,,79959,FALSE +Kanye West,Flashing Lights,new,,,,,18902,FALSE +Kanye West,Heartless,new,,,,,21553,FALSE +Kanye West,Runaway,new,,,,,38955,FALSE +Karen Souza,Bette Davis Eyes,existing,,,,,,FALSE +Karen Souza,Can't Help Falling In Love,existing,,,,,,FALSE +Karen Souza,Every Breath You Take,existing,,,,,,FALSE +Karen Souza,Have You Ever Seen The Rain,existing,,,,,,FALSE +Kasabian,Club Foot,new,,,,,36927,FALSE +Kasabian,Fire,new,,,,,23277,FALSE +Kasabian,Underdog,new,,,,,23489,FALSE +Kate Bush,Army Dreamers,new,,,,,31605,FALSE +Kate Bush,Babooshka,new,,,,,21964,FALSE +Kate Bush,Cloudbusting,new,,,,,41703,FALSE +Kate Bush,Running Up That Hill,existing,,,,,,FALSE +Kate Bush,Wuthering Heights,existing,,,,,,FALSE +Kathy Mattea,Eighteen Wheels & a Dozen Roses,existing,,,,,,FALSE +Katie Melua,Closest Thing to Crazy,existing,,,,,,FALSE +Katie Melua,If You Were a Sailboat,existing,,,,,,FALSE +Katie Melua,If the Lights Go Out,existing,,,,,,FALSE +Katie Melua,Nine Million Bicycles,new,,,,,5376,FALSE +Katie Melua,Wonderful Life,new,,,,,49810,FALSE +Katrina & The Waves,Walking On Sunshine,existing,,,,,,FALSE +Katrina And The Waves,That's The Way,existing,Katrina & The Waves,,,,,FALSE +Katy Perry,California Gurls,existing,,,,,,FALSE +Katy Perry,Dark Horse feat. Juicy J,existing,,,,,,FALSE +Katy Perry,Firework,existing,,,,,,FALSE +Katy Perry,Hot 'N' Cold,existing,,,,,,FALSE +Katy Perry,I Kissed A Girl,existing,,,,,,FALSE +Katy Perry,Last Friday Night,existing,,,,,,FALSE +Katy Perry,One That Got Away,existing,,,,,,FALSE +Katy Perry,Part Of Me,existing,,,,,,FALSE +Katy Perry,Roar,existing,,,,,,FALSE +Katy Perry,Teenage Dream,existing,,,,,,FALSE +Kay Starr,Rock & Roll Waltz,existing,,,,,,FALSE +Kc & The Sunshine Band,Give it Up,existing,KC & The Sunshine Band,,,,,FALSE +Kd Lang,Constant Craving,existing,,,,,,FALSE +Keane,Disconnected,existing,,,,,,FALSE +Keane,Everybody's Changing,existing,,,,,,FALSE +Keane,Fly to Me,existing,,,,,,FALSE +Keane,Somewhere Only We Know,existing,,,,,,FALSE +Keane,This Is the Last Time,new,,,,,31051,FALSE +Keith Richards & Eric Clapton,Key to the Highway,existing,,,,,,FALSE +Keith Sweat,Nobody,new,,,,,34084,FALSE +Keith Sweat,Twisted,new,,,,,34204,FALSE +Keith Urban,Blue Ain't Your Color,new,,,,,51632,FALSE +Keith Urban,Days Go By,existing,,,,,,FALSE +Keith Urban,Long Hot Summer,new,,,,,47271,FALSE +Keith Urban,One Too Many,new,,,,,62443,FALSE +Keith Urban,Somebody Like You,new,,,,,83729,FALSE +Keith Urban,Stupid Boy,existing,,,,,,FALSE +Keith Urban,The Fighter,new,,,,,51328,FALSE +Keith Urban,We Were Us,existing,,,,,,FALSE +Keith Urban,You'll Think Of Me,existing,,,,,,FALSE +Keith Whitley,Don't Close Your Eyes,new,,,,,14724,FALSE +Keith Whitley,When You Say Nothing At All,new,,,,,14733,FALSE +Kelis,Milkshake,new,,,,,13535,FALSE +Kelis,Trick Me,new,,,,,17159,FALSE +Kelly Clarkson,Because of You,new,,,,,5583,FALSE +Kelly Clarkson,Behind These Hazel Eyes,new,,,,,5580,FALSE +Kelly Clarkson,Breakaway,existing,,,,,,FALSE +Kelly Clarkson,Miss Independent,existing,,,,,,FALSE +Kelly Clarkson,My Life Would Suck Without You,existing,,,,,,FALSE +Kelly Clarkson,Piece By Piece,new,,,,,48882,FALSE +Kelly Clarkson,Since U Been Gone,existing,,,,,,FALSE +Kelly Clarkson,Stronger (What Doesn't Kill You),new,,,,,39638,FALSE +Kelly Clarkson,Underneath The Tree,new,,,,,45535,FALSE +Kelly Clarson,Heartbeat Song,existing,Kelly Clarkson,,,,,FALSE +Kelly Rowland,Commander,new,,,,,31140,FALSE +Kelly Rowland,Like This,new,,,,,12211,FALSE +Kelly Rowland,Motivation,existing,,,,,,FALSE +Kelly Rowland,Work (Freemasons Radio Mix),existing,,,,,,FALSE +Kelsea Ballerini,Half of My Hometown,new,,,,,60999,FALSE +Kelsea Ballerini,I Quit Drinking,new,,,,,65457,FALSE +Kelsea Ballerini,If You Go Down (I'm Goin' Down Too),new,,,,,71949,FALSE +Kelsea Ballerini,Miss Me More,new,,,,,54572,FALSE +Kelsea Ballerini,Peter Pan,new,,,,,51385,FALSE +Kendrick Lamar,All the Stars,new,,,,,56176,FALSE +Kendrick Lamar,Alright,new,,,,,74095,FALSE +Kendrick Lamar,Auntie Diaries,new,,,,,69572,FALSE +Kendrick Lamar,Backseat Freestyle,new,,,,,78678,FALSE +Kendrick Lamar,Bitch Don't Kill My Vibe,new,,,,,44995,FALSE +Kendrick Lamar,DNA.,new,,,,,75747,FALSE +Kendrick Lamar,Euphoria,new,,,,,81370,FALSE +Kendrick Lamar,HUMBLE.,new,,,,,53612,FALSE +Kendrick Lamar,King Kunta,new,,,,,63986,FALSE +Kendrick Lamar,Love,new,,,,,82261,FALSE +Kendrick Lamar,Meet the Grahams,new,,,,,81503,FALSE +Kendrick Lamar,Money Trees,new,,,,,74929,FALSE +Kendrick Lamar,N95,new,,,,,70456,FALSE +Kendrick Lamar,Not Like Us,new,,,,,81318,FALSE +Kendrick Lamar,Poetic Justice,new,,,,,43476,FALSE +Kendrick Lamar,Silent Hill,new,,,,,69696,FALSE +Kendrick Lamar,Swimming Pools (Drank),new,,,,,54918,FALSE +Kendrick Lamar,i,new,,,,,48102,FALSE +Kendrick Lamar,m.A.A.d city,new,,,,,78855,FALSE +Kenny Chesney,All the Pretty Girls,new,,,,,55067,FALSE +Kenny Chesney,American Kids,existing,,,,,,FALSE +Kenny Chesney,Come Over,existing,,,,,,FALSE +Kenny Chesney,Get Along,new,,,,,55527,FALSE +Kenny Chesney,I Go Back,new,,,,,8395,FALSE +Kenny Chesney,She Thinks My Tractor's Sexy,new,,,,,8781,FALSE +Kenny Chesney,Summertime,new,,,,,16462,FALSE +Kenny Chesney,When the Sun Goes Down,new,,,,,5799,FALSE +Kenny Chesney,Wild Child,existing,,,,,,FALSE +Kenny Chesney,You And Tequila,existing,,,,,,FALSE +Kenny Loggins,Footloose,existing,,,,,,FALSE +Kenny Loggins,Meet Me Half Way,new,,,,,65045,FALSE +Kenny Loggins,This Is It (Duet),existing,,,,,,FALSE +Kenny Rogers,Coward of the County,new,,,,,21073,FALSE +Kenny Rogers,Gambler,existing,,,,,,FALSE +Kenny Rogers,Lady,existing,,,,,,FALSE +Kenny Rogers,Ruby,existing,,,,,,FALSE +Kenny Rogers,We've Got Tonight,new,,,,,11427,FALSE +Kesha,Backstabber,new,,,,,82385,FALSE +Kesha,Blow,new,,,,,36302,FALSE +Kesha,Cannibal,new,,,,,35446,FALSE +Kesha,Die Young,existing,,,,,,FALSE +Kesha,TiK ToK,new,,,,,25855,FALSE +Kesha,We R Who We R,new,,,,,34910,FALSE +Kesha,Your Love Is My Drug,new,,,,,28197,FALSE +Keyshia Cole,Let It Go,new,,,,,14458,FALSE +Keyshia Cole,Love,new,,,,,14406,FALSE +Khalid,Better,new,,,,,58270,FALSE +Khalid,Location,new,,,,,53533,FALSE +Khalid,Silence,new,,,,,54566,FALSE +Khalid,Talk,new,,,,,58097,FALSE +Khalid,"Young, Dumb & Broke",new,,,,,54194,FALSE +Khruangbin,Texas Sun,new,,,,,75906,FALSE +Kid Cudi,Day 'n' Nite,new,,,,,21818,FALSE +Kid Cudi,Erase Me,new,,,,,33332,FALSE +Kid Cudi,Pursuit of Happiness (Steve Aoki remix),new,,,,,51597,FALSE +Kid Cudi,Pursuit of Happiness,new,,,,,28535,FALSE +Kid Cudi,Soundtrack 2 My Life,new,,,,,77047,FALSE +Kid Ink,Body Language,new,,,,,47704,FALSE +Kid Ink,Main Chick,new,,,,,47488,FALSE +Kid Ink,Show Me,new,,,,,46163,FALSE +Kid Rock,All Summer Long,existing,,,,,,FALSE +Kid Rock,Bawitdaba,new,,,,,35072,FALSE +Kid Rock,Cowboy,new,,,,,43065,FALSE +Kid Rock,Picture,existing,,,,,,FALSE +Killer Mike,A.D.I.D.A.S.,new,,,,,16488,FALSE +Killswitch Engage,End of Heartache,existing,,,,,,FALSE +Killswitch Engage,Holy Diver,new,,,,,27908,FALSE +Killswitch Engage,My Curse,new,,,,,69781,FALSE +Kim Carnes,Bette Davis Eyes,existing,,,,,,FALSE +Kim Wilde,Kids In America,existing,,,,,,FALSE +King Crimson,21st Century Schizoid Man,new,,,,,71124,FALSE +King Crimson,Epitaph,new,,,,,72579,FALSE +King Crimson,I Talk to the Wind,new,,,,,73799,FALSE +King Crimson,In the Court of the Crimson King,new,,,,,65493,FALSE +King Crimson,Starless,new,,,,,74460,FALSE +King Princess,1950,new,,,,,61539,FALSE +Kings Of Leon,Closer,existing,,,,,,FALSE +Kings Of Leon,Notion,existing,,,,,,FALSE +Kings Of Leon,Radioactive,existing,,,,,,FALSE +Kings Of Leon,Sex On Fire,existing,,,,,,FALSE +Kings Of Leon,Use Somebody,existing,,,,,,FALSE +Kings Of Leon,Revelry,new,Kings Of Leon,,,,22228,FALSE +Kings Of Leon,Walls,new,Kings Of Leon,,,,52061,FALSE +Kip Moore,Hey Pretty Girl,new,,,,,44593,FALSE +Kip Moore,Somethin' 'bout A Truck,new,,,,,39902,FALSE +Kirsty Ma Ccoll,A New England ,existing,Kirsty MacColl,,,,,FALSE +Kiss,Beth,new,KISS,,,,10291,FALSE +Kiss,Detroit Rock City,new,KISS,,,,21897,FALSE +Kiss,Heaven's On Fire,new,KISS,,,,21902,FALSE +Kiss,I Was Made For Lovin' You,new,KISS,,,,17659,FALSE +Kiss,Lick It Up,existing,KISS,,,,,FALSE +Kiss,Love Gun,new,KISS,,,,21904,FALSE +Kiss,Rock and Roll All Nite,new,KISS,,,,16497,FALSE +Kiss,Strutter,new,KISS,,,,21906,FALSE +Kitty Wells,Heaven's Just a Sin Away,existing,,,,,,FALSE +Kodaline,All I Want,new,,,,,43865,FALSE +Kodaline,Brother,new,,,,,74604,FALSE +Kodaline,The One,new,,,,,49038,FALSE +Koko Taylor & Buddy Guy,Born Under a Bad Sign,existing,,,,,,FALSE +Kook And The Gang,Ladies Night,existing,Kool & The Gang,,,,,FALSE +Kool & The Gang,Cherish,existing,,,,,,FALSE +Kool And The Gang,Celebration,existing,Kool & The Gang,,,,,FALSE +Kool And The Gang,Get Down On It,existing,Kool & The Gang,,,,,FALSE +Kool And The Gang,Jungle Boogie,existing,Kool & The Gang,,,,,FALSE +Kool And The Gang,Joanna,new,Kool & The Gang,,,,14043,FALSE +Kool And The Gang,Ladies Night,new,Kool & The Gang,,,,7446,FALSE +Kool And The Gang,Too Hot,new,Kool & The Gang,,,,8970,FALSE +Korn,Blind,new,,,,,64898,FALSE +Korn,Coming Undone,new,,,,,16503,FALSE +Korn,Falling Away from Me,new,,,,,53541,FALSE +Korn,Freak on a Leash,new,,,,,54791,FALSE +Korn,Got the Life,new,,,,,72027,FALSE +Korn,Twisted Transistor,new,,,,,16502,FALSE +Korn,Y'All Want a Single,new,,,,,73043,FALSE +Kraftwerk,Autobahn,new,,,,,48221,FALSE +Kraftwerk,Das Modell,new,,,,,19994,FALSE +Kraftwerk,Die Roboter,new,,,,,19995,FALSE +Kraftwerk,Radioactivity,new,,,,,34746,FALSE +Kraftwerk,The Model,new,,,,,14181,FALSE +Kris Kross,Jump,new,,,,,6403,FALSE +Kris Kross,Warm It Up,new,,,,,36218,FALSE +Kungs,Clap Your Hands,new,,,,,68697,FALSE +Kungs,Don't You Know,new,,,,,51642,FALSE +Kungs,I Feel So Bad,new,,,,,52311,FALSE +Kungs,Never Going Home,new,,,,,65248,FALSE +Kungs,This Girl,new,,,,,51013,FALSE +Kurt Nilsen,Gambler,existing,,,,,,FALSE +Kurt Vile,Pretty Pimpin,new,,,,,80328,FALSE +Kygo,Firestone,new,,,,,49011,FALSE +Kygo,It Ain't Me,new,,,,,52898,FALSE +Kygo,Lose Somebody,new,,,,,62193,FALSE +Kygo,Remind Me to Forget,new,,,,,55935,FALSE +Kygo,Stole The Show,new,,,,,49455,FALSE +Kygo,Whatever,new,,,,,79381,FALSE +Kylie Minogue,All the Lovers,existing,,,,,,FALSE +Kylie Minogue,Better the Devil You Know,existing,,,,,,FALSE +Kylie Minogue,Can't Get You Outta My Head,existing,,,,,,FALSE +Kylie Minogue,Get Outta My Way,existing,,,,,,FALSE +Kylie Minogue,I Believe In You,existing,,,,,,FALSE +Kylie Minogue,I Should Be so Lucky,existing,,,,,,FALSE +Kylie Minogue,I Was Gonna Cancel,existing,,,,,,FALSE +Kylie Minogue,In Your Eyes,existing,,,,,,FALSE +Kylie Minogue,Into the Blue,existing,,,,,,FALSE +Kylie Minogue,Locomotion,existing,,,,,,FALSE +Kylie Minogue,Love At First Sight,existing,,,,,,FALSE +Kylie Minogue,Shocked,existing,,,,,,FALSE +Kylie Minogue,Spinning Around,existing,,,,,,FALSE +Kylie Minogue,Step Back In Time,existing,,,,,,FALSE +Kylie Minogue,Two Hearts,existing,,,,,,FALSE +Kylie Minogue,Wow,existing,,,,,,FALSE +Kylie Vs New Order,Can't Get You Outta My Head,existing,,,,,,FALSE +LCD Soundsystem,All My Friends,new,,,,,38833,FALSE +LCD Soundsystem,Daft Punk is Playing at My House,new,,,,,80136,FALSE +LCD Soundsystem,Dance Yrself Clean,new,,,,,78793,FALSE +LCD Soundsystem,I Can Change,new,,,,,75430,FALSE +LCD Soundsystem,"New York, I Love You But You're Bringing Me Down",new,,,,,77671,FALSE +LCD Soundsystem,North American Scum,new,,,,,39152,FALSE +LEN,Steal My Sunshine,new,,,,,8736,FALSE +LL Cool J,Ain't Nobody,new,,,,,30525,FALSE +LL Cool J,Around The Way Girl,new,,,,,30116,FALSE +LL Cool J,Doin' It,new,,,,,57094,FALSE +LL Cool J,Freeze,new,,,,,16607,FALSE +LL Cool J,Hey Lover,new,,,,,32427,FALSE +LL Cool J,I'm Bad,new,,,,,63804,FALSE +LL Cool J,Loungin' (Who Do Ya Luv Remix),new,,,,,30554,FALSE +LL Cool J,Mama Said Knock You Out,new,,,,,57036,FALSE +LL Cool J,Murdergram Deux,new,,,,,83687,FALSE +LL Cool J,Phenomenon,new,,,,,35055,FALSE +LMFAO,Party Rock Anthem,existing,,,,,,FALSE +LMFAO,Sexy And I Know It,new,,,,,38264,FALSE +LMFAO,Shots,new,,,,,37360,FALSE +LMFAO,Sorry For Party Rocking,new,,,,,40136,FALSE +LP,Lost On You,new,,,,,43220,FALSE +LP,When We're High,new,,,,,75991,FALSE +La Roux,Bulletproof,existing,,,,,,FALSE +Labelle,Lady Marmalade,existing,,,,,,FALSE +Labi Sifre,Something Inside so Strong,existing,,,,,,FALSE +Labrinth,Beneath Your Beautiful feat. Emeli Sande,existing,,,,,,FALSE +Lady A,Bartender,new,,,,,47015,FALSE +Lady A,Just A Kiss,new,,,,,37110,FALSE +Lady A,Need You Now,new,,,,,25407,FALSE +Lady Antebellum,Bartender,existing,,,,,,FALSE +Lady Antebellum,Just A Kiss,existing,,,,,,FALSE +Lady Antebellum,Need You Now,existing,,,,,,FALSE +Lady Gaga,Applause,existing,,,,,,FALSE +Lady Gaga,Bad Romance,existing,,,,,,FALSE +Lady Gaga,Born This Way,existing,,,,,,FALSE +Lady Gaga,Die with a Smile,new,,,,,83192,FALSE +Lady Gaga,Edge of Glory,existing,,,,,,FALSE +Lady Gaga,Judas,new,,,,,36531,FALSE +Lady Gaga,Just Dance,existing,,,,,,FALSE +Lady Gaga,Marry the Night,existing,,,,,,FALSE +Lady Gaga,Paparazzi,existing,,,,,,FALSE +Lady Gaga,Poker Face,existing,,,,,,FALSE +Lady Gaga,Telephone,existing,,,,,,FALSE +Lady Gaga,You & I,existing,,,,,,FALSE +Lainey Wilson,Heart Like a Truck,new,,,,,69771,FALSE +Lainey Wilson,Things a Man Oughta Know,new,,,,,64296,FALSE +Lainey Wilson,Watermelon Moonshine,new,,,,,71634,FALSE +Lamb of God,Laid to Rest,new,Lamb Of God,,,,68535,FALSE +Lamb of God,Redneck,new,Lamb Of God,,,,71612,FALSE +Lana Del Rey,Born To Die,existing,,,,,,FALSE +Lana Del Rey,Brooklyn Baby,new,,,,,67727,FALSE +Lana Del Rey,Cinnamon Girl,new,,,,,59269,FALSE +Lana Del Rey,Diet Mountain Dew,new,,,,,39820,FALSE +Lana Del Rey,Say Yes to Heaven,new,,,,,75358,FALSE +Lana Del Rey,Summertime Sadness (Cedric Gervais Remix),existing,,,,,,FALSE +Lana Del Rey,Summertime Sadness,existing,,,,,,FALSE +Lana Del Rey,Video Games,existing,,,,,,FALSE +Lana Del Rey,West Coast,new,,,,,46894,FALSE +Lana Del Rey,Young And Beautiful,existing,,,,,,FALSE +Larry Williams,Bony Moronie,existing,,,,,,FALSE +Latto,Big Energy (remix),new,,,,,69334,FALSE +Latto,Big Energy,new,,,,,68008,FALSE +Latto,Lottery,new,,,,,74141,FALSE +Latto,Put It on da Floor Again,new,,,,,76045,FALSE +Latto,Sunday Service,new,,,,,80656,FALSE +Laura Branigan,Gloria,existing,,,,,,FALSE +Laurel Aitken,Brown Eyed Girl,existing,,,,,,FALSE +Lauren Alaina,Road Less Traveled,new,,,,,51874,FALSE +Lauren Spencer-Smith,Fingers Crossed,new,,,,,67817,FALSE +Lauren Spencer-Smith,Flowers,new,,,,,69379,FALSE +Lauryn Hill,Can't Take My Eyes Off Of You,new,,,,,19910,FALSE +Lauryn Hill,Doo Wop (That Thing),new,,,,,17608,FALSE +Lauryn Hill,Ex-Factor,new,,,,,21147,FALSE +Le Sserafim (),Perfect Night,new,Le Sserafim,,,,78221,FALSE +Le Sserafim (),Smart,new,Le Sserafim,,,,80725,FALSE +LeAnn Rimes,Can't Fight the Moonlight,new,,,,,7581,FALSE +LeAnn Rimes,I Need You,new,,,,,7374,FALSE +League of Legends,Enemy,new,,,,,67145,FALSE +League of Legends,Gods,new,,,,,77983,FALSE +League of Legends,Legends Never Die,new,,,,,69319,FALSE +League of Legends,Our Love,new,,,,,67604,FALSE +League of Legends,Paranoia,new,,,,,78837,FALSE +League of Legends,Playground,new,,,,,67349,FALSE +League of Legends,Rise,new,,,,,81683,FALSE +League of Legends,Star Walkin',new,,,,,71706,FALSE +League of Legends,The Baddest,new,,,,,77171,FALSE +League of Legends,Villain,new,,,,,77868,FALSE +League of Legends,What Could Have Been,new,,,,,67758,FALSE +Leann Rimes,How Do I Live Without You ?,existing,LeAnn Rimes,,,,,FALSE +Led Zeppelin,All My Love,new,,,,,46367,FALSE +Led Zeppelin,Babe I'm Gonna Leave You,existing,,,,,,FALSE +Led Zeppelin,Black Dog,new,,,,,30527,FALSE +Led Zeppelin,Bron-Y-Aur Stomp,new,,,,,62033,FALSE +Led Zeppelin,Celebration Day,new,,,,,68173,FALSE +Led Zeppelin,Communication Breakdown,new,,,,,25373,FALSE +Led Zeppelin,Custard Pie,new,,,,,62743,FALSE +Led Zeppelin,D'yer Mak'er,new,,,,,25135,FALSE +Led Zeppelin,Dancing Days,existing,,,,,,FALSE +Led Zeppelin,Dazed And Confused,existing,,,,,,FALSE +Led Zeppelin,Fool in the Rain,new,,,,,60304,FALSE +Led Zeppelin,Going To California,new,,,,,19915,FALSE +Led Zeppelin,Good Times Bad Times,new,,,,,24446,FALSE +Led Zeppelin,Heartbreaker,existing,,,,,,FALSE +Led Zeppelin,"Hey, Hey, What Can I Do",new,,,,,52335,FALSE +Led Zeppelin,Hot Dog,new,,,,,65083,FALSE +Led Zeppelin,Houses of the Holy,new,,,,,55526,FALSE +Led Zeppelin,I'm Gonna Crawl,new,,,,,75575,FALSE +Led Zeppelin,Immigrant Song,new,,,,,24880,FALSE +Led Zeppelin,In the Evening,new,,,,,61337,FALSE +Led Zeppelin,Kashmir,existing,,,,,,FALSE +Led Zeppelin,Living Loving Maid (She's Just a Woman),new,,,,,29941,FALSE +Led Zeppelin,Misty Mountain Hop,existing,,,,,,FALSE +Led Zeppelin,Over the Hills and Far away,new,,,,,51287,FALSE +Led Zeppelin,Ramble On,existing,,,,,,FALSE +Led Zeppelin,Rock And Roll,existing,,,,,,FALSE +Led Zeppelin,Rock and Roll,new,,,,,20862,FALSE +Led Zeppelin,Stairway To Heaven,existing,,,,,,FALSE +Led Zeppelin,Tangerine,new,,,,,62955,FALSE +Led Zeppelin,Ten Years Gone,existing,,,,,,FALSE +Led Zeppelin,The Battle Of Evermore,new,,,,,36980,FALSE +Led Zeppelin,The Crunge,new,,,,,25275,FALSE +Led Zeppelin,The Lemon Song,new,,,,,60296,FALSE +Led Zeppelin,The Ocean,existing,,,,,,FALSE +Led Zeppelin,The Rain Song,new,,,,,49811,FALSE +Led Zeppelin,The Rover,new,,,,,61573,FALSE +Led Zeppelin,The Song Remains the Same,new,,,,,57031,FALSE +Led Zeppelin,What Is and What Should Never Be,new,,,,,53103,FALSE +Led Zeppelin,When The Levee Breaks,new,,,,,29219,FALSE +Led Zeppelin,Whole Lotta Love,existing,,,,,,FALSE +Led Zeppelin,You Shook Me,new,,,,,68969,FALSE +Led Zeppelin,Your Time Is Gonna Come,new,,,,,68056,FALSE +Lee Ann Womack,I Hope You Dance,existing,,,,,,FALSE +Lee Greenwood,God Bless The U.S.A.,new,,,,,8190,FALSE +Lenny Kravitz,Again,new,,,,,7590,FALSE +Lenny Kravitz,American Woman,existing,,,,,,FALSE +Lenny Kravitz,Are You Gonna Go My Way ?,existing,,,,,,FALSE +Lenny Kravitz,Fly Away,existing,,,,,,FALSE +Lenny Kravitz,I Belong to You,new,,,,,7370,FALSE +Lenny Kravitz,It Ain't Over Till It's Over,existing,,,,,,FALSE +Leo Sayer,You Make Me Feel Like Dancing,existing,,,,,,FALSE +Leon Bridges,Bad Bad News,new,,,,,77649,FALSE +Leon Bridges,Better Man,new,,,,,81975,FALSE +Leon Bridges,Beyond,new,,,,,56298,FALSE +Leon Bridges,Coming Home,new,,,,,49850,FALSE +Leon Bridges,Motorbike,new,,,,,65420,FALSE +Leon Bridges,River,new,,,,,58115,FALSE +Leon Bridges,Smooth Sailin',new,,,,,64496,FALSE +Leon Jackson,When You Believe,existing,,,,,,FALSE +Leona Lewis,Better In Time,existing,,,,,,FALSE +Leona Lewis,Run,existing,,,,,,FALSE +Leonard Cohen,Dance Me to the End of Love,new,,,,,30710,FALSE +Leonard Cohen,Famous Blue Raincoat,new,,,,,68205,FALSE +Leonard Cohen,Hallelujah,existing,,,,,,FALSE +Leonard Cohen,Suzanne,new,,,,,20803,FALSE +Leonard Cohen,You Want It Darker,new,,,,,79993,FALSE +Leroy Van Dyke,Walk On By,existing,,,,,,FALSE +Level 42,Something About You,new,,,,,31833,FALSE +Lewis Capaldi,Before You Go,new,,,,,60020,FALSE +Lewis Capaldi,Bruises,new,,,,,57410,FALSE +Lewis Capaldi,Forever,new,,,,,59045,FALSE +Lewis Capaldi,Forget Me,new,,,,,71443,FALSE +Lewis Capaldi,Grace,new,,,,,57177,FALSE +Lewis Capaldi,Hold Me While You Wait,new,,,,,58319,FALSE +Lewis Capaldi,Someone You Loved,new,,,,,57377,FALSE +Lewis Capaldi,Wish You the Best,new,,,,,74635,FALSE +Liberty X,Night To Remember,existing,,,,,,FALSE +Lifehouse,Everything,new,,,,,28835,FALSE +Lifehouse,Hanging by a Moment,new,,,,,16539,FALSE +Lifehouse,You and Me,new,,,,,11573,FALSE +Lil Baby,Close Friends,new,,,,,83767,FALSE +Lil Baby,Freestyle,new,,,,,73564,FALSE +Lil Baby,Yes Indeed,new,,,,,60649,FALSE +Lil Durk,All My Life,new,,,,,75683,FALSE +Lil Durk,Broadway Girls,new,,,,,67719,FALSE +Lil Durk,Stand by Me,new,,,,,76761,FALSE +Lil Durk,Who Want Smoke,new,,,,,28410,FALSE +Lil Mama,Lip Gloss,new,,,,,78736,FALSE +Lil Mama,Shawty Get Loose,new,,,,,26631,FALSE +Lil Nas X,Am I Dreaming,new,,,,,66388,FALSE +Lil Nas X,Dont Want It,new,,,,,66861,FALSE +Lil Nas X,Industry Baby Montero (live at the 2021 MTV Video Music Awards),new,,,,,66333,FALSE +Lil Nas X,Industry Baby,new,,,,,65714,FALSE +Lil Nas X,Lost in the Citadel,new,,,,,66693,FALSE +Lil Nas X,Montero (Call Me By Your Name) (Satan's Extended Version),new,,,,,64459,FALSE +Lil Nas X,Montero (Call Me By Your Name) (live at the 2021 BET Awards),new,,,,,65973,FALSE +Lil Nas X,Montero (Call Me By Your Name),new,,,,,64458,FALSE +Lil Nas X,Old Town Road (Seoul Town Road remix),new,,,,,73317,FALSE +Lil Nas X,Old Town Road (remix),new,,,,,58131,FALSE +Lil Nas X,Old Town Road,new,,,,,58022,FALSE +Lil Nas X,Panini,new,,,,,58704,FALSE +Lil Nas X,Rodeo,new,,,,,58865,FALSE +Lil Nas X,Sun Goes Down,new,,,,,65185,FALSE +Lil Nas X,Thats What I Want,new,,,,,66343,FALSE +Lil Peep,Awful Things,new,,,,,79562,FALSE +Lil Peep,Falling Down,new,,,,,74953,FALSE +Lil Peep,I've Been Waiting,new,,,,,58153,FALSE +Lil Peep,Star Shopping,new,,,,,79802,FALSE +Lil Peep,Witchblades,new,,,,,75456,FALSE +Lil Pump,Gucci Gang,new,,,,,64009,FALSE +Lil Rob,Summer Nights,new,,,,,80002,FALSE +Lil Suzy,Take Me in Your Arms,new,,,,,80158,FALSE +Lil Tecca,Ransom,new,,,,,60073,FALSE +Lil Uzi Vert,Just Wanna Rock,new,,,,,73125,FALSE +Lil Uzi Vert,XO Tour Llif3,new,,,,,63691,FALSE +Lil Wayne,6 Foot 7 Foot,new,,,,,35748,FALSE +Lil Wayne,A Milli,new,,,,,60652,FALSE +Lil Wayne,Believe Me,new,,,,,47149,FALSE +Lil Wayne,Bitches Love Me,new,,,,,42988,FALSE +Lil Wayne,Blunt Blowin',new,,,,,76759,FALSE +Lil Wayne,Drop The World,new,,,,,27197,FALSE +Lil Wayne,Go D.J.,new,,,,,16545,FALSE +Lil Wayne,How To Love,new,,,,,37548,FALSE +Lil Wayne,Ice Cream,new,,,,,67338,FALSE +Lil Wayne,Lollipop,new,,,,,17955,FALSE +Lil Wayne,Mirror,new,,,,,39899,FALSE +Lil Wayne,Mona Lisa,new,,,,,82922,FALSE +Lil Wayne,Mrs. Officer,new,,,,,21354,FALSE +Lil Wayne,Rich as Fuck,new,,,,,7179,FALSE +Lil Wayne,Right Above It,new,,,,,32920,FALSE +Lil Wayne,She Will,new,,,,,83492,FALSE +Lil Wyte,Oxy Cotton,new,,,,,83750,FALSE +Lil Yachty,Poland,new,,,,,72214,FALSE +Lil' Boosie,Set It Off,new,,,,,75037,FALSE +Lil' Bow Wow,Basketball,new,,,,,5824,FALSE +Lil' Bow Wow,Let Me Hold You,new,,,,,15187,FALSE +Lil' Flip,Sunshine (clean),new,,,,,41107,FALSE +Lil' Flip,Sunshine,new,,,,,16546,FALSE +Lil' Jon,Get Low,new,,,,,16542,FALSE +Lil' Jon,Lovers and Friends,new,,,,,16543,FALSE +Lil' Jon,Snap Yo Fingers,new,,,,,79003,FALSE +Lil' Kim,Crush on You,new,,,,,77151,FALSE +Lil' Kim,How Many Licks,new,,,,,75052,FALSE +Lil' Kim,Magic Stick (clean),new,,,,,36777,FALSE +Lil' Kim,Magic Stick,new,,,,,16548,FALSE +Lil' Kim,No Time,new,,,,,34386,FALSE +Lil' Kim,Not Tonight (Ladies Night Remix),new,,,,,34845,FALSE +Lil' Kim,The Jump Off (clean),new,,,,,36820,FALSE +Lil' Kleine,Drank en Drugs,new,,,,,73928,FALSE +Lil' Kleine,Krantenwijk,new,,,,,78827,FALSE +Lil' Romeo,My Baby,new,,,,,16544,FALSE +Lil' Troy,Wanna Be a Baller,new,,,,,66587,FALSE +Lilly Allen,Somewhere Only We Know,existing,Lily Allen,,,,,FALSE +Lilly Wood & The Prick & Robin Schulz,Prayer In C Robin Schulz Remix,existing,,,,,,FALSE +Lily Allen,Not Fair,existing,,,,,,FALSE +Lily Allen,Smile,existing,,,,,,FALSE +Limp Bizkit,Behind Blue Eyes,new,,,,,21084,FALSE +Limp Bizkit,Break Stuff,new,,,,,56675,FALSE +Limp Bizkit,Faith,new,,,,,73093,FALSE +Limp Bizkit,Hot Dog,new,,,,,27753,FALSE +Limp Bizkit,My Generation,new,,,,,72887,FALSE +Limp Bizkit,My Way,new,,,,,29092,FALSE +Limp Bizkit,Nookie,new,,,,,27257,FALSE +Limp Bizkit,Rollin' (Air Raid Vehicle),new,,,,,58351,FALSE +Limp Bizkit,Take a Look Around,new,,,,,35406,FALSE +Linda Ronstadt,Blue Bayou,existing,,,,,,FALSE +Linda Ronstadt,Don't Know Much,new,,,,,6133,FALSE +Linda Ronstadt,It's So Easy,existing,,,,,,FALSE +Linda Ronstadt,You're No Good,existing,,,,,,FALSE +Lindisfarne,Meet Me On the Corner,existing,,,,,,FALSE +Linkin Park,Bleed it Out,new,,,,,12719,FALSE +Linkin Park,Crawling,new,,,,,24198,FALSE +Linkin Park,Faint,new,,,,,23076,FALSE +Linkin Park,In the End,new,,,,,14538,FALSE +Linkin Park,Numb,existing,,,,,,FALSE +Linkin Park,One Step Closer,new,,,,,42521,FALSE +Linkin Park,Somewhere I Belong,new,,,,,41101,FALSE +Linkin Park,The Emptiness Machine,new,,,,,83536,FALSE +Linkin Park,What I've Done,new,,,,,12005,FALSE +Lionel Richie,All Night Long,existing,,,,,,FALSE +Lionel Richie,Dancing On The Ceiling (Live Version),existing,,,,,,FALSE +Lionel Richie,Easy,existing,,,,,,FALSE +Lionel Richie,Endless Love (With Shania Twain),existing,,,,,,FALSE +Lionel Richie,Hello,existing,,,,,,FALSE +Lionel Richie,My Love,existing,,,,,,FALSE +Lionel Richie,Penny Lover,existing,,,,,,FALSE +Lionel Richie,Running With the Night,existing,,,,,,FALSE +Lionel Richie,Stuck On You,existing,,,,,,FALSE +Lionel Richie,Three Times A Lady,existing,,,,,,FALSE +Little Big Town,Better Man,new,,,,,52098,FALSE +Little Big Town,Boondocks,new,,,,,16570,FALSE +Little Big Town,Girl Crush,new,,,,,48087,FALSE +Little Big Town,Pontoon,new,,,,,40811,FALSE +Little Big Town,"Wine, Beer, Whiskey",new,,,,,60882,FALSE +Little Eva,Locomotion,existing,,,,,,FALSE +Little Feat,Dixie Chicken,new,,,,,16572,FALSE +Little Feat,Willin',new,,,,,61731,FALSE +Little Richard,Girl Can't Help It,existing,,,,,,FALSE +Little Richard,Long Tall Sally,existing,,,,,,FALSE +Little Richard,Tutti Frutti,existing,,,,,,FALSE +Little River Band,Cool Change,new,,,,,40149,FALSE +Little River Band,Lady,existing,,,,,,FALSE +Little River Band,Lonesome Loser,existing,,,,,,FALSE +Little River Band,Reminiscing,new,,,,,24792,FALSE +Little Walter,My Babe,existing,,,,,,FALSE +Live,I Alone,new,,,,,46439,FALSE +Live,Lightning Crashes,existing,,,,,,FALSE +Live,Selling the Drama,new,,,,,23987,FALSE +Living Colour,Cult Of Personality,existing,,,,,,FALSE +Liz Phair,Everything to Me,new,,,,,16602,FALSE +Liz Phair,Extraordinary,new,,,,,16603,FALSE +Liz Phair,Supernova,new,,,,,83711,FALSE +Liz Phair,Why Can't I,new,,,,,6265,FALSE +Lizzo,2 Be Loved (Am I Ready),new,,,,,70695,FALSE +Lizzo,About Damn Time,new,,,,,69196,FALSE +Lizzo,Boys,new,,,,,58628,FALSE +Lizzo,Good As Hell,new,,,,,58280,FALSE +Lizzo,Juice,new,,,,,57415,FALSE +Lizzo,Rumors,new,,,,,23031,FALSE +Lizzo,Tempo,new,,,,,58365,FALSE +Lizzo,Truth Hurts,new,,,,,58304,FALSE +Lobo,Me & You & a Dog Named Boo,existing,,,,,,FALSE +Loggins and Messina,Danny's Song,new,,,,,62141,FALSE +Logic,1-800-273-8255,new,,,,,54620,FALSE +Logic,Buried Alive,new,,,,,47815,FALSE +Logic,Homicide,new,,,,,73393,FALSE +London Grammar,Hey Now,new,,,,,79795,FALSE +London Grammar,Strong,new,,,,,44994,FALSE +London Grammar,Wasting My Young Years,new,,,,,46374,FALSE +Lonestar,Amazed,existing,,,,,,FALSE +Lord Huron,I Lied,new,,,,,67433,FALSE +Lord Huron,Meet Me in the Woods,new,,,,,77373,FALSE +Lord Huron,The Night We Met,new,,,,,53152,FALSE +Lord Rockingham's Xi,Hoots Mon,existing,,,,,,FALSE +Lorde,Buzzcut Season,new,,,,,46036,FALSE +Lorde,Green Light,new,,,,,31648,FALSE +Lorde,Liability,new,,,,,53225,FALSE +Lorde,Perfect Places,new,,,,,54244,FALSE +Lorde,Ribs,new,,,,,72803,FALSE +Lorde,Royals,existing,,,,,,FALSE +Lorde,Supercut,new,,,,,82848,FALSE +Lorde,Team,existing,,,,,,FALSE +Loretta Lynn,Coal Miner's Daughter,existing,,,,,,FALSE +Los Bravos,Black Is Black,existing,,,,,,FALSE +Los Cafres,Nice Time,existing,,,,,,FALSE +Los Del Rio,Macarena (Bayside Boys Remix),existing,,,,,,FALSE +Los Lobos,La Bamba,existing,,,,,,FALSE +Los Lonely Boys,Heaven,existing,,,,,,FALSE +Lost Frequencies,Are You With Me,new,,,,,48949,FALSE +Lost Frequencies,Crazy,new,,,,,55040,FALSE +Lost Frequencies,Reality,new,,,,,49476,FALSE +Lost Frequencies,Where Are You Now,new,,,,,66741,FALSE +Lou Reed,Perfect Day,existing,,,,,,FALSE +Lou Reed,Walk On the Wild Side,existing,,,,,,FALSE +Louis Armstrong,We Have All the Time In the World,existing,,,,,,FALSE +Louis Armstrong,What a Wonderful World,existing,,,,,,FALSE +Love Affair,Everlasting Love,existing,,,,,,FALSE +Loverboy,Turn Me Loose,existing,,,,,,FALSE +Loverboy,Working For The Weekend,existing,,,,,,FALSE +Lovin' Spoonful,Daydream,existing,,,,,,FALSE +Lucinda Williams,Can't Let Go,new,,,,,31172,FALSE +Lucinda Williams,Drunken Angel,existing,,,,,,FALSE +Lucinda Williams,Righteously,existing,,,,,,FALSE +Ludacris,Area Codes,new,,,,,16646,FALSE +Ludacris,How Low,existing,,,,,,FALSE +Ludacris,Move Bitch,new,,,,,68187,FALSE +Ludacris,My Chick Bad,existing,,,,,,FALSE +Ludacris,Number One Spot,new,,,,,16651,FALSE +Ludacris,Rollout (My Business),new,,,,,18724,FALSE +Ludacris,Southern Hospitality,new,,,,,68885,FALSE +Ludacris,Stand Up,new,,,,,16647,FALSE +Ludacris,What's Your Fantasy,new,,,,,68640,FALSE +Lukas Graham,7 Years,new,,,,,50548,FALSE +Lukas Graham,Love Someone,new,,,,,56413,FALSE +Lukas Graham,Mama Said,new,,,,,51866,FALSE +Luke Bryan,Country Girl (Shake It For Me),new,,,,,37118,FALSE +Luke Bryan,Drunk On You,existing,,,,,,FALSE +Luke Bryan,Kiss Tomorrow Goodbye,new,,,,,42107,FALSE +Luke Bryan,Knockin' Boots,new,,,,,58021,FALSE +Luke Bryan,One Margarita,new,,,,,61229,FALSE +Luke Bryan,Play It Again,existing,,,,,,FALSE +Luke Bryan,Rain Is a Good Thing,new,,,,,26994,FALSE +Luke Bryan,That's My Kind Of Night,new,,,,,44844,FALSE +Luke Combs,Beautiful Crazy,new,,,,,55574,FALSE +Luke Combs,Beer Never Broke My Heart,new,,,,,58251,FALSE +Luke Combs,Fast Car,new,,,,,74245,FALSE +Luke Combs,Hurricane,new,,,,,53017,FALSE +Luke Combs,She Got the Best of Me,new,,,,,55980,FALSE +Luke Combs,The Kind of Love We Make,new,,,,,70060,FALSE +Luke Combs,When It Rains It Pours,new,,,,,53788,FALSE +Luke Combs,Where the Wild Things Are,new,,,,,74391,FALSE +Lulu,Shout,existing,,,,,,FALSE +Lupe Fiasco,Kick Push,new,,,,,33964,FALSE +Lupe Fiasco,Old School Love,new,,,,,46074,FALSE +Lupe Fiasco,Shining Down,new,,,,,24041,FALSE +Lupe Fiasco,The Show Goes On,new,,,,,36491,FALSE +Luther Vandross,Always & Forever,existing,,,,,,FALSE +Luther Vandross,Dance With My Father,existing,,,,,,FALSE +Luther Vandross,Endless Love,new,,,,,14230,FALSE +Luther Vandross,Never Too Much,new,,,,,14092,FALSE +Luther Vandross,Reflections,existing,,,,,,FALSE +Lyle Lovett,Funny How Time Slips Away,new,,,,,10115,FALSE +Lyle Lovett,If I Had a Boat,new,,,,,70376,FALSE +Lyle Lovett,She's No Lady,new,,,,,70986,FALSE +Lyle Lovett,That's Right You're Not From Texas,existing,,,,,,FALSE +Lynyrd Skynyrd,Call Me The Breeze,existing,,,,,,FALSE +Lynyrd Skynyrd,Down South Jukin',new,,,,,70400,FALSE +Lynyrd Skynyrd,Free Bird,existing,,,,,,FALSE +Lynyrd Skynyrd,Gimme Back My Bullets,existing,,,,,,FALSE +Lynyrd Skynyrd,Gimme Three Steps,new,,,,,7127,FALSE +Lynyrd Skynyrd,I Know a Little,new,,,,,57272,FALSE +Lynyrd Skynyrd,Saturday Night Special,existing,,,,,,FALSE +Lynyrd Skynyrd,Simple Man,existing,,,,,,FALSE +Lynyrd Skynyrd,Sweet Home Alabama,existing,,,,,,FALSE +Lynyrd Skynyrd,That Smell,new,,,,,52741,FALSE +Lynyrd Skynyrd,Tuesday's Gone,new,,,,,24024,FALSE +Lynyrd Skynyrd,What's Your Name,existing,,,,,,FALSE +Lynyrd Skynyrd,You Got That Right,existing,,,,,,FALSE +M,Pop Musik,existing,,,,,,FALSE +M.I.A.,Bad Girls,new,,,,,72344,FALSE +M.I.A.,Paper Planes,new,,,,,20618,FALSE +M.I.A.,XXXO,new,,,,,32039,FALSE +M83,Midnight City,new,,,,,39551,FALSE +M83,Oblivion,new,,,,,43723,FALSE +MC Breed,Ain't No Future in Yo' Frontin',new,,,,,83071,FALSE +MC Chris,Fett's Vette,new,,,,,76828,FALSE +MC Hammer,Addams Groove,new,,,,,33831,FALSE +MC Hammer,Do Not Pass Me By,new,,,,,24857,FALSE +MC Hammer,Pray,new,,,,,30132,FALSE +MC Hammer,U Can't Touch This,new,,,,,13657,FALSE +MGK,Bad Things,new,,,,,52809,FALSE +MGK,Bloody Valentine,new,,,,,66856,FALSE +MGK,Forget Me Too,new,,,,,67357,FALSE +MGK,Home,new,,,,,82021,FALSE +MGK,I Think I'm Okay,new,,,,,28061,FALSE +MGK,My Ex's Best Friend,new,,,,,63692,FALSE +MGMT,Electric Feel,new,,,,,20747,FALSE +MGMT,Kids,existing,,,,,,FALSE +MGMT,Time to Pretend,new,,,,,26108,FALSE +Mac DeMarco,Chamber of Reflection,new,,,,,72799,FALSE +Mac DeMarco,Freaking Out the Neighborhood,new,,,,,74822,FALSE +Mac Miller,2009,new,,,,,80507,FALSE +Mac Miller,Dang!,new,,,,,69197,FALSE +Mac Miller,Donald Trump,new,,,,,70467,FALSE +Mac Miller,Good News,new,,,,,79070,FALSE +Mac Miller,Knock Knock,new,,,,,74665,FALSE +Mac Miller,My Favorite Part,new,,,,,26396,FALSE +Mac Miller,Self Care,new,,,,,76843,FALSE +Mac Miller,The Spins,new,,,,,67781,FALSE +Mac Miller,What's the Use,new,,,,,70020,FALSE +Macklemore,Glorious,new,,,,,54144,FALSE +Macklemore,Good Old Days,new,,,,,55038,FALSE +Macklemore And Ryan Lewis,Can't Hold Us,new,,,,,43126,FALSE +Macklemore And Ryan Lewis,Downtown,new,,,,,49812,FALSE +Macklemore And Ryan Lewis,Same Love,new,,,,,44565,FALSE +Macklemore And Ryan Lewis,White Walls,new,,,,,46248,FALSE +Macklemore And Ryan Lewis,Thrift Shop,existing,Macklemore & Ryan Lewis,,,,,FALSE +Macy Gray,I Try,new,,,,,8938,FALSE +Maddie & Tae,Die From a Broken Heart,new,,,,,57352,FALSE +Maddie & Tae,Friends Don't,new,,,,,55934,FALSE +Madeleine Peyroux,Dance Me To The End Of Love,existing,,,,,,FALSE +Madeleine Peyroux,Don't Wait Too Long,existing,,,,,,FALSE +Madeleine Peyroux,J'Ai Deux Amours,existing,,,,,,FALSE +Madness,Baggy Trousers,existing,,,,,,FALSE +Madness,Embarrassment,existing,,,,,,FALSE +Madness,House of Fun,existing,,,,,,FALSE +Madness,It Must Be Love,existing,,,,,,FALSE +Madness,Madness,existing,,,,,,FALSE +Madness,My Girl,existing,,,,,,FALSE +Madness,Prince,existing,,,,,,FALSE +Madness,Wings of a Dove,existing,,,,,,FALSE +Madonna,Borderline,existing,,,,,,FALSE +Madonna,Cherish,existing,,,,,,FALSE +Madonna,Crazy for You,existing,,,,,,FALSE +Madonna,Give It To Me,existing,,,,,,FALSE +Madonna,Holiday,existing,,,,,,FALSE +Madonna,Hung Up,existing,,,,,,FALSE +Madonna,Into the Groove,existing,,,,,,FALSE +Madonna,La Isla Bonita,existing,,,,,,FALSE +Madonna,Like A Prayer,existing,,,,,,FALSE +Madonna,Like a Virgin,existing,,,,,,FALSE +Madonna,Live To Tell,existing,,,,,,FALSE +Madonna,Masterpiece,existing,,,,,,FALSE +Madonna,Material Girl,existing,,,,,,FALSE +Madonna,Open Your Heart,existing,,,,,,FALSE +Madonna,Papa Don't Preach,existing,,,,,,FALSE +Madonna,Sorry,existing,,,,,,FALSE +Madonna,True Blue,existing,,,,,,FALSE +Madonna,Vogue,existing,,,,,,FALSE +Magic,Rude,existing,,,,,,FALSE +Major Lazer,Cold Water,new,,,,,51591,FALSE +Major Lazer,Know No Better,new,,,,,53651,FALSE +Major Lazer,Lean On,new,,,,,49193,FALSE +Major Lazer,Light It Up (remix),new,,,,,50820,FALSE +Major Lazer,Que calor,new,,,,,60464,FALSE +Mama's & Papa's,Dream a Little Dream of Me,existing,The Mamas And The Papas,,,,,FALSE +Maneskin,Beggin',new,,,,,65555,FALSE +Maneskin,Gossip,new,,,,,73224,FALSE +Maneskin,I Wanna Be Your Slave,new,,,,,65162,FALSE +Maneskin,The Loneliest,new,,,,,71913,FALSE +Maneskin,Zitti e Buoni,new,,,,,64117,FALSE +Manfred Mann,Blinded By the Light,existing,,,,,,FALSE +Manfred Mann,Do Wah Diddy,existing,,,,,,FALSE +Manfred Mann,If You Gotta Go,existing,,,,,,FALSE +Manfred Mann,Pretty Flamingo,existing,,,,,,FALSE +Manfred Mann,The Mighty Quinn (Quinn The Eskimo),existing,,,,,,FALSE +Marc Anthony,Ahora quien (salsa version),new,,,,,61996,FALSE +Marc Anthony,Flor palida,new,,,,,61855,FALSE +Marc Anthony,Tu amor me hace bien,new,,,,,21514,FALSE +Marc Anthony,Valio La Pena (Salsa Version),existing,,,,,,FALSE +Marc Anthony,Vivir Mi Vida,existing,,,,,,FALSE +Marc Anthony,Vivir lo nuestro,new,,,,,61076,FALSE +Marcus King,Beautiful Stranger,new,,,,,83459,FALSE +Marcus King,The Well,new,,,,,83121,FALSE +Marcus King,Wildflowers & Wine,new,,,,,77899,FALSE +Marcy Playground,Sex And Candy,existing,,,,,,FALSE +Maren Morris,I Could Use a Love Song,new,,,,,51475,FALSE +Maren Morris,My Church,new,,,,,50555,FALSE +Maren Morris,The Bones,new,,,,,57929,FALSE +Mariah Carey,All I Want for Christmas,existing,,,,,,FALSE +Mariah Carey,Always Be My Baby,new,,,,,10784,FALSE +Mariah Carey,Fantasy,new,,,,,21733,FALSE +Mariah Carey,Fly Like a Bird,existing,,,,,,FALSE +Mariah Carey,Hero,existing,,,,,,FALSE +Mariah Carey,O Holy Night,existing,,,,,,FALSE +Mariah Carey,Obsessed,new,,,,,23931,FALSE +Mariah Carey,We Belong Together,new,,,,,5594,FALSE +Mariah Carey,Without You,new,,,,,10070,FALSE +Marillion,Kayleigh,existing,,,,,,FALSE +Marilyn Manson,Sweet Dreams (Are Made of This),new,,,,,35595,FALSE +Marilyn Manson,Tainted Love,new,,,,,25860,FALSE +Marilyn Manson,The Beautiful People,new,,,,,55218,FALSE +Marilyn Manson,This Is the New Shit,new,,,,,71250,FALSE +Marilyn Monroe,Diamonds Are Girls Best Friend,existing,,,,,,FALSE +Mario,Let Me Love You,existing,,,,,,FALSE +Mario Winans,I Don't Wanna Know,existing,,,,,,FALSE +Mark Cohn,Walking In Memphis,existing,,,,,,FALSE +Mark Ronson Feat. Lilly Allen,Oh My God,existing,,,,,,FALSE +Marmalade,Ob-La-Di-Ob-La-Da,existing,,,,,,FALSE +Marmalade,Reflections of My Life,existing,,,,,,FALSE +Maroon 5,Animals,existing,,,,,,FALSE +Maroon 5,Harder To Breathe,existing,,,,,,FALSE +Maroon 5,Maps,new,,,,,47212,FALSE +Maroon 5,Memories,new,,,,,59413,FALSE +Maroon 5,Moves Like Jagger,existing,,,,,,FALSE +Maroon 5,One More Night,existing,,,,,,FALSE +Maroon 5,Payphone,new,,,,,40348,FALSE +Maroon 5,She Will Be Loved,existing,,,,,,FALSE +Maroon 5,Sugar,existing,,,,,,FALSE +Maroon 5,Sunday Morning,existing,,,,,,FALSE +Maroon 5,This Love,existing,,,,,,FALSE +Martha Reeves,Heatwave,existing,,,,,,FALSE +Martha Reeves & The Vandellas,Dancing In the Street,existing,,,,,,FALSE +Martha Reeves & The Vandellas,Nowhere To Run,existing,,,,,,FALSE +Martika,I Feel the Earth Move,existing,,,,,,FALSE +Martin Garrix,In The Name of Love,new,,,,,52015,FALSE +Martin Garrix,Ocean,new,,,,,56640,FALSE +Martin Garrix,Scared to Be Lonely,new,,,,,52724,FALSE +Martin Garrix,There for You,new,,,,,53484,FALSE +Martin Solveig,All Day and Night,new,,,,,59096,FALSE +Martin Solveig,All Stars,new,,,,,54088,FALSE +Martin Solveig,Hello,new,,,,,35291,FALSE +Martin Solveig,Intoxicated,new,,,,,49362,FALSE +Martina McBride,This One's For The Girls,existing,,,,,,FALSE +Martina Mcbride,White Christmas,existing,Martina McBride,,,,,FALSE +Marty Wilde,Sea of Love,existing,,,,,,FALSE +Marvin Gaye,Ain't Nothin' Like The Real Thing,new,,,,,29131,FALSE +Marvin Gaye,Ain't That Peculiar,new,,,,,35464,FALSE +Marvin Gaye,How Sweet It Is,existing,,,,,,FALSE +Marvin Gaye,I Heard It Through the Grapevine,existing,,,,,,FALSE +Marvin Gaye,Inner City Blues (Make Me Wanna Holler),new,,,,,62154,FALSE +Marvin Gaye,Let's Get It On,existing,,,,,,FALSE +Marvin Gaye,Mercy Mercy Me (The Ecology),existing,,,,,,FALSE +Marvin Gaye,Sexual Healing,existing,,,,,,FALSE +Marvin Gaye,Too Busy Thinking About My Baby,existing,,,,,,FALSE +Marvin Gaye,Trouble Man,new,,,,,66003,FALSE +Marvin Gaye,What's Going On,existing,,,,,,FALSE +Marvin Gaye,Wherever I Lay My Hat,existing,,,,,,FALSE +Marvin Gaye,You're All I Need to Get by,new,,,,,68994,FALSE +Marvin Gaye & Kim Weston,It Takes Two,existing,,,,,,FALSE +Marvin Gaye & Tammi Terrell,Ain't No Mountain High Enough,existing,,,,,,FALSE +Marvin Gaye & Tammi Terrell,Onion Song,existing,,,,,,FALSE +Mary J. Blige,Be Without You,new,,,,,19424,FALSE +Mary J. Blige,Family Affair,new,,,,,19426,FALSE +Mary J. Blige,One,new,,,,,11777,FALSE +Mary J. Blige,Real Love,new,,,,,6436,FALSE +Mary Mary,Shackles,existing,,,,,,FALSE +Mary Wells,My Guy,existing,,,,,,FALSE +Massive Attack,Live with Me,new,,,,,38222,FALSE +Massive Attack,Teardrop,new,,,,,20302,FALSE +Massive Attack,Unfinished Sympathy,new,,,,,70339,FALSE +Matchbox Twenty,3am,existing,,,,,,FALSE +Matchbox Twenty,How Far We've Come,new,,,,,12979,FALSE +Matchbox Twenty,Push,new,,,,,10422,FALSE +Matchbox Twenty,Unwell,existing,,,,,,FALSE +Matt Cardle,When We Collide,existing,,,,,,FALSE +Matt Monroe,Gonna Build a Mountain,existing,,,,,,FALSE +Matt Simons,Catch & Release (Deepend Remix),new,,,,,50468,FALSE +Matt Simons,Catch & Release,new,,,,,50408,FALSE +Matt Simons,We Can Do Better,new,,,,,56036,FALSE +Max Bygraves,Gilly Gilly Ossenfeffer Katzenellen Bogen By the Sea,existing,,,,,,FALSE +Max Bygraves,Somewhere My Love,existing,,,,,,FALSE +Mazzy Star,Fade into You,new,,,,,57579,FALSE +Mc Fadden & Whitehead,Ain't No Stoppin' Us Now,existing,McFadden & Whitehead,,,,,FALSE +Mc Guiness Flint,When I'm Dead & Gone,existing,McGuiness Flint,,,,,FALSE +Mcfly,All About You,existing,McFly,,,,,FALSE +Meatloaf,Bat Out of Hell (shortened version),existing,,,,,,FALSE +Meatloaf,I'd Do Anything for Love (but I Won't Do That),existing,,,,,,FALSE +Meatloaf,Paradise By The Dashboard Light,existing,,,,,,FALSE +Meatloaf,Two Out of Three Ain't Bad,existing,,,,,,FALSE +Meatloaf,You Took the Words Right Out of My Mouth,existing,,,,,,FALSE +Megadeth,A Tout le Monde,new,,,,,66522,FALSE +Megadeth,Hangar 18,new,,,,,65817,FALSE +Megadeth,Holy Wars... The Punishment Due,new,,,,,68060,FALSE +Megadeth,Moto Psycho,existing,,,,,,FALSE +Megadeth,Peace Sells,new,,,,,65275,FALSE +Megadeth,Sweating Bullets,new,,,,,61497,FALSE +Megadeth,Symphony Of Destruction,existing,,,,,,FALSE +Megadeth,Tornado of Souls,new,,,,,69470,FALSE +Megan Thee Stallion,Boa,new,,,,,81919,FALSE +Megan Thee Stallion,Cobra (rock remix),new,,,,,78980,FALSE +Megan Thee Stallion,Hiss,new,,,,,79630,FALSE +Megan Thee Stallion,Mamushi,new,,,,,82550,FALSE +Megan Thee Stallion,Neva Play,new,,,,,83787,FALSE +Megan Thee Stallion,Otaku Hot Girl,new,,,,,82533,FALSE +Megan Thee Stallion,Sweetest Pie,new,,,,,68774,FALSE +Meghan Trainor,All About That Bass,existing,,,,,,FALSE +Meghan Trainor,Better When I'm Dancin',new,,,,,50083,FALSE +Meghan Trainor,Dear Future Husband,existing,,,,,,FALSE +Meghan Trainor,Like I'm Gonna Lose You,new,,,,,48669,FALSE +Meghan Trainor,Lips Are Movin,existing,,,,,,FALSE +Meghan Trainor,Made You Look,new,,,,,72033,FALSE +Meghan Trainor,Me Too,new,,,,,51284,FALSE +Meghan Trainor,No,new,,,,,50906,FALSE +Mel Torme,I'm Coming Home Baby,existing,,,,,,FALSE +Melanie Martinez,Dollhouse,new,,,,,49772,FALSE +Melanie Martinez,Pacify Her,new,,,,,71705,FALSE +Melanie Martinez,Play Date,new,,,,,76290,FALSE +Melissa Etheridge,Bring Me Some Water,new,,,,,28283,FALSE +Melissa Etheridge,Come To My Window,new,,,,,11459,FALSE +Melissa Etheridge,Like The Way I Do,new,,,,,20703,FALSE +Melissa Etheridge,Similar Features,new,,,,,75081,FALSE +Men At Work,Down Under,existing,,,,,,FALSE +Men At Work,Who Can It Be Now,existing,,,,,,FALSE +Men Without Hats,The Safety Dance,new,,,,,6739,FALSE +Merle Haggard,I Think I'll Just Stay Here and Drink,new,,,,,46469,FALSE +Merle Haggard,Mama Tried,new,,,,,7708,FALSE +Merle Haggard,Okie From Muskogee,existing,,,,,,FALSE +Merle Haggard,Silver Wings,existing,,,,,,FALSE +Metallica,Enter Sandman,existing,,,,,,FALSE +Metallica,Fade To Black,existing,,,,,,FALSE +Metallica,For Whom The Bell Tolls,existing,,,,,,FALSE +Metallica,Fuel,new,,,,,57129,FALSE +Metallica,Master Of Puppets,existing,,,,,,FALSE +Metallica,Nothing Else Matters,existing,,,,,,FALSE +Metallica,One,existing,,,,,,FALSE +Metallica,Sad But True,new,,,,,33723,FALSE +Metallica,Seek & Destroy,new,,,,,55909,FALSE +Metallica,The Unforgiven,new,,,,,28856,FALSE +Metallica,Wherever I May Roam,existing,,,,,,FALSE +Metallica,Whiskey in the Jar,new,,,,,38064,FALSE +Metric,Gimme Sympathy,new,,,,,79775,FALSE +Metric,Gold Guns Girls,new,,,,,76464,FALSE +Metric,Help I'm Alive,new,,,,,70378,FALSE +Michael Buble,Always On My Mind,existing,,,,,,FALSE +Michael Buble,Come Fly With Me,existing,,,,,,FALSE +Michael Buble,Cry Me a River,existing,,,,,,FALSE +Michael Buble,Everything (A Cappella),existing,,,,,,FALSE +Michael Buble,Everything,existing,,,,,,FALSE +Michael Buble,Feeling Good,new,,,,,17888,FALSE +Michael Buble,Foggy Day,existing,,,,,,FALSE +Michael Buble,Haven't Met You Yet (A Cappella),existing,,,,,,FALSE +Michael Buble,Haven't Met You Yet,new,,,,,24676,FALSE +Michael Buble,Haven't Met You yet,existing,,,,,,FALSE +Michael Buble,Hollywood,existing,,,,,,FALSE +Michael Buble,Home,existing,,,,,,FALSE +Michael Buble,It's a Beautiful Day,existing,,,,,,FALSE +Michael Buble,Moondance,existing,,,,,,FALSE +Michael Buble,Put Your Head On My Shoulder,existing,,,,,,FALSE +Michael Buble,Save the Last Dance for Me,existing,,,,,,FALSE +Michael Buble,Sway,new,,,,,5264,FALSE +Michael Buble,That's All,existing,,,,,,FALSE +Michael Buble,To Love Somebody,existing,,,,,,FALSE +Michael Buble,Try A Little Tenderness (A Cappella),existing,,,,,,FALSE +Michael Franti & Spearhead,Say Hey (I Love You),new,,,,,25570,FALSE +Michael Franti & Spearhead,The Sound of Sunshine,new,,,,,71632,FALSE +Michael Holliday,Story of My Life,existing,,,,,,FALSE +Michael Jackson,Bad,new,,,,,12900,FALSE +Michael Jackson,Beat It,existing,,,,,,FALSE +Michael Jackson,Ben,existing,,,,,,FALSE +Michael Jackson,Billie Jean,existing,,,,,,FALSE +Michael Jackson,Black or White,existing,,,,,,FALSE +Michael Jackson,Don't Stop 'Til You Get Enough,existing,,,,,,FALSE +Michael Jackson,Get on the Floor,new,,,,,70545,FALSE +Michael Jackson,Got to Be There,new,,,,,67931,FALSE +Michael Jackson,Human Nature,new,,,,,14743,FALSE +Michael Jackson,I Can't Help It,existing,,,,,,FALSE +Michael Jackson,Man in the Mirror,new,,,,,13650,FALSE +Michael Jackson,Off The Wall,new,,,,,14156,FALSE +Michael Jackson,One Day In Your Life,existing,,,,,,FALSE +Michael Jackson,P.Y.T. (Pretty Young Thing),existing,,,,,,FALSE +Michael Jackson,Remember The Time,new,,,,,6391,FALSE +Michael Jackson,Rock with You,new,,,,,7667,FALSE +Michael Jackson,Smooth Criminal,new,,,,,14405,FALSE +Michael Jackson,The Way You Make Me Feel,existing,,,,,,FALSE +Michael Jackson,They Don't Really Care About Us,existing,,,,,,FALSE +Michael Jackson,Thriller (Live),existing,,,,,,FALSE +Michael Jackson,Wanna Be Startin' Somethin',new,,,,,14411,FALSE +Michael Jackson,You Are Not Alone,existing,,,,,,FALSE +Michael Jackson & Justin Timberlake,Love Never Felt so Good,existing,Michael Jackson,,,,,FALSE +Michael Jackson & Siedah Garrett,I Just Can't Stop Loving You,existing,Michael Jackson,,,,,FALSE +Michael McDonald,What A Fool Believes,existing,,,,,,FALSE +Michael Mcdonald,Higher & Higher (Live),existing,Michael McDonald,,,,,FALSE +Michael Sembello,Maniac,existing,,,,,,FALSE +Middle Of The Road,Chirpy Chirpy Cheep Cheep,existing,,,,,,FALSE +Midland,Burn Out,new,,,,,54076,FALSE +Midnight Oil,Beds Are Burning,existing,,,,,,FALSE +Migos,Bad and Boujee,new,,,,,55008,FALSE +Migos,MotorSport,new,,,,,57229,FALSE +Migos,Stir Fry,new,,,,,80108,FALSE +Migos,T-Shirt,new,,,,,56207,FALSE +Migos,Talk It Walk It,new,,,,,83264,FALSE +Miguel,Adorn,new,,,,,43014,FALSE +Miguel,All I Want Is You,new,,,,,64537,FALSE +Miguel,How Many Drinks,new,,,,,72098,FALSE +Miguel,Sky Walker,new,,,,,80024,FALSE +Miguel,Sure Thing,new,,,,,57215,FALSE +Mika,Big Girl (You Are Beautiful),existing,,,,,,FALSE +Mika,Grace Kelly,existing,,,,,,FALSE +Mika,Happy Ending,existing,,,,,,FALSE +Mike Oldfield,Moonlight Shadow ft. Maggie Reilly,existing,,,,,,FALSE +Mike and The Mechanics,The Living Years,new,,,,,6323,FALSE +Miles Davis,So What,existing,,,,,,FALSE +Miley Cyrus,Angels Like You,new,,,,,63110,FALSE +Miley Cyrus,Flowers,new,,,,,73087,FALSE +Miley Cyrus,Malibu,new,,,,,53201,FALSE +Miley Cyrus,Party in the U.S.A.,new,,,,,24207,FALSE +Miley Cyrus,Prisoner,new,,,,,63084,FALSE +Miley Cyrus,Used to Be Young,new,,,,,76701,FALSE +Miley Cyrus,We Can't Stop,existing,,,,,,FALSE +Miley Cyrus,Wrecking Ball,existing,,,,,,FALSE +Milky Chance,Down by the River,new,,,,,48319,FALSE +Milky Chance,Living in a Haze,new,,,,,80617,FALSE +Milky Chance,Stolen Dance,new,,,,,46608,FALSE +Milow,Ayo Technology,new,,,,,22638,FALSE +Mink Deville,Spanish Stroll,existing,,,,,,FALSE +Miranda Lambert,Bluebird,new,,,,,59541,FALSE +Miranda Lambert,Gunpowder & Lead,new,,,,,16129,FALSE +Miranda Lambert,Mama's Broken Heart,existing,,,,,,FALSE +Miranda Lambert,Roots And Wings,existing,,,,,,FALSE +Miranda Lambert,Somethin Bad,existing,,,,,,FALSE +Miranda Lambert,Somethin' Bad,new,,,,,47056,FALSE +Miranda Lambert,The House That Built Me,new,,,,,26771,FALSE +Misfits,Hybrid Moments,new,,,,,70154,FALSE +Misfits,Last Caress,new,,,,,69523,FALSE +Missing Persons,Walking in L.A.,new,,,,,71582,FALSE +Missing Persons,Words,new,,,,,68424,FALSE +Missy Elliott,Get Ur Freak On,new,,,,,55687,FALSE +Missy Elliott,Hot Boyz,new,,,,,35381,FALSE +Missy Elliott,Lose Control,new,,,,,65903,FALSE +Missy Elliott,One Minute Man,new,,,,,75782,FALSE +Missy Elliott,Sock It 2 Me,new,,,,,35057,FALSE +Missy Elliott,The Rain (Supa Dupa Fly),new,,,,,71352,FALSE +Missy Elliott,We Run This,new,,,,,24814,FALSE +Missy Elliott,Work It,new,,,,,12659,FALSE +Mitski,First Love Late Spring,new,,,,,83090,FALSE +Mitski,Francis Forever,new,,,,,71635,FALSE +Mitski,I Bet on Losing Dogs,new,,,,,81444,FALSE +Mitski,Liquid Smooth,new,,,,,79095,FALSE +Mitski,My Love Mine All Mine,new,,,,,77497,FALSE +Mitski,Nobody,new,,,,,69418,FALSE +Mitski,Washing Machine Heart,new,,,,,74038,FALSE +Mitski,Your Best American Girl,new,,,,,81876,FALSE +Moby,Extreme Ways,new,,,,,29776,FALSE +Moby,Lift Me Up,new,,,,,21185,FALSE +Moby,Natural Blues (reprise 2021),new,,,,,65911,FALSE +Moby,Natural Blues,new,,,,,18082,FALSE +Moby,Porcelain,new,,,,,22122,FALSE +Moby,South Side,new,,,,,27846,FALSE +Moby,We Are All Made of Stars,new,,,,,8277,FALSE +Moby,Why Does My Heart Feel So Bad,new,,,,,12370,FALSE +Modern English,I Melt With You (album version),new,,,,,11469,FALSE +Modest Mouse,3rd Planet,new,,,,,79379,FALSE +Modest Mouse,Dashboard,new,,,,,71649,FALSE +Modest Mouse,Float On,new,,,,,29515,FALSE +Modest Mouse,Lampshades on Fire,new,,,,,82973,FALSE +Modest Mouse,Missed the Boat,new,,,,,78871,FALSE +Modest Mouse,Ocean Breathes Salty,new,,,,,26628,FALSE +Moe Bandy,Someday Soon,existing,,,,,,FALSE +Molly Hatchet,Flirtin' with Disaster,new,,,,,64237,FALSE +Morcheeba,Enjoy the Ride,new,,,,,46533,FALSE +Morcheeba,Rome Wasn't Built in a Day,new,,,,,35924,FALSE +Morcheeba,The Sea,new,,,,,23252,FALSE +Morgan Wallen,Chasin' You,new,,,,,60299,FALSE +Morgan Wallen,Cowgirls,new,,,,,74053,FALSE +Morgan Wallen,Last Night,new,,,,,73508,FALSE +Morgan Wallen,Lies Lies Lies,new,,,,,82565,FALSE +Morgan Wallen,Thinkin' Bout Me,new,,,,,74202,FALSE +Morgan Wallen,Wasted on You,new,,,,,63585,FALSE +Morgan Wallen,Whiskey Glasses,new,,,,,56667,FALSE +Morgan Wallen,You Proof,new,,,,,69674,FALSE +Morrissey,Everyday Is Like Sunday,existing,,,,,,FALSE +Mother Mother,Hayloft,new,,,,,75870,FALSE +Mother Mother,Verbatim,new,,,,,82659,FALSE +Motionless in White,Another Life,new,Motionless In White,,,,73271,FALSE +Motionless in White,Voices,new,Motionless In White,,,,83240,FALSE +Motley Crue,Dr. Feelgood,new,,,,,21252,FALSE +Motley Crue,Girls Girls Girls,existing,,,,,,FALSE +Motley Crue,Home Sweet Home,existing,,,,,,FALSE +Motley Crue,Kickstart my Heart,new,,,,,56211,FALSE +Motley Crue,Live Wire,new,,,,,53794,FALSE +Motley Crue,Looks That Kill,new,,,,,59960,FALSE +Motley Crue,Shout at the Devil,new,,,,,51299,FALSE +Motley Crue,Wild Side,existing,,,,,,FALSE +Motorhead,Ace Of Spades,existing,,,,,,FALSE +Motorhead,Overkill,new,,,,,69694,FALSE +Motorhead,The Game,new,,,,,67457,FALSE +Mott The Hoople,All the Way from Memphis,existing,,,,,,FALSE +Mott The Hoople,All the Young Dudes,existing,,,,,,FALSE +Mountain,Mississippi Queen,existing,,,,,,FALSE +Mozart,Mozart String Quartet No. 17,existing,,,,,,FALSE +Mozart,Mozart String Quartet No. 17,existing,,,,,,FALSE +Mr. Big,To Be With You,new,,,,,7189,FALSE +Mr. Big,Wild World,new,,,,,11397,FALSE +Mr. Mister,Broken Wings,new,,,,,13167,FALSE +Mr. Mister,Kyrie,new,,,,,27640,FALSE +Mt. Joy,Astrovan,new,,,,,81708,FALSE +Mt. Joy,Silver Lining,new,,,,,79020,FALSE +Mud,Lonely This Christmas,existing,,,,,,FALSE +Mud,Tiger Feet,existing,,,,,,FALSE +Muddy Waters,"Baby, Please Don't Go",new,,,,,77957,FALSE +Muddy Waters,Got My Mojo Working,new,,,,,47786,FALSE +Muddy Waters,Hoochie Coochie Man,new,,,,,19045,FALSE +Muddy Waters,I'm Ready,new,,,,,82519,FALSE +Muddy Waters,Mannish Boy,new,,,,,70497,FALSE +Mudvayne,Fall Into Sleep,existing,,,,,,FALSE +Mudvayne,Forget To Remember,existing,,,,,,FALSE +Mumford & Sons,Awake My Soul,new,,,,,46249,FALSE +Mumford & Sons,Babel,new,,,,,64245,FALSE +Mumford & Sons,Believe,new,,,,,49153,FALSE +Mumford & Sons,Guiding Light,new,,,,,56727,FALSE +Mumford & Sons,Hopeless Wanderer,new,,,,,73364,FALSE +Mumford & Sons,I Will Wait,new,,,,,41480,FALSE +Mumford & Sons,Little Lion Man,new,,,,,25703,FALSE +Muse,Hysteria,new,,,,,14683,FALSE +Muse,Knights of Cydonia,new,,,,,21683,FALSE +Muse,Madness,existing,,,,,,FALSE +Muse,Plug In Baby,new,,,,,26289,FALSE +Muse,Psycho,existing,,,,,,FALSE +Muse,Starlight,existing,,,,,,FALSE +Muse,Supermassive Black Hole,existing,,,,,,FALSE +Muse,Time is Running Out,new,,,,,19933,FALSE +Muse,Undisclosed Desires,new,,,,,25631,FALSE +Muse,Uprising,existing,,,,,,FALSE +My Chemical Romance,Cancer,new,,,,,69110,FALSE +My Chemical Romance,Disenchanted,new,,,,,71825,FALSE +My Chemical Romance,Famous Last Words,new,,,,,11713,FALSE +My Chemical Romance,Helena,new,,,,,5633,FALSE +My Chemical Romance,I'm Not Okay (I Promise),existing,,,,,,FALSE +My Chemical Romance,Na Na Na (Na Na Na Na Na Na Na Na Na),new,,,,,69915,FALSE +My Chemical Romance,Teenagers,existing,,,,,,FALSE +My Chemical Romance,The Ghost Of You,existing,,,,,,FALSE +My Chemical Romance,Welcome to the Black Parade,new,,,,,13667,FALSE +Mystikal,Danger (Been So Long),new,,,,,80043,FALSE +Mystikal,Shake Ya Ass,new,,,,,68718,FALSE +Mystikal,Shake it Fast,new,,,,,68717,FALSE +N-Dubz,Best Behaviour,new,,,,,34283,FALSE +N-Dubz,Girls,new,,,,,35655,FALSE +N-Dubz,I Need You,new,,,,,26212,FALSE +N-Dubz,Morning Star,new,,,,,36713,FALSE +N-Dubz,Playing With Fire,new,,,,,27109,FALSE +N-Dubz,Say It's Over,new,,,,,29751,FALSE +N-Dubz,We Dance On,new,,,,,30792,FALSE +N.E.R.D.,She Wants to Move,new,,,,,80403,FALSE +N.O.R.E.,Nothin',new,,,,,30783,FALSE +N.O.R.E.,Oye mi canto,new,,,,,37527,FALSE +N.W.A.,8 Ball,new,,,,,82488,FALSE +N.W.A.,Dope Man,new,,,,,69824,FALSE +N.W.A.,Express Yourself,new,,,,,69910,FALSE +N.W.A.,Fuck Tha Police,new,,,,,38911,FALSE +N.W.A.,Gangsta Gangsta,new,,,,,76116,FALSE +N.W.A.,Straight Outta Compton,new,,,,,31310,FALSE +N2Deep,Back to the Hotel,new,,,,,78572,FALSE +NF,Happy,new,,,,,74867,FALSE +NF,Hope,new,,,,,73828,FALSE +NF,If You Want Love,new,,,,,83018,FALSE +NF,Just Like You,new,,,,,39536,FALSE +NF,Let You Down,new,,,,,55184,FALSE +NF,Lost,new,,,,,82792,FALSE +NF,Mansion,new,,,,,75202,FALSE +NF,Motto,new,,,,,74257,FALSE +NF,Paralyzed,new,,,,,77678,FALSE +NF,The Search,new,,,,,71283,FALSE +NF,Time,new,,,,,67961,FALSE +NF,When I Grow Up,new,,,,,74602,FALSE +NLE Choppa,Shotta Flow (remix),new,,,,,80621,FALSE +NLE Choppa,Slut Me Out 2,new,,,,,81715,FALSE +NLE Choppa,Slut Me Out,new,,,,,74703,FALSE +NSYNC,"Bye, Bye, Bye",new,,,,,8939,FALSE +NSYNC,I Want You Back,new,,,,,8509,FALSE +NSYNC,It's Gonna Be Me,new,,,,,7424,FALSE +NSYNC,Tearin' Up My Heart,new,,,,,9156,FALSE +NSYNC,This I Promise You,new,,,,,7380,FALSE +Naked Eyes,Always Something There To Remind Me,new,,,,,52208,FALSE +Naked Eyes,"Promises, Promises",new,,,,,28408,FALSE +Nanci Griffith,The Speed Of The Sound Of Loneliness,existing,,,,,,FALSE +Nancy Sinatra,These Boots Are Made For Walkin,existing,,,,,,FALSE +Nancy Sinatra,You Only Live Twice,existing,,,,,,FALSE +Nas,I Can,new,,,,,28306,FALSE +Nas,If I Ruled the World (Imagine That),new,,,,,27633,FALSE +Nas,Made You Look,new,,,,,29544,FALSE +Nas,One Mic,new,,,,,78138,FALSE +Nas,Street Dreams,new,,,,,34403,FALSE +Nat King Cole,(I Love You) For Sentimental Reasons,existing,,,,,,FALSE +Nat King Cole,Down By The Old Mill Stream (A Cappella),existing,,,,,,FALSE +Nat King Cole,Handful Of Stars (A Cappella),existing,,,,,,FALSE +Nat King Cole,L-O-V-E,existing,,,,,,FALSE +Nat King Cole,Let There Be Love,existing,,,,,,FALSE +Nat King Cole,On the Street Where You Live,existing,,,,,,FALSE +Nat King Cole,Route 66,existing,,,,,,FALSE +Nat King Cole,Straighten Up And Fly Right,existing,,,,,,FALSE +Nat King Cole,Unforgettable,existing,,,,,,FALSE +Natalie Cole,Almost Like Being In Love,existing,,,,,,FALSE +Natalie Cole,Don't Get Around Much Anymore,existing,,,,,,FALSE +Natalie Cole,I Wish You Love,existing,,,,,,FALSE +Natalie Cole,L-O-V-E,existing,,,,,,FALSE +Natalie Cole,Lush Life,existing,,,,,,FALSE +Natalie Cole,Our Love Is Here To Stay,existing,,,,,,FALSE +Natalie Cole,Route 66,existing,,,,,,FALSE +Natalie Cole,Unforgettable (Duet),existing,,,,,,FALSE +Natalie Imbruglia,Torn,existing,,,,,,FALSE +Natalie Merchant,Carnival,new,,,,,10791,FALSE +Natalie Merchant,Jealousy,new,,,,,11003,FALSE +Natalie Merchant,Wonder,new,,,,,11338,FALSE +Nathaniel Rateliff,S.O.B.,new,,,,,49823,FALSE +Nathaniel Rateliff,You Worry Me,new,,,,,55375,FALSE +Naughty Boy,La La La feat. Sam Smith,existing,,,,,,FALSE +Naughty Boy,La La La,new,,,,,44047,FALSE +Naughty Boy,Runnin' (Lose It All),new,,,,,50032,FALSE +Naughty By Nature,Craziest,new,,,,,29032,FALSE +Naughty By Nature,Hip Hop Hooray,new,,,,,72743,FALSE +Naughty By Nature,O.P.P.,existing,,,,,,FALSE +Nazareth,Hair of the Dog,new,,,,,50149,FALSE +Nazareth,Love Hurts,existing,,,,,,FALSE +Nazareth,This Flight Tonight,existing,,,,,,FALSE +Ne-Yo,Because of You,new,,,,,11952,FALSE +Ne-Yo,Closer,existing,,,,,,FALSE +Ne-Yo,Mad,existing,,,,,,FALSE +Ne-Yo,Miss Independent,new,,,,,21001,FALSE +Ne-Yo,Sexy Love,new,,,,,13445,FALSE +Ne-Yo,She Knows,new,,,,,77807,FALSE +Ne-Yo,So Sick,new,,,,,12660,FALSE +Neil Diamond,America,new,,,,,8189,FALSE +Neil Diamond,Beautiful Noise,existing,,,,,,FALSE +Neil Diamond,Cherry Cherry,existing,,,,,,FALSE +Neil Diamond,Cracklin' Rosie,existing,,,,,,FALSE +Neil Diamond,Forever In Blue Jeans,existing,,,,,,FALSE +Neil Diamond,I Am I Said,existing,,,,,,FALSE +Neil Diamond,Love On The Rocks,existing,,,,,,FALSE +Neil Diamond,Midnight Train To Georgia,existing,,,,,,FALSE +Neil Diamond,September Morn,existing,,,,,,FALSE +Neil Diamond,Solitary Man - Live Arrangement,existing,,,,,,FALSE +Neil Diamond,Something Blue,existing,,,,,,FALSE +Neil Diamond,Song Sung Blue,existing,,,,,,FALSE +Neil Diamond,Sweet Caroline,existing,,,,,,FALSE +Neil Sedaka,Breaking Up Is Hard To Do,existing,,,,,,FALSE +Neil Sedaka,Oh Carol,existing,,,,,,FALSE +Neil Young,Cinnamon Girl,existing,,,,,,FALSE +Neil Young,Harvest Moon,existing,,,,,,FALSE +Neil Young,Heart Of Gold,existing,,,,,,FALSE +Neil Young,Helpless,existing,,,,,,FALSE +Neil Young,Like A Hurricane,existing,,,,,,FALSE +Neil Young,Long May You Run,existing,,,,,,FALSE +Neil Young,Needle And The Damage Done,existing,,,,,,FALSE +Neil Young,Old Man,existing,,,,,,FALSE +Neil Young,Only Love Can Break Your Heart,existing,,,,,,FALSE +Neil Young,Rockin In The Free World,existing,,,,,,FALSE +Neil Young,Southern Man,existing,,,,,,FALSE +Nelly,Dilemma,new,,,,,19156,FALSE +Nelly,Grillz,new,,,,,32077,FALSE +Nelly,Hot In Herre,existing,,,,,,FALSE +Nelly,Just A Dream,existing,,,,,,FALSE +Nelly,Lil Bit,new,,,,,64576,FALSE +Nelly,Ride wit Me,new,,,,,17214,FALSE +Nelly & Kelly,Dilemma,existing,,,,,,FALSE +Nelly Furtado,I'm Like A Bird,existing,,,,,,FALSE +Nena,99 Luftballons,existing,,,,,,FALSE +Neneh Cherry,Buffalo Stance,new,,,,,14061,FALSE +Neon Trees,Animal,new,,,,,32927,FALSE +Neon Trees,Everybody Talks,existing,,,,,,FALSE +Neon Trees,Sleeping With A Friend,new,,,,,47094,FALSE +Neutral Milk Hotel,In the Aeroplane Over the Sea,new,,,,,72675,FALSE +Neutral Milk Hotel,Two Headed Boy,new,,,,,77681,FALSE +New Edition,Cool It Now,existing,,,,,,FALSE +New Found Glory,All Downhill From Here,existing,,,,,,FALSE +New Found Glory,My Friends Over You,existing,,,,,,FALSE +New Kids On The Block,You Got It (The Right Stuff),existing,,,,,,FALSE +New Order,Age of Consent,new,,,,,72709,FALSE +New Order,Bizarre Love Triangle,new,,,,,55920,FALSE +New Order,Blue Monday,new,,,,,27905,FALSE +New Order,Regret,existing,,,,,,FALSE +New Order,True Faith,existing,,,,,,FALSE +New York City,I'm Doin' Fine Now,existing,,,,,,FALSE +NewJeans (),Ditto,new,NewJeans,,,,73822,FALSE +NewJeans (),OMG,new,NewJeans,,,,73823,FALSE +NewJeans (),Super Shy,new,NewJeans,,,,76395,FALSE +Newton Faulkner,Dream Catch Me,existing,,,,,,FALSE +Nick Cave,Henry Lee,new,,,,,75412,FALSE +Nick Cave,Into My Arms,new,,,,,64569,FALSE +Nick Cave,Red Right Hand,new,,,,,55781,FALSE +Nick Cave,Stagger Lee,new,,,,,72986,FALSE +Nick Cave,The Ship Song,new,,,,,82034,FALSE +Nick Cave,Where the Wild Roses Grow,new,,,,,20804,FALSE +Nick Jonas,Chains,new,,,,,49034,FALSE +Nick Jonas,Close,new,,,,,51075,FALSE +Nick Jonas,Jealous,new,,,,,48007,FALSE +Nickelback,Burn It To The Ground,existing,,,,,,FALSE +Nickelback,How You Remind Me,existing,,,,,,FALSE +Nickelback,If Today Was Your Last Day,existing,,,,,,FALSE +Nickelback,Lullaby,existing,,,,,,FALSE +Nickelback,Someday,existing,,,,,,FALSE +Nickelback,When We Stand Together,existing,,,,,,FALSE +Nicki Minaj,Anaconda,new,,,,,47713,FALSE +Nicki Minaj,FTCU,new,,,,,78982,FALSE +Nicki Minaj,Starships,new,,,,,39993,FALSE +Nicki Minaj,Super Bass,new,,,,,37170,FALSE +Nicki Minaj,Super Freaky Girl,new,,,,,71069,FALSE +Nicki Minaj,The Night Is Still Young,new,,,,,82205,FALSE +Nicki Minaj,Va Va Voom,new,,,,,42626,FALSE +Night Ranger,(You Can Still) Rock in America,new,,,,,64550,FALSE +Night Ranger,Sister Christian,new,,,,,41701,FALSE +Nightmare Before Christmas,What's This (A Cappella),existing,,,,,,FALSE +Nightwish,Amaranth,existing,,,,,,FALSE +Nightwish,Nemo,new,,,,,30574,FALSE +Nightwish,Wish I Had An Angel,existing,,,,,,FALSE +Nik Kershaw,Wouldn't It Be Good,existing,,,,,,FALSE +Nina Simone,Don't Let Me Be Misunderstood,new,,,,,48589,FALSE +Nina Simone,Feeling Good,existing,,,,,,FALSE +Nina Simone,I Love You Porgy,existing,,,,,,FALSE +Nina Simone,I Put A Spell On You,existing,,,,,,FALSE +Nina Simone,I Want a Little Sugar in My Bowl,new,,,,,29442,FALSE +Nina Simone,I Wish I Knew How It Would Feel to Be Free,new,,,,,61097,FALSE +Nina Simone,My Baby Just Cares For Me,existing,,,,,,FALSE +Nina Simone,Sinnerman,new,,,,,55949,FALSE +Nine Inch Nails,Closer,new,,,,,53080,FALSE +Nine Inch Nails,Hand That Feeds,new,,,,,25250,FALSE +Nine Inch Nails,Head Like a Hole,new,,,,,63758,FALSE +Nine Inch Nails,Hurt,new,,,,,39196,FALSE +Nirvana,About a Girl (live acoustic),new,,,,,39838,FALSE +Nirvana,All Apologies,new,,,,,37430,FALSE +Nirvana,Come As You Are,existing,,,,,,FALSE +Nirvana,Dumb,new,,,,,67466,FALSE +Nirvana,Heart-Shaped Box,existing,,,,,,FALSE +Nirvana,In Bloom,new,,,,,42006,FALSE +Nirvana,Lithium,existing,,,,,,FALSE +Nirvana,Rape Me,existing,,,,,,FALSE +Nirvana,Smells Like Teen Spirit,existing,,,,,,FALSE +Nirvana,Something in the Way,new,,,,,68120,FALSE +Nirvana,The Man Who Sold The World,existing,,,,,,FALSE +Nirvana,The Man Who Sold the World,new,,,,,26239,FALSE +No Doubt,Don't Speak,new,,,,,10600,FALSE +No Doubt,Hella Good,existing,,,,,,FALSE +No Doubt,It's My Life,existing,,,,,,FALSE +No Doubt,Just A Girl,existing,,,,,,FALSE +No Doubt,Settle Down,existing,,,,,,FALSE +No Doubt,Spiderwebs,existing,,,,,,FALSE +No Doubt,Underneath It All,existing,,,,,,FALSE +Noah Kahan,All My Love,new,,,,,81568,FALSE +Noah Kahan,Call Your Mom,new,,,,,82578,FALSE +Noah Kahan,Dial Drunk (feat. Post Malone),new,,,,,76972,FALSE +Noah Kahan,Northern Attitude (with Hozier),new,,,,,78410,FALSE +Noah Kahan,Orange Juice,new,,,,,80763,FALSE +Noah Kahan,Stick Season,new,,,,,70975,FALSE +Noah Kahan,You're Gonna Go Far,new,,,,,80034,FALSE +Noel Gallagher's High Flying Birds,Death of You & Me,existing,,,,,,FALSE +Noisettes,Don't Upset the Rhythm,existing,,,,,,FALSE +Noisettes,Never Forget You,existing,,,,,,FALSE +Noisettes,That Girl,existing,,,,,,FALSE +Norah Jones,Come Away With Me,existing,,,,,,FALSE +Norah Jones,Don't Know Why,existing,,,,,,FALSE +Norah Jones,Sunrise,existing,,,,,,FALSE +Norah Jones,Turn Me On,new,,,,,12887,FALSE +Nothing But Thieves,Amsterdam,new,,,,,69375,FALSE +Nothing But Thieves,Sorry,new,,,,,64787,FALSE +OK Go,Here It Goes Again,new,,,,,44003,FALSE +Oasis,Champagne Supernova,existing,,,,,,FALSE +Oasis,Don't Look Back In Anger,existing,,,,,,FALSE +Oasis,Importance of Being Idol,existing,,,,,,FALSE +Oasis,Little By Little,existing,,,,,,FALSE +Oasis,Lyla,existing,,,,,,FALSE +Oasis,Morning Glory,existing,,,,,,FALSE +Oasis,Some Might Say,existing,,,,,,FALSE +Oasis,Stop Crying Your Heart Out,existing,,,,,,FALSE +Oasis,Supersonic,existing,,,,,,FALSE +Oasis,Wonderwall,existing,,,,,,FALSE +Ocean Colour Scene,Riverboat Song,existing,,,,,,FALSE +Odyssey,Going Back to My Roots,existing,,,,,,FALSE +Odyssey,Use It Up,existing,,,,,,FALSE +Of Monsters And Men,King And Lionheart,existing,,,,,,FALSE +Of Monsters And Men,Mountain Sound,existing,,,,,,FALSE +Of Monsters and Men,Little Talks,existing,Of Monsters And Men,,,,,FALSE +Oingo Boingo,Dead Man's Party,new,,,,,72087,FALSE +Oingo Boingo,Weird Science,new,,,,,71162,FALSE +Old Crow Medicine Show,Wagon Wheel,existing,,,,,,FALSE +Old Dominion,Break Up With Him,new,,,,,51436,FALSE +Old Dominion,Hotel Key,new,,,,,55658,FALSE +Old Dominion,Memory Lane,new,,,,,73218,FALSE +Old Dominion,No Such Thing as a Broken Heart,new,,,,,53369,FALSE +Old Dominion,One Man Band,new,,,,,57591,FALSE +Old Dominion,Snapback,new,,,,,51208,FALSE +Old Dominion,Written In The Sand,new,,,,,53734,FALSE +Oleta Adams,Get Here,existing,,,,,,FALSE +Oliver,Consider Yourself (A Cappella),existing,,,,,,FALSE +Olivia Newton John,Banks of the Ohio,existing,Olivia Newton-John,,,,,FALSE +Olivia Newton John,Take Me Home,existing,Olivia Newton-John,,,,,FALSE +Olivia Newton John,A Little More Love,new,,,,,21732,FALSE +Olivia Newton John,Physical,new,,,,,19117,FALSE +Olivia Rodrigo,Bad Idea Right,new,,,,,76557,FALSE +Olivia Rodrigo,Deja Vu,new,,,,,64581,FALSE +Olivia Rodrigo,Drivers License,new,,,,,63552,FALSE +Olivia Rodrigo,Favorite Crime,new,,,,,65063,FALSE +Olivia Rodrigo,Good 4 U,new,,,,,65009,FALSE +Olivia Rodrigo,Happier,new,,,,,65141,FALSE +Olivia Rodrigo,"Jealousy, Jealousy",new,,,,,65494,FALSE +Olivia Rodrigo,Obsessed,new,,,,,80593,FALSE +Olivia Rodrigo,Traitor,new,,,,,65038,FALSE +Olivia Rodrigo,Vampire,new,,,,,75856,FALSE +Olly Murs,Dance With Me Tonight,existing,,,,,,FALSE +Olly Murs,Dear Darlin,existing,,,,,,FALSE +Olly Murs,Up,new,,,,,48560,FALSE +Olly Murs,Wrapped Up,existing,,,,,,FALSE +Olly Murs,You Don't Know Love,new,,,,,51933,FALSE +Olly Murs Feat. Flo Rida,Troublemaker,existing,Olly Murs,,,,,FALSE +One Direction,18,new,,,,,75677,FALSE +One Direction,Best Song Ever,existing,,,,,,FALSE +One Direction,Drag Me Down,new,,,,,49641,FALSE +One Direction,Everything About You,existing,,,,,,FALSE +One Direction,Kiss You,existing,,,,,,FALSE +One Direction,Little Things,existing,,,,,,FALSE +One Direction,Live While We're Young,existing,,,,,,FALSE +One Direction,Night Changes,existing,,,,,,FALSE +One Direction,Perfect,new,,,,,50302,FALSE +One Direction,Steal My Girl,existing,,,,,,FALSE +One Direction,Story Of My Life,existing,,,,,,FALSE +One Direction,What Makes You Beautiful,existing,,,,,,FALSE +One Direction,You And I,new,,,,,45827,FALSE +OneRepublic,All The Right Moves,existing,,,,,,FALSE +OneRepublic,Counting Stars,existing,,,,,,FALSE +OneRepublic,Good Life,existing,,,,,,FALSE +OneRepublic,I Ain't Worried,new,,,,,69857,FALSE +OneRepublic,I Lived,existing,,,,,,FALSE +OneRepublic,Love Runs Out,existing,,,,,,FALSE +OneRepublic,Run,new,,,,,66978,FALSE +OneRepublic,Secrets,new,,,,,26650,FALSE +OneRepublic,Stop And Stare,existing,,,,,,FALSE +OneRepublic,Sunshine,new,,,,,83668,FALSE +Orchestral Manoeuvres In The Dark,Enola Gay,existing,,,,,,FALSE +Orchestral Manoeuvres In The Dark,Pandora's Box,existing,,,,,,FALSE +Orchestral Manoeuvres in the Dark,(Forever) Live and Die,new,Orchestral Manoeuvres In The Dark,,,,73431,FALSE +Orchestral Manoeuvres in the Dark,Electricity,new,Orchestral Manoeuvres In The Dark,,,,73999,FALSE +Orchestral Manoeuvres in the Dark,If You Leave,new,Orchestral Manoeuvres In The Dark,,,,63317,FALSE +Orchestral Manoeuvres in the Dark,So in Love,new,Orchestral Manoeuvres In The Dark,,,,73067,FALSE +Orchestral Manoeuvres in the Dark,Souvenir,new,Orchestral Manoeuvres In The Dark,,,,73585,FALSE +Orleans,Dance With Me,existing,,,,,,FALSE +Orleans,Still The One,existing,,,,,,FALSE +Otis Day And The Knights,Shama Lama Ding Dong,existing,,,,,,FALSE +Otis Day And The Knights,Shout,existing,,,,,,FALSE +Otis Redding,Dock of the Bay,existing,,,,,,FALSE +Otis Redding,Love Man,existing,,,,,,FALSE +Otis Redding,Sittin On The Dock Of The Bay,existing,,,,,,FALSE +Ottawan,D.I.S.C.O,existing,,,,,,FALSE +Ottis Redding,Hard To Handle,existing,,,,,,FALSE +OutKast,ATLiens,new,Outkast,,,,78412,FALSE +OutKast,B.O.B. (Bombs Over Baghdad),new,Outkast,,,,69884,FALSE +OutKast,Elevators (Me & You),new,Outkast,,,,29509,FALSE +OutKast,Land of a Million Drums,new,Outkast,,,,19108,FALSE +OutKast,Mighty 'O',new,Outkast,,,,25194,FALSE +OutKast,Prototype,new,Outkast,,,,49102,FALSE +OutKast,Rosa Parks,new,Outkast,,,,73239,FALSE +OutKast,Roses,new,Outkast,,,,52623,FALSE +OutKast,"So Fresh, So Clean",new,Outkast,,,,65744,FALSE +OutKast,The Way You Move,new,Outkast,,,,56662,FALSE +OutKast,The Whole World,new,Outkast,,,,82957,FALSE +Outkast,Hey Ya,existing,,,,,,FALSE +Outkast,Ms. Jackson,existing,,,,,,FALSE +Outlaws,Ghost Riders In The Sky,existing,,,,,,FALSE +Outlaws (US),Green Grass and High Tides,new,Outlaws,,,,19431,FALSE +Outlaws (US),There Goes Another Love Song,new,Outlaws,,,,67831,FALSE +Owl City,Fireflies,existing,,,,,,FALSE +Owl City,Good Time,existing,,,,,,FALSE +Owl City,Vanilla Twilight,existing,,,,,,FALSE +Owl City,When Can I See You Again,new,,,,,49046,FALSE +Ozark Mountain Daredevils,Jackie Blue,existing,,,,,,FALSE +Ozzy Osbourne,Bark at the Moon,new,,,,,57748,FALSE +Ozzy Osbourne,Crazy Train,existing,,,,,,FALSE +Ozzy Osbourne,Diary of a Madman,new,,,,,65020,FALSE +Ozzy Osbourne,Dreamer,existing,,,,,,FALSE +Ozzy Osbourne,Flying High Again,new,,,,,62242,FALSE +Ozzy Osbourne,I Don't Know,new,,,,,19093,FALSE +Ozzy Osbourne,I Don't Wanna Stop,new,,,,,70161,FALSE +Ozzy Osbourne,Mama I'm Coming Home,existing,,,,,,FALSE +Ozzy Osbourne,No More Tears,existing,,,,,,FALSE +Ozzy Osbourne,S.A.T.O,new,,,,,71732,FALSE +Ozzy Osbourne,Shot In The Dark,existing,,,,,,FALSE +P.O.D. Payable On Death,Alive,existing,,,,,,FALSE +P.O.D. Payable On Death,Boom,existing,,,,,,FALSE +Paint Your Wagon,They Call The Wind Mariah (A Cappella),existing,,,,,,FALSE +Paloma Faith,30 Minute Love Affair,existing,,,,,,FALSE +Paloma Faith,Beauty Remains,existing,,,,,,FALSE +Paloma Faith,New York,existing,,,,,,FALSE +Paloma Faith,Only Love Can Hurt Like This,new,,,,,46777,FALSE +Paloma Faith,Picking Up the Pieces,existing,,,,,,FALSE +Panic At The Disco,Lying Is The Most Fun A Girl Can Have Without Taking Her Clothes Off,existing,Panic! At the Disco,,,,,FALSE +Panic At The Disco,Nine In The Afternoon,existing,Panic! At the Disco,,,,,FALSE +Panic At The Disco,Death of a Bachelor,new,,,,,51243,FALSE +Panic At The Disco,Don't Threaten Me with a Good Time,new,,,,,67477,FALSE +Panic At The Disco,Emperor's New Clothes,new,,,,,51757,FALSE +Panic At The Disco,High Hopes,new,,,,,55945,FALSE +Panic At The Disco,House of Memories,new,,,,,69964,FALSE +Panic At The Disco,I Write Sins Not Tragedies,new,,,,,21204,FALSE +Panic At The Disco,Victorious,new,,,,,50963,FALSE +Pantera,Cemetery Gates,new,,,,,21676,FALSE +Pantera,Cowboys From Hell,existing,,,,,,FALSE +Pantera,Domination,new,,,,,21913,FALSE +Pantera,I'm Broken,new,,,,,21916,FALSE +Pantera,Walk,existing,,,,,,FALSE +Paolo Nutini,42287,existing,,,,,,FALSE +Paolo Nutini,Candy,new,,,,,23014,FALSE +Paolo Nutini,Iron Sky,new,,,,,63323,FALSE +Paolo Nutini,Jenny Don't Be Hasty,existing,,,,,,FALSE +Paolo Nutini,Last Request,existing,,,,,,FALSE +Paolo Nutini,Pencil Full of Lead,existing,,,,,,FALSE +Paolo Nutini,Scream (Funk Your Life Up),existing,,,,,,FALSE +Paolo Nutinin,New Shoes,existing,Paolo Nutini,,,,,FALSE +Papa Roach,Between Angels and Insects,new,,,,,25369,FALSE +Papa Roach,Getting Away with Murder,new,,,,,75174,FALSE +Papa Roach,Help,new,,,,,81117,FALSE +Papa Roach,Last Resort,existing,,,,,,FALSE +Papa Roach,Scars,new,,,,,5635,FALSE +Paramore,Ain't It Fun,existing,,,,,,FALSE +Paramore,All I Wanted,new,,,,,25502,FALSE +Paramore,Crush Crush Crush,existing,,,,,,FALSE +Paramore,Decode,new,,,,,21420,FALSE +Paramore,Hard Times,new,,,,,11856,FALSE +Paramore,Misery Business,new,,,,,16599,FALSE +Paramore,Still Into You,existing,,,,,,FALSE +Paramore,That's What You Get,new,,,,,20924,FALSE +Paramore,The Only Exception,existing,,,,,,FALSE +Parker McCollum,Handle on You,new,,,,,71401,FALSE +Parker McCollum,Hell of a Year,new,,,,,69510,FALSE +Parker McCollum,I Can't Breathe,new,,,,,27760,FALSE +Parker McCollum,Pretty Heart,new,,,,,61041,FALSE +Parliament,Aqua Boogie (A Psychoalphadiscobetabioaquadoloop),new,,,,,73943,FALSE +Parliament,Flash Light,new,,,,,57774,FALSE +Parliament,Give Up the Funk (Tear the Roof off the Sucker),new,,,,,55314,FALSE +Parliament,P. Funk (Wants to Get Funked Up),new,,,,,72133,FALSE +Parmalee,Take My Name,new,,,,,67904,FALSE +Passenger,Anywhere,new,,,,,61339,FALSE +Passenger,Let Her Go,existing,,,,,,FALSE +Pat Benatar,Fire and Ice,new,,,,,19071,FALSE +Pat Benatar,Heartbreaker,new,,,,,9454,FALSE +Pat Benatar,Hell Is for Children,new,,,,,63242,FALSE +Pat Benatar,Hit Me With Your Best Shot,existing,,,,,,FALSE +Pat Benatar,Love Is a Battlefield,new,,,,,14292,FALSE +Pat Benatar,Promises in the Dark,new,,,,,57099,FALSE +Pat Benatar,Shadows Of The Night,existing,,,,,,FALSE +Pat Benatar,Treat Me Right,new,,,,,19070,FALSE +Pat Benatar,We Belong,existing,,,,,,FALSE +Pat Boone,Speedy Gonzalez,existing,,,,,,FALSE +Pat Travers,Boom Boom (Out Goes the Lights),new,,,,,70472,FALSE +Pat Travers,Snortin Whiskey,existing,,,,,,FALSE +Pato Banton,Baby Come Back,existing,,,,,,FALSE +Patrick Swayze,She's Like the Wind,existing,,,,,,FALSE +Patsy Cline,Crazy,existing,,,,,,FALSE +Patsy Cline,I Fall To Pieces,existing,,,,,,FALSE +Patsy Cline,Leavin On Your Mind,existing,,,,,,FALSE +Patsy Cline,Sweet Dreams,existing,,,,,,FALSE +Patsy Cline,Walkin After Midnight,existing,,,,,,FALSE +Patsy Cline,You Belong To Me,existing,,,,,,FALSE +Patsy Cline,You Made Me Love You (I Didn't Want To Do It),existing,,,,,,FALSE +Patti Smith,Because The Night,existing,,,,TRUE,,FALSE +Patti Smith,Dancing Barefoot,new,,,,,44341,FALSE +Patti Smith,Gloria,new,,,,,68673,FALSE +Patty Griffin,Up To The Mountain,existing,,,,,,FALSE +Patty Loveless,Blame It On Your Heart,existing,,,,,,FALSE +Paul Anka,Diana,existing,,,,,,FALSE +Paul Cauthen,Cocaine Country Dancing,new,,,,,68365,FALSE +Paul Cauthen,Country as Fuck,new,,,,,68957,FALSE +Paul Jones,I've Been a Bad Bad Boy,existing,,,,,,FALSE +Paul McCartney,Live And Let Die,existing,,,,,,FALSE +Paul McCartney,Maybe I'm Amazed,existing,,,,,,FALSE +Paul McCartney,Say Say Say,existing,,,,,,FALSE +Paul McCartney & Wings,Band on the Run,new,Wings,,,,7508,FALSE +Paul McCartney & Wings,Jet,new,Wings,,,,53608,FALSE +Paul McCartney & Wings,Listen to What the Man Said,new,Wings,,,,45112,FALSE +Paul McCartney & Wings,My Love,new,Wings,,,,21086,FALSE +Paul McCartney & Wings,With a Little Luck,new,Wings,,,,69241,FALSE +Paul Simon,50 Ways To Leave Your Lover,existing,,,,,,FALSE +Paul Simon,Graceland,new,,,,,28982,FALSE +Paul Simon,Kodachrome,existing,,,,,,FALSE +Paul Simon,Late In The Evening,existing,,,,,,FALSE +Paul Simon,Me And Julio Down By The Schoolyard,existing,,,,,,FALSE +Paul Simon,You Can Call Me Al,existing,,,,,,FALSE +Paul Weller,Broken Stones,existing,,,,,,FALSE +Paul Weller,Thinking of You,existing,,,,,,FALSE +Paul Weller,Wishing On a Star,existing,,,,,,FALSE +Paul Weller,You Do Something To Me,existing,,,,,,FALSE +Pavement,Cut Your Hair,new,,,,,75435,FALSE +Peaches And Herb,Reunited,new,,,,,33794,FALSE +Pearl Jam,Alive,existing,,,,,,FALSE +Pearl Jam,Better Man,new,,,,,18999,FALSE +Pearl Jam,Black,existing,,,,,,FALSE +Pearl Jam,Daughter,new,,,,,19001,FALSE +Pearl Jam,Even Flow,existing,,,,,,FALSE +Pearl Jam,Jeremy,new,,,,,14056,FALSE +Pearl Jam,Just Breathe,new,,,,,29328,FALSE +Pearl Jam,Last Kiss,new,,,,,8623,FALSE +Pearl Jam,Yellow Ledbetter,new,,,,,18994,FALSE +Peggy Lee,Black Coffee,existing,,,,,,FALSE +Peggy Lee,Fever,existing,,,,,,FALSE +Peggy Lee,How Long Has This Been Going On,existing,,,,,,FALSE +Peggy Lee,I'm A Woman,existing,,,,,,FALSE +Peggy Lee,Why Don't You Do Right,existing,,,,,,FALSE +Pentatonix,Bohemian Rhapsody,new,,,,,62074,FALSE +Pentatonix,Can You Feel the Love Tonight,new,,,,,59751,FALSE +Pentatonix,Can't Sleep Love,new,,,,,50331,FALSE +Pentatonix,Daft Punk,new,,,,,72998,FALSE +Pentatonix,Hallelujah,new,,,,,52030,FALSE +Pentatonix,Jolene,new,,,,,55548,FALSE +Pentatonix,Mad World,new,,,,,62462,FALSE +Pentatonix,Radioactive,new,,,,,50392,FALSE +Pentatonix,Say Something,new,,,,,50394,FALSE +Pentatonix,The Sound of Silence,new,,,,,57643,FALSE +Percy Sledge,Warm & Tender Love,existing,,,,,,FALSE +Percy Sledge,When A Man Loves A Woman,existing,,,,,,FALSE +Perry Como,And I Love Her so,existing,,,,,,FALSE +Perry Como,Catch a Falling Star,existing,,,,,,FALSE +Perry Como,My Cup Runneth Over With Love (A Cappella),existing,,,,,,FALSE +Pet Shop Boys,Always On My Mind,existing,,,,,,FALSE +Pet Shop Boys,Domino Dancing,new,,,,,79747,FALSE +Pet Shop Boys,It's a Sin,new,,,,,14104,FALSE +Pet Shop Boys,West End Girls,new,,,,,14234,FALSE +Pet Shop Boys Feat. Dusty Springfield,What Have I Done To Deserve This ?,existing,Pet Shop Boys,,,,,FALSE +Pete Townshend,Let My Love Open the Door,new,,,,,56710,FALSE +Pete Townshend,Rough Boys,new,,,,,77022,FALSE +Pete's Dragon,It's Not Easy (A Cappella),existing,,,,,,FALSE +"Peter, Paul and Mary",Blowin' in the Wind,new,,,,,11293,FALSE +"Peter, Paul and Mary",Leaving on a Jet Plane,new,,,,,11292,FALSE +"Peter, Paul and Mary","Puff, the Magic Dragon",new,,,,,30045,FALSE +"Peter, Paul and Mary",Where Have All the Flowers Gone,new,,,,,68619,FALSE +Peter & Gordon,World Without Love,existing,,,,,,FALSE +Peter Andre,Behind Closed Doors,existing,,,,,,FALSE +Peter Andre,Mysterious Girl,existing,,,,,,FALSE +Peter Frampton,Baby I Love Your Way,new,,,,,21267,FALSE +Peter Frampton,Do You Feel Like I Do,existing,,,,,,FALSE +Peter Frampton,Show Me The Way,existing,,,,,,FALSE +Peter Gabriel,Big Time,new,,,,,53191,FALSE +Peter Gabriel,Digging in the Dirt,new,,,,,58038,FALSE +Peter Gabriel,Don't Give Up,new,,,,,25158,FALSE +Peter Gabriel,Games Without Frontiers,new,,,,,65783,FALSE +Peter Gabriel,In Your Eyes,new,,,,,18970,FALSE +Peter Gabriel,Mercy Street,existing,,,,,,FALSE +Peter Gabriel,Red Rain,existing,,,,,,FALSE +Peter Gabriel,Shock the Monkey,new,,,,,61491,FALSE +Peter Gabriel,Sledgehammer,existing,,,,,,FALSE +Peter Gabriel,Solsbury Hill,existing,,,,,,FALSE +Peter Gabriel,Steam,existing,,,,,,FALSE +Peter Pan,Never,existing,,,,,,FALSE +Peter Pan,You Can Fly (A Cappella),existing,,,,,,FALSE +Peter Paul And Mary,Don't Think Twice It's All Right,existing,"Peter, Paul & Mary",,,,,FALSE +Peter Paul And Mary,If I Had A Hammer,existing,"Peter, Paul & Mary",,,,,FALSE +Peter Sarstedt,Where Do You Go To My Lovely,existing,,,,,,FALSE +Peter Tosh,Legalize It,existing,,,,,,FALSE +Petula Clark,Colour My World,existing,,,,,,FALSE +Petula Clark,Downtown ,existing,,,,,,FALSE +Phantogram,When I'm Small,new,,,,,80157,FALSE +Phantogram,You Don't Get Me High Anymore,new,,,,,75654,FALSE +Pharrell Williams,Happy (A Cappella),existing,,,,,,FALSE +Pharrell Williams,Happy,existing,,,,,,FALSE +Phil Collins,Against All Odds (Take A Look At Me Now),existing,,,,,,FALSE +Phil Collins,Another Day in Paradise,new,,,,,13668,FALSE +Phil Collins,Easy Lover,existing,,,,,,FALSE +Phil Collins,In the Air Tonight,existing,,,,,,FALSE +Phil Collins,One More Night,new,,,,,14050,FALSE +Phil Collins,Sussudio,new,,,,,14049,FALSE +Phil Collins,You Can't Hurry Love,existing,,,,,,FALSE +Phil Oakey,Together In Electric Dreams,existing,,,,,,FALSE +Phish,Bouncing Around the Room,new,,,,,73076,FALSE +Phish,Sample in a Jar,new,,,,,83134,FALSE +Phoebe Bridgers,Funeral,new,,,,,82544,FALSE +Phoebe Bridgers,I Know the End,new,,,,,83557,FALSE +Phoebe Bridgers,Kyoto,new,,,,,76003,FALSE +Phoebe Bridgers,Motion Sickness,new,,,,,23268,FALSE +Phoebe Bridgers,Savior Complex,new,,,,,78547,FALSE +Phoenix,1901,new,,,,,77185,FALSE +Phoenix,If I Ever Feel Better,new,,,,,37059,FALSE +Phoenix,Lisztomania,new,,,,,75270,FALSE +Pilot,Magic,existing,,,,,,FALSE +Pink,Cover Me in Sunshine,new,,,,,63870,FALSE +Pink,Fkin' Perfect,new,,,,,34988,FALSE +Pink,Funhouse,existing,,,,,,FALSE +Pink,Get The Party Started,existing,,,,,,FALSE +Pink,Just Give Me a Reason,new,,,,,41790,FALSE +Pink,Perfect,existing,,,,,,FALSE +Pink,Please Don't Leave Me,existing,,,,,,FALSE +Pink,Raise Your Glass,existing,,,,,,FALSE +Pink,So What,new,,,,,20654,FALSE +Pink,Sober,existing,,,,,,FALSE +Pink,Trustfall,new,,,,,73407,FALSE +Pink,Try,existing,,,,,,FALSE +Pink,What About Us,new,,,,,53954,FALSE +Pink,Who Knew,existing,,,,,,FALSE +Pink Floyd,A Pillow of Winds,new,,,,,62845,FALSE +Pink Floyd,Another Brick In The Wall Part 2,existing,,,,,,FALSE +Pink Floyd,Another Brick in the Wall (Part 1),new,,,,,46915,FALSE +Pink Floyd,Another Brick in the Wall (Part 3),new,,,,,48202,FALSE +Pink Floyd,Astronomy Domine,new,,,,,62914,FALSE +Pink Floyd,Brain Damage,existing,,,,,,FALSE +Pink Floyd,Breathe In The Air,existing,,,,,,FALSE +Pink Floyd,Comfortably Numb,existing,,,,,,FALSE +Pink Floyd,Coming Back To Life,existing,,,,,,FALSE +Pink Floyd,Dogs (full song),new,,,,,49379,FALSE +Pink Floyd,Dogs,existing,,,,,,FALSE +Pink Floyd,Don't Leave Me Now,new,,,,,48723,FALSE +Pink Floyd,Echoes,existing,,,,,,FALSE +Pink Floyd,Eclipse,new,,,,,40450,FALSE +Pink Floyd,Fearless,new,,,,,65707,FALSE +Pink Floyd,Goodbye Blue Sky,new,,,,,37902,FALSE +Pink Floyd,Goodbye Cruel World,existing,,,,,,FALSE +Pink Floyd,Have A Cigar,existing,,,,,,FALSE +Pink Floyd,Hey You,existing,,,,,,FALSE +Pink Floyd,In the Flesh,new,,,,,38515,FALSE +Pink Floyd,Learning to Fly,new,,,,,30192,FALSE +Pink Floyd,Money,existing,,,,,,FALSE +Pink Floyd,Mother,existing,,,,,,FALSE +Pink Floyd,Nobody Home,new,,,,,48686,FALSE +Pink Floyd,Not Now John,new,,,,,71219,FALSE +Pink Floyd,On The Turning Away,existing,,,,,,FALSE +Pink Floyd,One Of My Turns,existing,,,,,,FALSE +Pink Floyd,Pigs (Three Different Ones),existing,,,,,,FALSE +Pink Floyd,Pigs on the Wing,new,,,,,48756,FALSE +Pink Floyd,"Pigs on the Wing, Pt. 1",new,,,,,48758,FALSE +Pink Floyd,"Pigs on the Wing, Pt. 2",new,,,,,48757,FALSE +Pink Floyd,Run Like Hell,existing,,,,,,FALSE +Pink Floyd,San Tropez,new,,,,,65495,FALSE +Pink Floyd,Set the Controls for the Heart of the Sun,new,,,,,73270,FALSE +Pink Floyd,Sheep,existing,,,,,,FALSE +Pink Floyd,Shine On You Crazy Diamond (Parts I-V),existing,,,,,,FALSE +Pink Floyd,Shine On You Crazy Diamond (Parts VI-IX),existing,,,,,,FALSE +Pink Floyd,Sorrow,new,,,,,48530,FALSE +Pink Floyd,The Dogs of War,new,,,,,50367,FALSE +Pink Floyd,The Final Cut,new,,,,,57590,FALSE +Pink Floyd,The Fletcher Memorial Home,new,,,,,28185,FALSE +Pink Floyd,The Great Gig In The Sky,existing,,,,,,FALSE +Pink Floyd,The Show Must Go On,new,,,,,48692,FALSE +Pink Floyd,The Thin Ice,existing,,,,,,FALSE +Pink Floyd,The Trial,new,,,,,57255,FALSE +Pink Floyd,Time,existing,,,,,,FALSE +Pink Floyd,Us And Them,existing,,,,,,FALSE +Pink Floyd,Vera,new,,,,,49006,FALSE +Pink Floyd,Waiting For The Worms,existing,,,,,,FALSE +Pink Floyd,Welcome To The Machine,existing,,,,,,FALSE +Pink Floyd,What Do You Want from Me,new,,,,,48376,FALSE +Pink Floyd,Wish You Were Here,existing,,,,,,FALSE +Pink Floyd,Young Lust,existing,,,,,,FALSE +Pink Martini,Amado Mio,existing,,,,,,FALSE +Pistol Annies,Hell On Heels,existing,Pistol Annies,,,,,FALSE +Pistol Annies,Dear Sobriety,existing,,,,,,FALSE +Pitbull,Feel This Moment,new,,,,,42969,FALSE +Pitbull,Fireball,new,,,,,47548,FALSE +Pitbull,Give Me Everything Tonight,new,,,,,36763,FALSE +Pitbull,Hey Baby (Drop It to the Floor),new,,,,,36030,FALSE +Pitbull,Hotel Room Service,new,,,,,24209,FALSE +Pitbull,I Know You Want Me (Calle Ocho),new,,,,,22712,FALSE +Pitbull,International Love,new,,,,,39520,FALSE +Pitbull,Timber,new,,,,,45633,FALSE +Pitbull,Time Of Our Lives,new,,,,,48584,FALSE +Pitbull,We Are One (Ole Ola) (The Official 2014 FIFA World Cup Song),new,,,,,46721,FALSE +Pitch Perfect,Bella's Finals,existing,,,,,,FALSE +Pitch Perfect,Cups (You're Gonna Miss Me When I'm Gone),existing,,,,,,FALSE +Pitch Perfect,Since U Been Gone,existing,,,,,,FALSE +Pitch Perfect,Trebles Finals,existing,,,,,,FALSE +Pixie Lott,Boys & Girls,existing,,,,,,FALSE +Pixie Lott,Cry Me Out,existing,,,,,,FALSE +Pixie Lott,Gravity,existing,,,,,,FALSE +Pixies,Debaser,new,,,,,69866,FALSE +Pixies,Gigantic,new,,,,,31256,FALSE +Pixies,Gouge Away,new,,,,,81665,FALSE +Pixies,Here Comes Your Man,new,,,,,35930,FALSE +Pixies,Hey,new,,,,,28711,FALSE +Pixies,Monkey Gone to Heaven,new,,,TRUE,,56034,FALSE +Pixies,"Que Sera, Sera (Whatever Will Be, Will Be)",new,,,,,68895,FALSE +Pixies,Velouria,new,,,,,83160,FALSE +Pixies,Wave of Mutilation,new,,,,,71624,FALSE +Pixies,Where Is My Mind,new,,,,,50544,FALSE +Placebo,Every You Every Me,new,,,,,34556,FALSE +Placebo,Pure Morning,new,,,,,42597,FALSE +Placebo,Running Up That Hill,new,,,,,28526,FALSE +Plain White T's,"1, 2, 3, 4",new,,,,,22487,FALSE +Plain White T's,Hey There Delilah (single version),new,,,,,74193,FALSE +Plain White T's,Rhythm of Love,new,,,,,35180,FALSE +Plain White T's,The Rhythm Of Love (A Cappella),existing,,,,,,FALSE +Player,Baby Come Back,new,,,,,10919,FALSE +Plies,Shawty,new,,,,,12505,FALSE +Poison,Every Rose Has Its Thorn,existing,,,,,,FALSE +Poison,Nothin But A Good Time,existing,,,,,,FALSE +Poison,Talk Dirty to Me,new,,,,,42001,FALSE +Poison,Unskinny Bop,new,,,,,57573,FALSE +Pokemon,Pokemon (Attrapez-les tous !),new,,,,,51677,FALSE +Pokemon,Pokemon Theme,new,,,,,42344,FALSE +Pokemon,Pokerap (version francaise),new,,,,,74410,FALSE +Pokemon,Pokerap,new,,,,,71675,FALSE +Pokemon,Polkamon,new,,,,,82868,FALSE +Pop Smoke,Dior,new,,,,,70426,FALSE +Pop Smoke,Welcome to the Party,new,,,,,83752,FALSE +Pop Smoke,What You Know Bout Love,new,,,,,64642,FALSE +Porcupine Tree,Arriving Somewhere but Not Here,new,,,,,76156,FALSE +Porcupine Tree,Blackest Eyes,new,,,,,63975,FALSE +Porcupine Tree,Lazarus,new,,,,,75161,FALSE +Porcupine Tree,Trains,new,,,,,69955,FALSE +Portishead,Glory Box,new,,,,,18086,FALSE +Portishead,Machine Gun,new,,,,,65897,FALSE +Portishead,Numb,new,,,,,72788,FALSE +Portishead,Roads,new,,,,,31366,FALSE +Portugal. The Man,Feel It Still,new,,,,,53498,FALSE +Portugal. The Man,Live in the Moment,new,,,,,61003,FALSE +Post Malone,Circles,new,,,,,59218,FALSE +Post Malone,Congratulations,new,,,,,60911,FALSE +Post Malone,Guy for That,new,,,,,82843,FALSE +Post Malone,Pour Me a Drink,new,,,,,82141,FALSE +Post Malone,Rockstar,new,,,,,54650,FALSE +Post Malone,Wow.,new,,,,,57525,FALSE +Prefab Sprout,King of Rock & Roll,existing,,,,,,FALSE +Primal Scream,Rocks,existing,,,,,,FALSE +Primus,Jerry Was a Race Car Driver,new,,,,,65792,FALSE +Primus,John the Fisherman,new,,,,,71741,FALSE +Primus,My Name Is Mud,new,,,,,71071,FALSE +Primus,Tommy the Cat,new,,,,,70392,FALSE +Primus,Too Many Puppies,new,,,,,73849,FALSE +Primus,Wynona's Big Brown Beaver,new,,,,,74155,FALSE +Prince,1999,new,,,,,12702,FALSE +Prince,Darling Nikki,new,,,,,55431,FALSE +Prince,Delirious,new,,,,,51142,FALSE +Prince,Erotic City,new,,,,,51206,FALSE +Prince,I Wanna Be Your Lover,new,,,,,18927,FALSE +Prince,I Would Die 4 U,new,,,,,37614,FALSE +Prince,Kiss,existing,,,,,,FALSE +Prince,Let's Go Crazy,new,,,,,14023,FALSE +Prince,Little Red Corvette,new,,,,,12703,FALSE +Prince,Nothing Compares 2 U,new,,,,,55562,FALSE +Prince,Purple Rain,existing,,,,,,FALSE +Prince,Raspberry Beret,new,,,,,14150,FALSE +Prince,Sign o' the Times,new,,,,,14020,FALSE +Prince,U Got the Look,new,,,,,30906,FALSE +Prince,When Doves Cry,new,,,,,13763,FALSE +Procol Harum,A Whiter Shade Of Pale,existing,,,,,,FALSE +Psy,Gangnam Style,existing,,,,,,FALSE +Public Enemy,Fight The Power,new,,,,,31672,FALSE +Public Enemy,Harder Than You Think,new,,,,,41589,FALSE +Public Enemy,He Got Game,new,,,,,25837,FALSE +Puddle Of Mudd,Blurry,existing,,,,,,FALSE +Puddle Of Mudd,Control,existing,,,,,,FALSE +Puddle Of Mudd,She Hates Me,existing,,,,,,FALSE +Puddle Of Mudd,Blurry,new,Puddle Of Mudd,,,,8152,FALSE +Puddle Of Mudd,Control,new,Puddle Of Mudd,,,,24196,FALSE +Puddle Of Mudd,Psycho,new,Puddle Of Mudd,,,,18505,FALSE +Puddle Of Mudd,She Hates Me,new,Puddle Of Mudd,,,,6952,FALSE +Puff Daddy Feat. Faith Evans,I'll Be Missing You,existing,,,,,,FALSE +Pulp,Common People,existing,,,,,,FALSE +Pure Prairie League,Let Me Love You Tonight,new,,,,,55925,FALSE +Pussycat,Mississippi ,existing,,,,,,FALSE +Quarterflash,Harden My Heart,new,,,,,6135,FALSE +Quavo,Tough,new,,,,,82536,FALSE +Queen,Another One Bites The Dust,existing,,,,,,FALSE +Queen,Bicycle Race,existing,,,,,,FALSE +Queen,Bohemian Rhapsody,existing,,,,,,FALSE +Queen,Crazy Little Thing Called Love,existing,,,,,,FALSE +Queen,Don't Stop Me Now (A Cappella),existing,,,,,,FALSE +Queen,Don't Stop Me Now,existing,,,,,,FALSE +Queen,Fat Bottomed Girls (A Cappella),existing,,,,,,FALSE +Queen,Fat Bottomed Girls,existing,,,,,,FALSE +Queen,Flash,new,,,,,12969,FALSE +Queen,I Want To Break Free,existing,,,,,,FALSE +Queen,Keep Yourself Alive,new,,,,,56890,FALSE +Queen,Killer Queen (A Cappella),existing,,,,,,FALSE +Queen,Killer Queen,existing,,,,,,FALSE +Queen,Play the Game,new,,,,,21212,FALSE +Queen,Radio Ga Ga,new,,,,,6780,FALSE +Queen,Save Me,new,,,,,23764,FALSE +Queen,Seaside Rendezvous (A Cappella),existing,,,,,,FALSE +Queen,Show Must Go On,existing,,,,,,FALSE +Queen,Somebody To Love,existing,,,,,,FALSE +Queen,Too Much Love Will Kill You,existing,,,,,,FALSE +Queen,Under Pressure (A Cappella),existing,,,,,,FALSE +Queen,Under Pressure,existing,,,,,,FALSE +Queen,We Are The Champions (A Cappella),existing,,,,,,FALSE +Queen,We Are The Champions,existing,,,,,,FALSE +Queen,We Will Rock You,existing,,,,,,FALSE +Queen,Who Wants To Live Forever,existing,,,,,,FALSE +Queen Latifah,Big,existing,,,,,,FALSE +Queen Latifah,U.N.I.T.Y.,new,,,,,36166,FALSE +Queens of the Stone Age,3's & 7's,new,Queens Of The Stone Age,,,,12196,FALSE +Queens of the Stone Age,Go with the Flow,new,Queens Of The Stone Age,,,,52764,FALSE +Queens of the Stone Age,I Sat by the Ocean,new,Queens Of The Stone Age,,,,27827,FALSE +Queens of the Stone Age,Little Sister,new,Queens Of The Stone Age,,,,29538,FALSE +Queens of the Stone Age,Make It wit Chu,new,Queens Of The Stone Age,,,,63743,FALSE +Queens of the Stone Age,No One Knows,new,Queens Of The Stone Age,,,,13981,FALSE +Queensryche,Jet City Woman,new,,,,,27367,FALSE +Queensryche,Silent Lucidity,existing,,,,,,FALSE +Quiet Riot,Cum on Feel the Noize,new,,,,,57030,FALSE +Quiet Riot,Metal Health (Bang Your Head),new,,,,,62807,FALSE +R Dean Taylor,Indiana Wants Me,existing,,,,,,FALSE +R. Kelly,Bump N Grind,existing,,,,,,FALSE +R. Kelly,I Believe I Can Fly,existing,,,,,,FALSE +R. Kelly,I'm a Flirt (remix),new,,,,,11932,FALSE +R. Kelly,Ignition,existing,,,,,,FALSE +R. Kelly,Same Girl,new,,,,,12590,FALSE +R.E.M,Shiny Happy People,existing,R.E.M.,,,,,FALSE +R.E.M.,(Don't Go Back to) Rockville,new,,,,,74119,FALSE +R.E.M.,Drive,new,,,,,33006,FALSE +R.E.M.,Driver 8,new,,,,,70810,FALSE +R.E.M.,Everybody Hurts,existing,,,,,,FALSE +R.E.M.,Fall on Me,new,,,,,71783,FALSE +R.E.M.,Imitation Of Life,existing,,,,,,FALSE +R.E.M.,It's The End Of The World As We Know It (And I Feel Fine),existing,,,,,,FALSE +R.E.M.,Losing My Religion,existing,,,,,,FALSE +R.E.M.,Man On The Moon,existing,,,,,,FALSE +R.E.M.,Nightswimming,new,,,,,38281,FALSE +R.E.M.,Orange Crush,new,,,,,69614,FALSE +R.E.M.,Radio Free Europe,new,,,,,31731,FALSE +R.E.M.,Stand,new,,,,,18911,FALSE +R.E.M.,The Finest Worksong,existing,,,,,,FALSE +R.E.M.,The One I Love,existing,,,,,,FALSE +R.E.M.,The Sidewinder Sleeps Tonite,new,,,,,33004,FALSE +R.E.M.,What's The Frequency Kenneth,existing,,,,,,FALSE +REO Speedwagon,Don't Let Him Go,new,,,,,67990,FALSE +REO Speedwagon,I Can't Fight This Feeling Anymore,existing,,,,,,FALSE +REO Speedwagon,Keep On Loving You,existing,,,,,,FALSE +REO Speedwagon,Roll with the Changes,new,,,,,55990,FALSE +REO Speedwagon,Take It On The Run,existing,,,,,,FALSE +REO Speedwagon,Time for Me to Fly,new,,,,,55414,FALSE +Racey,Some Girls Will,existing,,,,,,FALSE +Rachel Platten,Fight Song,new,,,,,49157,FALSE +Rachel Platten,Stand By You,new,,,,,50156,FALSE +Radiohead,Airbag,new,,,,,76101,FALSE +Radiohead,Burn the Witch,new,,,,,61437,FALSE +Radiohead,Climbing Up The Walls,existing,,,,,,FALSE +Radiohead,Creep (acoustic),new,,,,,37299,FALSE +Radiohead,Creep,existing,,,,,,FALSE +Radiohead,Everything in Its Right Place,new,,,,,79508,FALSE +Radiohead,Exit Music For A Film,existing,,,,,,FALSE +Radiohead,Fake Plastic Trees,existing,,,,,,FALSE +Radiohead,High And Dry,existing,,,,,,FALSE +Radiohead,Karma Police,existing,,,,,,FALSE +Radiohead,Let Down,new,,,,,37530,FALSE +Radiohead,Lotus Flower,new,,,,,74530,FALSE +Radiohead,Lucky,existing,,,,,,FALSE +Radiohead,My Iron Lung,new,,,,,74466,FALSE +Radiohead,No Surprises,new,,,,,25919,FALSE +Radiohead,Nude,new,,,,,18701,FALSE +Radiohead,Optimistic,new,,,,,68168,FALSE +Radiohead,Paranoid Android,new,,,,,12546,FALSE +Radiohead,Pyramid Song,new,,,,,73351,FALSE +Radiohead,Street Spirit (Fade Out),new,,,,,21270,FALSE +Radiohead,Subterranean Homesick Alien,existing,,,,,,FALSE +Radiohead,The Bends,new,,,,,59428,FALSE +Radiohead,The Tourist,existing,,,,,,FALSE +Radiohead,Weird Fishes Arpeggi,new,,,,,76794,FALSE +Raekwon,Ice Cream,new,,,,,35590,FALSE +Rag'n'Bone Man,Anywhere Away from Here,new,,,,,64578,FALSE +Rag'n'Bone Man,Human,new,,,,,51837,FALSE +Rag'n'Bone Man,Skin,new,,,,,52553,FALSE +Rage Against The Machine,Killing In The Name,existing,,,,,,FALSE +Rage Against The Machine,Bombtrack,new,Rage Against The Machine,,,,42307,FALSE +Rage Against The Machine,Bullet in the Head,new,Rage Against The Machine,,,,59933,FALSE +Rage Against The Machine,Bulls on Parade,new,Rage Against The Machine,,,,44248,FALSE +Rage Against The Machine,Guerrilla Radio,new,Rage Against The Machine,,,,70491,FALSE +Rage Against The Machine,Know Your Enemy,new,Rage Against The Machine,,,,66878,FALSE +Rage Against The Machine,People of the Sun,new,Rage Against The Machine,,,,73137,FALSE +Rage Against The Machine,Renegades of Funk,new,Rage Against The Machine,,,,73862,FALSE +Rage Against The Machine,Sleep Now in the Fire,new,Rage Against The Machine,,,,71099,FALSE +Rage Against The Machine,Take the Power Back,new,Rage Against The Machine,,,,70359,FALSE +Rage Against The Machine,Testify,new,Rage Against The Machine,,,,71430,FALSE +Rage Against The Machine,Wake Up,new,Rage Against The Machine,,,,44235,FALSE +Rainbow,Man on the Silver Mountain,new,,,,,63448,FALSE +Rainbow,Since You've Been Gone,existing,,,,,,FALSE +Rainbow,The Temple of the King,new,,,,,63838,FALSE +Rainbow Kitten Surprise,Cocaine Jesus,new,,,,,75808,FALSE +Rainbow Kitten Surprise,It's Called Freefall,new,,,,,74244,FALSE +Rainbow Kitten Surprise,Lady Lie,new,,,,,79885,FALSE +Rainbow Kitten Surprise,Painkillers,new,,,,,83280,FALSE +Ram Jam,Black Betty,existing,,,,,,FALSE +Ramones,Blitzkrieg Bop,new,,,,,40987,FALSE +Ramones,I Wanna Be Sedated,new,,,,,46366,FALSE +Ramones,Pet Sematary,new,,,,,71980,FALSE +Ramones,Rock 'n' Roll High School,new,,,,,65826,FALSE +Ramones,Sheena Is a Punk Rocker,new,,,,,21271,FALSE +Rancid,Ruby Soho,new,,,,,63792,FALSE +Rancid,Time Bomb,new,,,,,56355,FALSE +Randy Crawford,Almaz,existing,,,,,,FALSE +Randy Crawford,Street Life,existing,,,,,,FALSE +Randy Houser,How Country Feels,new,,,,,68665,FALSE +Randy Houser,Runnin' Outta Moonlight,new,,,,,69604,FALSE +Randy Newman,I Love L.A.,existing,,,,,,FALSE +Randy Newman,Short People,existing,,,,,,FALSE +Randy Travis,Deeper Than the Holler,new,,,,,44244,FALSE +Randy Travis,Diggin' Up Bones,new,,,,,6705,FALSE +Randy Travis,Forever And Ever Amen,existing,,,,,,FALSE +Randy Travis,Swing Down Chariot (A Cappella),existing,,,,,,FALSE +Randy Travis,Three Wooden Crosses,existing,,,,,,FALSE +Randy Van Warmer,Just When I Needed You Most,existing,,,,,,FALSE +Rare Earth,I Just Want to Celebrate,new,,,,,29158,FALSE +Rascal Flatts,Bless The Broken Road,existing,,,,,,FALSE +Rascal Flatts,Life Is A Highway,existing,,,,,,FALSE +Rascal Flatts,Rewind,existing,,,,,,FALSE +Rascal Flatts,What Hurts The Most,existing,,,,,,FALSE +Ratt,Body Talk,new,,,,,70785,FALSE +Ratt,Lay It Down,new,,,,,58783,FALSE +Ratt,Lovin' You's a Dirty Job,new,,,,,69586,FALSE +Ratt,Round and Round,new,,,,,56908,FALSE +Ratt,Wanted Man,new,,,,,65722,FALSE +Ratt,Way Cool Jr.,new,,,,,70334,FALSE +Ratt,You're in Love,new,,,,,68350,FALSE +Ray Charles,Busted,existing,,,,,,FALSE +Ray Charles,Georgia On My Mind,existing,,,,,,FALSE +Ray Charles,I Can't Stop Loving You,existing,,,,,,FALSE +Ray Charles,I Got A Woman,existing,,,,,,FALSE +Ray Charles,That Lucky Old Sun (A Cappella),existing,,,,,,FALSE +Ray Charles,What'd I Say,existing,,,,,,FALSE +Ray Charles,You Don't Know Me (Duet),existing,,,,,,FALSE +Ray Lamontagne,Jolene,existing,,,,,,FALSE +Ray Lamontagne,Let It Be Me,existing,,,,,,FALSE +Ray Lamontagne,Trouble,existing,,,,,,FALSE +Ray Lamontagne,You Are The Best Thing,existing,,,,,,FALSE +Ray Parker Junior,Ghostbusters,existing,,,,,,FALSE +Raye,Escapism.,new,,,,,27764,FALSE +Raye,Ice Cream Man.,new,,,,,73997,FALSE +Raye,Oscar Winning Tears.,new,,,,,74080,FALSE +Raye,Worth It.,new,,,,,81049,FALSE +Razorlight,America,existing,,,,,,FALSE +Razorlight,Before I Fall To Pieces,existing,,,,,,FALSE +Reba McEntire,Consider Me Gone,existing,,,,,,FALSE +Reba McEntire,Fancy,existing,,,,,,FALSE +Reba McEntire,Going Out Like That,existing,,,,,,FALSE +Reba McEntire,If I Were A Boy,existing,,,,,,FALSE +Reba McEntire,The Night the Lights Went Out in Georgia,new,,,,,6742,FALSE +Red Hot C Hili Peppers,Hump De Bump,existing,Red Hot Chili Peppers,,,,,FALSE +Red Hot C Hili Peppers,Universally Speaking,existing,Red Hot Chili Peppers,,,,,FALSE +Red Hot Chili Peppers,Blood Sugar Sex Magik,new,,,,,65044,FALSE +Red Hot Chili Peppers,Breaking The Girl,existing,,,,,,FALSE +Red Hot Chili Peppers,By The Way,existing,,,,,,FALSE +Red Hot Chili Peppers,Californication,existing,,,,,,FALSE +Red Hot Chili Peppers,Can't Stop,new,,,,,21235,FALSE +Red Hot Chili Peppers,Dani California,new,,,,,10812,FALSE +Red Hot Chili Peppers,Dark Necessities,new,,,,,51333,FALSE +Red Hot Chili Peppers,Give It Away,new,,,,,13560,FALSE +Red Hot Chili Peppers,Higher Ground,existing,,,,,,FALSE +Red Hot Chili Peppers,Otherside,existing,,,,,,FALSE +Red Hot Chili Peppers,Scar Tissue,new,,,,,8624,FALSE +Red Hot Chili Peppers,Snow (Hey Oh),new,,,,,13618,FALSE +Red Hot Chili Peppers,Suck My Kiss,new,,,,,65019,FALSE +Red Hot Chili Peppers,The Zephyr Song,new,,,,,7073,FALSE +Red Hot Chili Peppers,Under the Bridge,new,,,,,6415,FALSE +Red Velvet (),Bad Boy,new,Red Velvet,,,,59403,FALSE +Red Velvet (),Psycho,new,Red Velvet,,,,60338,FALSE +Red Velvet (),Red Flavor ( ),new,Red Velvet,,,,59434,FALSE +Red Velvet (),Russian Roulette ( ),new,Red Velvet,,,,59435,FALSE +Redbone,Come And Get Your Love,existing,,,,,,FALSE +Reel Big Fish,Sell Out,existing,,,,,,FALSE +Regard,Hallucination,new,,,,,68714,FALSE +Regard,Ride It,new,,,,,60431,FALSE +Regard,Secrets,new,,,,,61959,FALSE +Regard,You,new,,,,,64980,FALSE +Regina Spektor,Fidelity,new,,,,,20138,FALSE +Regina Spektor,Hotel Song,existing,,,,,,FALSE +Regina Spektor,On The Radio,existing,,,,,,FALSE +Regina Spektor,Samson,existing,,,,,,FALSE +Regina Spektor,The Call,new,,,,,23531,FALSE +Regina Spektor,Two Birds,new,,,,,79022,FALSE +Renee Rapp,Not My Fault,new,,,,,79209,FALSE +Renee Rapp,Too Well,new,,,,,81491,FALSE +Rex Orange County,Best Friend,new,,,,,27758,FALSE +Rex Orange County,Loving Is Easy,new,,,,,65740,FALSE +Rex Orange County,Pluto Projector,new,,,,,78086,FALSE +Rex Orange County,Sunflowers,new,,,,,72941,FALSE +Rhema Marvanne,Prayer,existing,,,,,,FALSE +Richard Marx,Right Here Waiting,existing,,,,,,FALSE +Richie Stephens,Rain From The Sky,existing,,,,,,FALSE +Rick Astley,Never Gonna Give You Up,existing,,,,,,FALSE +Rick James,Superfreak,existing,,,,,,FALSE +Rick Springfield,Jessie's Girl,new,,,,,20640,FALSE +Ricky Martin,Cancion bonita,new,,,,,64632,FALSE +Ricky Martin,La Mordidita,new,,,,,49585,FALSE +Ricky Martin,Livin' La Vida Loca,existing,,,,,,FALSE +Ricky Martin,Vente pa' ca,new,,,,,52002,FALSE +Ricky Martin,Vuelve,new,,,,,76015,FALSE +Ricky Nelson,Garden Party,existing,,,,,,FALSE +Ricky Nelson,Hello Mary Lou (A Cappella),existing,,,,,,FALSE +Ricky Nelson,Hello Mary Lou,existing,,,,,,FALSE +Ricky Nelson,It's Late,existing,,,,,,FALSE +Right Said Fred,I'm Too Sexy,existing,,,,,,FALSE +Rihanna,California King Bed,existing,,,,,,FALSE +Rihanna,Diamonds,existing,,,,,,FALSE +Rihanna,Disturbia,existing,,,,,,FALSE +Rihanna,Don't Stop the Music,existing,,,,,,FALSE +Rihanna,Love on the Brain,new,,,,,50948,FALSE +Rihanna,Needed Me,new,,,,,51165,FALSE +Rihanna,Only Girl In The World,existing,,,,,,FALSE +Rihanna,Rude Boy,existing,,,,,,FALSE +Rihanna,S&M,new,,,,,35327,FALSE +Rihanna,Stay,existing,,,,,,FALSE +Rihanna,Take a Bow,existing,,,,,,FALSE +Rihanna,Umbrella,existing,,,,,,FALSE +Rihanna,We Found Love,existing,,,,,,FALSE +Rihanna,What's My Name,existing,,,,,,FALSE +Rihanna,Where Have You Been,existing,,,,,,FALSE +Rihanna Feat. Jay Z,Umbrella,existing,Rihanna,,,,,FALSE +Riley Green,Different 'Round Here,new,,,,,77890,FALSE +Riley Green,I Wish Grandpas Never Died,new,,,,,59050,FALSE +Riley Green,There Was This Girl,new,,,,,57307,FALSE +Rilo Kiley,Portions for Foxes,new,,,,,70714,FALSE +Rise Against,Prayer of the Refugee,new,,,,,31175,FALSE +Rise Against,Satellite,new,,,,,72867,FALSE +Rise Against,Savior,new,,,,,69952,FALSE +Rita Coolidge,We're All Alone,existing,,,,,,FALSE +Rita Ora,For You,new,,,,,55108,FALSE +Rita Ora,I Will Never Let You Down,existing,,,,,,FALSE +Rita Ora,Let You Love Me,new,,,,,56615,FALSE +Rita Ora,Ritual,new,,,,,59162,FALSE +Rita Ora,Shine Ya Light,existing,,,,,,FALSE +Rita Ora,Your Song,new,,,,,53778,FALSE +Ritchie Valens,La Bamba,existing,,,,,,FALSE +Rizzle Kicks,Down With The Trumpets,new,,,,,37785,FALSE +Rizzle Kicks,Mama Do the Hump,new,,,,,39369,FALSE +Rizzle Kicks,Skip To The Good Bit,new,,,,,45823,FALSE +Rizzle Kicks,Traveller's Chant,new,,,,,41374,FALSE +Rizzle Kicks,When I Was a Youngster,new,,,,,38735,FALSE +Roachford,Cuddly Toy,existing,,,,,,FALSE +Rob Zombie,Dragula,new,,,,,57396,FALSE +Rob Zombie,Living Dead Girl,new,,,,,63874,FALSE +Rob Zombie,Superbeast,new,,,,,70095,FALSE +Robbie Williams,Advertising Space,existing,,,,,,FALSE +Robbie Williams,Angels,existing,,,,,,FALSE +Robbie Williams,Bodies,existing,,,,,,FALSE +Robbie Williams,Candy,existing,,,,,,FALSE +Robbie Williams,Feel,existing,,,,,,FALSE +Robbie Williams,Go Gentle,existing,,,,,,FALSE +Robbie Williams,Hot Fudge,existing,,,,,,FALSE +Robbie Williams,Karma Killer,existing,,,,,,FALSE +Robbie Williams,Let Love Be Your Energy,existing,,,,,,FALSE +Robbie Williams,Let Me Entertain You,existing,,,,,,FALSE +Robbie Williams,Me & My Monkey,existing,,,,,,FALSE +Robbie Williams,Morning Sun,existing,,,,,,FALSE +Robbie Williams,Mr. Bojangles,existing,,,,,,FALSE +Robbie Williams,No Regrets,existing,,,,,,FALSE +Robbie Williams,One for the Road,existing,,,,,,FALSE +Robbie Williams,Radio,existing,,,,,,FALSE +Robbie Williams,Rock DJ,existing,,,,,,FALSE +Robbie Williams,Something Beautiful,existing,,,,,,FALSE +Robbie Williams,Straighten Up & Fly Right,existing,,,,,,FALSE +Robbie Williams,Strong,existing,,,,,,FALSE +Robbie Williams,Swing Supreme,existing,,,,,,FALSE +Robbie Williams,Trippin',existing,,,,,,FALSE +Robbie Williams & Lily Allen,Dream a Little Dream of Me,existing,Robbie Williams,,,,,FALSE +Robert Cray,Don't Be Afraid Of The Dark,existing,,,,,,FALSE +Robert Cray,Phone Booth,existing,,,,,,FALSE +Robert Cray,Smoking Gun,existing,,,,,,FALSE +Robert Earl Keen,Corpus Christi Bay,new,,,,,72830,FALSE +Robert Earl Keen,Feelin' Good Again,new,,,,,78067,FALSE +Robert Earl Keen,The Road Goes on Forever,new,,,,,69209,FALSE +Robert John,Sad Eyes,existing,,,,,,FALSE +Robert Palmer,Addicted To Love,existing,,,,,,FALSE +Robert Palmer,Bad Case Of Loving You (Doctor Doctor),existing,,,,,,FALSE +Robert Palmer,Every Kinda People (Remix),existing,,,,,,FALSE +Robert Palmer,Every Kinda People,existing,,,,,,FALSE +Robert Palmer,I'll Be Your Baby Tonight,existing,,,,,,FALSE +Robert Palmer,She Makes My Day,existing,,,,,,FALSE +Robert Palmer,Simply Irresistable,existing,,,,,,FALSE +Robert Plant,Can't Let Go,new,,,,,67211,FALSE +Robert Plant,In the Mood,new,,,,,63847,FALSE +Robert Plant,Killing the Blues,new,,,,,71850,FALSE +Robert Plant,Please Read the Letter,new,,,,,74868,FALSE +Roberta Flack,Killing Me Softly With His Song,existing,,,,,,FALSE +Roberta Flack,The First Time Ever I Saw Your Face,existing,,,,,,FALSE +Roberta Flack,You've Got A Friend,existing,,,,,,FALSE +Robin Schulz,In Your Eyes,new,,,,,60696,FALSE +Robin Schulz,Sugar,new,,,,,49700,FALSE +Robin Schulz,Sun Goes Down,new,,,,,47955,FALSE +Robin Thicke,Blurred Lines,existing,,,,,,FALSE +Robyn,Show Me Love,new,,,,,9571,FALSE +Rod Stewart,Do Ya Think I'm Sexy,existing,,,,,,FALSE +Rod Stewart,Downtown Train,existing,,,,,,FALSE +Rod Stewart,Every Beat of My Heart,existing,,,,,,FALSE +Rod Stewart,First Cut Is the Deepest,existing,,,,,,FALSE +Rod Stewart,Have I Told You Lately,existing,,,,,,FALSE +Rod Stewart,Hot Legs,existing,,,,,,FALSE +Rod Stewart,I Don't Want To Talk About It,existing,,,,,,FALSE +Rod Stewart,I Was Only Joking,existing,,,,,,FALSE +Rod Stewart,Maggie May,existing,,,,,,FALSE +Rod Stewart,Some Guys Have All The Luck,new,,,,,8966,FALSE +Rod Stewart,Tonight's The Night (Gonna Be Alright),existing,,,,,,FALSE +Rod Stewart,You Wear It Well,existing,,,,,,FALSE +Rod Stewart,Young Turks,new,,,,,50796,FALSE +Rod Stewart & Ron Isley,This Old Heart of Mine,existing,Rod Stewart,,,,,FALSE +Roger Miller,King Of The Road,existing,,,,,,FALSE +Ronan Keating,Life Is A Rollercoaster,existing,,,,,,FALSE +Ronan Keating,She Believes In Me,existing,,,,,,FALSE +Rose Royce,Car Wash,existing,,,,,,FALSE +Roxette,It Must Have Been Love,existing,,,,,,FALSE +Roxette,The Look,existing,,,,,,FALSE +Roxy Music,Avalon,existing,,,,,,FALSE +Roxy Music,Jealous Guy (Live),existing,,,,,,FALSE +Roxy Music,Love Is The Drug,existing,,,,,,FALSE +Roxy Music,More than This,new,,,,,13950,FALSE +Roy Orbison,Crying (A Cappella),existing,,,,,,FALSE +Roy Orbison,Heartache,existing,,,,,,FALSE +Roy Orbison,I Drove All Night,existing,,,,,,FALSE +Roy Orbison,Mean Woman Blues,existing,,,,,,FALSE +Roy Orbison,Oh Pretty Woman,existing,,,,,,FALSE +Roy Orbison,Only The Lonely,existing,,,,,,FALSE +Roy Orbison,Penny Arcade,existing,,,,,,FALSE +Roy Orbison,Scarlett Ribbons,existing,,,,,,FALSE +Roy Orbison,Too Soon To Know,existing,,,,,,FALSE +Roy Orbison,You Got It,existing,,,,,,FALSE +Roy Wood & Wizzard,I Wish It Could Be Christmas Every Day,existing,,,,,,FALSE +Roy Wood & Wizzard,See My Baby Jive,existing,,,,,,FALSE +Ruby Turner,Stay With Me Baby,existing,,,,,,FALSE +Rudimental,Feel The Love,new,,,,,40820,FALSE +Rudimental,Lay It All On Me,new,,,,,50281,FALSE +Rudimental,These Days,new,,,,,55162,FALSE +Rudimental,Waiting All Night,new,,,,,43543,FALSE +Rufus,Tell Me Something Good,new,,,,,8633,FALSE +Rufus Du Sol,Next to Me,new,,,,,67912,FALSE +Rufus Wainwright,Hallelujah,existing,,,,,,FALSE +Rumer,Am I Forgiven?,existing,,,,,,FALSE +Rumer,Aretha,existing,,,,,,FALSE +Rumer,Goodbye Girl,existing,,,,,,FALSE +Run The Jewels,Legend Has It,new,,,,,79154,FALSE +Run The Jewels,Ooh La La,new,,,,,63825,FALSE +Run-DMC,Down With The King,new,,,,,33146,FALSE +Run-DMC,It's Like That (Jason Nevins remix),new,,,,,52369,FALSE +Run-DMC,It's Like That,new,,,,,82982,FALSE +Run-DMC,It's Tricky,new,,,,,54889,FALSE +Run-DMC,King of Rock,new,,,,,68158,FALSE +Run-DMC,My Adidas,new,,,,,83857,FALSE +Run-DMC,Peter Piper,new,,,,,83235,FALSE +Run-DMC,You Be Illin',new,,,,,68188,FALSE +Rupert Holmes,Escape - the Piña Colada Song,existing,,,,,,FALSE +Rush,2112 Overture The Temples of Syrinx,new,,,,,49537,FALSE +Rush,A Passage to Bangkok,new,,,,,66840,FALSE +Rush,Bastille Day,new,,,,,67690,FALSE +Rush,Closer to the Heart,new,,,,,56265,FALSE +Rush,Distant Early Warning,new,,,,,32587,FALSE +Rush,Entre Nous,new,,,,,23670,FALSE +Rush,Fly by Night,new,,,,,60803,FALSE +Rush,Freewill,existing,,,,,,FALSE +Rush,Jacob's Ladder,new,,,,,70732,FALSE +Rush,Limelight,existing,,,,,,FALSE +Rush,Natural Science,new,,,,,68500,FALSE +Rush,New World Man,new,,,,,64464,FALSE +Rush,Presto,new,,,,,71992,FALSE +Rush,Red Barchetta,new,,,,,57823,FALSE +Rush,Red Sector A,new,,,,,69100,FALSE +Rush,Roll the Bones,new,,,,,67045,FALSE +Rush,Subdivisions,new,,,,,57439,FALSE +Rush,The Analog Kid,new,,,,,73307,FALSE +Rush,The Big Money,new,,,,,69810,FALSE +Rush,The Camera Eye,new,,,,,71757,FALSE +Rush,The Spirit of Radio,new,,,,,49489,FALSE +Rush,The Trees,existing,,,,,,FALSE +Rush,Time Stand Still,new,,,,,61182,FALSE +Rush,Tom Sawyer,existing,,,,,,FALSE +Rush,Vital Signs,new,,,,,70737,FALSE +Rush,Witch Hunt,new,,,,,70823,FALSE +Rush,Working Man,existing,,,,,,FALSE +Russ,Are You Entertained,new,,,,,71027,FALSE +Russ,Handsomer (remix),new,,,,,69085,FALSE +Russ,Handsomer,new,,,,,69086,FALSE +Russ,Losin Control,new,,,,,78640,FALSE +Russell Dickerson,Blue Tacoma,new,,,,,56709,FALSE +Russell Dickerson,Every Little Thing,new,,,,,59070,FALSE +Russell Dickerson,Love You Like I Used To,new,,,,,60705,FALSE +Russell Dickerson,She Likes It,new,,,,,68620,FALSE +Russell Dickerson,Yours,new,,,,,54700,FALSE +Ruth B.,Lost Boy,new,,,,,50623,FALSE +Ry Cooder,Little Sister,existing,,,,,,FALSE +Ryan Adams,Come Pick Me Up,new,,,,,45683,FALSE +Ryan Adams,"New York, New York",new,,,,,24416,FALSE +Ryan Adams,Oh My Sweet Carolina,new,,,,,78170,FALSE +Ryan Adams,Wonderwall,new,,,,,75934,FALSE +Ryan Bingham,The Weary Kind,new,,,,,29446,FALSE +S Club 7,Reach,existing,,,,,,FALSE +SWV,Anything,new,,,,,11433,FALSE +SWV,Can We,new,,,,,10419,FALSE +SWV,I'm So Into You,new,,,,,11265,FALSE +SWV,Rain,new,,,,,31994,FALSE +SWV,Right Here (Human Nature Radio Mix),new,,,,,39277,FALSE +SWV,Someone,new,,,,,34569,FALSE +SWV,Use Your Heart,new,,,,,77410,FALSE +SWV,Weak,new,,,,,6474,FALSE +SWV,You're The One,new,,,,,32577,FALSE +SZA,Broken Clocks,new,,,,,70221,FALSE +SZA,Kill Bill,new,,,,,72780,FALSE +SZA,Nobody Gets Me,new,,,,,72755,FALSE +SZA,Open Arms,new,,,,,47042,FALSE +SZA,Saturn,new,,,,,80210,FALSE +SZA,Snooze,new,,,,,73129,FALSE +Sabaton,Primo Victoria,new,,,,,71611,FALSE +Sabaton,The Last Stand,new,,,,,71153,FALSE +Sabaton,To Hell and Back,new,,,,,80661,FALSE +Sabrina Carpenter,Espresso,new,,,,,80891,FALSE +Sabrina Carpenter,Feather,new,,,,,75178,FALSE +Sabrina Carpenter,Nonsense,new,,,,,73243,FALSE +Sabrina Carpenter,Please Please Please,new,,,,,81927,FALSE +Sabrina Carpenter,Taste,new,,,,,83258,FALSE +Sad Cafe,Every Day Hurts,existing,,,,,,FALSE +Sade,By Your Side,existing,,,,,,FALSE +Sade,Kiss of Life,new,,,,,27980,FALSE +Sade,Like a Tattoo,new,,,,,67565,FALSE +Sade,No Ordinary Love,new,,,,,6434,FALSE +Sade,Smooth Operator,existing,,,,,,FALSE +Sade,The Sweetest Taboo,new,,,,,10913,FALSE +Sade,Your Love Is King,new,,,,,14499,FALSE +Safri Duo,La Bamba (Remix 2008),existing,,,,,,FALSE +Saint Motel,Cold Cold Man,new,,,,,81361,FALSE +Saint Motel,My Type,new,,,,,47946,FALSE +Saliva,Click Click Boom,existing,,,,,,FALSE +Salt N Pepa,Shoop,existing,Salt-N-Pepa,,,,,FALSE +Salt' N' Pepa,Ain't Nuthin' But A She Thing,new,Salt-N-Pepa,,,,29282,FALSE +Salt' N' Pepa,Champagne,new,Salt-N-Pepa,,,,28286,FALSE +Salt' N' Pepa,Let's Talk About Sex,new,Salt-N-Pepa,,,,12694,FALSE +Salt' N' Pepa,None of Your Business (clean),new,Salt-N-Pepa,,,,39591,FALSE +Salt' N' Pepa,None of Your Business,new,Salt-N-Pepa,,,,33559,FALSE +Salt' N' Pepa,Push It,new,Salt-N-Pepa,,,,13912,FALSE +Salt' N' Pepa,Shoop,new,Salt-N-Pepa,,,,30607,FALSE +Sam & Dave,Soul Man,existing,,,,,,FALSE +Sam Bailey,Skyscraper,existing,,,,,,FALSE +Sam Brown,Can I Get a Witness,existing,,,,,,FALSE +Sam Brown,Stop,existing,,,,,,FALSE +Sam Cooke,Bring It On Home To Me,existing,,,,,,FALSE +Sam Cooke,Twistin The Night Away,existing,,,,,,FALSE +Sam Cooke,Wonderful World,existing,,,,,,FALSE +Sam Fender,Hypersonic Missiles,new,,,,,59170,FALSE +Sam Fender,Seventeen Going Under,new,,,,,67779,FALSE +Sam Fender,Will We Talk,new,,,,,59171,FALSE +Sam Hunt,Body Like a Back Road,new,,,,,52620,FALSE +Sam Hunt,Break Up in a Small Town,new,,,,,50927,FALSE +Sam Hunt,House Party,new,,,,,49677,FALSE +Sam Hunt,Kinfolks,new,,,,,79203,FALSE +Sam Hunt,Leave the Night On,new,,,,,49555,FALSE +Sam Hunt,Take Your Time,new,,,,,48814,FALSE +Sam Smith,Dancing with a Stranger,new,,,,,57283,FALSE +Sam Smith,Fire on Fire,new,,,,,57188,FALSE +Sam Smith,I'm Not The Only One,existing,,,,,,FALSE +Sam Smith,Latch (Acoustic),new,,,,,46969,FALSE +Sam Smith,Like I Can,existing,,,,,,FALSE +Sam Smith,Stay With Me,existing,,,,,,FALSE +Sam Smith,Too Good at Goodbyes,new,,,,,54078,FALSE +Sam Smith,Unholy,new,,,,,71614,FALSE +Sam Sparro,Black & Gold,existing,,,,,,FALSE +Sammy Davis Junior,Candy Man,existing,,,,,,FALSE +Sammy Hagar,Heavy Metal,new,,,,,68853,FALSE +Sammy Hagar,I Can't Drive 55,new,,,,,53479,FALSE +Sammy Hagar,There's Only One Way to Rock,new,,,,,68215,FALSE +Sandie Shaw,(There's) Always Something There To Remind Me,existing,,,,,,FALSE +Sandy Posey,Single Girl,existing,,,,,,FALSE +Santana,Black Magic Woman,existing,,,,,,FALSE +Santana,Changes,new,,,,,53421,FALSE +Santana,Corazon Espinado,existing,,,,,,FALSE +Santana,Dance Sister Dance (Baila Mi Hermana),new,,,,,7634,FALSE +Santana,Europa (Earth's Cry,existing,,,,,,FALSE +Santana,Everybody's Everything,new,,,,,7635,FALSE +Santana,Evil Ways,existing,,,,,,FALSE +Santana,Guajira,new,,,,,62870,FALSE +Santana,I Love You Much Too Much,existing,,,,,,FALSE +Santana,Let the Children Play,new,,,,,68162,FALSE +Santana,Maria Maria,new,,,,,8910,FALSE +Santana,No One To Depend On,existing,,,,,,FALSE +Santana,Oye Como Va,existing,,,,,,FALSE +Santana,Persuasion,new,,,,,7639,FALSE +Santana,Samba Pa Ti,existing,,,,,,FALSE +Santana,She's Not There,new,,,,,7628,FALSE +Santana,Smooth,existing,,,,,,FALSE +Santana,The Game Of Love,existing,,,,,,FALSE +Santana,The Sensitive Kind,existing,,,,,,FALSE +Santana,While My Guitar Gently Weeps,existing,,,,,,FALSE +Santana,Winning,new,,,,,7632,FALSE +Sara Bareilles,Brave,existing,,,,,,FALSE +Sara Bareilles,Gravity,existing,,,,,,FALSE +Sara Bareilles,I Choose You,existing,,,,,,FALSE +Sara Bareilles,Love Song,existing,,,,,,FALSE +Sara Bareilles,She Used to Be Mine,new,,,,,49946,FALSE +Sara Evans,A Little Bit Stronger,existing,,,,,,FALSE +Sara Evans,Suds In The Bucket,existing,,,,,,FALSE +Sara Evans,Suds in the Bucket,new,,,,,8466,FALSE +Sarah Brightman,Memory,existing,,,,,,FALSE +Sarah McLachlan,Angel,existing,,,,,,FALSE +Sarah McLachlan,Blackbird,existing,,,,,,FALSE +Sarah McLachlan,Ice Cream,existing,,,,,,FALSE +Sarah Vaughan,Lullaby Of Birdland,existing,,,,,,FALSE +Sarah Vaughan,Moonlight In Vermont,existing,,,,,,FALSE +Sarah Vaughan,My Funny Valentine,existing,,,,,,FALSE +Sarah Vaughan,Whatever Lola Wants Lola Gets,existing,,,,,,FALSE +Saweetie,Best Friend,new,,,,,65272,FALSE +Saweetie,Closer,new,,,,,68281,FALSE +Saweetie,Icy Grl,new,,,,,82084,FALSE +Saweetie,My Type,new,,,,,75571,FALSE +Scandal,Goodbye to You,new,,,,,22871,FALSE +Scandal,The Warrior,new,,,,,6546,FALSE +Scissor Sisters,I Don't Feel Like Dancin,existing,,,,,,FALSE +Scissor Sisters,Take Your Mama,existing,,,,,,FALSE +Scorpions,Blackout,new,,,,,64181,FALSE +Scorpions,No One Like You,new,,,,,41774,FALSE +Scorpions,Rock You Like A Hurricane,existing,,,,,,FALSE +Scorpions,Send Me an Angel,new,,,,,22051,FALSE +Scorpions,Still Loving You,existing,,,,,,FALSE +Scorpions,Wind Of Change,existing,,,,,,FALSE +Scott Mckenzie,San Francisco (Be Sure To Wear Flowers In Your Hair),existing,,,,,,FALSE +Scotty McCreery,Five More Minutes,new,,,,,53428,FALSE +Scotty McCreery,This Is It,new,,,,,67828,FALSE +Scouting For Girls,She's So Lovely,existing,,,,,,FALSE +Seal,Crazy,new,,,,,13158,FALSE +Seal,Kiss From a Rose,new,,,,,10816,FALSE +Seals And Crofts,Summer Breeze,existing,,,,,,FALSE +Sean Paul,Get Busy,new,,,,,13935,FALSE +Sean Paul,She Doesn't Mind,new,,,,,40051,FALSE +Sean Paul,Temperature,new,,,,,21934,FALSE +Secret Affair,My World,existing,,,,,,FALSE +Seether,Broken,existing,,,,,,FALSE +Seether,Careless Whisper,new,,,,,26103,FALSE +Seether,Country Song,existing,,,,,,FALSE +Seether,Fake It,new,,,,,52678,FALSE +Seether,Fine Again,new,,,,,53419,FALSE +Seether,Remedy,new,,,,,69700,FALSE +Selena,Amor prohibido,new,,,,,18676,FALSE +Selena,Como la flor,new,,,,,18674,FALSE +Selena,El chico del apartamento 512,new,,,,,57429,FALSE +Selena,No me queda mas,new,,,,,61034,FALSE +Selena,Si una vez,new,,,,,59048,FALSE +Selena Gomez,Back to You,new,,,,,55746,FALSE +Selena Gomez,Come And Get It,existing,,,,,,FALSE +Selena Gomez,Fetish,new,,,,,53851,FALSE +Selena Gomez,Good For You,new,,,,,49525,FALSE +Selena Gomez,Lose You to Love Me,new,,,,,59688,FALSE +Selena Gomez,Love You Like a Love Song,existing,,,,,,FALSE +Selena Gomez,Same Old Love,new,,,,,49903,FALSE +Selena Gomez,Single Soon,new,,,,,76985,FALSE +Selena Gomez,The Heart Wants What It Wants,existing,,,,,,FALSE +Selena Gomez,Wolves,new,,,,,54652,FALSE +September,Cry for You,existing,,,,,,FALSE +Sergio Mendes,Berimbau,existing,,,,,,FALSE +Sergio Mendes,Mas Que Nada,existing,,,,,,FALSE +Sex Pistols,Anarchy in the U.K.,new,,,,,55852,FALSE +Sex Pistols,God Save The Queen,new,,,,,42389,FALSE +Sexyy Red,Bow Bow Bow (F My Baby Dad),new,,,,,79156,FALSE +Sexyy Red,Get It Sexyy,new,,,,,80682,FALSE +Sexyy Red,Hellcats SRTs 2 (with Lil Durk),new,,,,,81420,FALSE +Sexyy Red,Hellcats SRTs,new,,,,,81419,FALSE +Sexyy Red,Looking for the Hoes (Ain't My Fault),new,,,,,80161,FALSE +Sexyy Red,Pound Town 2,new,,,,,75472,FALSE +Sexyy Red,Pound Town,new,,,,,75741,FALSE +Sexyy Red,Skeeyee,new,,,,,77004,FALSE +Sexyy Red,U My Everything,new,,,,,81993,FALSE +Sha Na Na,Blue Moon,existing,,,,,,FALSE +Shaggy,Boombastic,new,,,,,13619,FALSE +Shakin' Stevens,Blue Christmas,existing,,,,,,FALSE +Shakin' Stevens,Fire Down Below,existing,,,,,,FALSE +Shakin' Stevens,Green Door,existing,,,,,,FALSE +Shakin' Stevens,Merry Christmas Everyone,existing,,,,,,FALSE +Shakin' Stevens,Ready Teddy,existing,,,,,,FALSE +Shakin' Stevens,Rockin' Good Way,existing,,,,,,FALSE +Shakin' Stevens,Teardrops,existing,,,,,,FALSE +Shakin' Stevens,This Ole House,existing,,,,,,FALSE +Shakin' Stevens,You Drive Me Crazy,existing,,,,,,FALSE +Shakira,Antologia,new,,,,,56334,FALSE +Shakira,Can't Remember To Forget You feat. Rihanna,existing,,,,,,FALSE +Shakira,Chantaje,new,,,,,52096,FALSE +Shakira,Dia de Enero,new,,,,,83602,FALSE +Shakira,Hips Don't Lie,new,,,,,7230,FALSE +Shakira,Inevitable,new,,,,,21334,FALSE +Shakira,Waka Waka (This Time for Africa),new,,,,,30412,FALSE +Shakira,"Whenever, Wherever",new,,,,,8071,FALSE +Sham Rock,Tell Me Ma,existing,,,,,,FALSE +Shania Twain,Any Man of Mine,new,,,,,11087,FALSE +Shania Twain,Forever And For Always,existing,,,,,,FALSE +Shania Twain,From This Moment On,new,,,,,40089,FALSE +Shania Twain,Honey I'm Home,existing,,,,,,FALSE +Shania Twain,Man I Feel Like A Woman,existing,,,,,,FALSE +Shania Twain,That Don't Impress Me Much,new,,,,,8522,FALSE +Shania Twain,You're Still The One,existing,,,,,,FALSE +Shawn Mendes,If I Can't Have You,new,,,,,58274,FALSE +Shawn Mendes,Imagination,new,,,,,64053,FALSE +Shawn Mendes,In My Blood,new,,,,,55366,FALSE +Shawn Mendes,Mercy,new,,,,,51776,FALSE +Shawn Mendes,Senorita,new,,,,,58670,FALSE +Shawn Mendes,Stitches,new,,,,,49342,FALSE +Shawn Mendes,There's Nothing Holdin' Me Back,new,,,,,53068,FALSE +Shawn Mendes,Treat You Better,new,,,,,51474,FALSE +Shawn Mendes,Wonder,new,,,,,62572,FALSE +She And Him,Fools Rush In,existing,,,,,,FALSE +Sheena Easton,For Your Eyes Only,existing,,,,,,FALSE +Sheena Easton,Strut,new,,,,,10004,FALSE +Sheppard,Coming Home,new,,,,,55166,FALSE +Sheppard,Geronimo,new,,,,,46911,FALSE +Sheryl Crow,A Change Would Do You Good,new,,,,,18606,FALSE +Sheryl Crow,All I Wanna Do,new,,,,,11455,FALSE +Sheryl Crow,Everyday Is a Winding Road,new,,,,,11330,FALSE +Sheryl Crow,If It Makes You Happy,existing,,,,,,FALSE +Sheryl Crow,My Favorite Mistake,existing,,,,,,FALSE +Sheryl Crow,Soak Up The Sun,new,,,,,8273,FALSE +Sheryl Crow,Strong Enough,existing,,,,,,FALSE +Sheryl Crow,The First Cut Is The Deepest,existing,,,,,,FALSE +Sheryl Crow & Sting,Always On Your Side,existing,Sheryl Crow,,,,,FALSE +Shinedown,45,existing,,,,,,FALSE +Shinedown,Call Me,existing,,,,,,FALSE +Shinedown,Cut the Cord,new,,,,,68235,FALSE +Shinedown,Devil,new,,,,,66008,FALSE +Shinedown,Enemies,new,,,,,68442,FALSE +Shinedown,Monsters,new,,,,,63915,FALSE +Shinedown,Second Chance,new,,,,,25424,FALSE +Shinedown,Simple Man,existing,,,,,,FALSE +Shinedown,Sound of Madness,new,,,,,67672,FALSE +Shirley Bassey,Diamonds Are Forever,existing,,,,,,FALSE +Shirley Bassey,Get the Party Started,existing,,,,,,FALSE +Shirley Bassey,Goldfinger,existing,,,,,,FALSE +Shola Ama,You Might Need Somebody,existing,,,,,,FALSE +Showaddywaddy,Hey Rock & Roll,existing,,,,,,FALSE +Showaddywaddy,Under the Moon of Love,existing,,,,,,FALSE +Sia,Chandelier (Piano Version),existing,,,,,,FALSE +Sia,Chandelier,existing,,,,,,FALSE +Sia,Cheap Thrills (feat. Sean Paul),new,,,,,51130,FALSE +Sia,Cheap Thrills,new,,,,,50662,FALSE +Sia,Elastic Heart,existing,,,,,,FALSE +Sia,Snowman,new,,,,,54631,FALSE +Sia,Unstoppable,new,,,,,50673,FALSE +Sick Puppies,Maybe,existing,,,,,,FALSE +Sick Puppies,You're Going Down,existing,,,,,,FALSE +Sigala,Came Here for Love,new,,,,,53732,FALSE +Sigala,Easy Love,new,,,,,50378,FALSE +Sigala,Sweet Lovin',new,,,,,55246,FALSE +Sigrid,Strangers,new,,,,,55511,FALSE +Silk Sonic,After Last Night,new,,,,,67036,FALSE +Silk Sonic,Leave the Door Open,new,,,,,64116,FALSE +Silk Sonic,Love's Train,new,,,,,68310,FALSE +Silk Sonic,Skate,new,,,,,65789,FALSE +Silk Sonic,Smokin Out the Window,new,,,,,66926,FALSE +Silversun Pickups,Lazy Eye,new,,,,,66517,FALSE +Silversun Pickups,Panic Switch,new,,,,,73611,FALSE +Simon And Garfunkel,A Hazy Shade of Winter,new,,,,,24251,FALSE +Simon And Garfunkel,America,existing,,,,,,FALSE +Simon And Garfunkel,Homeward Bound,existing,,,,,,FALSE +Simon And Garfunkel,I Am a Rock,existing,,,,,,FALSE +Simon And Garfunkel,My Little Town,new,,,,,71322,FALSE +Simon And Garfunkel,Old Friends,new,,,,,81802,FALSE +Simon And Garfunkel,The Only Living Boy in New York,new,,,,,31780,FALSE +Simon And Garfunkel,Bridge Over Troubled Water,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,Cecilia,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,El Condor Pasa (If I Could),existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,Mrs. Robinson,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,Scarborough Fair (Canticle),existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,The 59th Street Bridge Song (Feelin Groovy),existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,The Boxer,existing,Simon & Garfunkel,,,,,FALSE +Simon And Garfunkel,The Sound Of Silence,existing,Simon & Garfunkel,,,,,FALSE +Simple Minds,Alive & Kicking,existing,,,,,,FALSE +Simple Minds,Don't You Forget About Me,existing,,,,,,FALSE +Simple Minds,Glittering Prize,existing,,,,,,FALSE +Simple Minds,Promised You a Miracle,existing,,,,,,FALSE +Simple Minds,Waterfront,existing,,,,,,FALSE +Simple Plan,I'm Just a Kid,new,,,,,43640,FALSE +Simple Plan,Jet Lag (feat. Natasha Bedingfield),new,,,,,37264,FALSE +Simple Plan,Perfect,new,,,,,5744,FALSE +Simple Plan,Summer Paradise,new,,,,,40151,FALSE +Simple Plan,Welcome To My Life,new,,,,,19925,FALSE +Simply Red,For Your Babies,existing,,,,,,FALSE +Simply Red,Holding Back The Years,existing,,,,,,FALSE +Simply Red,If You Don't Know Me By Now,existing,,,,,,FALSE +Simply Red,Something Got Me Started,existing,,,,,,FALSE +Simply Red,You Make Me Feel Brand New,existing,,,,,,FALSE +Simpsons,Coney Island Baby (A Cappella),existing,,,,,,FALSE +Sinead O'Connor,Nothing Compares 2 U,existing,,,,,,FALSE +Siouxsie & The Banshees,Kiss Them for Me,new,,,,,73346,FALSE +Sir Mix-A-Lot,Baby Got Back,existing,,,,,,FALSE +Sir Mix-a-Lot,Baby Got Back,new,Sir Mix-A-Lot,,,,14483,FALSE +Sir Mix-a-Lot,Buttermilk Biscuits (Keep on Square Dancin'),new,Sir Mix-A-Lot,,,,69423,FALSE +Sir Mix-a-Lot,Jump On It,new,Sir Mix-A-Lot,,,,53308,FALSE +Sir Mix-a-Lot,Posse on Broadway,new,Sir Mix-A-Lot,,,,52351,FALSE +Sir Mix-a-Lot,Square Dance Rap,new,Sir Mix-A-Lot,,,,70238,FALSE +Sir Sly,High,new,,,,,78848,FALSE +Sister Hazel,All For You,existing,,,,,,FALSE +Sister Sledge,Lost In Music,existing,,,,,,FALSE +Sister Sledge,Thinking of You,existing,,,,,,FALSE +Sister Sledge,We Are Family,existing,,,,,,FALSE +Sixpence None The Richer,Kiss Me,existing,,,,,,FALSE +Sixpence None The Richer,There She Goes,existing,,,,,,FALSE +Ska-P,Cannabis,existing,,,,,,FALSE +Ska-P,El Vals Del Obrero,existing,,,,,,FALSE +Skeeter Davis,End of the World,existing,,,,,,FALSE +Skid Row,18 And Life,existing,,,,,,FALSE +Skid Row,I Remember You,new,,,,,58484,FALSE +Skid Row,Youth Gone Wild,new,,,,,63353,FALSE +Skillet,Awake And Alive,existing,,,,,,FALSE +Skillet,Hero,existing,,,,,,FALSE +Skunk Anansie,Hedonism (Just Because You Feel Good),existing,,,,,,FALSE +Skunk Anansie,Weak,existing,,,,,,FALSE +Slade,Mama We're All Crazy Now,existing,,,,,,FALSE +Slade,Merry Christmas Everybody,existing,,,,,,FALSE +Slayer,Angel of Death,new,,,,,71324,FALSE +Slayer,Raining Blood,new,,,,,70010,FALSE +Sleep Token,The Summoning,new,,,,,73535,FALSE +Slim Dusty,Where Country Is,existing,,,,,,FALSE +Slipknot,Before I Forget,new,,,,,66649,FALSE +Slipknot,Custer,new,,,,,78222,FALSE +Slipknot,Duality,new,,,,,28474,FALSE +Slipknot,Psychosocial,existing,,,,,,FALSE +Slipknot,Snuff,existing,,,,,,FALSE +Slipknot,The Devil in I,new,,,,,70007,FALSE +Slipknot,Unsainted,new,,,,,70897,FALSE +Slipknot,Wait & Bleed,new,,,,,70145,FALSE +Sly And The Family Stone,Everyday People,existing,Sly & The Family Stone,,,,,FALSE +Sly And The Family Stone,Family Affair,existing,Sly & The Family Stone,,,,,FALSE +Sly And The Family Stone,Hot Fun In The Summertime,existing,Sly & The Family Stone,,,,,FALSE +Sly and The Family Stone,Dance to the Music,new,Sly & The Family Stone,,,,6386,FALSE +Sly and The Family Stone,Thank You,new,Sly & The Family Stone,,,,18576,FALSE +Smash Mouth,All Star,existing,,,,,,FALSE +Smash Mouth,Walkin On The Sun,existing,,,,,,FALSE +Smokey Robinson,I Second That Emotion,existing,,,,,,FALSE +Smokey Robinson,The Tracks Of My Tears,existing,,,,,,FALSE +Smokie,Living Next Door To Alice,existing,,,,,,FALSE +Snakehips,All My Friends,new,,,,,83582,FALSE +Sneaker Pimps,6 Underground,new,,,,,10460,FALSE +Snoop Dogg,Ain't No Fun (If the Homies Can't Have None),new,,,,,55743,FALSE +Snoop Dogg,Beautiful,new,,,,,81667,FALSE +Snoop Dogg,Boom,new,,,,,38155,FALSE +Snoop Dogg,Candy (Drippin' Like Water),new,,,,,11911,FALSE +Snoop Dogg,Drop It Like It's Hot,existing,,,,,,FALSE +Snoop Dogg,Gin And Juice,existing,,,,,,FALSE +Snoop Dogg,Lodi Dodi,new,,,,,35588,FALSE +Snoop Dogg,Murder Was the Case (1993 version),new,,,,,72312,FALSE +Snoop Dogg,Sensual Seduction,new,,,,,14995,FALSE +Snoop Dogg,Signs,new,,,,,25723,FALSE +Snoop Dogg,Sweat (David Guetta Remix),existing,,,,,,FALSE +Snoop Dogg,Who Am I (What's My Name),new,,,,,13764,FALSE +Snow Patrol,Chasing Cars,existing,,,,,,FALSE +Snow Patrol,Run,existing,,,,,,FALSE +Snow Patrol,Spitting Games,existing,,,,,,FALSE +Snow Patrol,You're All I Have,existing,,,,,,FALSE +Social Distortion,Ball and Chain,new,,,,,54951,FALSE +Social Distortion,Story of My Life,new,,,,,27851,FALSE +Soft Cell,Tainted Love,existing,,,,,,FALSE +Soggy Bottom Boys,I Am A Man Of Constant Sorrow,existing,,,,,,FALSE +Soggy Bottom Boys,In The Jailhouse Now,existing,,,,,,FALSE +Sonic Youth,Kool Thing,new,,,,,75591,FALSE +Sonic Youth,Teen Age Riot,new,,,,,75816,FALSE +Sonny And Cher,I Got You Babe,existing,,,,,,FALSE +Sonny Rollins,Tenor Madness,existing,,,,,,FALSE +Sophie B Hawkins,Damn I Wish I Was Your Lover,existing,,,,,,FALSE +Soul Asylum,Misery,existing,,,,,,FALSE +Soul Asylum,Runaway Train,existing,,,,,,FALSE +Soulja Boy,Crank That,new,,,,,12625,FALSE +Soulja Boy,Kiss Me Thru the Phone,new,,,,,22192,FALSE +Soulja Boy,Pretty Boy Swag,new,,,,,80644,FALSE +Soulja Boy,Turn My Swag On,new,,,,,22910,FALSE +Soundgarden,Black Hole Sun,existing,,,,,,FALSE +Soundgarden,Burden in My Hand,new,,,,,55015,FALSE +Soundgarden,Fell on Black Days,new,,,,,54880,FALSE +Soundgarden,Outshined,existing,,,,,,FALSE +Soundgarden,Rusty Cage,new,,,,,55957,FALSE +Soundgarden,Spoonman,new,,,,,52579,FALSE +Space,Female of the Species,existing,,,,,,FALSE +Spandau Ballet,Gold,existing,,,,,,FALSE +Spandau Ballet,Through the Barricades,existing,,,,,,FALSE +Spandau Ballet,TRUE,existing,,,,,,FALSE +Spiller,Groovejet,existing,,,,,,FALSE +Spin Doctors,Two Princes,existing,,,,,,FALSE +Split Enz,I Got You,existing,,,,,,FALSE +Spoon,The Underdog,new,,,,,74881,FALSE +Squeeze,Another Nail Through My Heart,existing,,,,,,FALSE +Squeeze,Black Coffee in Bed,new,,,,,11480,FALSE +Squeeze,Cool for Cats,existing,,,,,,FALSE +Squeeze,If I Didn't Love You,existing,,,,,,FALSE +Squeeze,Is That Love,existing,,,,,,FALSE +Squeeze,Labelled With Love,existing,,,,,,FALSE +Squeeze,Pulling Mussels from a Shell,existing,,,,,,FALSE +Squeeze,Tempted,existing,,,,,,FALSE +Squeeze,Up the Junction,existing,,,,,,FALSE +St. Vincent,Los Ageless,new,,,,,73778,FALSE +Staind,For You,new,,,,,22331,FALSE +Staind,It's Been Awhile,new,,,,,7926,FALSE +Staind,Mudshovel,new,,,,,74992,FALSE +Staind,Outside,existing,,,,,,FALSE +Staind,Right Here,existing,,,,,,FALSE +Staind,So Far Away,existing,,,,,,FALSE +Stan Getz,Insensatez,new,,,,,63160,FALSE +Stan Getz,So Danco Samba,existing,,,,,,FALSE +Stan Getz,So danco samba,new,,,,,43488,FALSE +Stan Getz,Vivo sonhando,new,,,,,67540,FALSE +Starship,Nothing's Gonna Stop Us Now,existing,,,,,,FALSE +Starship,We Built This City,existing,,,,,,FALSE +Status Quo,Anniversary Waltz,existing,,,,,,FALSE +Status Quo,Rockin' All Over the World,existing,,,,,,FALSE +Status Quo,Whatever You Want,existing,,,,,,FALSE +Stealers Wheel,Stuck In The Middle With You,existing,,,,,,FALSE +Steel Panther,Eyes of a Panther,new,,,,,71433,FALSE +Steel Panther,Fat Girl (Thar She Blows),new,,,,,35833,FALSE +Steely Dan,Aja,new,,,,,57578,FALSE +Steely Dan,Any Major Dude Will Tell You,new,,,,,62113,FALSE +Steely Dan,Babylon Sisters,new,,,,,58442,FALSE +Steely Dan,Bad Sneakers,new,,,,,58493,FALSE +Steely Dan,Black Cow,new,,,,,56755,FALSE +Steely Dan,Black Friday,new,,,,,18474,FALSE +Steely Dan,Bodhisattva,new,,,,,18463,FALSE +Steely Dan,Deacon Blues,existing,,,,,,FALSE +Steely Dan,Dirty Work,existing,,,,,,FALSE +Steely Dan,Do It Again,existing,,,,,,FALSE +Steely Dan,Don't Take me Alive,new,,,,,58163,FALSE +Steely Dan,FM (No Static At All),existing,,,,,,FALSE +Steely Dan,Gaucho,new,,,,,63459,FALSE +Steely Dan,Hey Nineteen,existing,,,,,,FALSE +Steely Dan,Home at Last,new,,,,,61634,FALSE +Steely Dan,Josie,existing,,,,,,FALSE +Steely Dan,Kid Charlemagne,existing,,,,,,FALSE +Steely Dan,My Old School,existing,,,,,,FALSE +Steely Dan,Peg,existing,,,,,,FALSE +Steely Dan,Pretzel Logic,new,,,,,57035,FALSE +Steely Dan,Reelin In The Years,existing,,,,,,FALSE +Steely Dan,Rikki Don't Lose That Number,existing,,,,,,FALSE +Steely Dan,Time Out of Mind,new,,,,,18462,FALSE +Stephanie Mills,Never Knew Love Like This Before,existing,,,,,,FALSE +Stephen 'Tin Tin' Duffy,Kiss Me,existing,,,,,,FALSE +Stephen Bishop,On And On,new,,,,,31468,FALSE +Stephen Foster,If You've Only Got A Mustache (A Cappella),existing,,,,,,FALSE +Stephen Sanchez,High,new,,,,,77252,FALSE +Stephen Sanchez,Until I Found You,new,,,,,70031,FALSE +Steppenwolf,Born To Be Wild,existing,,,,,,FALSE +Steppenwolf,Magic Carpet Ride,existing,,,,,,FALSE +Steps,Tragedy,existing,,,,,,FALSE +Stereophonics,Dakota,existing,,,,,,FALSE +Stereophonics,Graffiti On the Train,existing,,,,,,FALSE +Stereophonics,Handbags & Gladrags,existing,,,,,,FALSE +Stereophonics,Maybe Tomorrow,existing,,,,,,FALSE +Steve Earle,Copperhead Road,existing,,,,,,FALSE +Steve Earle,Galway Girl,existing,,,,,,FALSE +Steve Earle,Goodbye,existing,,,,,,FALSE +Steve Earle,Guitar Town,existing,,,,,,FALSE +Steve Earle,The Devil's Right Hand,existing,,,,,,FALSE +Steve Harley & Cockney Rebel,Make Me Smile (Come Up & See Me),existing,,,,,,FALSE +Steve Miller Band,Abracadabra,existing,,,,,,FALSE +Steve Miller Band,Dance Dance Dance,new,,,,,69279,FALSE +Steve Miller Band,Fly Like An Eagle,existing,,,,,,FALSE +Steve Miller Band,Jet Airliner,existing,,,,,,FALSE +Steve Miller Band,Jungle Love,new,,,,,18029,FALSE +Steve Miller Band,Rock'n Me,existing,,,,,,FALSE +Steve Miller Band,Space Cowboy,new,,,,,55144,FALSE +Steve Miller Band,Swingtown,existing,,,,,,FALSE +Steve Miller Band,Take The Money And Run,existing,,,,,,FALSE +Steve Miller Band,The Joker,existing,,,,,,FALSE +Steve Winwood,Back in the High Life Again,new,,,,,46951,FALSE +Steve Winwood,Can't Find My Way Home (live Crossroads),new,,,,,71728,FALSE +Steve Winwood,Higher Love,existing,,,,,,FALSE +Steve Winwood,Valerie '87,new,,,,,33679,FALSE +Stevie Nicks,Edge Of Seventeen,existing,,,,,,FALSE +Stevie Nicks,Leather And Lace,existing,,,,,,FALSE +Stevie Nicks,Rhiannon,existing,,,,,,FALSE +Stevie Nicks,Stop Draggin My Heart Around,existing,,,,,,FALSE +Stevie Ray Vaughan,Cold Shot,existing,,,,,,FALSE +Stevie Ray Vaughan,Couldn't Stand the Weather,new,,,,,57150,FALSE +Stevie Ray Vaughan,Crossfire,existing,,,,,,FALSE +Stevie Ray Vaughan,Life By The Drop,existing,,,,,,FALSE +Stevie Ray Vaughan,Little Wing,existing,,,,,,FALSE +Stevie Ray Vaughan,Look At Little Sister,existing,,,,,,FALSE +Stevie Ray Vaughan,Love Struck Baby,existing,,,,,,FALSE +Stevie Ray Vaughan,Pride And Joy,existing,,,,,,FALSE +Stevie Ray Vaughan,Superstition,existing,,,,,,FALSE +Stevie Ray Vaughan,Texas Flood,existing,,,,,,FALSE +Stevie Ray Vaughan,The House Is Rockin,existing,,,,,,FALSE +Stevie Ray Vaughan,Tightrope,existing,,,,,,FALSE +Stevie Ray Vaughan,Voodoo Child (Slight Return),new,,,,,49610,FALSE +Stevie Wonder,Boogie on Reggae Woman,new,,,,,21303,FALSE +Stevie Wonder,Don't You Worry 'bout a Thing,new,,,,,12883,FALSE +Stevie Wonder,For Once In My Life,existing,,,,,,FALSE +Stevie Wonder,He's Misstra Know It All,existing,,,,,,FALSE +Stevie Wonder,Higher Ground,existing,,,,,,FALSE +Stevie Wonder,I Believe (When I Fall in Love It Will Be Forever),new,,,,,64369,FALSE +Stevie Wonder,I Just Called To Say I Love You,existing,,,,,,FALSE +Stevie Wonder,I Wish,existing,,,,,,FALSE +Stevie Wonder,Isn't She Lovely (A Cappella),existing,,,,,,FALSE +Stevie Wonder,Isn't She Lovely,existing,,,,,,FALSE +Stevie Wonder,Living for the City,new,,,,,18447,FALSE +Stevie Wonder,Love's in Need of Love Today,new,,,,,25579,FALSE +Stevie Wonder,My Cherie Amour,new,,,,,12885,FALSE +Stevie Wonder,Part Time Lover,existing,,,,,,FALSE +Stevie Wonder,Pastime Paradise,new,,,,,25844,FALSE +Stevie Wonder,Signed Sealed And Delivered I'm Yours,existing,,,,,,FALSE +Stevie Wonder,Sir Duke,existing,,,,,,FALSE +Stevie Wonder,Superstition,existing,,,,,,FALSE +Stevie Wonder,Uptight Everything's Alright,existing,,,,,,FALSE +Stevie Wonder,You Are The Sunshine Of My Life,existing,,,,,,FALSE +Sting,Desert Rose,existing,,,,,,FALSE +Sting,Englishman In New York,existing,,,,,,FALSE +Sting,Fields Of Gold,existing,,,,,,FALSE +Sting,Fragile,existing,,,,,,FALSE +Sting,Shape Of My Heart,existing,,,,,,FALSE +Sting,Someone To Watch Over Me,existing,,,,,,FALSE +Stone Sour,Absolute Zero,new,,,,,77605,FALSE +Stone Sour,Bother,new,,,,,7204,FALSE +Stone Sour,Through Glass,existing,,,,,,FALSE +Stone Sour,Wicked Game (acoustic),new,,,,,35047,FALSE +Stone Temple Pilots,Big Empty,new,,,,,54939,FALSE +Stone Temple Pilots,Creep,existing,,,,,,FALSE +Stone Temple Pilots,Dancing Days,existing,,,,,,FALSE +Stone Temple Pilots,Dead And Bloated,new,,,,,52333,FALSE +Stone Temple Pilots,Interstate Love Song,existing,,,,,,FALSE +Stone Temple Pilots,Plush (Acoustic),existing,,,,,,FALSE +Stone Temple Pilots,Plush,existing,,,,,,FALSE +Stone Temple Pilots,Sex Type Thing,existing,,,,,,FALSE +Stone Temple Pilots,Vasoline,new,,,,,49538,FALSE +Stone Temple Pilots,Wicked Garden,existing,,,,,,FALSE +Stooshe,Black Heart,existing,,,,,,FALSE +Stooshe,Slip,existing,,,,,,FALSE +Story Of The Year,Until The Day I Die,existing,,,,,,FALSE +Strawberry Alarm Clock,Incense & Peppermints,existing,,,,,,FALSE +Style Council,My Ever Changing Mood,existing,,,,,,FALSE +Style Council,Shout To the Top,existing,,,,,,FALSE +Style Council,Walls Come Tumbling Down,existing,,,,,,FALSE +Style Council,You're the Best Thing,existing,,,,,,FALSE +Styx,Babe,new,,,,,29927,FALSE +Styx,Blue Collar Man,new,,,,,55290,FALSE +Styx,Come Sail Away,existing,,,,,,FALSE +Styx,Fooling Yourself (The Angry Young Man),new,,,,,53162,FALSE +Styx,Lady,new,,,,,51989,FALSE +Styx,Miss America,new,,,,,68439,FALSE +Styx,Pieces of Eight,new,,,,,65536,FALSE +Styx,Renegade,existing,,,,,,FALSE +Styx,Rockin' the Paradise,new,,,,,60194,FALSE +Styx,Show Me The Way,existing,,,,,,FALSE +Styx,Sing for the Day,new,,,,,64098,FALSE +Styx,Snowblind,new,,,,,28184,FALSE +Styx,Suite Madame Blue,existing,,,,,,FALSE +Styx,The Best of Times,new,,,,,56980,FALSE +Styx,The Grand Illusion,new,,,,,62108,FALSE +Styx,Too Much Time On My Hands,existing,,,,,,FALSE +Sublime,Caress Me Down,existing,,,,,,FALSE +Sublime,Garden Grove,existing,,,,,,FALSE +Sublime,Santeria,existing,,,,,,FALSE +Sublime,Smoke Two Joints,existing,,,,,,FALSE +Sublime,What I Got,existing,,,,,,FALSE +Sublime,With Rome Panic,existing,,,,,,FALSE +Sufjan Stevens,Chicago,new,,,,,72889,FALSE +Sufjan Stevens,Mystery of Love,new,,,,,74964,FALSE +Sugababes,Girls,existing,,,,,,FALSE +Sugababes,Push the Button,existing,,,,,,FALSE +Sugar Minott,Good Thing Going,existing,,,,,,FALSE +Sugar Ray,Answer The Phone,existing,,,,,,FALSE +Sugar Ray,Fly,existing,,,,,,FALSE +Sugar Ray,Someday,existing,,,,,,FALSE +Sugarland,Stay,existing,,,,,,FALSE +Sugarland,Stuck Like Glue,existing,,,,,,FALSE +Sugarloaf,Green-Eyed Lady,existing,,,,,,FALSE +Suggs,Cecilia,existing,,,,,,FALSE +Sum 41,Hell Song,existing,,,,,,FALSE +Sum 41,In Too Deep,existing,,,,,,FALSE +Sum 41,Pieces,existing,,,,,,FALSE +Supertramp,Bloody Well Right,existing,,,,,,FALSE +Supertramp,Dreamer,new,,,,,20737,FALSE +Supertramp,Give A Little Bit,existing,,,,,,FALSE +Supertramp,Goodbye Stranger,existing,,,,,,FALSE +Supertramp,Take The Long Way Home,existing,,,,,,FALSE +Supertramp,The Logical Song,existing,,,,,,FALSE +Survivor,Burning Heart,existing,,,,,,FALSE +Survivor,Eye Of The Tiger,existing,,,,,,FALSE +Susan Tedeschi,Angel from Montgomery,new,,,,,51464,FALSE +Susan Tedeschi,"Don't Think Twice, It's All Right",new,,,,,65644,FALSE +Susan Tedeschi,It Hurt So Bad,existing,,,,,,FALSE +Susan Tedeschi,Little by Little,new,,,,,56196,FALSE +Susan Tedeschi,"Mama, He Treats Your Daughter Mean",new,,,,,36260,FALSE +Susan Tedeschi,Rock Me Right,existing,,,,,,FALSE +Susan Tedeschi,Voodoo Woman (live),new,,,,,49139,FALSE +Sutherland Brothers & Quiver,Arms of Mary,existing,,,,,,FALSE +Suzanne Vega,Luka,new,,,,,5118,FALSE +Suzanne Vega,Tom's Diner,new,,,,,10007,FALSE +Sweeney Todd,Not While I'm Around (A Cappella),existing,,,,,,FALSE +Sweet,Ballroom Blitz,existing,,,,,,FALSE +Swing Out Sister,Breakout,existing,,,,,,FALSE +Swinging Blue Jeans,Hippy Hippy Shake,existing,,,,,,FALSE +Switchfoot,Dare You To Move,existing,,,,,,FALSE +Switchfoot,Meant To Live,existing,,,,,,FALSE +System Of A Down,Aerials,existing,,,,,,FALSE +System Of A Down,Lonely Day,existing,,,,,,FALSE +System Of A Down,Toxicity,existing,,,,,,FALSE +System Of A Down,B.Y.O.B,new,System Of A Down,,,,43958,FALSE +System Of A Down,Chop Suey!,new,System Of A Down,,,,19872,FALSE +System Of A Down,Hypnotize,new,System Of A Down,,,,26861,FALSE +System Of A Down,Sugar,new,System Of A Down,,,,56684,FALSE +System Of A Down,Violent Pornography,new,System Of A Down,,,,28051,FALSE +T Rex,20th Century Boy,existing,,,,,,FALSE +T Rex,Get It On,existing,,,,,,FALSE +T Rex,Hot Love,existing,,,,,,FALSE +T Rex,I Love To Boogie,existing,,,,,,FALSE +T Rex,Jeepster,existing,,,,,,FALSE +T Rex,Ride a White Swan,existing,,,,,,FALSE +T'pau,China In Your Hand,existing,,,,,,FALSE +T-Pain,5 O'Clock,new,,,,,39179,FALSE +T-Pain,Bartender,new,,,,,12362,FALSE +T-Pain,Best Love Song,new,,,,,82966,FALSE +T-Pain,Buy U A Drank (Shawty Snappin),new,,,,,12051,FALSE +T-Pain,Can't Believe It,new,,,,,21014,FALSE +T-Pain,I'm 'n Luv (wit a Stripper),new,,,,,60612,FALSE +T-Pain,I'm Sprung,new,,,,,32580,FALSE +T.I.,Big Things Poppin' (Do It),new,,,,,12363,FALSE +T.I.,Go Get It,new,,,,,41317,FALSE +T.I.,Got Your Back,new,,,,,32381,FALSE +T.I.,Live Your Life,new,,,,,21353,FALSE +T.I.,No Mediocre,existing,,,,,,FALSE +T.I.,Remember Me,new,,,,,24617,FALSE +T.I.,That's All She Wrote,new,,,,,35483,FALSE +T.I.,Whatever You Like,new,,,,,20754,FALSE +T.I.,Why You Wanna,new,,,,,32377,FALSE +TLC,Creep,existing,,,,,,FALSE +TLC,No Scrubs (with rap),new,,,,,83038,FALSE +TLC,No Scrubs,new,,,,,8520,FALSE +TLC,Red Light Special,existing,,,,,,FALSE +TLC,Waterfalls,new,,,,,10836,FALSE +TV On The Radio,Will Do,new,,,,,39103,FALSE +TV On The Radio,Wolf Like Me,new,,,,,73663,FALSE +Take That,A Million Love Songs,existing,,,,,,FALSE +Take That,Back for Good (Live - Progress Tour 2011),existing,,,,,,FALSE +Take That,Back for Good,existing,,,,,,FALSE +Take That,Could It Be Magic,existing,,,,,,FALSE +Take That,Eight Letters,existing,,,,,,FALSE +Take That,Everything Changes,existing,,,,,,FALSE +Take That,Everything Changes/Relight My Fire (from an Audience With Take That),existing,,,,,,FALSE +Take That,Flood,existing,,,,,,FALSE +Take That,Greatest Day,existing,,,,,,FALSE +Take That,Hold Up a Light,existing,,,,,,FALSE +Take That,Never Forget (from ITV's Take That Come To Town) ,existing,,,,,,FALSE +Take That,Patience,existing,,,,,,FALSE +Take That,Pray (from an Audience With Take That),existing,,,,,,FALSE +Take That,Relight My Fire,existing,,,,,,FALSE +Take That,Rule the World,existing,,,,,,FALSE +Take That,Said It All,existing,,,,,,FALSE +Take That,Shine,existing,,,,,,FALSE +Take That,These Days,existing,,,,,,FALSE +Take That,Up All Night,existing,,,,,,FALSE +Take That,When They Were Young Medley,existing,,,,,,FALSE +Taking Back Sunday,A Decade Under The Influence,existing,,,,,,FALSE +Taking Back Sunday,Cute Without The E Cut From The Team,existing,,,,,,FALSE +Tal Bachman,She's So High,existing,,,,,,FALSE +Talk Talk,It's My Life,existing,,,,,,FALSE +Talking Heads,And She Was,existing,,,,,,FALSE +Talking Heads,Burning Down The House,existing,,,,,,FALSE +Talking Heads,Crosseyed and Painless,new,,,,,79367,FALSE +Talking Heads,Once in a Lifetime,new,,,,,54913,FALSE +Talking Heads,Psycho Killer,new,,,,,40301,FALSE +Talking Heads,Road to Nowhere,new,,,,,55894,FALSE +Talking Heads,Take Me To The River,existing,,,,,,FALSE +Talking Heads,This Must Be The Place (Naive Melody),new,,,,,36976,FALSE +Tame Impala,Borderline,new,,,,,79055,FALSE +Tame Impala,Elephant,new,,,,,73540,FALSE +Tame Impala,Feels Like We Only Go Backwards,new,,,,,58209,FALSE +Tame Impala,Let It Happen,new,,,,,58210,FALSE +Tame Impala,"New Person, Same Old Mistakes",new,,,,,78899,FALSE +Tame Impala,The Less I Know the Better,new,,,,,58203,FALSE +Tammi Terrell,Your Precious Love,existing,,,,,,FALSE +Tammy Wynette,Stand By Your Man,existing,,,,,,FALSE +Tanya Tucker,Delta Dawn,existing,,,,,,FALSE +Tarrus Riley,Human Nature,existing,,,,,,FALSE +Tate McRae,Exes,new,,,,,78714,FALSE +Tate McRae,Greedy,new,,,,,77281,FALSE +Tate McRae,She's All I Wanna Be,new,,,,,68332,FALSE +Tate McRae,That Way,new,,,,,82366,FALSE +Tate McRae,You Broke Me First,new,,,,,39939,FALSE +Tavares,Heaven Must Be Missing an Angel,existing,,,,,,FALSE +Tavares,More Than a Woman,existing,,,,,,FALSE +Taylor Dane,Tell It To My Heart,existing,,,,,,FALSE +Taylor Swift,A Perfectly Good Heart,existing,,,,,,FALSE +Taylor Swift,Anti-Hero,new,,,,,72013,FALSE +Taylor Swift,August,new,,,,,62142,FALSE +Taylor Swift,Beautiful Eyes,existing,,,,,,FALSE +Taylor Swift,Blank Space,existing,,,,,,FALSE +Taylor Swift,Breathe,existing,,,,,,FALSE +Taylor Swift,Cardigan,new,,,,,62003,FALSE +Taylor Swift,Cruel Summer,new,,,,,59150,FALSE +Taylor Swift,Don't Blame Me,new,,,,,54844,FALSE +Taylor Swift,Down Bad,new,,,,,80978,FALSE +Taylor Swift,Everything Has Changed feat. Ed Sheeran,existing,,,,,,FALSE +Taylor Swift,Fearless,existing,,,,,,FALSE +Taylor Swift,Forever And Always (Piano Version),existing,,,,,,FALSE +Taylor Swift,Fortnight,new,,,,,80965,FALSE +Taylor Swift,Guilty as Sin,new,,,,,81098,FALSE +Taylor Swift,Hey Stephen,existing,,,,,,FALSE +Taylor Swift,I Can Do It with a Broken Heart,new,,,,,80971,FALSE +Taylor Swift,I Knew You Were Trouble,existing,,,,,,FALSE +Taylor Swift,Innocent,existing,,,,,,FALSE +Taylor Swift,Jump Then Fall,existing,,,,,,FALSE +Taylor Swift,Love Story,existing,,,,,,FALSE +Taylor Swift,Lover,new,,,,,59141,FALSE +Taylor Swift,Mean,existing,,,,,,FALSE +Taylor Swift,Mine,existing,,,,,,FALSE +Taylor Swift,Never Grow Up,existing,,,,,,FALSE +Taylor Swift,Our Song,existing,,,,,,FALSE +Taylor Swift,Picture To Burn,existing,,,,,,FALSE +Taylor Swift,Sad Beautiful Tragic,existing,,,,,,FALSE +Taylor Swift,Safe And Sound,existing,,,,,,FALSE +Taylor Swift,Shake It Off,existing,,,,,,FALSE +Taylor Swift,Style,existing,,,,,,FALSE +Taylor Swift,Teardrops On My Guitar,existing,,,,,,FALSE +Taylor Swift,Tell Me Why,existing,,,,,,FALSE +Taylor Swift,The Moment I Knew,existing,,,,,,FALSE +Taylor Swift,The Other Side Of The Door,existing,,,,,,FALSE +Taylor Swift,You Belong With Me,existing,,,,,,FALSE +Team America World Police,America F*#k Yeah!,existing,,,,,,FALSE +Team America World Police,Freedom Isn't Free,existing,,,,,,FALSE +Team America World Police,I'm So Ronery,existing,,,,,,FALSE +Tears For Fears,Advice For The Young At Heart,existing,,,,,,FALSE +Tears For Fears,Everybody Wants To Rule The World,existing,,,,,,FALSE +Tears For Fears,Shout,existing,,,,,,FALSE +Tears For Fears,Sowing The Seeds Of Love,existing,,,,,,FALSE +Tears For Fears,Head Over Heels,new,Tears For Fears,,,,39003,FALSE +Ted Nugent,Cat Scratch Fever,new,,,,,60107,FALSE +Ted Nugent,Stranglehold,new,,,,,60059,FALSE +Teddy Swims,Devil in a Dress,new,,,,,73568,FALSE +Teddy Swims,Hammer to the Heart,new,,,,,81228,FALSE +Teddy Swims,Lose Control,new,,,,,75892,FALSE +Teddy Swims,The Door,new,,,,,77253,FALSE +Teddy Swims,You're Still the One,new,,,,,83099,FALSE +Tedeschi Trucks Band,Midnight in Harlem,new,,,,,55740,FALSE +Tegan and Sara,Closer,new,,,,,47598,FALSE +Temptations,My Girl (A Cappella),existing,The Temptations,,,,,FALSE +Tenacious D,Beelzeboss (The Final Showdown),new,,,,,35598,FALSE +Tenacious D,Kickapoo,new,,,,,30466,FALSE +Tenacious D,The Metal,new,,,,,70097,FALSE +Tenacious D,Tribute,new,,,,,29229,FALSE +Tennessee Ernie Ford,Sixteen Tons,existing,,,,,,FALSE +Tenpole Tudor,Swords of 1000 Men,existing,,,,,,FALSE +Terence Trent D'Arby,Dance Little Sister,existing,,,,,,FALSE +Terence Trent D'Arby,Sign Your Name,existing,,,,,,FALSE +Terence Trent D'Arby,Wishing Well,existing,,,,,,FALSE +Terry Jacks,Seasons In the Sun,existing,,,,,,FALSE +Tesla,Modern Day Cowboy,new,,,,,69675,FALSE +Tevin Campbell,Can We Talk,existing,,,,,,FALSE +Texas,Say What You Want,existing,,,,,,FALSE +Texas,Summer Son,new,,,,,13000,FALSE +Texas Tornados,(Hey Baby) Que Paso,new,,,,,36428,FALSE +Texas Tornados,A Little Bit Is Better Than Nada,existing,,,,,,FALSE +Texas Tornados,Hey Baby Que Paso,existing,,,,,,FALSE +That Thing You Do! (film),That Thing You Do,new,That Thing You Do! (Movie),,,,56067,FALSE +The 1975,Chocolate,existing,,,,,,FALSE +The 1975,I'm in Love with You,new,,,,,71763,FALSE +The 1975,It's Not Living (If It's Not With You),new,,,,,75139,FALSE +The 1975,Love It If We Made It,new,,,,,75857,FALSE +The 1975,Robbers,new,,,,,74927,FALSE +The 1975,Somebody Else,new,,,,,69276,FALSE +The 1975,The Sound,new,,,,,51234,FALSE +The Airborne Toxic Event,Sometime Around Midnight,new,,,,,23624,FALSE +The Alan Parsons Project,Don't Answer Me,existing,,,,,,FALSE +The Alan Parsons Project,Eye In The Sky,existing,,,,,,FALSE +The Alan Parsons Project,Games People Play,existing,,,,,,FALSE +The Alan Parsons Project,I Wouldn't Want to Be Like You,new,,,,,55721,FALSE +The Alan Parsons Project,The Raven,new,,,,,67355,FALSE +The Alan Parsons Project,"The Turn of a Friendly Card, Pt. 1",new,,,,,66000,FALSE +The Alan Parsons Project,Time,new,,,,,58905,FALSE +The All-American Rejects,Dirty Little Secret,new,,,,,5663,FALSE +The All-American Rejects,Gives You Hell,new,,,,,21819,FALSE +The All-American Rejects,It Ends Tonight,new,,,,,30538,FALSE +The All-American Rejects,Move Along,new,,,,,11587,FALSE +The All-American Rejects,"Swing, Swing",new,,,,,12118,FALSE +The Allman Brothers Band,Ain't Wastin' Time No More,new,,,,,57874,FALSE +The Allman Brothers Band,Blue Sky,existing,,,,,,FALSE +The Allman Brothers Band,Done Somebody Wrong (live),new,,,,,62716,FALSE +The Allman Brothers Band,Dreams,new,,,,,35240,FALSE +The Allman Brothers Band,Jessica,existing,,,,,,FALSE +The Allman Brothers Band,Melissa,existing,,,,,,FALSE +The Allman Brothers Band,Midnight Rider,existing,,,,,,FALSE +The Allman Brothers Band,One Way Out,new,,,,,50001,FALSE +The Allman Brothers Band,Ramblin' Man,new,,,,,6302,FALSE +The Allman Brothers Band,Soulshine,existing,,,,,,FALSE +The Allman Brothers Band,Southbound,new,,,,,61416,FALSE +The Allman Brothers Band,Statesboro Blues,existing,,,,,,FALSE +The Allman Brothers Band,Stormy Monday,existing,,,,,,FALSE +The Allman Brothers Band,Trouble No More,new,,,,,64668,FALSE +The Allman Brothers Band,Whipping Post,existing,,,,,,FALSE +The American Breed,Bend Me Shape Me,existing,,,,,,FALSE +The Andrews Sisters,Boogie Woogie Bugle Boy,existing,,,,,,FALSE +The Andrews Sisters,Chattanooga Choo Choo,existing,,,,,,FALSE +The Andrews Sisters,In The Mood,existing,,,,,,FALSE +The Angels,My Boyfriends Back,existing,,,,,,FALSE +The Animals,Bring It On Home to Me,existing,,,,,,FALSE +The Animals,Don't Let Me Be Misunderstood,existing,,,,,,FALSE +The Animals,House Of The Rising Sun,existing,,,,,,FALSE +The Animals,We Gotta Get Out Of This Place,existing,,,,,,FALSE +The Archies,Sugar Sugar,existing,,,,,,FALSE +The Avener,Castle in the Snow,new,,,,,49185,FALSE +The Avener,Fade Out Lines,new,,,,,47997,FALSE +The Avett Brothers,Ain't No Man,new,,,,,62031,FALSE +The Avett Brothers,Head Full of Doubt Road Full of Promise,new,,,,,74981,FALSE +The Avett Brothers,I and Love and You,new,,,,,72587,FALSE +The Avett Brothers,Murder in the City,new,,,,,79996,FALSE +The Avett Brothers,No Hard Feelings,new,,,,,77182,FALSE +The B-52's,Love Shack,existing,,,,,,FALSE +The B-52's,Private Idaho,new,,,,,58636,FALSE +The B-52's,Roam,existing,,,,,,FALSE +The B-52's,Rock Lobster,new,,,,,55052,FALSE +The Babys,Back on My Feet Again,new,,,,,69628,FALSE +The Babys,Every Time I Think of You,new,,,,,56251,FALSE +The Babys,Head First,new,,,,,69856,FALSE +The Babys,Isn't It Time,new,,,,,64213,FALSE +The Babys,Midnight Rendezvous,new,,,,,28180,FALSE +The Band,The Night They Drove Old Dixie Down,existing,,,,,,FALSE +The Band,The Shape I'm In,new,,,,,68760,FALSE +The Band,The Weight,existing,,,,,,FALSE +The Band,Up On Cripple Creek,existing,,,,,,FALSE +The Band Perry,Better Dig Two,existing,,,,,,FALSE +The Band Perry,Done,existing,,,,,,FALSE +The Band Perry,If I Die Young,existing,,,,,,FALSE +The Band Wagon Film,That's Entertainment (A Cappella),existing,,,,,,FALSE +The Band of Heathens,Hurricane,new,,,,,58141,FALSE +The Bangles,Eternal Flame,existing,,,,,,FALSE +The Bangles,Hazy Shade of Winter,new,,,,,42007,FALSE +The Bangles,Manic Monday,existing,,,,,,FALSE +The Bangles,Walk Like An Egyptian,existing,,,,,,FALSE +The Beach Boys,Barbara Ann,existing,,,,,,FALSE +The Beach Boys,Be True to Your School,new,,,,,29481,FALSE +The Beach Boys,California Dreamin,existing,,,,,,FALSE +The Beach Boys,California Girls,existing,,,,,,FALSE +The Beach Boys,Catch A Wave,existing,,,,,,FALSE +The Beach Boys,Don't Worry Baby,existing,,,,,,FALSE +The Beach Boys,Fun Fun Fun,existing,,,,,,FALSE +The Beach Boys,Girls On The Beach,existing,,,,,,FALSE +The Beach Boys,God Only Knows,new,,,,,30162,FALSE +The Beach Boys,Good Vibrations,existing,,,,,,FALSE +The Beach Boys,Help Me Rhonda,existing,,,,,,FALSE +The Beach Boys,I Get Around,existing,,,,,,FALSE +The Beach Boys,In My Room,existing,,,,,,FALSE +The Beach Boys,Kokomo,existing,,,,,,FALSE +The Beach Boys,Lady Lynda,existing,,,,,,FALSE +The Beach Boys,Little Deuce Coupe,existing,,,,,,FALSE +The Beach Boys,Sloop John B,existing,,,,,,FALSE +The Beach Boys,Surfer Girl,existing,,,,,,FALSE +The Beach Boys,Surfin Safari,existing,,,,,,FALSE +The Beach Boys,Surfin USA,existing,,,,,,FALSE +The Beach Boys,Warmth Of The Sun,existing,,,,,,FALSE +The Beach Boys,Wouldn't It Be Nice,new,,,,,22163,FALSE +The Beat,Can't Get Used To Losing You,existing,,,,,,FALSE +The Beat,Tears of a Clown,existing,,,,,,FALSE +The Beatles,A Day In The Life,existing,,,,,,FALSE +The Beatles,A Hard Day's Night,new,,,,,15064,FALSE +The Beatles,All My Loving,existing,,,,,,FALSE +The Beatles,All You Need Is Love,new,,,,,14143,FALSE +The Beatles,And I Love Her,existing,,,,,,FALSE +The Beatles,Back in the U.S.S.R.,existing,,,,,,FALSE +The Beatles,Birthday,new,,,,,24405,FALSE +The Beatles,Blackbird,existing,,,,,,FALSE +The Beatles,Can't Buy Me Love,existing,,,,,,FALSE +The Beatles,Carry That Weight,new,,,,,78668,FALSE +The Beatles,Come Together,existing,,,,,,FALSE +The Beatles,Day Tripper,existing,,,,,,FALSE +The Beatles,Dear Prudence,existing,,,,,,FALSE +The Beatles,Don't Let Me Down,existing,,,,,,FALSE +The Beatles,Drive My Car (A Cappella),existing,,,,,,FALSE +The Beatles,Drive My Car,existing,,,,,,FALSE +The Beatles,Eight Days A Week,existing,,,,,,FALSE +The Beatles,Eleanor Rigby,existing,,,,,,FALSE +The Beatles,Fixing a Hole,new,,,,,21415,FALSE +The Beatles,From Me To You,existing,,,,,,FALSE +The Beatles,Get Back,existing,,,,,,FALSE +The Beatles,Getting Better,existing,,,,,,FALSE +The Beatles,Glass Onion,new,,,,,64833,FALSE +The Beatles,Golden Slumbers Carry That Weight,new,,,,,23744,FALSE +The Beatles,Golden Slumbers,new,,,,,78667,FALSE +The Beatles,Good Day Sunshine,new,,,,,10484,FALSE +The Beatles,Got to Get You into My Life,new,,,,,10483,FALSE +The Beatles,Happiness Is a Warm Gun,new,,,,,30662,FALSE +The Beatles,Hard Days Night,existing,,,,,,FALSE +The Beatles,Hello Goodbye,existing,,,,,,FALSE +The Beatles,Help,existing,,,,,,FALSE +The Beatles,Helter Skelter,existing,,,,,,FALSE +The Beatles,Here Comes The Sun,existing,,,,,,FALSE +The Beatles,Hey Jude,existing,,,,,,FALSE +The Beatles,I Am The Walrus,existing,,,,,,FALSE +The Beatles,I Feel Fine,existing,,,,,,FALSE +The Beatles,I Saw Her Standing There,existing,,,,,,FALSE +The Beatles,I Should Have Known Better,new,,,,,21443,FALSE +The Beatles,I Want To Hold Your Hand,existing,,,,,,FALSE +The Beatles,I Want You (She's So Heavy),existing,,,,,,FALSE +The Beatles,I'm Looking Through You,new,,,,,60501,FALSE +The Beatles,If I Fell,existing,,,,,,FALSE +The Beatles,If I Needed Someone,new,,,,,30401,FALSE +The Beatles,In My Life,new,,,,,22727,FALSE +The Beatles,Lady Madonna,new,,,,,14170,FALSE +The Beatles,Let It Be,existing,,,,,,FALSE +The Beatles,Long And Winding Road,existing,,,,,,FALSE +The Beatles,Love Me Do,existing,,,,,,FALSE +The Beatles,Lovely Rita,new,,,,,10485,FALSE +The Beatles,Lucy In The Sky With Diamonds,existing,,,,,,FALSE +The Beatles,Magical Mystery Tour,existing,,,,,,FALSE +The Beatles,Maxwell's Silver Hammer,new,,,,,10480,FALSE +The Beatles,Michelle,existing,,,,,,FALSE +The Beatles,Norwegian Wood,existing,,,,,,FALSE +The Beatles,Nowhere Man,existing,,,,,,FALSE +The Beatles,Ob La Di Ob La Da,existing,,,,,,FALSE +The Beatles,Octopus's Garden,existing,,,,,,FALSE +The Beatles,Paperback Writer,existing,,,,,,FALSE +The Beatles,Penny Lane,new,,,,,14168,FALSE +The Beatles,Please Please Me,new,,,,,21187,FALSE +The Beatles,Revolution,new,,,,,12790,FALSE +The Beatles,Rock And Roll Music,existing,,,,,,FALSE +The Beatles,Rocky Raccoon,existing,,,,,,FALSE +The Beatles,Sgt. Pepper's Lonely Hearts Club Band,existing,,,,,,FALSE +The Beatles,She Loves You,existing,,,,,,FALSE +The Beatles,She's Leaving Home,new,,,,,54796,FALSE +The Beatles,Should've Known Better,existing,,,,,,FALSE +The Beatles,Something,existing,,,,,,FALSE +The Beatles,Strawberry Fields Forever,new,,,,,21367,FALSE +The Beatles,Sun King,new,,,,,31887,FALSE +The Beatles,Taxman,existing,,,,,,FALSE +The Beatles,The Ballad Of John And Yoko,existing,,,,,,FALSE +The Beatles,The Fool On The Hill,existing,,,,,,FALSE +The Beatles,The Long and Winding Road,new,,,,,12787,FALSE +The Beatles,This Boy,existing,,,,,,FALSE +The Beatles,Ticket to Ride,new,,,,,14166,FALSE +The Beatles,Twist And Shout,existing,,,,,,FALSE +The Beatles,We Can Work It Out,existing,,,,,,FALSE +The Beatles,When I'm Sixty-Four,existing,,,,,,FALSE +The Beatles,While My Guitar Gently Weeps,existing,,,,,,FALSE +The Beatles,With a Little Help from My Friends,new,,,,,14475,FALSE +The Beatles,Yellow Submarine,new,,,,,14165,FALSE +The Beatles,Yesterday,existing,,,,,,FALSE +The Beatles,You've Got to Hide Your Love Away,new,,,,,12792,FALSE +The Bee Gees,How Can You Mend A Broken Heart,existing,,,,,,FALSE +The Bee Gees,How Deep Is Your Love ?,existing,,,,,,FALSE +The Bee Gees,I Started a Joke,existing,,,,,,FALSE +The Bee Gees,I've Gotta Get a Message To You,existing,,,,,,FALSE +The Bee Gees,Jive Talkin',existing,,,,,,FALSE +The Bee Gees,Massachusetts,existing,,,,,,FALSE +The Bee Gees,More Than A Woman,existing,,,,,,FALSE +The Bee Gees,Night Fever,existing,,,,,,FALSE +The Bee Gees,Stayin' Alive,existing,,,,,,FALSE +The Bee Gees,To Love Somebody,existing,,,,,,FALSE +The Bee Gees,You Should Be Dancing,existing,,,,,,FALSE +The Bellamy Brothers,Let Your Love Flow,existing,,,,,,FALSE +The Belle Stars,Iko Iko,new,,,,,68987,FALSE +The Big Bopper,Chantilly Lace,existing,,,,,,FALSE +The Black Crowes,Hard to Handle,existing,,,,,,FALSE +The Black Crowes,Jealous Again,new,,,,,29163,FALSE +The Black Crowes,Remedy,existing,,,,,,FALSE +The Black Crowes,She Talks To Angels,existing,,,,,,FALSE +The Black Keys,Fever,existing,,,,,,FALSE +The Black Keys,Gold On The Ceiling,existing,,,,,,FALSE +The Black Keys,Gotta Get Away,existing,,,,,,FALSE +The Black Keys,Howlin For You,existing,,,,,,FALSE +The Black Keys,Little Black Submarines,new,,,,,46739,FALSE +The Black Keys,Lo Hi,new,,,,,67364,FALSE +The Black Keys,Lonely Boy,new,,,,,39159,FALSE +The Black Keys,Tighten Up,existing,,,,,,FALSE +The Blow Monkeys,Diggin' Your Scene,existing,,,,,,FALSE +The Blue Brothers,Expressway To Your Heart,existing,The Blues Brothers,,,,,FALSE +The Bluebells,Young At Heart,existing,,,,,,FALSE +The Blues Brothers,Do You Love Me,existing,,,,,,FALSE +The Blues Brothers,Everybody Needs Somebody To Love,existing,,,,,,FALSE +The Blues Brothers,Ghost Riders In The Sky,existing,,,,,,FALSE +The Blues Brothers,Gimme Some Lovin',existing,,,,,,FALSE +The Blues Brothers,Peter Gunn Theme,existing,,,,,,FALSE +The Blues Brothers,Shake a Tailfeather,existing,,,,,,FALSE +The Blues Brothers,She Caught The Katy,existing,,,,,,FALSE +The Blues Brothers,Shot Gun Blues,existing,,,,,,FALSE +The Blues Brothers,Soul Man,existing,,,,,,FALSE +The Blues Brothers,Sweet Home Chicago,existing,,,,,,FALSE +The Blues Brothers,Think,existing,,,,,,FALSE +The BoDeans,Closer To Free,existing,,,,,,FALSE +The Body Snatchers,Let's Do Rock Steady,existing,,,,,,FALSE +The Bodyguard,I Have Nothing,new,,,,,6903,FALSE +The Bodyguard,I Will Always Love You,new,,,,,6427,FALSE +The Bodyguard,I'm Every Woman,new,,,,,6455,FALSE +The Boomtown Rats,I Don't Like Mondays,existing,,,,,,FALSE +The Boomtown Rats,Rat Trap,existing,,,,,,FALSE +The Buggles,Video Killed The Radio Star,new,,,TRUE,,13009,FALSE +The Buzzcocks,Ever Fallen In Love With Someone?,existing,,,,,,FALSE +The Byrds,Eight Miles High,existing,,,,,,FALSE +The Byrds,Mr. Tambourine Man,existing,,,,,,FALSE +The Byrds,So You Want To Be A Rock And Roll Star,existing,,,,,,FALSE +The Byrds,Turn Turn Turn,existing,,,,,,FALSE +The Calling,Wherever You Will Go,existing,,,,,,FALSE +The Cardigans,Lovefool,existing,,,,,,FALSE +The Carpenters,For All We Know,existing,,,,,,FALSE +The Carpenters,Goodbye To Love,existing,,,,,,FALSE +The Carpenters,Jambalaya,existing,,,,,,FALSE +The Carpenters,Please Mr. Postman,existing,,,,,,FALSE +The Carpenters,Rainy Days & Mondays,existing,,,,,,FALSE +The Carpenters,Superstar,existing,,,,,,FALSE +The Carpenters,They Long To Be Close To You,existing,,,,,,FALSE +The Carpenters,Top Of The World,existing,,,,,,FALSE +The Carpenters,We've Only Just Begun,existing,,,,,,FALSE +The Cars,All Mixed Up,new,,,,,69982,FALSE +The Cars,Bye Bye Love,new,,,,,58483,FALSE +The Cars,Dangerous Type,new,,,,,68063,FALSE +The Cars,Drive,existing,,,,,,FALSE +The Cars,Good Times Roll,new,,,,,52334,FALSE +The Cars,It's All I Can Do,new,,,,,64973,FALSE +The Cars,Just What I Needed,existing,,,,,,FALSE +The Cars,Let's Go,existing,,,,,,FALSE +The Cars,Moving in Stereo,new,,,,,63111,FALSE +The Cars,My Best Friends Girl,existing,,,,,,FALSE +The Cars,Since You're Gone,new,,,,,69808,FALSE +The Cars,Tonight She Comes,new,,,,,57519,FALSE +The Cars,You're All I've Got Tonight,new,,,,,58487,FALSE +The Carter Family,Can The Circle Be Unbroken By And By,existing,,,,,,FALSE +The Carters,Apeshit,new,,,,,55883,FALSE +The Cascades,Rhythm Of The Rain,existing,,,,,,FALSE +The Chainsmokers,Closer,new,,,,,51691,FALSE +The Chainsmokers,Don't Let Me Down,new,,,,,51235,FALSE +The Chainsmokers,Paris,new,,,,,52499,FALSE +The Chainsmokers,Roses,new,,,,,50809,FALSE +The Chainsmokers,Something Just Like This,new,,,,,52738,FALSE +The Chainsmokers,Takeaway,new,,,,,61112,FALSE +The Chainsmokers,This Feeling,new,,,,,56491,FALSE +The Chambers Brothers,Time Has Come Today,existing,,,,,,FALSE +The Champs,Tequila,existing,,,,,,FALSE +The Charlie Daniels Band,Devil Went Down To Georgia,existing,,,,,,FALSE +The Charlie Daniels Band,Drinkin' My Baby Goodbye,new,,,,,11237,FALSE +The Charlie Daniels Band,Long Haired Country Boy,new,,,,,15313,FALSE +The Charlie Daniels Band,Simple Man,new,,,,,15316,FALSE +The Chemical Brothers,Let Forever Be,new,,,,,33385,FALSE +The Chicks,Cowboy Take Me Away,new,,,,,8750,FALSE +The Chicks,Goodbye Earl,new,,,,,8749,FALSE +The Chicks,Landslide,new,,,,,6959,FALSE +The Chicks,Not Ready to Make Nice,new,,,,,6779,FALSE +The Chicks,Travelin' Soldier,new,,,,,8258,FALSE +The Chicks,Wide Open Spaces,new,,,,,9175,FALSE +The Chiffons,Sweet Talking' Guy,existing,,,,,,FALSE +The Chimes,I Still Haven't Found What I'm Looking for,existing,,,,,,FALSE +The Chordettes,Lollipop,existing,,,,,,FALSE +The Chordettes,Mr. Sandman,existing,,,,,,FALSE +The Church,Under The Milky Way,existing,,,,,,FALSE +The Civil Wars,Billie Jean,new,,,,,50793,FALSE +The Civil Wars,Dance Me to the End of Love,new,,,,,72061,FALSE +The Civil Wars,Dust to Dust,new,,,,,60136,FALSE +The Civil Wars,Poison & Wine,new,,,,,39393,FALSE +The Civil Wars,The One That Got Away,existing,,,,,,FALSE +The Clash,Bank Robber,existing,,,,,,FALSE +The Clash,I Fought the Law,existing,,,,,,FALSE +The Clash,London Calling,new,,,,,13792,FALSE +The Clash,Rock The Casbah,existing,,,,,,FALSE +The Clash,Should I Stay or Should I Go,existing,,,,,,FALSE +The Coasters,Yakety Yak,existing,,,,,,FALSE +The Commitments,Chain of Fools,existing,,,,,,FALSE +The Commitments,I Can't Stand The Rain,existing,,,,,,FALSE +The Commitments,Mustang Sally,existing,,,,,,FALSE +The Commitments,Try A Little Tenderness,existing,,,,,,FALSE +The Commodores,Brick House,existing,,,,,,FALSE +The Commodores,Easy,existing,,,,,,FALSE +The Commodores,Nightshift,existing,,,,,,FALSE +The Commodores,Still,existing,,,,,,FALSE +The Commodores,Three Times A Lady,existing,,,,,,FALSE +The Common Linnets,Calm After The Storm,existing,,,,,,FALSE +The Contours,Do You Love Me,existing,,,,,,FALSE +The Cooltrane Quartet,Holding Back The Years,existing,,,,,,FALSE +The Cooltrane Quartet,Should I Stay Or Should I Go,existing,,,,,,FALSE +The Coral,Dreaming of You,existing,,,,,,FALSE +The Corrs,When The Stars Go Blue,existing,,,,,,FALSE +The Cranberries,Dreams,existing,,,,,,FALSE +The Cranberries,Linger,existing,,,,,,FALSE +The Cranberries,Zombie,existing,,,,,,FALSE +The Crew Cuts,Sh'Boom,existing,,,,,,FALSE +The Crystals,Da Do Ron Ron,existing,,,,,,FALSE +The Crystals,Santa Claus Is Coming To Town,existing,,,,,,FALSE +The Cult,She Sells Sanctuary,existing,,,,,,FALSE +The Cure,A Forest,new,,,,,38640,FALSE +The Cure,Boys Don't Cry,existing,,,,,,FALSE +The Cure,Close To Me,existing,,,,,,FALSE +The Cure,Friday I'm In Love,existing,,,,,,FALSE +The Cure,In Between Days,existing,,,,,,FALSE +The Cure,Just Like Heaven,existing,,,,,,FALSE +The Cure,Let's Go to Bed,new,,,,,71472,FALSE +The Cure,Love Cats,existing,,,,,,FALSE +The Cure,Lovesong,new,,,,,42502,FALSE +The Cure,Lullaby,existing,,,,,,FALSE +The Cure,Pictures of You,new,,,,,64893,FALSE +The Cure,Why Can't I Be You,new,,,,,27852,FALSE +The Damned,Eloise,existing,,,,,,FALSE +The Darkness,I Believe In A Thing Called Love,existing,,,,,,FALSE +The Darts,Come Back My Love,existing,,,,,,FALSE +The Darts,Daddy Cool,existing,,,,,,FALSE +The Dave Brubeck Quartet,Take Five,existing,,,,,,FALSE +The Dead South,In Hell I'll Be in Good Company,new,,,,,55823,FALSE +The Decemberists,Down by the Water,new,,,,,71835,FALSE +The Decemberists,Mariner's Revenge Song,new,,,,,73692,FALSE +The Decemberists,O Valencia!,new,,,,,78078,FALSE +The Dirty Heads,Lay Me Down,new,,,,,35353,FALSE +The Dirty Heads,Vacation,new,,,,,69580,FALSE +The Divinyls,I Touch Myself,existing,,,,,,FALSE +The Dixie Cups,Chapel of Love,existing,,,,,,FALSE +The Doobie Brothers,Black Water,existing,,,,,,FALSE +The Doobie Brothers,China Grove,existing,,,,,,FALSE +The Doobie Brothers,It Keeps You Runnin',new,,,,,56209,FALSE +The Doobie Brothers,Jesus Is Just Alright,existing,,,,,,FALSE +The Doobie Brothers,Listen To The Music,existing,,,,,,FALSE +The Doobie Brothers,Long Train Runnin,existing,,,,,,FALSE +The Doobie Brothers,Minute by Minute,new,,,,,43718,FALSE +The Doobie Brothers,Rockin' Down the Highway,new,,,,,56533,FALSE +The Doobie Brothers,South City Midnight Lady,new,,,,,56041,FALSE +The Doobie Brothers,Take Me in Your Arms (Rock Me a Little While),new,,,,,15599,FALSE +The Doobie Brothers,Takin It To The Streets,existing,,,,,,FALSE +The Doobie Brothers,What a Fool Believes,new,,,,,37172,FALSE +The Doobie Brothers,You Belong to Me,new,,,,,59761,FALSE +The Doors,Back Door Man,existing,,,,,,FALSE +The Doors,Break On Through To The Other Side,existing,,,,,,FALSE +The Doors,Hello I Love You,existing,,,,,,FALSE +The Doors,L.A. Woman,new,,,,,6511,FALSE +The Doors,Light My Fire,existing,,,,,,FALSE +The Doors,Love Her Madly,new,,,,,9839,FALSE +The Doors,Love Me Two Times,new,,,,,6516,FALSE +The Doors,People Are Strange,new,,,,,6521,FALSE +The Doors,Riders On The Storm,existing,,,,,,FALSE +The Doors,Roadhouse Blues,existing,,,,,,FALSE +The Doors,Soul Kitchen,existing,,,,,,FALSE +The Doors,Strange Days,new,,,,,33922,FALSE +The Doors,Touch Me,new,,,,,6544,FALSE +The Doors,Twentieth Century Fox,new,,,,,6478,FALSE +The Drifters,Come On Over to My Place,existing,,,,,,FALSE +The Drifters,Kissing In the Back Row of the Movies,existing,,,,,,FALSE +The Drifters,Please Stay,existing,,,,,,FALSE +The Drifters,Saturday Night At the Movies,existing,,,,,,FALSE +The Drifters,Save the Last Dance for Me,existing,,,,,,FALSE +The Drifters,Something Tells Me Something's Gonna Happen Tonight,existing,,,,,,FALSE +The Drifters,There Goes My First Love,existing,,,,,,FALSE +The Drifters,Under The Boardwalk (A Cappella),existing,,,,,,FALSE +The Drifters,Under The Boardwalk,existing,,,,,,FALSE +The Drifters,Up On the Roof,existing,,,,,,FALSE +The Dropkick Murphys,Wild Rover,existing,,,,,,FALSE +The Dubliners,Dirty Old Town,existing,,,,,,FALSE +The Dubliners,Molly Malone,existing,,,,,,FALSE +The Dubliners,The Black Velvet Band,existing,,,,,,FALSE +The Dubliners,The Fields Of Athenry,existing,,,,,,FALSE +The Dubliners,The Rare Old Mountain Dew,existing,,,,,,FALSE +The Dubliners,The Wild Rover,existing,,,,,,FALSE +The Eagles,After The Thrill Is Gone,existing,,,,,,FALSE +The Eagles,Already Gone,existing,,,,,,FALSE +The Eagles,Best Of My Love,existing,,,,,,FALSE +The Eagles,Desperado,existing,,,,,,FALSE +The Eagles,Heartache Tonight,existing,,,,,,FALSE +The Eagles,Hotel California,existing,,,,,,FALSE +The Eagles,How Long,existing,,,,,,FALSE +The Eagles,I Can't Tell You Why,existing,,,,,,FALSE +The Eagles,Life In The Fast Lane,existing,,,,,,FALSE +The Eagles,Lyin' Eyes,existing,,,,,,FALSE +The Eagles,New Kid In Town,existing,,,,,,FALSE +The Eagles,Peaceful Easy Feeling,existing,,,,,,FALSE +The Eagles,Seven Bridges Road,existing,,,,,,FALSE +The Eagles,Take It Easy,existing,,,,,,FALSE +The Eagles,Take It To the Limit,existing,,,,,,FALSE +The Eagles,Tequila Sunrise,existing,,,,,,FALSE +The Eagles,The Sad Cafe,existing,,,,,,FALSE +The Eagles,Victim Of Love,existing,,,,,,FALSE +The Eagles,Witchy Woman,existing,,,,,,FALSE +The Elgins,Heaven Must Have Sent You,existing,,,,,,FALSE +The Enemy,You're Not Alone,existing,,,,,,FALSE +The Everly Brothers,All I Have To Do Is Dream,existing,,,,,,FALSE +The Everly Brothers,Bye Bye Love,existing,,,,,,FALSE +The Everly Brothers,Claudette,existing,,,,,,FALSE +The Everly Brothers,Wake Up Little Susie,existing,,,,,,FALSE +The Fabulous Thunderbirds,Tuff Enuff,new,,,,,15709,FALSE +The Fabulous Thunderbirds,Wrap It Up,new,,,,,18235,FALSE +The Faces,Stay With Me,existing,,,,,,FALSE +The Feeling,Never Be Lonely,existing,,,,,,FALSE +The Five Man Electrical Band,Signs,existing,,,,,,FALSE +The Five Stairsteps,O-O-H Child,existing,,,,,,FALSE +The Fixx,One Thing Leads to Another,new,,,,,5622,FALSE +The Fixx,Red Skies,new,,,,,70374,FALSE +The Fixx,Saved By Zero,new,,,,,36134,FALSE +The Fixx,Stand or Fall,new,,,,,70086,FALSE +The Flaming Lips,Do You Realize,new,,,,,73350,FALSE +The Flaming Lips,She Don't Use Jelly,new,,,,,73026,FALSE +The Flaming Lips,The Yeah Yeah Yeah Song (With All Your Power),new,,,,,32092,FALSE +The Flaming Lips,"Yoshimi Battles the Pink Robots, Pt. 1",new,,,,,72756,FALSE +The Fortunes,Storm In a Teacup,existing,,,,,,FALSE +The Fortunes,You've Got Your Troubles,existing,,,,,,FALSE +The Foundations,Baby Now That I've Found You,existing,,,,,,FALSE +The Foundations,Build Me Up Buttercup,existing,,,,,,FALSE +The Four Seasons,Walk Like A Man,existing,,,,,,FALSE +The Four Tops,Ain't No Woman Like The One I've Got,existing,,,,,,FALSE +The Four Tops,Baby I Need Your Loving,existing,,,,,,FALSE +The Four Tops,I Can't Help Myself - Sugar Pie Honey Bunch,existing,,,,,,FALSE +The Four Tops,Loco In Acapulco,existing,,,,,,FALSE +The Four Tops,Reach Out,existing,,,,,,FALSE +The Four Tops,Same Old Song,existing,,,,,,FALSE +The Four Tops,Walk Away Renee,existing,,,,,,FALSE +The Fratellis,Whistle for the Choir,existing,,,,,,FALSE +The Fray,How To Save A Life,existing,,,,,,FALSE +The Fray,You Found Me,existing,,,,,,FALSE +The Fugees,Killing Me Softly,existing,,,,,,FALSE +The Gap Band,Burn Rubber on Me (Why You Wanna Hurt Me),new,,,,,64732,FALSE +The Gap Band,Outstanding,existing,,,,,,FALSE +The Gap Band,You Dropped a Bomb on Me,new,,,,,18227,FALSE +The Georgia Satellites,Keep Your Hands To Yourself,existing,,,,,,FALSE +The Gipsy Kings,A Mi Manera Comme D'Habitude,existing,,,,,,FALSE +The Gipsy Kings,Baila Me,existing,,,,,,FALSE +The Gipsy Kings,Bamaoleo,existing,,,,,,FALSE +The Gipsy Kings,Djobi Djoba,existing,,,,,,FALSE +The Gipsy Kings,El Mariachi,existing,,,,,,FALSE +The Gipsy Kings,Escucha Me,existing,,,,,,FALSE +The Gipsy Kings,Hotel California (Spanish Mix),existing,,,,,,FALSE +The Gipsy Kings,La Quiero,existing,,,,,,FALSE +The Gipsy Kings,Marina Marina,existing,,,,,,FALSE +The Gipsy Kings,Pida Me La,existing,,,,,,FALSE +The Gipsy Kings,Quiero Saber,existing,,,,,,FALSE +The Gipsy Kings,Soy,existing,,,,,,FALSE +The Gipsy Kings,Trista Pena,existing,,,,,,FALSE +The Gipsy Kings,Tu Quieres Volver,existing,,,,,,FALSE +The Gipsy Kings,Un Amor,existing,,,,,,FALSE +The Gipsy Kings,Vamos A Bailar,existing,,,,,,FALSE +The Gipsy Kings,Volare,existing,,,,,,FALSE +The Go-Go's,Head Over Heels,new,,,,,53633,FALSE +The Go-Go's,Our Lips Are Sealed,new,,,,,52598,FALSE +The Go-Go's,Vacation,new,,,,,29121,FALSE +The Go-Go's,We Got the Beat,new,,,,,30743,FALSE +The Gossip,Heavy Cross,new,,,,,23427,FALSE +The Gourds,Gin and Juice,new,,,,,64685,FALSE +The Greg Kihn Band,Breakup Song - They Don't Write 'Em,existing,,,,,,FALSE +The Guess Who,American Woman,new,,,,,15964,FALSE +The Guess Who,No Sugar Tonight New Mother Nature,new,,,,,55521,FALSE +The Guess Who,No Sugar Tonight,new,,,,,69512,FALSE +The Guess Who,No Time,existing,,,,,,FALSE +The Guess Who,These Eyes,new,,,,,10892,FALSE +The Happy Mondays,Step On,existing,,,,,,FALSE +The Highwaymen,Highwayman,new,,,,,38261,FALSE +The Hives,Hate To Say I Told You So,existing,,,,,,FALSE +The Hollies,Bus Stop,existing,,,,,,FALSE +The Hollies,Just One Look,existing,,,,,,FALSE +The Hollies,Long Cool Woman In A Black Dress,existing,,,,,,FALSE +The Honeycombs,Have I the Right,existing,,,,,,FALSE +The Hu,Wolf Totem,new,,,,,82025,FALSE +The Human League,(Keep Feeling) Fascination,new,,,,,33838,FALSE +The Human League,Don't You Want Me,new,,,,,11431,FALSE +The Hunger Games,The Hanging Tree,existing,,,,,,FALSE +The Irish Rovers,Drunken Sailor,existing,,,,,,FALSE +The Irish Rovers,Whiskey On A Sunday (The Puppet Song),existing,,,,,,FALSE +The Isley Brothers,This Old Heart of Mine,existing,,,,,,FALSE +The Jackson 5,ABC,existing,,,,,,FALSE +The Jackson 5,I Want You Back,existing,,,,,,FALSE +The Jackson 5,I'll Be There,existing,,,,,,FALSE +The Jackson 5,Shake Your Body Down To The Ground,existing,,,,,,FALSE +The Jacksons,Blame It on the Boogie,existing,,,,,,FALSE +The Jacksons,Santa Claus Is Coming To Town,existing,,,,,,FALSE +The Jags,Written On the Back of My Hand,existing,,,,,,FALSE +The Jam,Butterfly Collector,existing,,,,,,FALSE +The Jam,Down In the Tube Station At Midnight,existing,,,,,,FALSE +The Jam,Going Underground,existing,,,,,,FALSE +The Jam,In the City,existing,,,,,,FALSE +The Jam,Start,existing,,,,,,FALSE +The Jam,That's Entertainment,existing,,,,,,FALSE +The Jam,Town Called Malice,existing,,,,,,FALSE +The Jeff Healey Band,Confidence Man,existing,,,,,,FALSE +The Jeff Healey Band,I'm Tore Down,existing,,,,,,FALSE +The Jeff Healey Band,Roadhouse Blues,existing,,,,,,FALSE +The Jeff Healey Band,While My Guitar Gently Weeps,existing,,,,,,FALSE +The Jersey Boys,Rag Doll,existing,,,,,,FALSE +The Jimi Hendrix Experience,Crosstown Traffic,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Foxy Lady,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Hey Joe,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Manic Depression,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,Purple Haze,existing,,,,TRUE,,FALSE +The Jimi Hendrix Experience,The Wind Cries Mary,existing,,,,TRUE,,FALSE +The Kaiser Cheifs,Ruby,existing,Kaiser Chiefs,,,TRUE,,FALSE +The Kalin Twins,When,existing,,,,,,FALSE +The Kid Laroi,Girls,new,,,,,82512,FALSE +The Kid Laroi,Love Again,new,,,,,73673,FALSE +The Kid Laroi,Stay (live),new,,,,,66898,FALSE +The Kid Laroi,Stay,new,,,,,49593,FALSE +The Kid Laroi,Thousand Miles,new,,,,,69691,FALSE +The Kid Laroi,Too Much,new,,,,,78292,FALSE +The Kid Laroi,Without You (Miley Cyrus remix),new,,,,,66118,FALSE +The Kid Laroi,Without You,new,,,,,63586,FALSE +The Killers,All These Things,existing,,,,,,FALSE +The Killers,For Reasons Unknown,existing,,,,,,FALSE +The Killers,Human,existing,,,,,,FALSE +The Killers,Just Another Girl,existing,,,,,,FALSE +The Killers,Mr. Brightside,existing,,,,,,FALSE +The Killers,Read My Mind,new,,,,,11744,FALSE +The Killers,Shot At The Night,existing,,,,,,FALSE +The Killers,Smile Like You Mean It,existing,,,,,,FALSE +The Killers,Somebody Told Me,existing,,,,,,FALSE +The Killers,The Man,new,,,,,53598,FALSE +The Killers,When You Were Young,existing,,,,,,FALSE +The Kinks,All Day And All Of The Night,existing,,,,,,FALSE +The Kinks,Dedicated Follower of Fashion,existing,,,,,,FALSE +The Kinks,Lola,existing,,,,,,FALSE +The Kinks,Sunny Afternoon,existing,,,,,,FALSE +The Kinks,Tired Of Waiting For You,existing,,,,,,FALSE +The Kinks,You Really Got Me,existing,,,,,,FALSE +The Knack,My Sharona,existing,,,,,,FALSE +The Kooks,She Moves In Her Own Way,existing,,,,,,FALSE +The Korgis,Everybody's Gotta Learn Sometime,existing,,,,,,FALSE +The La's,There She Goes,existing,,,,,,FALSE +The Lambrettas,Poison Ivy,existing,,,,,,FALSE +The Legarde Twins,I've Been Everywhere,existing,,,,,,FALSE +The Lighthouse Family,I Wish I Knew How It Would Feel To Be Free,existing,,,,,,FALSE +The Lighthouse Family,Ocean Drive,existing,,,,,,FALSE +The Lumineers,Angela,new,,,,,55539,FALSE +The Lumineers,Brightside,new,,,,,68048,FALSE +The Lumineers,Cleopatra,new,,,,,55752,FALSE +The Lumineers,Gloria,new,,,,,76328,FALSE +The Lumineers,Ho Hey,new,,,,,41217,FALSE +The Lumineers,Ophelia,new,,,,,51423,FALSE +The Lumineers,Sleep on the Floor,new,,,,,70496,FALSE +The Lumineers,Slow It Down,new,,,,,82784,FALSE +The Lumineers,Stubborn Love,new,,,,,44390,FALSE +The Mamas And The Papas,California Dreamin,existing,,,,,,FALSE +The Mamas And The Papas,Monday Monday,existing,,,,,,FALSE +The Marcels,Blue Moon,existing,,,,,,FALSE +The Marshall Tucker Band,Heard It In A Love Song,existing,,,,,,FALSE +The Mavericks,Dance The Night Away,existing,,,,,,FALSE +The Mc Coys,Hang On Sloopy,existing,The McCoys,,,,,FALSE +The Mindbenders,Groovy Kind of Love,existing,,,,,,FALSE +The Miracles,You've Really Got a Hold On Me,existing,,,,,,FALSE +The Mixtures,Pushbike Song,existing,,,,,,FALSE +The Monkees,A Little Bit Of Me A Little Bit Of You,existing,,,,,,FALSE +The Monkees,Daydream Believer,existing,,,,,,FALSE +The Monkees,I'm A Believer,existing,,,,,,FALSE +The Monkees,Last Train To Clarksville,existing,,,,,,FALSE +The Monkees,Pleasant Valley Sunday,existing,,,,,,FALSE +The Moody Blues,I'm Just a Singer (In a Rock and Roll Band),new,,,,,61181,FALSE +The Moody Blues,Nights In White Satin,existing,,,,,,FALSE +The Moody Blues,Ride My See-Saw,new,,,,,75523,FALSE +The Moody Blues,Tuesday Afternoon,existing,,,,,,FALSE +The Moody Blues,Your Wildest Dreams,new,,,,,64767,FALSE +The Motels,Only The Lonely,existing,,,,,,FALSE +The Naked And Famous,Young Blood,existing,,,,,,FALSE +The Neighbourhood,Sweater Weather,existing,,,,,,FALSE +The New Radicals,You Get What You Give,existing,,,,,,FALSE +The Nolans,I'm In the Mood for Dancing,existing,,,,,,FALSE +The Notorious B.I.G.,Big Poppa,existing,,,,,,FALSE +The Notorious B.I.G.,Fuck You Tonight,new,,,,,69877,FALSE +The Notorious B.I.G.,Gimme the Loot,new,,,,,69917,FALSE +The Notorious B.I.G.,Going Back to Cali,new,,,,,64934,FALSE +The Notorious B.I.G.,Hypnotize,existing,,,,,,FALSE +The Notorious B.I.G.,Juicy,new,,,,,52271,FALSE +The Notorious B.I.G.,Mo Money Mo Problems,existing,,,,,,FALSE +The Notorious B.I.G.,Notorious Thugs,new,,,,,76213,FALSE +The Notorious B.I.G.,One More Chance Stay with Me,new,,,,,23507,FALSE +The Notorious B.I.G.,Party & Bullshit,new,,,,,80515,FALSE +The Notorious B.I.G.,Ten Crack Commandments,new,,,,,71979,FALSE +The Notorious B.I.G.,Warning,new,,,,,73107,FALSE +The O'Jays,Love Train,existing,,,,,,FALSE +The Offspring,Come Out and Play,new,,,,,63991,FALSE +The Offspring,Gone Away,new,,,,,59005,FALSE +The Offspring,Hit That,new,,,,,24730,FALSE +The Offspring,Pretty Fly (For a White Guy),new,,,,,13838,FALSE +The Offspring,Self Esteem,new,,,,,42139,FALSE +The Offspring,The Kids Aren't Alright,new,,,,,19874,FALSE +The Offspring,Want You Bad,new,,,,,35204,FALSE +The Offspring,Why Don't You Get a Job,new,,,,,21373,FALSE +The Offspring,"You're Gonna Go Far, Kid",new,,,,,22101,FALSE +The Ohio Players,Fire,new,,,,,8637,FALSE +The Ohio Players,Love Rollercoaster,new,,,,,36362,FALSE +The Osmonds,Crazy Horses,existing,,,,,,FALSE +The Osmonds,Love Me for a Reason,existing,,,,,,FALSE +The Outfield,All The Love,existing,,,,,,FALSE +The Outfield,Your Love,existing,,,,,,FALSE +The Patti Smith Group,Because the Night,existing,Patti Smith,,,TRUE,,FALSE +The Piranhas,Tom Hark,existing,,,,,,FALSE +The Pixies,Monkey Gone To Heaven,existing,Pixies,,,,,FALSE +The Platters,Great Pretender,existing,,,,,,FALSE +The Platters,Only You And You Alone,existing,,,,,,FALSE +The Platters,Smoke Gets In Your Eyes,existing,,,,,,FALSE +The Plimsouls,A Million Miles Away,new,,,,,76722,FALSE +The Pogues,Fairytale Of New York,existing,,,,,,FALSE +The Pogues,Love You 'Til the End,existing,,,,,,FALSE +The Pointer Sisters,Fire,existing,,,,,,FALSE +The Pointer Sisters,I'm so Excited,existing,,,,,,FALSE +The Pointer Sisters,Jump (for My Love),existing,,,,,,FALSE +The Police,Bed's Too Big Without You,new,,,,,65138,FALSE +The Police,Can't Stand Losing You,existing,,,,,,FALSE +The Police,Canary in a Coalmine,new,,,,,65057,FALSE +The Police,De Do Do Do,existing,,,,,,FALSE +The Police,Demolition Man,new,,,,,65618,FALSE +The Police,Don't Stand So Close To Me,existing,,,,,,FALSE +The Police,Driven to Tears,new,,,,,63102,FALSE +The Police,Every Breath You Take,existing,,,,,,FALSE +The Police,Every Little Thing She Does,existing,,,,,,FALSE +The Police,Invisible Sun,new,,,,,64378,FALSE +The Police,King of Pain,new,,,,,11475,FALSE +The Police,Message In A Bottle,existing,,,,,,FALSE +The Police,Murder by Numbers,new,,,,,65201,FALSE +The Police,Roxanne,new,,,,,11371,FALSE +The Police,So Lonely,existing,,,,,,FALSE +The Police,Spirits in the Material World,new,,,,,42003,FALSE +The Police,Synchronicity I,new,,,,,62703,FALSE +The Police,Synchronicity II,new,,,,,41773,FALSE +The Police,Tea in the Sahara,new,,,,,74535,FALSE +The Police,Walking On The Moon,existing,,,,,,FALSE +The Police,Walking in Your Footsteps,new,,,,,65949,FALSE +The Police,"When the World Is Running Down, You Make the Best of What's Still Around",new,,,,,64859,FALSE +The Police,Wrapped Around Your Finger,existing,,,,,,FALSE +The Poni Tails,Born Too Late,existing,,,,,,FALSE +The Postal Service,Such Great Heights,new,,,,,58208,FALSE +The Postal Service,The District Sleeps Alone Tonight,new,,,,,38503,FALSE +The Presidents of the United States of America,Lump,new,,,,,54986,FALSE +The Presidents of the United States of America,Peaches,new,,,,,14467,FALSE +The Pretenders,Back On The Chain Gang,existing,,,,,,FALSE +The Pretenders,Brass In Pocket,existing,,,,,,FALSE +The Pretenders,Don't Get Me Wrong,existing,,,,,,FALSE +The Pretenders,Middle of the Road,new,,,,,56202,FALSE +The Pretenders,My City Was Gone,new,,,,,69180,FALSE +The Pretenders,Talk of the Town,existing,,,,,,FALSE +The Pretty Reckless,Heaven Knows,existing,,,,,,FALSE +The Pretty Reckless,Make Me Wanna Die,existing,,,,,,FALSE +The Proclaimers,I'm Gonna Be (500 Miles),existing,,,,,,FALSE +The Proclaimers,I'm On My Way,existing,,,,,,FALSE +The Proclaimers,Sunshine On Leith,existing,,,,,,FALSE +The Psychedelic Furs,Heartbreak Beat,new,,,,,70492,FALSE +The Psychedelic Furs,Heaven,new,,,,,80889,FALSE +The Psychedelic Furs,Love My Way,new,,,,,31308,FALSE +The Psychedelic Furs,Pretty in Pink,new,,,,,62777,FALSE +The Psychedelic Furs,The Ghost in You,new,,,,,46952,FALSE +The Pussycat Dolls,Buttons (With Snoop Dogg),new,,,,,30679,FALSE +The Pussycat Dolls,Don't Cha,new,,,,,5370,FALSE +The Pussycat Dolls,I Hate This Part,new,,,,,21421,FALSE +The Pussycat Dolls,Jai Ho! (You Are My Destiny),new,,,,,22442,FALSE +The Pussycat Dolls,Stickwitu,new,,,,,5395,FALSE +The Pussycat Dolls,When I Grow Up,new,,,,,19891,FALSE +The Raconteurs,Steady As She Goes,existing,,,,,,FALSE +The Ramones,Baby I Love You,existing,Ramones,,,,,FALSE +The Rascals,Good Lovin,existing,,,,,,FALSE +The Rasmus,In the Shadows,existing,,,,,,FALSE +The Real Thing,Can't Get By Without You,existing,,,,,,FALSE +The Real Thing,You To Me Are Everything,existing,,,,,,FALSE +The Rembrandts,I'll Be There for You,existing,,,,,,FALSE +The Revivalists,All My Friends,new,,,,,56399,FALSE +The Revivalists,Soulfight,new,,,,,82030,FALSE +The Revivalists,Wish I Knew You,new,,,,,53839,FALSE +The Righteous Brothers,Unchained Melody,existing,,,,,,FALSE +The Righteous Brothers,You've Lost That Loving Feeling,existing,,,,,,FALSE +The Rocky Horror Picture Show,Time Warp,existing,,,,,,FALSE +The Rolling Stones,19th Nervous Breakdown,existing,,,,,,FALSE +The Rolling Stones,Angie,existing,,,,,,FALSE +The Rolling Stones,Around & Around,existing,,,,,,FALSE +The Rolling Stones,Beast Of Burden,existing,,,,,,FALSE +The Rolling Stones,Bitch,new,,,,,45921,FALSE +The Rolling Stones,Brown Sugar,existing,,,,,,FALSE +The Rolling Stones,Get Off Of My Cloud,existing,,,,,,FALSE +The Rolling Stones,Gimme Shelter,existing,,,,,,FALSE +The Rolling Stones,Honky Tonk Women,existing,,,,,,FALSE +The Rolling Stones,I Can't Get No Satisfaction,existing,,,,,,FALSE +The Rolling Stones,It's All Over Now,existing,,,,,,FALSE +The Rolling Stones,It's Only Rock And Roll,existing,,,,,,FALSE +The Rolling Stones,Jumpin Jack Flash,existing,,,,,,FALSE +The Rolling Stones,Let's Spend The Night Together,existing,,,,,,FALSE +The Rolling Stones,Miss You,existing,,,,,,FALSE +The Rolling Stones,Mother's Little Helper,existing,,,,,,FALSE +The Rolling Stones,Paint It Black,existing,,,,,,FALSE +The Rolling Stones,Ruby Tuesday,existing,,,,,,FALSE +The Rolling Stones,Satisfaction,existing,,,,,,FALSE +The Rolling Stones,Shattered,new,,,,,69722,FALSE +The Rolling Stones,Start Me Up,existing,,,,,,FALSE +The Rolling Stones,Street Fighting Man,new,,,,,11362,FALSE +The Rolling Stones,Sympathy For The Devil,existing,,,,,,FALSE +The Rolling Stones,The Last Time,existing,,,,,,FALSE +The Rolling Stones,Time Is On My Side,existing,,,,,,FALSE +The Rolling Stones,Tumbling Dice,existing,,,,,,FALSE +The Rolling Stones,Under My Thumb,existing,,,,,,FALSE +The Rolling Stones,Waiting On A Friend,existing,,,,,,FALSE +The Rolling Stones,Wild Horses,existing,,,,,,FALSE +The Rolling Stones,You Can't Always Get What You Want,existing,,,,,,FALSE +The Romantics,Talking In Your Sleep,existing,,,,,,FALSE +The Ronettes,Be My Baby,existing,,,,,,FALSE +The Roots,Here I Come,existing,,,,,,FALSE +The Roots,The Seed (2.0),new,,,,,72083,FALSE +The Roots,You Got Me,new,,,,,83434,FALSE +The Rubettes,Sugar Baby Love,existing,,,,,,FALSE +The S.O.S. Band,Take Your Time Do It Right,existing,,,,,,FALSE +The Saturdays,Just Can't Get Enough,existing,,,,,,FALSE +The Scissor Sisters,Don't Feel Like Dancin',existing,Scissor Sisters,,,TRUE,,FALSE +The Scissor Sisters,Fire With Fire,existing,Scissor Sisters,,,,,FALSE +The Script,Breakeven (Acoustic),existing,,,,,,FALSE +The Script,Breakeven,new,,,,,21418,FALSE +The Script,For the First Time,new,,,,,32706,FALSE +The Script,Hall Of Fame,existing,,,,,,FALSE +The Script,If You Could See Me Now,new,,,,,43123,FALSE +The Script,Rain,new,,,,,53724,FALSE +The Script,Six Degrees of Seperation,existing,,,,,,FALSE +The Script,Superheroes,existing,,,,,,FALSE +The Script,The Man Who Can't Be Moved,new,,,,,20541,FALSE +The Searchers,Needles & Pins '88,existing,,,,,,FALSE +The Searchers,Needles & Pins,existing,,,,,,FALSE +The Searchers,Sweets for My Sweet,existing,,,,,,FALSE +The Searchers,When You Walk In the Room,existing,,,,,,FALSE +The Selecter,On My Radio,existing,,,,,,FALSE +The Sex Pistols,Anarchy In the UK,existing,,,,TRUE,,FALSE +The Sex Pistols,Pretty Vacant,existing,Sex Pistols,,,,,FALSE +The Shadows,Apache,existing,,,,,,FALSE +The Shadows,Foot Tapper,existing,,,,,,FALSE +The Shadows,Telstar,existing,,,,,,FALSE +The Shins,New Slang,new,,,,,12647,FALSE +The Shins,Simple Song,new,,,,,81522,FALSE +The Shirelles,Mama Said,existing,,,,,,FALSE +The Shirelles,Will You Love Me Tomorrow,existing,,,,,,FALSE +The Shirelles,Will You Still Love Me Tomorrow,existing,,,,,,FALSE +The Skids,Into the Valley,existing,,,,,,FALSE +The Skyliners,Since I Don't Have You,existing,,,,,,FALSE +The Small Faces,All or Nothing,existing,,,,,,FALSE +The Small Faces,Itchycoo Park,existing,,,,,,FALSE +The Small Faces,Sha-La-La-La-Le,existing,,,,,,FALSE +The Smashing Pumpkins,1979,new,,,,,11039,FALSE +The Smashing Pumpkins,Bullet with Butterfly Wings,new,,,,,44633,FALSE +The Smashing Pumpkins,Cherub Rock,new,,,,,68109,FALSE +The Smashing Pumpkins,Disarm,new,,,,,55439,FALSE +The Smashing Pumpkins,Today,new,,,,,45704,FALSE +The Smashing Pumpkins,Tonight Tonight,existing,,,,,,FALSE +The Smashing Pumpkins,Zero,new,,,,,31970,FALSE +The Smithereens,A Girl Like You,existing,,,,,,FALSE +The Smithereens,Blood and Roses,new,,,,,68906,FALSE +The Smithereens,Only a Memory,new,,,,,82356,FALSE +The Smiths,Bigmouth Strikes Again,new,,,,,33112,FALSE +The Smiths,Heaven Knows I'm Miserable Now,new,,,,,32663,FALSE +The Smiths,How Soon Is Now ?,existing,,,,,,FALSE +The Smiths,I Know It's Over,new,,,,,42129,FALSE +The Smiths,"Please, Please, Please Let Me Get What I Want",new,,,,,40664,FALSE +The Smiths,There Is a Light That Never Goes Out,new,,,,,32943,FALSE +The Smiths,This Charming Man,existing,,,,,,FALSE +The Source Feat. Candi Staton,You've Got the Love,existing,,,,,,FALSE +The Spaniels,Goodnight Sweetheart,existing,,,,,,FALSE +The Specials,Do Nothing,existing,,,,,,FALSE +The Specials,Gangsters,existing,,,,,,FALSE +The Specials,Ghost Town,existing,,,,,,FALSE +The Specials,Rat Race,existing,,,,,,FALSE +The Specials,Rudy,existing,,,,,,FALSE +The Specials,Too Much Too Young,existing,,,,,,FALSE +The Spencer Davis Group,Gimme Some Lovin',new,,,,,18294,FALSE +The Spencer Davis Group,Keep On Running,existing,,,,,,FALSE +The Spice Girls,Stop,existing,,,,,,FALSE +The Staple Singers,If You're Ready (Come Go With Me),existing,,,,,,FALSE +The Stone Roses,Fools Gold,new,,,,,37434,FALSE +The Stone Roses,I Am the Resurrection,new,,,,,44170,FALSE +The Stone Roses,I Wanna Be Adored,new,,,,,45712,FALSE +The Stone Roses,I am the Resurrection (Shortened),existing,,,,,,FALSE +The Stone Roses,Love Spreads,new,,,,,82626,FALSE +The Stone Roses,Made of Stone,new,,,,,55005,FALSE +The Stone Roses,Sally Cinnamon,new,,,,,45709,FALSE +The Stone Roses,She Bangs the Drum,new,,,,,73865,FALSE +The Stone Roses,Waterfall,new,,,,,45725,FALSE +The Stooges,Gimme Danger,new,,,,,81211,FALSE +The Stooges,I Wanna Be Your Dog,new,,,,,65753,FALSE +The Stooges,Search and Destroy,new,,,,,73856,FALSE +The Stranglers,All Day & All of the Night,existing,,,,,,FALSE +The Stranglers,Golden Brown,existing,,,,,,FALSE +The Stranglers,No More Heroes,existing,,,,,,FALSE +The Stray Cats,Stray Cat Strut,existing,,,,,,FALSE +The Strokes,1251,new,,,,,25110,FALSE +The Strokes,Hard to Explain,new,,,,,18031,FALSE +The Strokes,Last Nite,new,,,,,21803,FALSE +The Strokes,Ode to the Mets,new,,,,,82394,FALSE +The Strokes,Reptilia,new,,,,,26421,FALSE +The Strokes,Selfless,new,,,,,82770,FALSE +The Strokes,Someday,new,,,,,53481,FALSE +The Strokes,The Adults Are Talking,new,,,,,71221,FALSE +The Strokes,You Only Live Once,new,,,,,52648,FALSE +The Struts,Body Talks (feat. Kesha),new,,,,,56902,FALSE +The Struts,Body Talks,new,,,,,56923,FALSE +The Struts,Could Have Been Me,new,,,,,51673,FALSE +The Struts,Kiss This,new,,,,,51684,FALSE +The Sugarhill Gang,Apache (Jump On It),new,,,,,58061,FALSE +The Sugarhill Gang,Rapper's Delight,new,,,,,13875,FALSE +The Supremes,Baby Love,existing,,,,,,FALSE +The Supremes,You Can't Hurry Love,existing,,,,,,FALSE +The Sweet,Ballroom Blitz,existing,,,,,,FALSE +The Sweet,Blockbuster,existing,,,,,,FALSE +The Sweet,Wig Wam Bam,existing,,,,,,FALSE +The Tams,Be Young,existing,,,,,,FALSE +The Tams,Hey Girl Don't Bother Me,existing,,,,,,FALSE +The Teardrop Explodes,Reward,existing,,,,,,FALSE +The Teddy Bears,To Know Him Is To Love Him,existing,,,,,,FALSE +The Temper Trap,Sweet Disposition,new,,,,,24591,FALSE +The Temptations,Ain't Too Proud To Beg,existing,,,,,,FALSE +The Temptations,Get Ready,existing,,,,,,FALSE +The Temptations,Just My Imagination,existing,,,,,,FALSE +The Temptations,My Girl,existing,,,,,,FALSE +The Temptations,Papa Was A Rolling Stone,existing,,,,,,FALSE +The Teskey Brothers,Pain and Misery,new,,,,,77077,FALSE +The Teskey Brothers,So Caught Up,new,,,,,76847,FALSE +The Three Degrees,When Will I See You Again ?,existing,,,,,,FALSE +The Ting Tings,Only Love,new,,,,,48293,FALSE +The Ting Tings,Shut Up And Let Me Go,new,,,,,19814,FALSE +The Ting Tings,That's Not My Name,new,,,,,16703,FALSE +The Toadies,I Come from the Water,new,,,,,82787,FALSE +The Toadies,Possum Kingdom,new,,,,,54956,FALSE +The Toadies,Tyler,new,,,,,71832,FALSE +The Tokens,The Lion Sleeps Tonight,existing,,,,,,FALSE +The Trammps,Disco Inferno,existing,,,,,,FALSE +The Traveling Wilburys,End Of The Line,existing,Traveling Wilburys,,,,,FALSE +The Traveling Wilburys,Handle With Care,existing,Traveling Wilburys,,,,,FALSE +The Traveling Wilburys,Last Night,existing,Traveling Wilburys,,,,,FALSE +The Tremeloes,Here Comes My Baby,existing,,,,,,FALSE +The Tremeloes,Silence Is Golden,existing,,,,,,FALSE +The Troggs,Wild Thing,existing,,,,,,FALSE +The Troggs,With a Girl Like You,existing,,,,,,FALSE +The Tubes,She's A Beauty,existing,,,,,,FALSE +The Turtles,Happy Together,existing,,,,,,FALSE +The Undertones,Here Comes the Summer,existing,,,,,,FALSE +The Undertones,Teenage Kicks,existing,,,,,,FALSE +The Urban Cookie Collective,Key,existing,,,,,,FALSE +The Used,Pretty Handsome Awkward,new,,,,,83484,FALSE +The Used,The Taste of Ink,new,,,,,71101,FALSE +The Vamps,Can We Dance,new,,,,,45335,FALSE +The Vamps,Somebody to You,new,,,,,47278,FALSE +The Vapors,Turning Japanese,new,,,,,20209,FALSE +The Ventures,Wipeout,existing,,,,,,FALSE +The Verve,Bitter Sweet Symphony,existing,,,,,,FALSE +The Verve Pipe,The Freshmen,new,,,,,10376,FALSE +The View,Same Jeans,existing,,,,,,FALSE +The Village People,Can't Stop the Music,existing,Village People,,,,,FALSE +The Village People,In the Navy,existing,Village People,,,,,FALSE +The Village People,Y.M.C.A,existing,Village People,,,TRUE,,FALSE +The Violent Femmes,Blister In The Sun,existing,,,,,,FALSE +The Walker Brothers,Sun Ain't Gonna Shine Anymore,existing,,,,,,FALSE +The Wallflowers,6th Avenue Heartache,new,,,,,10209,FALSE +The Wallflowers,One Headlight,existing,,,,,,FALSE +The Wallflowers,Three Marlenas,new,,,,,80538,FALSE +The Wanted,Glad You Came,existing,,,,,,FALSE +The Wanted,I Found You,existing,,,,,,FALSE +The War and Treaty,Stealing a Kiss,new,,,,,81277,FALSE +The War on Drugs,I Don't Live Here Anymore,new,,,,,67819,FALSE +The Waterboys,Fisherman's Blues,existing,,,,,,FALSE +The Weather Girls,It's Raining Men,existing,,,,,,FALSE +The Weeknd,Blinding Lights,new,,,,,60088,FALSE +The Weeknd,Die for You (remix),new,,,,,74051,FALSE +The Weeknd,Die for You,new,,,,,59755,FALSE +The Weeknd,Popular,new,,,,,75674,FALSE +The Weeknd,Save Your Tears,new,,,,,63378,FALSE +The Weeknd,Starboy,new,,,,,51878,FALSE +The Weeknd,The Hills,new,,,,,49815,FALSE +The White Stripes,Apple Blossom,new,,,,,41833,FALSE +The White Stripes,Blue Orchid,existing,,,,,,FALSE +The White Stripes,Denial Twist,new,,,,,29499,FALSE +The White Stripes,Fell in Love with a Girl,new,,,,,56138,FALSE +The White Stripes,Hotel Yorba,new,,,,,80395,FALSE +The White Stripes,I Just Don't Know What to Do with Myself,new,,,,,28796,FALSE +The White Stripes,Icky Thump,new,,,,,12200,FALSE +The White Stripes,Jolene (live),new,,,,,74074,FALSE +The White Stripes,My Doorbell,new,,,,,12549,FALSE +The White Stripes,Seven Nation Army,existing,,,,,,FALSE +The White Stripes,We're Going to Be Friends,new,,,,,70888,FALSE +The White Stripes,You Don't Know What Love Is (You Just Do as You're Told),new,,,,,12855,FALSE +The Who,Baba O'Riley,existing,,,,,,FALSE +The Who,Bargain,new,,,,,65882,FALSE +The Who,Behind Blue Eyes,existing,,,,,,FALSE +The Who,Eminence Front,new,,,,,61668,FALSE +The Who,Getting in Tune,new,,,,,79342,FALSE +The Who,Going Mobile,new,,,,,69870,FALSE +The Who,Happy Jack,new,,,,,30121,FALSE +The Who,I Can See For Miles,new,,,,,30124,FALSE +The Who,I Can't Explain,existing,,,,,,FALSE +The Who,Join Together,new,,,,,74310,FALSE +The Who,Long Live Rock,new,,,,,79016,FALSE +The Who,"Love, Reign o'er Me",new,,,,,67601,FALSE +The Who,Magic Bus,existing,,,,,,FALSE +The Who,My Generation,existing,,,,,,FALSE +The Who,Pinball Wizard,new,,,,,5486,FALSE +The Who,See Me Feel Me,existing,,,,,,FALSE +The Who,Squeeze Box,new,,,,,33018,FALSE +The Who,Substitute,existing,,,,,,FALSE +The Who,Summertime Blues,new,,,,,33265,FALSE +The Who,The Real Me,new,,,,,51598,FALSE +The Who,The Song Is Over,new,,,,,69885,FALSE +The Who,Who Are You,existing,,,,,,FALSE +The Who,Won't Get Fooled Again,existing,,,,,,FALSE +The Who,You Better You Bet,new,,,,,30335,FALSE +The Wonderstuff,Size of a Cow,existing,,,,,,FALSE +The Wurzels,Combine Harvester,existing,,,,,,FALSE +The Yardbirds,For Your Love,existing,,,,,,FALSE +The Yardbirds,Heart Full Of Soul,existing,,,,,,FALSE +The Zombies,She's Not There,existing,,,,,,FALSE +The xx,Crystalised,existing,,,,,,FALSE +Them Crooked Vultures,"Mind Eraser, No Chaser",new,,,,,41010,FALSE +Theory Of A Deadman,Bad Girlfriend,existing,,,,,,FALSE +They Might Be Giants,Birdhouse in Your Soul,new,,,,,13815,FALSE +Thin Lizzy,Dancing In the Moonlight,existing,,,,,,FALSE +Thin Lizzy,Jailbreak,new,,,,,40937,FALSE +Thin Lizzy,The Boys Are Back In Town,existing,,,,,,FALSE +Thin Lizzy,Whiskey In the Jar,existing,,,,,,FALSE +Third Eye Blind,How's It Going To Be,new,,,,,9690,FALSE +Third Eye Blind,Jumper,existing,,,,,,FALSE +Third Eye Blind,Semi-Charmed Life,existing,,,,,,FALSE +Thomas Rhett,Beer Can't Fix,new,,,,,58940,FALSE +Thomas Rhett,Die a Happy Man,new,,,,,50287,FALSE +Thomas Rhett,Look What God Gave Her,new,,,,,57886,FALSE +Thomas Rhett,Make Me Wanna,new,,,,,51006,FALSE +Thomas Rhett,Marry Me,new,,,,,54845,FALSE +Thomas Rhett,What's Your Country Song,new,,,,,63279,FALSE +Thompson Twins,Doctor! Doctor !,existing,,,,,,FALSE +Thompson Twins,Hold Me Now,existing,,,,,,FALSE +Thompson Twins,Lay Your Hands on Me,new,,,,,80989,FALSE +Three Days Grace,Animal I Have Become,new,,,,,68659,FALSE +Three Days Grace,I Am Machine,new,,,,,77758,FALSE +Three Days Grace,I Hate Everything About You,new,,,,,44563,FALSE +Three Days Grace,Never Too Late,new,,,,,19928,FALSE +Three Days Grace,Pain,new,,,,,64174,FALSE +Three Days Grace,Riot,new,,,,,70953,FALSE +Three Dog Night,Joy To The World,existing,,,,,,FALSE +Three Dog Night,One,existing,,,,,,FALSE +Tiesto,1035,new,,,,,73032,FALSE +Tiesto,Don't Be Shy,new,,,,,66434,FALSE +Tiesto,The Business,new,,,,,64242,FALSE +Tiesto,The Motto,new,,,,,68136,FALSE +Tim McGraw,Highway Don't Care,existing,,,,,,FALSE +Tim McGraw,Humble And Kind,new,,,,,51011,FALSE +Tim McGraw,"I Like It, I Love It",new,,,,,8356,FALSE +Tim McGraw,Indian Outlaw,new,,,,,10132,FALSE +Tim McGraw,Just To See You Smile,existing,,,,,,FALSE +Tim McGraw,Live Like You Were Dying,existing,,,,,,FALSE +Tim McGraw,Shotgun Rider,existing,,,,,,FALSE +Tim McGraw,Something Like That,new,,,,,8659,FALSE +Tim McGraw,Southern Girl,existing,,,,,,FALSE +Tim McGraw,Where the Green Grass Grows,new,,,,,9180,FALSE +Timbaland,Apologize,existing,,,,,,FALSE +Timbaland,Carry Out,new,,,,,28478,FALSE +Timbaland,Give It to Me,new,,,,,11915,FALSE +Timbaland,If We Ever Meet Again,existing,,,,,,FALSE +Timbaland,Morning After Dark,new,,,,,26620,FALSE +Timbaland,The Way I Are,new,,,,,12311,FALSE +Tina Arena,Chains,existing,,,,,,FALSE +Tina Charles,I Love To Love,existing,,,,,,FALSE +Tina Turner,Best,existing,,,,,,FALSE +Tina Turner,Better Be Good to Me,new,,,,,41131,FALSE +Tina Turner,Disco Inferno,new,,,,,21730,FALSE +Tina Turner,I Don't Wanna Fight,new,,,,,29157,FALSE +Tina Turner,Let's Stay Together,existing,,,,,,FALSE +Tina Turner,Missing You,existing,,,,,,FALSE +Tina Turner,Nutbush City Limits,new,,,,,25618,FALSE +Tina Turner,Private Dancer,new,,,,,13807,FALSE +Tina Turner,Proud Mary,existing,,,,,,FALSE +Tina Turner,River Deep Mountain High,existing,,,,,,FALSE +Tina Turner,Shake a Tailfeather,new,,,,,67766,FALSE +Tina Turner,Try A Little Tenderness (Live Wembley),existing,,,,,,FALSE +Tina Turner,We Don't Need Another Hero,new,,,,,9456,FALSE +Tina Turner,What's Love Got To Do With It,existing,,,,,,FALSE +Tina Turner & Rod Stewart,It Takes Two,existing,Tina Turner,,,,,FALSE +Tinashe,2 On,new,,,,,79843,FALSE +Tinashe,Nasty,new,,,,,82033,FALSE +Tinie Tempah,Children Of The Sun,new,,,,,45579,FALSE +Tinie Tempah,Frisky,new,,,,,30922,FALSE +Tinie Tempah,Invincible,new,,,,,35653,FALSE +Tinie Tempah,Lover Not a Fighter,new,,,,,46448,FALSE +Tinie Tempah,Pass Out,new,,,,,28878,FALSE +Tinie Tempah,Till I'm Gone,new,,,,,38012,FALSE +Tinie Tempah,Trampoline,new,,,,,44679,FALSE +Tinie Tempah,Wonderman,new,,,,,36039,FALSE +Tinie Tempah,Written In The Stars,new,,,,,34180,FALSE +Toby Keith,Beer For My Horses,existing,,,,,,FALSE +Toby Keith,Courtesy Of The Red White And Blue (The Angry American),existing,,,,,,FALSE +Toby Keith,I Love This Bar,existing,,,,,,FALSE +Toby Keith,Red Solo Cup,existing,,,,,,FALSE +Todd Rundgren,Bang The Drum All Day,existing,,,,,,FALSE +Todd Rundgren,Hello It's Me,new,,,,,55325,FALSE +Tom Baxter,Better,existing,,,,,,FALSE +Tom Jones,Celebration - Live 80's US TV Special,existing,,,,,,FALSE +Tom Jones,Delilah - Live Arrangement,existing,,,,,,FALSE +Tom Jones,Delilah,existing,,,,,,FALSE +Tom Jones,Green Green Grass of Home,existing,,,,,,FALSE +Tom Jones,Help Yourself,existing,,,,,,FALSE +Tom Jones,It's Not Unusual,existing,,,,,,FALSE +Tom Jones,Knock On Wood - Live 80's US TV Special,existing,,,,,,FALSE +Tom Jones,She's a Lady,existing,,,,,,FALSE +Tom MacDonald,Clown World,new,,,,,80275,FALSE +Tom MacDonald,Facts,new,,,,,79814,FALSE +Tom MacDonald,Ghost,new,,,,,73236,FALSE +Tom MacDonald,No Lives Matter,new,,,,,77749,FALSE +Tom MacDonald,Snowflakes,new,,,,,81746,FALSE +Tom Odell,Real Love,existing,,,,,,FALSE +Tom Petty,A Woman in Love (It's Not Me),new,,,,,58007,FALSE +Tom Petty,American Girl,existing,,,,,,FALSE +Tom Petty,Breakdown,new,,,,,39723,FALSE +Tom Petty,Don't Come Around Here No More,new,,,,,51386,FALSE +Tom Petty,Don't Do Me Like That,new,,,,,10909,FALSE +Tom Petty,Even the Losers,new,,,,,54153,FALSE +Tom Petty,Free Fallin (A Cappella),existing,,,,,,FALSE +Tom Petty,Free Fallin,existing,,,,,,FALSE +Tom Petty,Here Comes My Girl,existing,,,,,,FALSE +Tom Petty,I Need to Know,new,,,,,54757,FALSE +Tom Petty,I Won't Back Down,existing,,,,,,FALSE +Tom Petty,Into The Great Wide Open,existing,,,,,,FALSE +Tom Petty,Learning To Fly,existing,,,,,,FALSE +Tom Petty,Mary Jane's Last Dance,existing,,,,,,FALSE +Tom Petty,Refugee,existing,,,,,,FALSE +Tom Petty,Runnin Down A Dream,existing,,,,,,FALSE +Tom Petty,The Waiting,existing,,,,,,FALSE +Tom Petty,Yer So Bad,new,,,,,38642,FALSE +Tom Petty,You Don't Know How It Feels,new,,,,,52342,FALSE +Tom Petty,You Got Lucky,new,,,,,55440,FALSE +Tom Petty,You Wreck Me,existing,,,,,,FALSE +Tom Waits,(Looking for) The Heart of Saturday Night,new,,,,,77943,FALSE +Tom Waits,Christmas Card from a Hooker in Minneapolis,new,,,,,65853,FALSE +Tom Waits,Downtown Train,new,,,,,73497,FALSE +Tom Waits,I Hope That I Don't Fall in Love with You,new,,,,,64130,FALSE +Tom Waits,Jockey Full Of Bourbon,new,,,,,39136,FALSE +Tom Waits,Ol' 55,new,,,,,75396,FALSE +Tom Waits,Step Right Up,new,,,,,39087,FALSE +Tommy James & The Shondells,Mony Mony,existing,,,,,,FALSE +Tommy James And The Shondells,Crimson And Clover,existing,Tommy James & The Shondells,,,,,FALSE +Tommy Tutone,867-5309 Jenny,existing,,,,,,FALSE +Tone Loc,Wild Thing,new,,,,,36170,FALSE +Tones and I,Cloudy Day,new,,,,,65508,FALSE +Tones and I,Dance Monkey,new,,,,,59020,FALSE +Tones and I,Fly Away,new,,,,,64040,FALSE +Tones and I,Never Seen the Rain,new,,,,,59455,FALSE +Toni Braxton,Unbreak My Heart,existing,,,,,,FALSE +Tonic,If You Could Only See,existing,,,,,,FALSE +Tony Bennett,Blue Velvet (A Cappella),existing,,,,,,FALSE +Tony Bennett & Michael Buble,Don't Get Around Much Anymore,existing,,,,,,FALSE +Tony Christie,Avenues & Alleyways,existing,,,,,,FALSE +Tony Christie,Daddy Don't You Walk So Fast,existing,,,,,,FALSE +Tool,Eulogy,new,,,,,69564,FALSE +Tool,Fear Inoculum,new,,,,,74362,FALSE +Tool,Forty Six & 2,new,,,,,57446,FALSE +Tool,H.,new,,,,,27899,FALSE +Tool,Hooker with a Penis,new,,,,,69042,FALSE +Tool,Jambi,new,,,,,70824,FALSE +Tool,Lateralus,new,,,,,70731,FALSE +Tool,Opiate,new,,,,,71120,FALSE +Tool,Parabola,new,,,,,53519,FALSE +Tool,Pneuma,new,,,,,75402,FALSE +Tool,Prison Sex,new,,,,,39321,FALSE +Tool,Right in Two,new,,,,,72363,FALSE +Tool,Schism,new,,,,,28894,FALSE +Tool,Sober,new,,,,,54912,FALSE +Tool,Stinkfist,new,,,,,65481,FALSE +Tool,The Grudge,new,,,,,74605,FALSE +Tool,The Pot,new,,,,,61519,FALSE +Tool,Vicarious,new,,,,,67994,FALSE +Tool,nema,new,,,,,55417,FALSE +Toots And The Maytals,Do The Reggay,existing,,,,,,FALSE +Toploader,Dancing In the Moonlight,existing,,,,,,FALSE +Tori Amos,Cornflake Girl,new,,,,,21376,FALSE +Tori Kelly,Dear No One,new,,,,,49766,FALSE +Tori Kelly,I Was Made for Loving You,new,,,,,49758,FALSE +Tori Kelly,Paper Hearts,new,,,,,73478,FALSE +Total,Can't You See,new,,,,,78145,FALSE +Total,Kissin' You,new,,,,,68888,FALSE +Total,Trippin',new,,,,,34572,FALSE +Total,What About Us,new,,,,,34207,FALSE +Toto,Africa,existing,,,,,,FALSE +Toto,Hold The Line,existing,,,,,,FALSE +Toto,Rosanna,existing,,,,,,FALSE +Tove Lo,Cool Girl,new,,,,,51723,FALSE +Tove Lo,Habits (Stay High),new,,,,,47954,FALSE +Tove Lo,Talking Body,new,,,,,48998,FALSE +Tower Of Power,Diggin On James Brown,existing,,,,,,FALSE +Tower Of Power,What Is Hip,existing,,,,,,FALSE +Townes Van Zandt,Dead Flowers,new,,,,,77654,FALSE +Townes Van Zandt,Pancho and Lefty,new,,,,,72585,FALSE +Townes Van Zandt,Waiting Around to Die,new,,,,,77699,FALSE +Trace Adkins,Honky Tonk Badonkadonk,existing,,,,,,FALSE +Trace Adkins,You're Gonna Miss This,existing,,,,,,FALSE +Tracy Chapman,Fast Car,new,,,,,13511,FALSE +Tracy Chapman,Give Me One Reason,new,,,,,10798,FALSE +Train,Drive By,existing,,,,,,FALSE +Train,Drops of Jupiter (Tell Me),existing,,,,,,FALSE +Train,Hey Soul Sister,existing,,,,,,FALSE +Traveling Wilburys,Handle with Care,new,,,TRUE,,30408,FALSE +Travis Scott,Fe!n,new,,,,,81219,FALSE +Travis Scott,Goosebumps (HVME remix),new,,,,,64247,FALSE +Travis Scott,Goosebumps,new,,,,,64256,FALSE +Travis Scott,Highest in the Room,new,,,,,78358,FALSE +Travis Scott,K-POP,new,,,,,76431,FALSE +Travis Scott,Sicko Mode,new,,,,,58490,FALSE +Travis Scott,Telekinesis,new,,,,,76803,FALSE +Travis Tritt,Here's a Quarter (Call Someone Who Cares),new,,,,,6592,FALSE +Travis Tritt,It's A Great Day To Be Alive,existing,,,,,,FALSE +Triumph,A World of Fantasy,new,,,,,72123,FALSE +Triumph,Fight the Good Fight,new,,,,,67074,FALSE +Triumph,Hold On,new,,,,,70700,FALSE +Triumph,Lay It on the Line,new,,,,,57971,FALSE +Triumph,Magic Power,new,,,,,64601,FALSE +Triumph,Somebody's Out There,new,,,,,77785,FALSE +Troye Sivan,Angel Baby,new,,,,,73841,FALSE +Troye Sivan,One of Your Girls,new,,,,,77776,FALSE +Troye Sivan,Rush,new,,,,,76153,FALSE +Troye Sivan,Youth,new,,,,,76892,FALSE +Twenty One Pilots,Chlorine,new,,,,,70905,FALSE +Twenty One Pilots,HeavyDirtySoul,new,,,,,51357,FALSE +Twenty One Pilots,Ride,new,,,,,51082,FALSE +Twenty One Pilots,Stressed Out,new,,,,,50478,FALSE +Twenty One Pilots,Tear in My Heart,new,,,,,50842,FALSE +Twista,Overnight Celebrity,new,,,,,69143,FALSE +Twista,Slow Jamz,new,,,,,58732,FALSE +Twisted Sister,We're Not Gonna Take It,existing,,,,,,FALSE +Two Door Cinema Club,Sleep Alone,existing,,,,,,FALSE +Ty Dolla Sign,Or Nah,new,,,,,67848,FALSE +Tyga,Rack City,new,,,,,81150,FALSE +Tyga,Taste,new,,,,,32582,FALSE +Tyla,Art,new,,,,,81666,FALSE +Tyla,Jump,new,,,,,81389,FALSE +Tyla,Truth or Dare,new,,,,,79696,FALSE +Tyla,Water,new,,,,,77359,FALSE +"Tyler, The Creator",Earfquake,new,,,,,74656,FALSE +"Tyler, The Creator",New Magic Wand,new,,,,,79578,FALSE +"Tyler, The Creator",See You Again,new,,,,,71668,FALSE +"Tyler, The Creator",Yonkers,new,,,,,82678,FALSE +Tyler Childers,All Your'n,new,,,,,60822,FALSE +Tyler Childers,Charleston Girl (live),new,,,,,68641,FALSE +Tyler Childers,Coal,new,,,,,75949,FALSE +Tyler Childers,Feathered Indians,new,,,,,60301,FALSE +Tyler Childers,Follow You to Virgie,new,,,,,66685,FALSE +Tyler Childers,Lady May,new,,,,,60989,FALSE +Tyler Childers,Nose on the Grindstone,new,,,,,60943,FALSE +Tyler Childers,Shake the Frost (live),new,,,,,66604,FALSE +U2,A Sort of Homecoming,new,,,,,81891,FALSE +U2,All I Want Is You,existing,,,,,,FALSE +U2,Angel Of Harlem,existing,,,,,,FALSE +U2,Atomic City,new,,,,,78012,FALSE +U2,Beautiful Day,existing,,,,,,FALSE +U2,Bullet The Blue Sky,existing,,,,,,FALSE +U2,Christmas (Baby Please Come Home),existing,,,,,,FALSE +U2,City of Blinding Lights,existing,,,,,,FALSE +U2,Desire,existing,,,,,,FALSE +U2,Even Better Than the Real Thing,new,,,,,68042,FALSE +U2,I Still Haven't Found What I'm Looking For,new,,,,,11771,FALSE +U2,I Will Follow,new,,,,,42214,FALSE +U2,In God's Country,new,,,,,65604,FALSE +U2,Love Is Blindness,new,,,,,39262,FALSE +U2,Mysterious Ways,new,,,,,30072,FALSE +U2,New Year's Day,new,,,,,12563,FALSE +U2,One Tree Hill,new,,,,,65771,FALSE +U2,One,new,,,,,16186,FALSE +U2,Pride (In the Name of Love),existing,,,,,,FALSE +U2,Red Hill Mining Town,existing,,,,,,FALSE +U2,Running To Stand Still,new,,,,,26998,FALSE +U2,Sometimes You Can't Make It On Your Own,existing,,,,,,FALSE +U2,Stuck in a Moment You Can't Get Out of,new,,,,,7970,FALSE +U2,Sunday Bloody Sunday,existing,,,,,,FALSE +U2,Sweetest Thing,new,,,,,9299,FALSE +U2,The Fly,new,,,,,68986,FALSE +U2,The Unforgettable Fire,new,,,,,33449,FALSE +U2,Two Hearts Beat as One,new,,,,,71658,FALSE +U2,Ultraviolet (Light My Way),new,,,,,38803,FALSE +U2,Vertigo,existing,,,,,,FALSE +U2,When Love Comes to Town,new,,,,,49346,FALSE +U2,Where The Streets Have No Name,new,,,,,11770,FALSE +U2,Who's Gonna Ride Your Wild Horses,new,,,,,54792,FALSE +U2,With Or Without You,existing,,,,,,FALSE +U2,Zoo Station,new,,,,,73069,FALSE +Ub40,Boom Shaka Lacka,existing,UB40,,,,,FALSE +Ub40,Bring It On Home to Me,existing,UB40,,,,,FALSE +Ub40,Don't Do the Crime,existing,UB40,,,,,FALSE +Ub40,Get Along Without You Now,existing,UB40,,,,,FALSE +Ub40,If It Happens Again,existing,UB40,,,,,FALSE +Ub40,Kingston Town,existing,UB40,,,,,FALSE +Ub40,Watchdogs,existing,UB40,,,,,FALSE +Ultravox,Dancing With Tears In My Eyes,existing,,,,,,FALSE +Uncle Kracker,Drift Away,existing,,,,,,FALSE +Uncle Kracker,Follow Me,existing,,,,,,FALSE +Uncle Kracker,Good To Be Me,existing,,,,,,FALSE +Uncle Kracker,Smile,existing,,,,,,FALSE +Unit Four Plus Two,Concrete & Clay,existing,,,,,,FALSE +Usher,Burn,new,,,,,13208,FALSE +Usher,Caught Up,existing,,,,,,FALSE +Usher,DJ Got Us Fallin' In Love,new,,,,,32373,FALSE +Usher,Hey Daddy (Daddy's Home),new,,,,,66609,FALSE +Usher,"Love in This Club, Part II",new,,,,,19790,FALSE +Usher,My Boo,new,,,,,55025,FALSE +Usher,OMG,new,,,,,29579,FALSE +Usher,Scream,existing,,,,,,FALSE +Usher,U Got It Bad,new,,,,,8075,FALSE +Usher,U Remind Me,new,,,,,19929,FALSE +Usher,Yeah,existing,,,,,,FALSE +Vampire Weekend,A-Punk,new,,,,,63768,FALSE +Vampire Weekend,Diane Young,new,,,,,82076,FALSE +Vampire Weekend,Harmony Hall,new,,,,,74540,FALSE +Vampire Weekend,Oxford Comma,new,,,,,78658,FALSE +Van Halen,Ain't Talkin Bout Love,existing,,,,,,FALSE +Van Halen,And the Cradle Will Rock...,new,,,,,17708,FALSE +Van Halen,Atomic Punk,new,,,,,69397,FALSE +Van Halen,Beautiful Girls,new,,,,,17759,FALSE +Van Halen,Best of Both Worlds,new,,,,,23070,FALSE +Van Halen,Bottoms Up!,new,,,,,70738,FALSE +Van Halen,Can't Stop Lovin' You,new,,,,,25751,FALSE +Van Halen,Dance the Night Away,new,,,,,17711,FALSE +Van Halen,Dancing in the Street,new,,,,,62615,FALSE +Van Halen,Dreams,new,,,,,17712,FALSE +Van Halen,Feel Your Love Tonight,new,,,,,17700,FALSE +Van Halen,Finish What Ya Started,new,,,,,17758,FALSE +Van Halen,Hear About It Later,new,,,,,62916,FALSE +Van Halen,Hot for Teacher,new,,,,,17704,FALSE +Van Halen,I'll Wait,new,,,,,28105,FALSE +Van Halen,I'm the One,new,,,,,32018,FALSE +Van Halen,Ice Cream Man,existing,,,,,,FALSE +Van Halen,Jamie's Cryin,existing,,,,,,FALSE +Van Halen,Judgement Day,new,,,,,40091,FALSE +Van Halen,Jump,existing,,,,,,FALSE +Van Halen,Light Up the Sky,new,,,,,63101,FALSE +Van Halen,Little Dreamer,new,,,,,61712,FALSE +Van Halen,Love Walks In,new,,,,,17812,FALSE +Van Halen,Mean Street,new,,,,,53262,FALSE +Van Halen,Not Enough,new,,,,,71619,FALSE +Van Halen,On Fire,new,,,,,78609,FALSE +Van Halen,Panama,existing,,,,,,FALSE +Van Halen,Right Now,existing,,,,,,FALSE +Van Halen,Runnin' with the Devil,new,,,,,17760,FALSE +Van Halen,So This Is Love,new,,,,,64781,FALSE +Van Halen,Somebody Get Me a Doctor,new,,,,,65150,FALSE +Van Halen,Take Your Whiskey Home,new,,,,,69565,FALSE +Van Halen,Top of the World,new,,,,,69683,FALSE +Van Halen,Unchained,new,,,,,17814,FALSE +Van Halen,When It's Love,new,,,,,17710,FALSE +Van Halen,Why Can't This Be Love,existing,,,,,,FALSE +Van Halen,You Really Got Me,existing,,,,,,FALSE +Van Halen,You're No Good,new,,,,,71135,FALSE +Van Morrison,Baby Please Don't Go,existing,,,,,,FALSE +Van Morrison,Bright Side of the Road,existing,,,,,,FALSE +Van Morrison,Brown Eyed Girl,existing,,,,,,FALSE +Van Morrison,Crazy Love,existing,,,,,,FALSE +Van Morrison,Days Like This,existing,,,,,,FALSE +Van Morrison,Domino,existing,,,,,,FALSE +Van Morrison,Gloria,existing,,,,,,FALSE +Van Morrison,Have I Told You Lately,existing,,,,,,FALSE +Van Morrison,Here Comes the Night,existing,,,,,,FALSE +Van Morrison,Into The Mystic,existing,,,,,,FALSE +Van Morrison,Moondance (A Cappella),existing,,,,,,FALSE +Van Morrison,Moondance,existing,,,,,,FALSE +Van Morrison,Tupelo Honey,existing,,,,,,FALSE +Vance Joy,Fire And The Flood,new,,,,,49975,FALSE +Vance Joy,Mess Is Mine,new,,,,,83179,FALSE +Vance Joy,Missing Piece,new,,,,,67230,FALSE +Vance Joy,Riptide,new,,,,,45250,FALSE +Vance Joy,Saturday Sun,new,,,,,81706,FALSE +Vance Joy,We're Going Home,new,,,,,55486,FALSE +Vance Joy,You,new,,,,,64322,FALSE +Vanessa Williams,Save The Best For Last,existing,,,,,,FALSE +Vangelis,Conquest of Paradise,new,,,,,64380,FALSE +Velvet Revolver,Come On Come In,new,,,,,25237,FALSE +Velvet Revolver,Dirty Little Thing,new,,,,,24856,FALSE +Velvet Revolver,Fall To Pieces,existing,,,,,,FALSE +Velvet Revolver,Slither,existing,,,,,,FALSE +Vera Lynn,A Nightengale Sang In Berkeley Square (A Cappella),existing,,,,,,FALSE +Vera Lynn,We'll Meet Again,existing,,,,,,FALSE +Veruca Salt,Awesome,new,,,,,39171,FALSE +Veruca Salt,Seether,new,,,,,73095,FALSE +Veruca Salt,Volcano Girls,new,,,,,76755,FALSE +Vic Reeves & The Wonderstuff,Dizzy,existing,,,,,,FALSE +Victor Young,Stella By Starlight,existing,,,,,,FALSE +Village People,In The Navy,new,,,TRUE,,8161,FALSE +Village People,Macho Man,new,,,,,8162,FALSE +Village People,Y.M.C.A.,existing,,,,,,FALSE +Visage,Fade To Grey,existing,,,,,,FALSE +Volbeat,A Warrior's Call,new,,,,,69309,FALSE +Volbeat,For Evigt,new,,,,,55725,FALSE +Volbeat,Lola Montez,new,,,,,51611,FALSE +Volbeat,Still Counting,new,,,,,51634,FALSE +Volbeat,The Devil's Bleeding Crown,new,,,,,67976,FALSE +Vulfpeck,1612,new,,,,,28888,FALSE +Vulfpeck,Back Pocket,new,,,,,75009,FALSE +Vulfpeck,Wait for the Moment,new,,,,,76439,FALSE +W.A.S.P.,I Wanna Be Somebody,new,,,,,69736,FALSE +Waitresses,I Know What Boys Like,existing,,,,,,FALSE +Waka Flocka Flame,No Hands,new,,,,,68748,FALSE +Wall of Voodoo,Mexican Radio,new,,,,,19179,FALSE +Wanda Jackson,Let Me Go Lover,existing,,,,,,FALSE +Wang Chung,Everybody Have Fun Tonight,new,,,,,32823,FALSE +Wang Chung,Let's Go,new,,,,,70904,FALSE +Wang Chung,To Live and Die in L.A.,new,,,,,70756,FALSE +War,Low Rider,new,,,,,6293,FALSE +War,Why Can't We Be Friends,new,,,,,58512,FALSE +Warrant,Cherry Pie,existing,,,,,,FALSE +Warren G,I Shot the Sheriff,new,,,,,34518,FALSE +Warren G,Regulate,existing,,,,,,FALSE +Warren G,The Rhapsody from Polovtsian Dances From Prince Igor,new,,,,,41123,FALSE +Warren G,What's Love Got To Do With It,new,,,,,34425,FALSE +Warren Zevon,"Lawyers, Guns and Money",new,,,,,55863,FALSE +Warren Zevon,Werewolves of London,new,,,,,11468,FALSE +Waterboys,Whole of the Moon,existing,The Waterboys,,,,,FALSE +Waylon Jennings,Are You Sure Hank Done it This Way,new,,,,,30633,FALSE +Waylon Jennings,Good Hearted Woman,new,,,,,74847,FALSE +Waylon Jennings,Luckenbach Texas,existing,,,,,,FALSE +Waylon Jennings,Theme from The Dukes of Hazzard (Good Ol' Boys),new,,,,,8565,FALSE +Ween,Ocean Man,new,,,,,58205,FALSE +Weezer,Beverly Hills,new,,,,,25370,FALSE +Weezer,Buddy Holly,new,,,,,45680,FALSE +Weezer,Hash Pipe,new,,,,,29303,FALSE +Weezer,Island In The Sun,existing,,,,,,FALSE +Weezer,Undone The Sweater Song,new,,,,,54896,FALSE +West Side Story,Something's Coming (A Cappella),existing,,,,,,FALSE +West Side Story,Somewhere (A Cappella),existing,,,,,,FALSE +Wham,Club Tropicana,existing,,,,,,FALSE +Wham,Freedom,existing,,,,,,FALSE +Wham,I'm Your Man,existing,,,,,,FALSE +Wham,Last Christmas,existing,,,,,,FALSE +Wham,Wake Me Up Before You Go Go,existing,,,,,,FALSE +Wheatus,Teenage Dirtbag,existing,,,,,,FALSE +Whiskey Myers,Ballad of a Southern Man,new,,,,,60399,FALSE +Whiskey Myers,Broken Window Serenade,new,,,,,67533,FALSE +Whiskey Myers,Stone,new,,,,,66192,FALSE +White Lion,Wait,new,,,,,64987,FALSE +Whitesnake,Here I Go Again '87,new,,,,,64783,FALSE +Whitesnake,Here I Go Again (Album Version),new,,,,,56275,FALSE +Whitesnake,Here I Go Again,new,,,,,13749,FALSE +Whitesnake,Is This Love,existing,,,,,,FALSE +Whitesnake,Still of the Night,new,,,,,41880,FALSE +Whitney Houston,All The Man That I Need,existing,,,,,,FALSE +Whitney Houston,Didn't We Almost Have It All,existing,,,,,,FALSE +Whitney Houston,I Have Nothing,existing,,,,,,FALSE +Whitney Houston,I Wanna Dance With Somebody,existing,,,,,,FALSE +Whitney Houston,I Will Always Love You,existing,,,,,,FALSE +Whitney Houston,One Moment In Time,existing,,,,,,FALSE +Whitney Houston,Saving All My Love For You,existing,,,,,,FALSE +Wilco,"Jesus, Etc.",new,,,,,39539,FALSE +Wilco,You Never Know,new,,,,,24628,FALSE +Wild Cherry,Play That Funky Music,existing,,,,,,FALSE +Will Smith,Gettin' Jiggy wit It,new,,,,,16982,FALSE +Will Smith,Miami,new,,,,,13795,FALSE +Will Smith,Wild Wild West,new,,,,,8626,FALSE +Will Young,Evergreen,existing,,,,,,FALSE +Will Young,Leave Right Now,existing,,,,,,FALSE +Will.I.Am Feat. Justin Bieber,#That Power,existing,Will.I.Am,,,,,FALSE +Willie Nelson,Always On My Mind,existing,,,,,,FALSE +Willie Nelson,Angel Flying Too Close to the Ground,new,,,,,40574,FALSE +Willie Nelson,Blue Eyes Crying In The Rain,existing,,,,,,FALSE +Willie Nelson,Blue Eyes Crying in the Rain,new,,,,,6629,FALSE +Willie Nelson,Blue Skies,existing,,,,,,FALSE +Willie Nelson,City Of New Orleans,existing,,,,,,FALSE +Willie Nelson,Georgia on My Mind,new,,,,,17016,FALSE +Willie Nelson,Good Hearted Woman,new,,,,,11583,FALSE +Willie Nelson,Last Thing I Needed First Thing This Morning,new,,,,,53430,FALSE +Willie Nelson,Mammas Don't Let Your Babies Grow Up to Be Cowboys,new,,,,,10259,FALSE +Willie Nelson,My Heroes Have Always Been Cowboys,existing,,,,,,FALSE +Willie Nelson,Nothing I Can Do About It Now,new,,,,,67185,FALSE +Willie Nelson,On The Road Again,existing,,,,,,FALSE +Willie Nelson,Pancho and Lefty,new,,,,,22182,FALSE +Willie Nelson,Roll Me Up and Smoke Me When I Die,new,,,,,44503,FALSE +Willie Nelson,Seven Spanish Angels,new,,,,,22395,FALSE +Willie Nelson,To All The Girls I've Loved Before,new,,,,,17003,FALSE +Willie Nelson,Whiskey River (Live),existing,,,,,,FALSE +Willie Nelson,Whiskey River,new,,,,,46637,FALSE +Wilson Phillips,Hold On,new,,,,,21657,FALSE +Wilson Pickett,Land of 1000 Dances,existing,,,,,,FALSE +Wilson Pickett,Midnight Hour,existing,,,,,,FALSE +Wings,Band On The Run,existing,,,,,,FALSE +Wings,Mull of Kintyre,existing,,,,,,FALSE +Wings,Silly Love Songs,existing,,,,,,FALSE +Within Temptation,Angels,existing,,,,,,FALSE +Within Temptation,Faster,existing,,,,,,FALSE +Wiz Khalifa,Black and Yellow,new,,,,,36317,FALSE +Wiz Khalifa,No Sleep,new,,,,,36709,FALSE +Wiz Khalifa,Roll Up,new,,,,,36996,FALSE +Wiz Khalifa,See You Again,existing,,,,,,FALSE +Wiz Khalifa,"Work Hard, Play Hard",new,,,,,40436,FALSE +Wiz Khalifa,Young Wild And Free,existing,,,,,,FALSE +Wizard Of Oz,Over The Rainbow (A Cappella),existing,,,,,,FALSE +Wu-Tang Clan,C.R.E.A.M.,new,,,,,60956,FALSE +Wu-Tang Clan,Gravel Pit,new,,,,,82585,FALSE +Wu-Tang Clan,Protect Ya Neck,new,,,,,72327,FALSE +Wu-Tang Clan,Triumph,new,,,,,75058,FALSE +Wu-Tang Clan,Wu-Tang Clan Ain't Nuthing Ta F' Wit,new,,,,,80028,FALSE +X Ambassadors,Jungle (Remix),new,,,,,47414,FALSE +X Ambassadors,Renegades,new,,,,,49693,FALSE +X Ambassadors,Unsteady,new,,,,,50305,FALSE +XTC,Dear God,new,,,,,70686,FALSE +XTC,Making Plans for Nigel,new,,,,,57216,FALSE +XTC,Mayor of Simpleton,new,,,,,71829,FALSE +XTC,Senses Working Overtime,new,,,,,61141,FALSE +XXXTentacion,Changes,new,,,,,56411,FALSE +XXXTentacion,Hope,new,,,,,76272,FALSE +XXXTentacion,Look at Me!,new,,,,,68692,FALSE +XXXTentacion,Moonlight,new,,,,,67081,FALSE +XXXTentacion,Sad!,new,,,,,64122,FALSE +YG,My Nigga (remix),new,,,,,80856,FALSE +YG,Toot It and Boot It (remix),new,,,,,82810,FALSE +YG,Toot It and Boot It,new,,,,,82838,FALSE +Yazoo,Don't Go,existing,,,,,,FALSE +Yazoo,Situation,existing,,,,,,FALSE +Yazz & The Plastic Population,The Only Way Is Up,existing,,,,,,FALSE +Yeah Yeah Yeahs,Cheated Hearts,new,,,,,29878,FALSE +Yeah Yeah Yeahs,Gold Lion,new,,,,,21789,FALSE +Yeah Yeah Yeahs,Heads Will Roll,new,,,,,23443,FALSE +Yeah Yeah Yeahs,Maps,existing,,,,,,FALSE +Yeah Yeah Yeahs,Y Control,new,,,,,77985,FALSE +Years & Years,King,existing,,,,,,FALSE +Yes,And You and I,new,,,,,75274,FALSE +Yes,Changes,new,,,,,65167,FALSE +Yes,Heart of the Sunrise,new,,,,,71026,FALSE +Yes,Hold On,new,,,,,70356,FALSE +Yes,I've Seen All Good People,new,,,,,58447,FALSE +Yes,It Can Happen,new,,,,,71269,FALSE +Yes,Leave It,new,,,,,39071,FALSE +Yes,Long Distance Runaround,new,,,,,65168,FALSE +Yes,Love Will Find a Way,new,,,,,71039,FALSE +Yes,Owner of a Lonely Heart,new,,,,,13793,FALSE +Yes,Roundabout,new,,,,,57672,FALSE +Yes,Starship Trooper,new,,,,,66142,FALSE +Yes,Your Move,new,,,,,58693,FALSE +Yes,Yours Is No Disgrace,new,,,,,66495,FALSE +Ying Yang Twins,Salt Shaker,new,,,,,63032,FALSE +Ying Yang Twins,Wait (The Whisper Song),new,,,,,28401,FALSE +Yola,Faraway Look,new,,,,,61543,FALSE +You+Me,You And Me,existing,,,,,,FALSE +Young Jeezy,Go Getta (clean),new,,,,,39673,FALSE +Young Jeezy,Go Getta,new,,,,,12001,FALSE +Young Jeezy,I Luv It (clean),new,,,,,41034,FALSE +Young Jeezy,I Luv It,new,,,,,11717,FALSE +Young Jeezy,Soul Survivor,new,,,,,64626,FALSE +Young M.A,Ooouuu,new,,,,,68881,FALSE +Young MC,Bust a Move,new,,,,,32819,FALSE +Young Money Entertainment,Bedrock,new,,,,,27047,FALSE +Yung Berg,Sexy Lady,new,,,,,12630,FALSE +Yung Gravy,Betty (Get Money),new,,,,,70535,FALSE +Yung Gravy,Mr. Clean,new,,,,,71880,FALSE +Yung Gravy,Oops!!! (with Lil Wayne),new,,,,,73551,FALSE +Yung Gravy,Oops!,new,,,,,73552,FALSE +Yung Joc,I Know You See It,new,,,,,25675,FALSE +Yung Joc,It's Goin' Down,new,,,,,25595,FALSE +Yvonne Elliman,If I Can't Have You,existing,,,,,,FALSE +ZZ Top,A Fool For Your Stockings,existing,,,,,,FALSE +ZZ Top,Beer Drinkers And Hell Raisers,existing,,,,,,FALSE +ZZ Top,Blue Jean Blues,existing,,,,,,FALSE +ZZ Top,Cheap Sunglasses,existing,,,,,,FALSE +ZZ Top,Gimme All Your Lovin,existing,,,,,,FALSE +ZZ Top,Heard It On The X,existing,,,,,,FALSE +ZZ Top,I Got the Six,new,,,,,73515,FALSE +ZZ Top,I Thank You,new,,,,,58594,FALSE +ZZ Top,"I'm Bad, I'm Nationwide",new,,,,,56000,FALSE +ZZ Top,Jesus Just Left Chicago,existing,,,,,,FALSE +ZZ Top,Just Got Paid,existing,,,,,,FALSE +ZZ Top,La Grange,existing,,,,,,FALSE +ZZ Top,Legs,new,,,,,29429,FALSE +ZZ Top,Pearl Necklace,new,,,,,63461,FALSE +ZZ Top,Sharp Dressed Man,existing,,,,,,FALSE +ZZ Top,TV Dinners,existing,,,,,,FALSE +ZZ Top,Tube Snake Boogie,existing,,,,,,FALSE +ZZ Top,Tush,existing,,,,,,FALSE +ZZ Top,Viva Las Vegas,new,,,,,31881,FALSE +ZZ Top,Waitin For The Bus,existing,,,,,,FALSE +ZZ Ward,365 Days,existing,,,,,,FALSE +Zac Brown Band,As She's Walking Away,new,,,,,34931,FALSE +Zac Brown Band,Chicken Fried,existing,,,,,,FALSE +Zac Brown Band,Colder Weather,existing,,,,,,FALSE +Zac Brown Band,Free,new,,,,,32438,FALSE +Zac Brown Band,Homegrown,existing,,,,,,FALSE +Zac Brown Band,Jolene,existing,,,,,,FALSE +Zac Brown Band,Keep Me In Mind,new,,,,,36437,FALSE +Zac Brown Band,Knee Deep,existing,,,,,,FALSE +Zac Brown Band,Toes,existing,,,,,,FALSE +Zac Brown Band,Whatever It Is,new,,,,,22657,FALSE +Zac Effron,Ladies Choice,existing,,,,,,FALSE +Zach Bryan,28,new,,,,,82566,FALSE +Zach Bryan,"Burn, Burn, Burn",new,,,,,72760,FALSE +Zach Bryan,Heading South,new,,,,,68662,FALSE +Zach Bryan,Hey Driver,new,,,,,76865,FALSE +Zach Bryan,I Remember Everything,new,,,,,77007,FALSE +Zach Bryan,Oklahoma Smokeshow,new,,,,,71354,FALSE +Zach Bryan,Pink Skies,new,,,,,81710,FALSE +Zach Bryan,Something in the Orange,new,,,,,40215,FALSE +Zach Bryan,Spotless,new,,,,,77361,FALSE +Zach Bryan,Sun to Me,new,,,,,75660,FALSE +Zara Larsson,Ain't My Fault,new,,,,,52286,FALSE +Zara Larsson,Lush Life,new,,,,,49924,FALSE +Zara Larsson,Never Forget You,new,,,,,50414,FALSE +Zara Larsson,On My Love,new,,,,,77849,FALSE +Zara Larsson,Ruin My Life,new,,,,,57444,FALSE +Zedd,Beautiful Now,new,,,,,49668,FALSE +Zedd,Clarity,new,,,,,42972,FALSE +Zedd,I Want You To Know,new,,,,,48855,FALSE +Zedd,Stay The Night,new,,,,,45319,FALSE +Zedd,Stay the Night feat Hayley Williams,existing,,,,,,FALSE +Zedd,Stay,new,,,,,52981,FALSE +Zedd,The Middle,new,,,,,55191,FALSE +Zero 7,Destiny,new,,,,,79882,FALSE +Zero 7,In the Waiting Line,new,,,,,23047,FALSE +Ziggy Marley,Concrete Jungle (Live Arrangement),existing,,,,,,FALSE +Ziggy Marley,Drive,existing,,,,,,FALSE +Ziggy Marley And The Melody Makers,Conscious Party,existing,,,,,,FALSE +Ziggy Marley And The Melody Makers,Look Who's Dancing,existing,,,,,,FALSE +Ziggy Marley And The Melody Makers,One Bright Day,existing,,,,,,FALSE +k.d. lang,Constant Craving,new,K.D. Lang,,,,11261,FALSE +k.d. lang,Miss Chatelaine,new,K.D. Lang,,,,43612,FALSE +will.i.am,Feelin' Myself,new,Will.I.Am,,,,46159,FALSE +will.i.am,It's My Birthday,new,Will.I.Am,,,,47217,FALSE +will.i.am,Scream And Shout,existing,Will.I.Am,,,,,FALSE +will.i.am,Thatpower,existing,Will.I.Am,,,,,FALSE +will.i.am,This Is Love,new,Will.I.Am,,,,40704,FALSE diff --git a/lambda/jamtrack-importer/process_kfn.rb b/lambda/jamtrack-importer/process_kfn.rb new file mode 100644 index 000000000..0a6db85e9 --- /dev/null +++ b/lambda/jamtrack-importer/process_kfn.rb @@ -0,0 +1,58 @@ +#!/usr/bin/env ruby + +require 'csv' + +def process_kfn(file) + # Check if the file exists + unless File.exist?(file) + raise "File not found: #{file}" + end + + # Read the file contents + file_contents = CSV.read(file, col_sep: "\t") + + # Generate bpm and start_time + bpm = generate_bpm(file_contents) + start_time = generate_start_time(file_contents) + + [bpm, start_time] +end + +def generate_bpm(file_contents) + # Look at only the first 8 rows for BPM calculation + rows = file_contents.first(8) + + # Calculate the deltas (differences in the 2nd column values) + deltas = rows.each_cons(2).map do |row1, row2| + row2[1].to_f - row1[1].to_f + end + + # Average the deltas and convert to BPM + average_delta = deltas.sum / deltas.size + bpm = (1 / average_delta) * 60 + + bpm.round(2) # Return rounded BPM value +end + +def generate_start_time(file_contents) + # Return the 2nd column value of the first row + file_contents.first[1].to_f +end + +if __FILE__ == $0 + # Main script execution + if ARGV.size != 1 + puts "Usage: #{$PROGRAM_NAME} " + exit 1 + end + + kfn_file = ARGV[0] + + begin + bpm, start_time = process_kfn(kfn_file) + puts "BPM: #{bpm}" + puts "Start Time: #{start_time}" + rescue => e + puts "Error: #{e.message}" + end +end diff --git a/lambda/jamtrack-importer/readme.md b/lambda/jamtrack-importer/readme.md new file mode 100644 index 000000000..aacb9eadb --- /dev/null +++ b/lambda/jamtrack-importer/readme.md @@ -0,0 +1,6 @@ +Using this to create a static build of ffmpeg with lib-fdkaac available +https://github.com/zimbatm/ffmpeg-static + +# manually pushed a zip by cd'ing into assets, and pushing bin/ffmpeg, bin/oggenc, and bin/sox into s3 to be used as sam layer +s3 cp assets.zip s3://jamkazam-repo/lambda-assets/jamtrack-importer-assets.zip + diff --git a/lambda/jamtrack-importer/samconfig.toml b/lambda/jamtrack-importer/samconfig.toml new file mode 100644 index 000000000..c11195497 --- /dev/null +++ b/lambda/jamtrack-importer/samconfig.toml @@ -0,0 +1,10 @@ +version = 0.1 +[default.deploy.parameters] +stack_name = "jamtrack-importer-staging" +resolve_s3 = true +s3_prefix = "jamtrack-importer-staging" +region = "us-east-1" +confirm_changeset = true +capabilities = "CAPABILITY_IAM" +parameter_overrides = "Environment=\"dev\" TencyZipsBucket=\"jamkazam-tency-uploads-test\" TencyJamTracksBucket=\"jamkazam-tency-202410-test\" EfsId=\"fs-0c6e24466df585bff\" VpcId=\"vpc-040f8fef0c9700b58\" SubnetIds=\"subnet-0998ecced5ad2ed89\" SgIds=\"sg-02cc6ee5382e2c0ce,sg-0ff99640a2871ac4c\" MountPath=\"/lambda\" JamTrackContainerPath=\"gcr.io/tough-craft-276813/jamtrack-lambda:1.0.0\" DbHost=\"int.jamkazam.com\" DbUser=\"lambda\" DbPass=\"ct2Es6DsZDjuTyh9WHRFrn4mQfhh62P8\" DbName=\"jam\" AwsBucket=\"jamkazam-staging\" AwsBucketPublic=\"jamkazam-staging-public\"" +image_repositories = ["TencyUnzipFunction=727401853962.dkr.ecr.us-east-1.amazonaws.com/jamtrackimporterstaging1c2500bd/tencyunzipfunction48755338repo"] diff --git a/lambda/jamtrack-importer/scripts/build-and-push-sam b/lambda/jamtrack-importer/scripts/build-and-push-sam new file mode 100755 index 000000000..e9365feea --- /dev/null +++ b/lambda/jamtrack-importer/scripts/build-and-push-sam @@ -0,0 +1 @@ +scripts/build-container-image-sam && scripts/deploy-container-image 1.0.0 diff --git a/lambda/jamtrack-importer/scripts/build-container-image b/lambda/jamtrack-importer/scripts/build-container-image new file mode 100755 index 000000000..e730b359c --- /dev/null +++ b/lambda/jamtrack-importer/scripts/build-container-image @@ -0,0 +1,2 @@ +docker rmi $(docker images --filter=reference="*jamtrack-local:rapid-x86_64*" -q) +docker build --platform linux/amd64 -t jamtrack-local:1.0.0 . diff --git a/lambda/jamtrack-importer/scripts/build-container-image-sam b/lambda/jamtrack-importer/scripts/build-container-image-sam new file mode 100755 index 000000000..7fb136eb9 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/build-container-image-sam @@ -0,0 +1,2 @@ +docker rmi $(docker images --filter=reference="*jamtrack-lambda:rapid-x86_64*" -q) +docker build --platform linux/amd64 -t jamtrack-lambda:1.0.0 -f Dockerfile.sam . diff --git a/lambda/jamtrack-importer/scripts/check_commas.sh b/lambda/jamtrack-importer/scripts/check_commas.sh new file mode 100755 index 000000000..b6862c88d --- /dev/null +++ b/lambda/jamtrack-importer/scripts/check_commas.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# Input file +FILE=$1 + +# Check if the file is provided +if [ -z "$FILE" ]; then + echo "Usage: $0 " + exit 1 +fi + +# Check if the file exists +if [ ! -f "$FILE" ]; then + echo "Error: File '$FILE' not found." + exit 1 +fi + +# Find rows containing a comma and extract the first segment before '-' +while IFS= read -r line; do + if [[ $line == *,* ]]; then + # Extract the first segment before '-' + first_segment=$(echo "$line" | cut -d'-' -f1 | xargs) + echo "Line with comma: '$line' | First segment: '$first_segment'" + fi +done < "$FILE" + diff --git a/lambda/jamtrack-importer/scripts/clean-batch-fail-report.rb b/lambda/jamtrack-importer/scripts/clean-batch-fail-report.rb new file mode 100644 index 000000000..9f6f2faf9 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/clean-batch-fail-report.rb @@ -0,0 +1,42 @@ +require 'csv' +require 'optparse' + +def process_csv(input_file) + # Open the input file and process it line by line + CSV.foreach(input_file) do |row| + # Write only the first two columns to stdout + puts row[0..1].to_csv + end +end + +def main + options = {} + + # Define the command-line options + OptionParser.new do |opts| + opts.banner = "Usage: process_csv.rb -i INPUT_FILE" + + opts.on("-i", "--input INPUT_FILE", "Path to the input CSV file") do |input| + options[:input] = input + end + end.parse! + + # Check if the input file is provided + unless options[:input] + puts "Error: Input file is required." + puts "Usage: process_csv.rb -i INPUT_FILE" + exit 1 + end + + # Process the CSV file + begin + process_csv(options[:input]) + rescue Errno::ENOENT + STDERR.puts "Error: File '#{options[:input]}' not found." + exit 1 + end +end + +# Run the script +main if __FILE__ == $PROGRAM_NAME + diff --git a/lambda/jamtrack-importer/scripts/copy_local b/lambda/jamtrack-importer/scripts/copy_local new file mode 100755 index 000000000..a1a3958ee --- /dev/null +++ b/lambda/jamtrack-importer/scripts/copy_local @@ -0,0 +1,40 @@ +#!/bin/bash + +# Input Ruby file +INPUT_FILE="lambda_function.rb" +# Source directory where the files are located +SOURCE_DIR="../../ruby/lib" + +# Destination directory to copy the files +DEST_DIR="./lib" + + + +# Ensure the destination directory exists +mkdir -p "$DEST_DIR" + +# Parse the Ruby file +while IFS= read -r line; do + # Check if the line starts with `require "jam_ruby` + if [[ $line =~ ^require\ \"jam_ruby/(.*)\"$ ]]; then + # Extract the relative path from the require statement + RELATIVE_PATH=${BASH_REMATCH[1]} + + # Build the source and destination paths + SOURCE_FILE="$SOURCE_DIR/jam_ruby/$RELATIVE_PATH.rb" + DEST_FILE="$DEST_DIR/jam_ruby/$RELATIVE_PATH.rb" + + # Ensure the destination subdirectory exists + DEST_SUBDIR=$(dirname "$DEST_FILE") + mkdir -p "$DEST_SUBDIR" + + # Copy the file + if [ -f "$SOURCE_FILE" ]; then + cp "$SOURCE_FILE" "$DEST_FILE" + echo "Copied: $SOURCE_FILE -> $DEST_FILE" + else + echo "Warning: Source file not found: $SOURCE_FILE" + fi + fi +done < "$INPUT_FILE" + diff --git a/lambda/jamtrack-importer/scripts/create-job-test.sh b/lambda/jamtrack-importer/scripts/create-job-test.sh new file mode 100755 index 000000000..539a65724 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/create-job-test.sh @@ -0,0 +1,31 @@ +AWS_ACCOUNT_ID=727401853962 +#ROLE_NAME=jamtrack-processor-test +ROLE_NAME=JamKazamJamTracksBatchRole +REPORT_BUCKET=jamkazam-tency-202410-test +SOURCE_BUCKET=jamkazam-tency-uploads-test +LAMBDA_FUNCTION_ARN=arn:aws:lambda:us-east-1:727401853962:function:jamtrack-importer-dev-TencyUnzipFunction-EzAuWk2YP3Oj +#https://us-east-1.console.aws.amazon.com/s3/object/jamkazam-tency-uploads-test?region=us-east-1&bucketType=general&prefix=manifest.csv +MANIFEST_ETAG=f3c0008ddd2d6f292e7e44cd3e2cff1b +TOKEN=$(uuidgen) + +set -eu -o pipefail + +JOB_ID=$(aws s3control create-job \ + --account-id $AWS_ACCOUNT_ID \ + --operation '{"LambdaInvoke": {"FunctionArn": "'$LAMBDA_FUNCTION_ARN'"}}' \ + --manifest '{"Spec": {"Format": "S3BatchOperations_CSV_20180820", "Fields": ["Bucket", "Key"]}, "Location": {"ObjectArn": "arn:aws:s3:::'$SOURCE_BUCKET'/manifest.csv", "ETag": "'$MANIFEST_ETAG'"}}' \ + --report '{"Bucket": "arn:aws:s3:::'$REPORT_BUCKET'", "Prefix": "reports/", "Format": "Report_CSV_20180820", "Enabled": true, "ReportScope": "AllTasks"}' \ + --priority 42 \ + --role-arn arn:aws:iam::$AWS_ACCOUNT_ID:role/$ROLE_NAME \ + --description "Batch job to process zip files in S3 bucket" \ + --client-request-token "'$TOKEN'" \ + --region us-east-1 \ + --no-confirmation-required \ + --query "JobId" --output text) + +echo $JOB_ID + +echo "https://us-east-1.console.aws.amazon.com/s3/jobs/$JOB_ID?region=us-east-1" + +echo "Activated S3 Batch Operations Job with ID: $JOB_ID" + diff --git a/lambda/jamtrack-importer/scripts/create-job-unzip.sh b/lambda/jamtrack-importer/scripts/create-job-unzip.sh new file mode 100755 index 000000000..08e1eb379 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/create-job-unzip.sh @@ -0,0 +1,31 @@ +AWS_ACCOUNT_ID=727401853962 +#ROLE_NAME=jamtrack-processor-test +ROLE_NAME=JamKazamJamTracksBatchRole +REPORT_BUCKET=jamkazam-tency-202410 +SOURCE_BUCKET=jamkazam-tency-202410 +LAMBDA_FUNCTION_ARN=arn:aws:lambda:us-east-1:727401853962:function:jamtrack-importer-staging-TencyUnzipFunction-HSAQnacd11Sx +#https://us-east-1.console.aws.amazon.com/s3/object/jamkazam-tency-uploads-test?region=us-east-1&bucketType=general&prefix=manifest.csv +MANIFEST_ETAG=1f491116e97853094f14d22d7c110c49 +TOKEN=$(uuidgen) + +set -eu -o pipefail + +JOB_ID=$(aws s3control create-job \ + --account-id $AWS_ACCOUNT_ID \ + --operation '{"LambdaInvoke": {"FunctionArn": "'$LAMBDA_FUNCTION_ARN'", "InvocationSchemaVersion" : "2.0", "UserArguments" : {"mode" : "unzip"}}}' \ + --manifest '{"Spec": {"Format": "S3BatchOperations_CSV_20180820", "Fields": ["Bucket", "Key"]}, "Location": {"ObjectArn": "arn:aws:s3:::'$SOURCE_BUCKET'/manifests/unzip/single-test.csv", "ETag": "'$MANIFEST_ETAG'"}}' \ + --report '{"Bucket": "arn:aws:s3:::'$REPORT_BUCKET'", "Prefix": "reports/", "Format": "Report_CSV_20180820", "Enabled": true, "ReportScope": "AllTasks"}' \ + --priority 42 \ + --role-arn arn:aws:iam::$AWS_ACCOUNT_ID:role/$ROLE_NAME \ + --description "Batch job to process zip files in S3 bucket" \ + --client-request-token "'$TOKEN'" \ + --region us-east-1 \ + --no-confirmation-required \ + --query "JobId" --output text) + +echo $JOB_ID + +echo "https://us-east-1.console.aws.amazon.com/s3/jobs/$JOB_ID?region=us-east-1" + +echo "Activated S3 Batch Operations Job with ID: $JOB_ID" + diff --git a/lambda/jamtrack-importer/scripts/create-job.sh b/lambda/jamtrack-importer/scripts/create-job.sh new file mode 100755 index 000000000..1119048d2 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/create-job.sh @@ -0,0 +1,31 @@ +AWS_ACCOUNT_ID=727401853962 +#ROLE_NAME=jamtrack-processor-test +ROLE_NAME=JamKazamJamTracksBatchRole +REPORT_BUCKET=jamkazam-tency-202410-test +SOURCE_BUCKET=jamkazam-tency-uploads-test +#LAMBDA_FUNCTION_ARN=arn:aws:lambda:us-east-1:727401853962:function:jamtrack-processing-ZipExtractorFunction-thM3NERnsIBg +#https://us-east-1.console.aws.amazon.com/s3/object/jamkazam-tency-uploads-test?region=us-east-1&bucketType=general&prefix=manifest.csv +MANIFEST_ETAG=da094abf7ed6cbd4ad41273c328d72b8 +TOKEN=$(uuidgen) + +set -eu -o pipefail + +JOB_ID=$(aws s3control create-job \ + --account-id $AWS_ACCOUNT_ID \ + --operation '{"LambdaInvoke": {"FunctionArn": "'$LAMBDA_FUNCTION_ARN'"}}' \ + --manifest '{"Spec": {"Format": "S3BatchOperations_CSV_20180820", "Fields": ["Bucket", "Key"]}, "Location": {"ObjectArn": "arn:aws:s3:::'$SOURCE_BUCKET'/manifest-full.csv", "ETag": "'$MANIFEST_ETAG'"}}' \ + --report '{"Bucket": "arn:aws:s3:::'$REPORT_BUCKET'", "Prefix": "reports/", "Format": "Report_CSV_20180820", "Enabled": true, "ReportScope": "AllTasks"}' \ + --priority 42 \ + --role-arn arn:aws:iam::$AWS_ACCOUNT_ID:role/$ROLE_NAME \ + --description "Batch job to process zip files in S3 bucket" \ + --client-request-token "'$TOKEN'" \ + --region us-east-1 \ + --no-confirmation-required \ + --query "JobId" --output text) + +echo $JOB_ID + +echo "https://us-east-1.console.aws.amazon.com/s3/jobs/$JOB_ID?region=us-east-1" + +echo "Activated S3 Batch Operations Job with ID: $JOB_ID" + diff --git a/lambda/jamtrack-importer/scripts/deploy-container-image b/lambda/jamtrack-importer/scripts/deploy-container-image new file mode 100755 index 000000000..1d0f6538d --- /dev/null +++ b/lambda/jamtrack-importer/scripts/deploy-container-image @@ -0,0 +1,17 @@ + +ACCOUNT_ID=727401853962 +REGION=us-east-1 + +VERSION="$1" + +if [ -z "$VERSION" ]; then + echo "Must specify version. Probably 1.0.0" + exit 1 +fi + +docker tag "localhost/jamtrack-lambda:1.0.0" "$ACCOUNT_ID.dkr.ecr.$REGION.amazonaws.com/jamkazam/jamtrack-lambda:${VERSION}" + + +aws ecr get-login-password --region $REGION | docker login --username AWS --password-stdin $ACCOUNT_ID.dkr.ecr.$REGION.amazonaws.com +docker push $ACCOUNT_ID.dkr.ecr.$REGION.amazonaws.com/jamkazam/jamtrack-lambda:${VERSION} +aws lambda update-function-code --function-name jamtrack-importer-staging-TencyUnzipFunction-HSAQnacd11Sx --image-uri 727401853962.dkr.ecr.us-east-1.amazonaws.com/jamkazam/jamtrack-lambda:1.0.0 diff --git a/lambda/jamtrack-importer/scripts/deploy-staging-2 b/lambda/jamtrack-importer/scripts/deploy-staging-2 new file mode 100755 index 000000000..efcb1fc97 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/deploy-staging-2 @@ -0,0 +1,5 @@ +#!/bin/bash + +sam build && sam deploy --template-file template.yaml --stack-name jamtrack-importer-staging \ + --parameter-overrides $(cat env/dev-sam.json | jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]') \ + --capabilities CAPABILITY_IAM --force-upload diff --git a/lambda/jamtrack-importer/scripts/deploy-test b/lambda/jamtrack-importer/scripts/deploy-test new file mode 100755 index 000000000..ee6c61753 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/deploy-test @@ -0,0 +1,5 @@ +#!/bin/bash + +sam build && sam deploy --template-file template.yaml --stack-name jamtrack-importer-dev \ + --parameter-overrides $(cat env/dev.json | jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]') \ + --capabilities CAPABILITY_IAM diff --git a/lambda/jamtrack-importer/scripts/event-test-import.json b/lambda/jamtrack-importer/scripts/event-test-import.json new file mode 100644 index 000000000..31d4bbc17 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/event-test-import.json @@ -0,0 +1,19 @@ +{ + "invocationSchemaVersion": "2.0", + "invocationId": "invocation-id-example", + "job": { + "id": "job-id-example", + "userArguments" : { + "mode" : "create-jamtrack" + } + }, + "tasks": [ + { + "taskId": "task-0id-example-1", + "s3BucketName": "jamkazam-tency-202410-test", + "s3Key": "mapped/Ace of Base - The Sign - 10111/manifest.txt", + "s3VersionId": "example-version-id-1" + } + ] +} + diff --git a/lambda/jamtrack-importer/scripts/event-test.json b/lambda/jamtrack-importer/scripts/event-test.json new file mode 100644 index 000000000..f0e0ee03e --- /dev/null +++ b/lambda/jamtrack-importer/scripts/event-test.json @@ -0,0 +1,19 @@ +{ + "invocationSchemaVersion": "2.0", + "invocationId": "invocation-id-example", + "job": { + "id": "job-id-example", + "userArguments" : { + "mode" : "unzip" + } + }, + "tasks": [ + { + "taskId": "task-0id-example-1", + "s3BucketName": "jamkazam-tency-202410-test", + "s3Key": "manifests/ace-of-base_the-sign_10111/manifest.txt", + "s3VersionId": "example-version-id-1" + } + ] +} + diff --git a/lambda/jamtrack-importer/scripts/local-run b/lambda/jamtrack-importer/scripts/local-run new file mode 100755 index 000000000..84e611afd --- /dev/null +++ b/lambda/jamtrack-importer/scripts/local-run @@ -0,0 +1,4 @@ +#sam build --use-container --skip-pull-image && \ +sam build --use-container && \ +sam local invoke --event scripts/event-test.json --debug \ + --parameter-overrides $(cat env/local.json | jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]') diff --git a/lambda/jamtrack-importer/scripts/local-run-import b/lambda/jamtrack-importer/scripts/local-run-import new file mode 100755 index 000000000..b14e21f3f --- /dev/null +++ b/lambda/jamtrack-importer/scripts/local-run-import @@ -0,0 +1,3 @@ +sam build --use-container --skip-pull-image && \ + sam local invoke --event scripts/event-test-import.json --debug --docker-network host --add-host example.com:192.168.4.235 \ + --parameter-overrides $(cat env/local.json | jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]') diff --git a/lambda/jamtrack-importer/scripts/purge-jamtrack-container b/lambda/jamtrack-importer/scripts/purge-jamtrack-container new file mode 100755 index 000000000..ac2b1d2c4 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/purge-jamtrack-container @@ -0,0 +1,2 @@ +docker rmi localhost/jamtrack-lambda:1.0.0 +docker rmi localhost/jamtrack-lambda:latest diff --git a/lambda/jamtrack-importer/scripts/run-local-job.sh b/lambda/jamtrack-importer/scripts/run-local-job.sh new file mode 100755 index 000000000..a173edcb4 --- /dev/null +++ b/lambda/jamtrack-importer/scripts/run-local-job.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# Usage: ./run_batch_job.sh docker_image command [additional_args...] + +# Check for at least two arguments +if [ "$#" -lt 2 ]; then + echo "Usage: $0 docker_image command [additional_args...]" + exit 1 +fi + +DOCKER_IMAGE=$1 # The Docker image to use +COMMAND=$2 # The command to run inside the container +shift 2 # Shift the arguments to access additional arguments + +# Pass remaining arguments to the Docker container +echo "Running Docker container with image: $DOCKER_IMAGE" +echo "Command: $COMMAND" +echo "Arguments: $@" + +OUTPUT=$(docker run --rm "$DOCKER_IMAGE" "$COMMAND" "$@") + +# Check the result +if [ $? -ne 0 ]; then + echo "Error running Docker container." + exit 1 +fi + +echo "Command output:" +echo "$OUTPUT" + +echo "Job completed successfully." + diff --git a/lambda/jamtrack-importer/scripts/validate-mapping.py b/lambda/jamtrack-importer/scripts/validate-mapping.py new file mode 100644 index 000000000..a6d57796c --- /dev/null +++ b/lambda/jamtrack-importer/scripts/validate-mapping.py @@ -0,0 +1,27 @@ +import csv +import sys + +# Define the expected number of columns +EXPECTED_COLUMNS = 5 + +# Input CSV file +if len(sys.argv) != 2: + print("Usage: python validate_csv.py ") + sys.exit(1) + +CSV_FILE = sys.argv[1] + +# Check if the file exists +try: + with open(CSV_FILE, 'r') as file: + reader = csv.reader(file) + for line_number, row in enumerate(reader, start=1): + if len(row) != EXPECTED_COLUMNS: + print(f"Error: Line {line_number} has {len(row)} columns (expected {EXPECTED_COLUMNS}).") + sys.exit(1) +except FileNotFoundError: + print(f"Error: File '{CSV_FILE}' not found.") + sys.exit(1) + +print(f"Validation passed: All rows have {EXPECTED_COLUMNS} columns.") + diff --git a/lambda/jamtrack-importer/scripts/validate-mappings.sh b/lambda/jamtrack-importer/scripts/validate-mappings.sh new file mode 100755 index 000000000..691e91fed --- /dev/null +++ b/lambda/jamtrack-importer/scripts/validate-mappings.sh @@ -0,0 +1,37 @@ +#!/bin/bash + +# Define the expected number of columns +EXPECTED_COLUMNS=5 + +# Input CSV file +CSV_FILE=$1 + +# Check if the file is provided +if [ -z "$CSV_FILE" ]; then + echo "Usage: $0 " + exit 1 +fi + +# Check if the file exists +if [ ! -f "$CSV_FILE" ]; then + echo "Error: File '$CSV_FILE' not found." + exit 1 +fi + +# Validate each row in the CSV +line_number=0 +while IFS= read -r line; do + line_number=$((line_number + 1)) + + # Use a CSV parser to correctly handle quoted fields + column_count=$(echo "$line" | awk -v FPAT='([^,]*|"[^"]*")' '{print NF}') + + if [ "$column_count" -ne "$EXPECTED_COLUMNS" ]; then + echo "Error: Line $line_number has $column_count columns (expected $EXPECTED_COLUMNS)." + exit 1 + fi + +done < "$CSV_FILE" + +echo "Validation passed: All rows have $EXPECTED_COLUMNS columns." + diff --git a/lambda/jamtrack-importer/shared/.gitignore b/lambda/jamtrack-importer/shared/.gitignore new file mode 100644 index 000000000..23ea20a4e --- /dev/null +++ b/lambda/jamtrack-importer/shared/.gitignore @@ -0,0 +1,3 @@ +target +BUILD_NUMBER +.idea diff --git a/lambda/jamtrack-importer/shared/Gemfile b/lambda/jamtrack-importer/shared/Gemfile new file mode 100644 index 000000000..1fff5aa32 --- /dev/null +++ b/lambda/jamtrack-importer/shared/Gemfile @@ -0,0 +1,4 @@ +source "https://rubygems.org" + +gem "json" +gem "aws-sdk-s3" diff --git a/lambda/jamtrack-importer/shared/jmep/.gitignore b/lambda/jamtrack-importer/shared/jmep/.gitignore new file mode 100644 index 000000000..23ea20a4e --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/.gitignore @@ -0,0 +1,3 @@ +target +BUILD_NUMBER +.idea diff --git a/lambda/jamtrack-importer/shared/jmep/__pycache__/jparser.cpython-313.pyc b/lambda/jamtrack-importer/shared/jmep/__pycache__/jparser.cpython-313.pyc new file mode 100644 index 000000000..002ec6e53 Binary files /dev/null and b/lambda/jamtrack-importer/shared/jmep/__pycache__/jparser.cpython-313.pyc differ diff --git a/lambda/jamtrack-importer/shared/jmep/__pycache__/keywords.cpython-313.pyc b/lambda/jamtrack-importer/shared/jmep/__pycache__/keywords.cpython-313.pyc new file mode 100644 index 000000000..f63fb2ac5 Binary files /dev/null and b/lambda/jamtrack-importer/shared/jmep/__pycache__/keywords.cpython-313.pyc differ diff --git a/lambda/jamtrack-importer/shared/jmep/__pycache__/metronome.cpython-313.pyc b/lambda/jamtrack-importer/shared/jmep/__pycache__/metronome.cpython-313.pyc new file mode 100644 index 000000000..e3419af12 Binary files /dev/null and b/lambda/jamtrack-importer/shared/jmep/__pycache__/metronome.cpython-313.pyc differ diff --git a/lambda/jamtrack-importer/shared/jmep/__pycache__/timestamp.cpython-313.pyc b/lambda/jamtrack-importer/shared/jmep/__pycache__/timestamp.cpython-313.pyc new file mode 100644 index 000000000..4050ec406 Binary files /dev/null and b/lambda/jamtrack-importer/shared/jmep/__pycache__/timestamp.cpython-313.pyc differ diff --git a/lambda/jamtrack-importer/shared/jmep/jmep.json b/lambda/jamtrack-importer/shared/jmep/jmep.json new file mode 100644 index 000000000..9407e6b34 --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/jmep.json @@ -0,0 +1 @@ +{"header": {"version": 1, "copyright": "JamKazam 2015"}, "Events": [{"metronome": [{"ts": "-0:00:04:508", "action": "start", "bpm": 97.0, "vol": 100, "mode": "stream", "name": "beep", "meter": 1, "sound": "stream", "ticks": 8.0}, {"ts": "0:00:00:440", "action": "stop", "ticks": 8.0}]}, {"count_down": [{"ts": "-0:00:10:000", "duration": -10.0, "count": -10.0}]}, {"track_play": [{"ts": "0:00:00:000", "tracks": ["All"]}]}]} \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/jmep/jmep.txt b/lambda/jamtrack-importer/shared/jmep/jmep.txt new file mode 100644 index 000000000..8d781472a --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/jmep.txt @@ -0,0 +1,5 @@ +# created via code using bpm/silence detection (bpm:97.154 offset:0.08 determined_start:0.3605890000000045) +# authorative data bpm:97.0 authorative_start:0.36) +prelude@10.0 #number of seconds before music starts +metro_fin@00:00:00:440 bpm=97.0, ticks=8, pmode=stream, name=Beep, play=mono + diff --git a/lambda/jamtrack-importer/shared/jmep/jmepgen.py b/lambda/jamtrack-importer/shared/jmep/jmepgen.py new file mode 100644 index 000000000..cea0b0fba --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/jmepgen.py @@ -0,0 +1,51 @@ +import json +from pprint import pprint +import random +import sys, getopt +import base64 +import tempfile +import argparse +from types import * +import unicodedata +import jparser + +def process(argv): + #print argv + global parser + parser = argparse.ArgumentParser( + description='JamTrack Meta Processing Tool', + epilog="Note: ") + + parser.add_argument("-D", "--verbosity", + help="increase output verbosity", + action="store_true") + + parser.add_argument("-i", "--ifile",metavar='JmepScript', type=str, + help="The input JMEP script file (.jscr)",required=True,) + + parser.add_argument("-o", "--ofile", metavar='Jmepfile', type=str, + help="The output file (.jmep)",required=True,) + + + + #parser.print_help() + args = parser.parse_args(argv) + #print args + if args.verbosity: + jparser.DEBUG_ENABLE = 1 + + #print args + jp = jparser.JmepParser(args.ifile,0,args.ofile) + if jp.processFile(): + jp.generateJson() + else: + sys.exit(1) + + + #create json struct from info + + + +if __name__ == "__main__": + random.seed() + process(sys.argv[1:]) diff --git a/lambda/jamtrack-importer/shared/jmep/jparser.py b/lambda/jamtrack-importer/shared/jmep/jparser.py new file mode 100644 index 000000000..0168ea0af --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/jparser.py @@ -0,0 +1,370 @@ +import json +from pprint import pprint +import sys +import os +import keywords +import metronome +import math +from timestamp import formatTimeStamp + +JMEP_START_TIMESTAMP = (-100000) +DEBUG_ENABLE = 0 + +def is_array(var): + return isinstance(var, (list, tuple)) + +class JmepParser: + outFile='' + inFile='' + ts = 0.0 + lineNumber = 0 + header = {} + header['version'] = 1 + header['copyright'] = "JamKazam 2015" + + metroList = [] + preludeList = [] + playList=[] + syncList = [] + + def __init__(self, fileName, ts=JMEP_START_TIMESTAMP, outKeyFile='', lineNumber=0): + self.inFile = fileName + self.outFile = outKeyFile + self.ts = ts + self.lineNumber = lineNumber + #self.processFile() + + def is_number(self,s): + try: + float(s) + return True + except ValueError: + return False + + def ValidTsFormat(self,t): + sgn = 0 + if t[0] == '+' or t[0] == '-': + #is forward relative to current time + if t[0] == '+': + sgn = 1 + else: + sgn = -1 + + t = t[1:] + + if self.is_number(t): + if sgn: + tVal = float(t) * sgn + self.ts + return (True, tVal) + else: + tVal = float(t) + return (True, tVal) + + #check if h:m:s:ms + tt = t.split(':') + if len(tt) != 4: + print("Unknown timestamp format at ",self.inFile,":",self.lineNumber) + return (False,0) + + #covert to absolute number of seconds + tv = float(tt[0])*3600 + float(tt[1])*60 + float(tt[2]) + float(tt[3])/1000.0 + if sgn: + tVal = tv * sgn + self.ts + return (True, tVal) + else: + tVal = tv + return (True, tVal) + + def extractNumval(self,nameVal,lineNumer): + try: + val = float(nameVal[1]) + return (True,val) + except: + print("Invalid name value format '",nameVal,"' at ",self.inFile,":",lineNumer) + return (False,0) + + def extraStringVal(self,nameVal,validator,lineNumber): + if not is_array(nameVal): + print("Invalid value in format '",nameVal,"' at ",self.inFile,":",lineNumber) + return (False,'') + str = nameVal[1].lower().strip() + if validator: + if str not in validator: + print("Invalid value in format '",nameVal,"' at ",self.inFile,":",lineNumber) + return (False,'') + return (True,str) + + def processTimestamp(self,kw): + mylist = kw.split('@') + t = mylist[1] + (val,t) = self.ValidTsFormat(t) + return (val,t) + + def metronome(self, val, bStart, arg, lineNumber): + (val,t) = self.processTimestamp(val) + if not val: + return False + + + ticks = 0 + bpm = 0 + duration = 0 + vol = 100 + meter = 1 + name = 'default' + pmode='stream' + play='mono' + #create tuples of (name,values) + + valid_names = ['default','sine', 'click','kick', 'beep','snare'] + valid_play = ['mono','left','right'] + valid_pmode = ['stream','distributed'] + + args = arg.split(',') + for nameVal in args: + if '=' not in nameVal: + print("Invalid name value format '",nameVal,"' at ",self.inFile,":",lineNumber) + return False + nv = nameVal.split("=") + + n = nv[0].lower().strip() + b = True + if n == 'bpm': + (b,bpm) = self.extractNumval(nv,lineNumber) + elif n == 'ticks': + (b,ticks) = self.extractNumval(nv,lineNumber) + elif n == 'vol': + (b,vol) = self.extractNumval(nv,lineNumber) + elif n == 'len': + (b,duration) = self.extractNumval(nv,lineNumber) + elif n == 'pmode': + (b,pmode) = self.extraStringVal(nv,valid_pmode,lineNumber) + elif n == 'name': + (b,name) = self.extraStringVal(nv,valid_names,lineNumber) + elif n == 'play': + (b,play) = self.extraStringVal(nv,valid_play,lineNumber) + else: + print("Invalid name value format '",nameVal,"' at ",self.inFile,":",lineNumber) + return False + #check if argument was not a number + if not b: + return False + + if duration and ticks: + print("Cannot specify both len and ticks '",self.inFile,":",lineNumber) + return False + + if not bpm: + print("BPM value must be specified '",self.inFile,":",lineNumber) + return False + + if ticks: + duration = ticks*60/bpm + + tStart = 0 + tStop = 0 + + if bStart: + tStart = t + tStop = t + duration + else: + tStart = t - duration + tStop = t + + mn = metronome.Metronome(ticks, bpm, tStart, tStop, vol, pmode, name,play, meter) + + #check for time overlap + for om in self.metroList: + if mn.doesTimeOverlap(om): + print("Metronome time range overlap '",nameVal,"' at ",self.inFile,":",lineNumber) + return False + + self.metroList.append(mn) + #newlist = sorted(self.metroList, key=lambda x: x.startTs, reverse=True) + return True + + def prelude(self, val, arg, lineNumber): + (val,t) = self.processTimestamp(val) + if not val: + return False + dt = {} + t = abs(t)* -1.0 + dt['ts']= formatTimeStamp(t) + dt['duration'] = t + dt['count'] = t + self.preludeList = [] + self.preludeList.append(dt) + return True + + def play(self, val, arg, lineNumber): + (val,t) = self.processTimestamp(val) + if not val: + return False + if t: + print("Play time must be 0 '",val,"' at ",self.inFile,":",lineNumber) + return False + + pd = {} + pd['ts']=formatTimeStamp(0) + pdTrack = ['All'] + pd['tracks']=pdTrack + self.playList = pd + return True + + def syncTs(self, val, arg, lineNumber): + (val,t) = self.processTimestamp(val) + if not val: + return False + + pd = {} + pd['ts'] = formatTimeStamp(t) + self.syncList.append(pd) + return True + + def includeFile(self,val, arg, lineNumber): + (val,t) = self.processTimestamp(val) + if not val: + return False + + p = JmepParser(arg,t,lineNumber) + if not p.processFile(): + print("Error processing include file'",val,"' at ",self.inFile,":",lineNumber) + + #TODO + #merge the objects + return + + def setTimeStamp(self, val,arg, lineNumber): + (val,t) = self.processTimestamp(val) + if not val: + return False + self.ts = t + return True + + def author(self, val, arg, lineNumber): + args = arg.split(',') + for nameVal in args: + if '=' not in nameVal: + print("Invalid name value format '",nameVal,"' at ",self.inFile,":",lineNumber) + return False + nv = nameVal.split("=") + + n = nv[0].lower().strip() + if n == 'email': + self.header['email'] = nv[1].strip() + elif n == 'name': + self.header['creator'] = nv[1].strip() + else: + print("Unknown name value format '",nameVal,"' at ",self.inFile,":",lineNumber) + return True + + def generateJson(self): + if not self.playList: + #load default play all + pd = {} + pd['ts']=formatTimeStamp(0) + pdTrack = ['All'] + pd['tracks']=pdTrack + self.playList = pd + + data = {} + eventData = {} + data['header']=self.header + eventList = [] + if self.metroList: + newlist = sorted(self.metroList, key=lambda x: x.startTs, reverse=False) + md = [] + for x in newlist: + y = x.generateStart() + md.append(y) + y = x.generateStop() + md.append(y) + + mt={'metronome': md} + eventList.append(mt) + + #eventData['metronome'] = md + #print md + if self.preludeList: + mt={'count_down': self.preludeList} + eventList.append(mt) + #eventData['count_down'] = self.preludeList + if self.playList: + mt={'track_play': [self.playList]} + eventList.append(mt) + #eventData['track_play']= self.playList + if self.syncList: + mt={'sync': self.syncList} + eventList.append(mt) + #eventData['sync'] = self.syncList + + #make events into list + #l = [] + #l.append(eventData) + data['Events'] = eventList + + jdata = json.dumps(data) + + pprint(jdata) + + fo = open(self.outFile, 'w') + fo.write(jdata) + fo.close() + + def processLine(self, str, lineNum): + # remove comment part from string + if '#' in str: + mylist = str.split('#') + str = mylist[0].strip(); + #split string into name value pairs + str.strip() + #print str + if not str: + #empty string + return True + #pick of the first word - this is the key + keyword = str.partition(' ')[0] + #print 'keyword=',keyword + + args = str.replace(keyword,'') + keyword = keyword.lower() + b = False + if keywords.METRO_START in keyword: + b = self.metronome(keyword,True,args,lineNum) + elif keywords.METRO_FIN in keyword: + b= self.metronome(keyword,False,args,lineNum) + elif keywords.PRELUDE in keyword: + b = self.prelude(keyword,args,lineNum) + elif keywords.PLAY_FILE in keyword: + return self.play(keyword,args,lineNum) + elif keywords.EXPLICIT_TIMESTAMP in keyword: + b =self.setTimeStamp(keyword,args,lineNum) + elif keywords.AUTHOR in keyword: + b = self.author(keyword,args,lineNum) + elif keywords.EXPLICIT_SYNC in keyword: + b = self.syncTs(keyword,args,lineNum) + elif keywords.INCLUDE_FILE in keyword: + b = self.includeFile(keyword,args,lineNum) + else: + print("Unknown keyword '",keyword,"' at ",self.inFile,":",lineNum) + return False + return b + + def processFile(self): + content = [] + with open(self.inFile ) as f: + content = f.readlines() + content = [x.strip('\n') for x in content] + + #now remove comments portion from lines + linenum = 1 + for x in content: + #print x + self.lineNumber = linenum + if DEBUG_ENABLE: + print(linenum, x) + if not self.processLine(x,linenum): + return False + linenum = linenum + 1 + + return True diff --git a/lambda/jamtrack-importer/shared/jmep/keywords.py b/lambda/jamtrack-importer/shared/jmep/keywords.py new file mode 100644 index 000000000..14d9def32 --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/keywords.py @@ -0,0 +1,8 @@ +METRO_START = 'metro_start' +METRO_FIN = 'metro_fin' +EXPLICIT_TIMESTAMP = 'ts' +AUTHOR ='author' +PRELUDE = 'prelude' +INCLUDE_FILE = 'include' +PLAY_FILE = 'play' +EXPLICIT_SYNC = 'sync' \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/jmep/metronome.py b/lambda/jamtrack-importer/shared/jmep/metronome.py new file mode 100644 index 000000000..42b23caba --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/metronome.py @@ -0,0 +1,53 @@ +import math +from timestamp import formatTimeStamp + +class Metronome: + bpm = 0 + volume = 0 + meter=1 + name='' + play='' + pmode ='' + startTs =0 + stopTs = 0 + ticks = 0 + + def __init__(self, ticks, bpm, tStart, tStop, vol, pmode, name="default",play='mono', meter = 1): + self.ticks = ticks + self.bpm = bpm + self.startTs = tStart + self.stopTs = tStop + self.volume = vol + self.meter = meter + self.pmode = pmode + self.name = name + self.play = play + + def doesTimeOverlap(self, other): + if(self.startTs < other.startTs): + return self.stopTs > other.startTs + return other.stopTs > self.startTs + + def generateStart(self): + dt={} + dt['ts'] = formatTimeStamp(self.startTs) + dt['action']='start' + dt['bpm'] = self.bpm + dt['vol'] = self.volume + dt['mode'] = self.pmode + dt['name'] = self.name + dt['meter'] = self.meter + dt['sound'] = self.pmode + dt['ticks'] = self.ticks + return dt + + def generateStop(self): + dt={} + dt['ts'] = formatTimeStamp(self.stopTs) + dt['action']='stop' + dt['ticks'] = self.ticks + return dt + + def setMeter(self,meter): + self.meter = meter + diff --git a/lambda/jamtrack-importer/shared/jmep/test.jmep b/lambda/jamtrack-importer/shared/jmep/test.jmep new file mode 100644 index 000000000..af2be0e5a --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/test.jmep @@ -0,0 +1 @@ +{"header": {"version": 1, "email": "ant@jamkazam.com", "copyright": "JamKazam 2015", "creator": "\"Anthony RockStar\""}, "Events": [{"metronome": [{"sound": "stream", "name": "click", "vol": 100, "bpm": 99.0, "ts": "-0:00:02:424", "meter": 1, "mode": "stream", "action": "start"}, {"action": "stop", "ts": "0:00:00:000"}, {"sound": "stream", "name": "default", "vol": 100, "bpm": 130.0, "ts": "0:01:00:003", "meter": 1, "mode": "stream", "action": "start"}, {"action": "stop", "ts": "0:01:02:003"}, {"sound": "stream", "name": "default", "vol": 100, "bpm": 160.0, "ts": "0:13:18:500", "meter": 1, "mode": "stream", "action": "start"}, {"action": "stop", "ts": "0:13:20:000"}, {"sound": "stream", "name": "default", "vol": 100, "bpm": 150.0, "ts": "0:17:30:002", "meter": 1, "mode": "stream", "action": "start"}, {"action": "stop", "ts": "0:17:31:643"}]}, {"count_down": [{"duration": -7.0, "count": -7.0, "ts": "-0:00:07:000"}]}, {"track_play": [{"tracks": ["All"], "ts": "0:00:00:000"}]}, {"sync": [{"ts": "-0:00:07:000"}, {"ts": "0:00:00:000"}]}]} \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/jmep/test.jscr b/lambda/jamtrack-importer/shared/jmep/test.jscr new file mode 100644 index 000000000..57dc63127 --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/test.jscr @@ -0,0 +1,11 @@ +sync@-7 #optional +author name = "Anthony RockStar", email=ant@jamkazam.com +prelude@7.0 #number of seconds before music starts +play@0 all +metro_fin@0 bpm=99 , ticks= 4, pmode=stream , name=click, play=left # finish playing at track timestamp +#include@1000 "other file.gmep" #include a file at particular timestamp +sync@0 #optional +metro_start@0:1:0:3 bpm=130, len = 2.0 , pmode=stream # start time track play timestamp. Play for 2 secs +ts@1000 #set the media timestamp explicitly +metro_start@+0:0:50:3 bpm=150, ticks = 4.1 , pmode=stream # start metronome at time relative to last explicit ts +metro_fin@-200 bpm=160 ,ticks= 4 , pmode=stream # finish playing at track relative to last explicit timestamp \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/jmep/test2.jmep b/lambda/jamtrack-importer/shared/jmep/test2.jmep new file mode 100644 index 000000000..bb071067a --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/test2.jmep @@ -0,0 +1 @@ +{"header": {"version": 1, "email": "ant@jamkazam.com", "copyright": "JamKazam 2015", "creator": "\"Anthony RockStar\""}, "Events": [{"metronome": [{"sound": "stream", "name": "beep", "vol": 100, "bpm": 91.0, "ts": "-0:00:02:637", "meter": 1, "mode": "stream", "action": "start"}, {"action": "stop", "ts": "0:00:00:000"}]}, {"count_down": [{"duration": -10.0, "count": -10.0, "ts": "-0:00:10:000"}]}, {"track_play": [{"tracks": ["All"], "ts": "0:00:00:000"}]}]} \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/jmep/test2.jscr b/lambda/jamtrack-importer/shared/jmep/test2.jscr new file mode 100644 index 000000000..49c61142e --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/test2.jscr @@ -0,0 +1,4 @@ +author name = "Anthony RockStar", email=ant@jamkazam.com +prelude@10.0 #number of seconds before music starts +play@0 all +metro_fin@0 bpm=91 , ticks= 4, pmode=stream , name=Beep, play=mono diff --git a/lambda/jamtrack-importer/shared/jmep/timestamp.py b/lambda/jamtrack-importer/shared/jmep/timestamp.py new file mode 100644 index 000000000..5cc3b3bef --- /dev/null +++ b/lambda/jamtrack-importer/shared/jmep/timestamp.py @@ -0,0 +1,16 @@ +import math +__author__ = 'pwalker' + +def formatTimeStamp(sec): + c='' + if sec < 0: + c = '-' + sec = abs(sec) + milliseconds = (sec - math.floor(sec))*1000 + m,s=divmod(sec,60) + h,m=divmod(m,60) + if c : + str = "-%i:%02i:%02i:%03i" % (h, m, s,milliseconds) + return str + str = "%i:%02i:%02i:%03i" % (h, m, s,milliseconds) + return str diff --git a/lambda/jamtrack-importer/shared/lib/app_config.rb b/lambda/jamtrack-importer/shared/lib/app_config.rb new file mode 100644 index 000000000..2932696ce --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/app_config.rb @@ -0,0 +1,55 @@ +def app_config + klass = Class.new do + def aws_bucket + if ENV["AWS_BUCKET"].nil? + raise "set AWS_BUCKET env var" + end + ENV["AWS_BUCKET"] + end + + def aws_access_key_id + if ENV["AWS_ACCESS_KEY_ID"].nil? + raise "set AWS_ACCESS_KEY_ID env var" + end + ENV["AWS_ACCESS_KEY_ID"] + end + + def aws_secret_access_key + if ENV["AWS_SECRET_ACCESS_KEY"].nil? + raise "set AWS_SECRET_ACCESS_KEY env var" + end + ENV["AWS_SECRET_ACCESS_KEY"] + end + + def aws_bucket_public + if ENV["AWS_BUCKET_PUBLIC"].nil? + raise "set AWS_BUCKET_PUBLIC env var" + end + ENV["AWS_BUCKET_PUBLIC"] + end + + def ffmpeg_path + if ENV["FFMPEG_PATH"].nil? + raise "set FFMPEG_PATH env var" + end + ENV["FFMPEG_PATH"] + end + + def ffmpeg_path_mp3 + if ENV["FFMPEG_PATH_MP3"].nil? + raise "set FFMPEG_PATH_MP3 env var" + end + ENV["FFMPEG_PATH_MP3"] + end + + def jmep_dir + if ENV["JMEP_DIR"].nil? + raise "set JMEP_DIR env var" + end + ENV["JMEP_DIR"] + end + end + + klass.new +end + diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/jmep_manager.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/jmep_manager.rb new file mode 100644 index 000000000..a4d0215bc --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/jmep_manager.rb @@ -0,0 +1,55 @@ +require 'json' +require 'tempfile' +require 'open3' +require 'fileutils' +require 'open-uri' + +module JamRuby + + # Interact with external python tools to create jmep json + class JmepManager + + @@log = Logging.logger[JmepManager] + + class << self + + def execute(jmep_text) + + json = nil + + if jmep_text.blank? + return nil + end + + py_root = APP_CONFIG.jmep_dir + Dir.mktmpdir do |tmp_dir| + + output_json = File.join(tmp_dir, "jmep.json") + input_text = File.join(tmp_dir, "jmep.txt") + + # put JMEP text into input file + File.open(input_text, 'w') { |file| file.write(jmep_text) } + + py_file = File.join(py_root, "jmepgen.py") + @@log.info "Executing python source in #{py_file}, outputting to #{output_json})" + + # From http://stackoverflow.com/questions/690151/getting-output-of-system-calls-in-ruby/5970819#5970819: + cli = "python #{py_file} -i '#{input_text}' -o '#{output_json}'" + Open3.popen3(cli) do |stdin, stdout, stderr, wait_thr| + pid = wait_thr.pid + exit_status = wait_thr.value + err = stderr.read(1000) + out = stdout.read(1000) + + raise ArgumentError, "#{out} #{err}" if exit_status != 0 + + json = File.read(output_json) + end + end + + json + end + + end + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/app_config.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/app_config.rb new file mode 100644 index 000000000..6f1841b3e --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/app_config.rb @@ -0,0 +1,16 @@ +module JamRuby + module AppConfig + extend ActiveSupport::Concern + + included do + end + + module ClassMethods + + end + + def app_config + APP_CONFIG + end + end +end \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/jam_track_lambda_importer.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/jam_track_lambda_importer.rb new file mode 100644 index 000000000..326424dac --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/jam_track_lambda_importer.rb @@ -0,0 +1,4049 @@ +require 'json' +require 'tempfile' +require 'open3' +require 'fileutils' +require 'open-uri' +require 'yaml' +require 'csv' +require 'iso-639' +require 'shellwords' +require 'tempfile' +require 'pathname' + +module JamRuby + + class JamTrackLambdaImporter + + @@log = Logging.logger[JamTrackLambdaImporter] + + attr_accessor :name + attr_accessor :metadata + attr_accessor :jam_track + attr_accessor :reason + attr_accessor :detail + attr_accessor :storage_format + + def jamkazam_s3_manager + @s3_manager ||= S3Manager.new(APP_CONFIG.aws_bucket) + end + + def public_jamkazam_s3_manager + @public_s3_manager ||= S3Manager.new(APP_CONFIG.aws_bucket_public) + end + + def initialize(storage_format = 'default') + @storage_format = storage_format + end + + def finish(reason, detail) + puts("JamTrackLambdaImporter:#{self.name} #{reason} #{detail}") + self.reason = reason + self.detail = detail + + if ENV['END_ON_FAIL'] == "1" && reason != 'success' && reason != 'jam_track_exists' + raise "#{reason} #{detail}" + end + end + + def generate_jmep(jam_track) + bpm, start = generate_jmep_kfn(jam_track) + generate_jmep_bpm(jam_track, bpm, start) + end + + def generate_jmep_kfn(jam_track) + bucket = jam_track.origin_s3_bucket + path = jam_track.origin_s3_path + + manager = S3Manager.new(bucket) + + # kfn_click_section.txt is a tency file that's present in most but not quite all jam-tracks + click_file_name = "kfn_click_section.txt" + Dir.mktmpdir do |tmp_dir| + kfn_click_section_file = File.join(tmp_dir, click_file_name) + begin + kfn_s3_path = path + click_file_name + manager.download(kfn_s3_path, kfn_click_section_file) + rescue Exception => e + puts "no kfn file at #{kfn_s3_path}: download failure: #{e.to_s}" + return [nil, nil] + end + + # Read the file contents + file_contents = CSV.read(kfn_click_section_file, col_sep: "\t") + + # Generate bpm and start_time + bpm = generate_bpm(file_contents) + start_time = generate_start_time(file_contents) + + [bpm, start_time] + end + end + + def generate_bpm(file_contents) + # Look at only the first 8 rows for BPM calculation + rows = file_contents.first(8) + + # Calculate the deltas (differences in the 2nd column values) + deltas = rows.each_cons(2).map do |row1, row2| + row2[1].to_f - row1[1].to_f + end + + # Average the deltas and convert to BPM + average_delta = deltas.sum / deltas.size + bpm = (1 / average_delta) * 60 + + bpm.round(2) # Return rounded BPM value + end + + def generate_start_time(file_contents) + # Return the 2nd column value of the first row + file_contents.first[1].to_f + end + + def generate_jmep_bpm(jam_track, authoratative_bpm, authorative_start) + + # https://docs.google.com/spreadsheets/d/1dyUOjWkeU8BXwnJl-ws1Kvxq_twWEG7E78F29haYkLc/edit#gid=987457683 + # cross-check against marks_approved + + if JamTrackLambdaImporter.marks_approved && JamTrackLambdaImporter.marks_approved.has_key?(jam_track.slug) + puts("Found track in mark approved list. skipping") + finish('success', 'mark@jamkazam.com created') + return + end + + # can we overwrite this one? + if jam_track.jmep_text.blank? || jam_track.jmep_text.include?('created via code') + puts("This is a blank jmep or created earlier by code.") + else + puts("This a JMEP that was not created by code. Skip it.") + return + end + + # we need to download the click track, if it exists. + Dir.mktmpdir do |tmp_dir| + + master_track = jam_track.master_track + + click_track = jam_track.click_track_file + + if master_track.nil? + finish('no_master_track', nil) + return + end + + master_track_file = File.join(tmp_dir, File.basename(master_track[:url_48])) + begin + JamTrackLambdaImporter.private_s3_manager.download(master_track.url_by_sample_rate(44), master_track_file) + rescue Exception => e + @@log.error("unable to download master track") + finish("no-download-master", master_track.url_by_sample_rate(44)) + return + end + + if click_track + click_track_file = File.join(tmp_dir, File.basename(click_track[:original_filename])) + JamTrackLambdaImporter.song_storage_manager.download(click_track[:original_filename], click_track_file) + else + # we'll use the master for click analysis. not ideal, but would work + click_track_file = master_track_file + end + + + if click_track + determined_start_time = determine_start_time(click_track_file, tmp_dir, click_track[:original_filename], false) + else + determined_start_time = determine_start_time(master_track_file, tmp_dir, master_track[:url], false) + end + + trimmed_for_beat_analysis = File.join(tmp_dir, 'trimmed_for_beat.wav') + # trim out the 1st 5 second after non-silence + trim_cmd = "sox #{Shellwords.escape(click_track_file)} #{Shellwords.escape(trimmed_for_beat_analysis)} trim #{determined_start_time} #{determined_start_time + 5}" + cmd = "bash -c #{Shellwords.escape(trim_cmd)}" + puts("executing cmd #{cmd}") + output=`#{cmd}` + result_code = $?.to_i + + if result_code != 0 + finish("trim-fail", "failed to run trim click track: #{output}") + return + end + + # bpm comes from git clone http://www.pogo.org.uk/~mark/bpm-tools.git + sox="sox #{Shellwords.escape(trimmed_for_beat_analysis)} -t raw -r 44100 -e float -c 1 - | bpm -m 25 -x 250" + cmd = "bash -c #{Shellwords.escape(sox)}" + puts("executing cmd #{cmd}") + output=`#{cmd}` + result_code = $?.to_i + + if result_code == 0 + determined_bpm = output.to_f + + offset = 0.140 + if determined_bpm >= 60 && determined_bpm < 80 + offset = 0.110 + elsif determined_bpm >= 80 && determined_bpm < 100 + offset = 0.080 + elsif determined_bpm >= 100 && determined_bpm < 120 + offset = 0.050 + elsif determined_bpm >= 120 + offset = 0.020 + end + + puts("authorativ_bpm: #{authoratative_bpm} authorativ_start_time: #{authorative_start}") + puts("determined_bpm: #{determined_bpm} determined_start_time: #{determined_start_time}, offset: #{offset}") + + bpm = authoratative_bpm.nil? ? determined_bpm : authoratative_bpm + start_time = authorative_start.nil? ? determined_start_time : authorative_start + start_time += offset + metro_fin = "#{Time.at(start_time).utc.strftime("%H:%M:%S")}:#{((start_time - start_time.to_i) * 1000).round.to_s.rjust(3, "0")}" + + jmep = "" + jmep << "# created via code using bpm/silence detection (bpm:#{determined_bpm} offset:#{offset} determined_start:#{determined_start_time})\r\n" + jmep << "# authorative data bpm:#{authoratative_bpm} authorative_start:#{authorative_start})\r\n" + jmep << "prelude@10.0 #number of seconds before music starts\r\n" + jmep << "metro_fin@#{metro_fin} bpm=#{bpm}, ticks=8, pmode=stream, name=Beep, play=mono" + + puts("jmep generated: #{jmep}") + + jam_track.jmep_text = jmep + if jam_track.save + finish('success', nil) + else + @@log.error("jamtrack did not save. #{jam_track.errors.inspect}") + finish("no-save", "jamtrack did not save. #{jam_track.errors.inspect}") + return + end + else + finish("bpm-fail", "failed to run bpm: #{output}") + return + end + end + end + + + def determine_start_time(audio_file, tmp_dir, original_filename, protect_short = true) + burp_gaps = ['0.3', '0.2', '0.1', '0.05', '0.025'] + + out_wav = File.join(tmp_dir, 'stripped.wav') + total_time_command = "soxi -D \"#{audio_file}\"" + total_time = `#{total_time_command}`.to_f + + result_code = -20 + stripped_time = total_time # default to the case where we just start the preview at the beginning + + burp_gaps.each do |gap| + command_strip_lead_silence = "sox \"#{audio_file}\" \"#{out_wav}\" silence 1 #{gap} 1%" + + puts("stripping silence: " + command_strip_lead_silence) + + output = `#{command_strip_lead_silence}` + + result_code = $?.to_i + + if result_code == 0 + stripped_time_command = "soxi -D \"#{out_wav}\"" + stripped_time_test = `#{stripped_time_command}`.to_f + + if stripped_time_test < 1 # meaning a very short duration + puts("could not determine the start of non-silence. assuming beginning") + stripped_time = total_time # default to the case where we just start the preview at the beginning + else + stripped_time = stripped_time_test # accept the measured time of the stripped file and move on by using break + break + end + else + puts("unable to determine silence for jam_track #{original_filename}, #{output}") + stripped_time = total_time # default to the case where we just start the preview at the beginning + end + end + + preview_start_time = total_time - stripped_time + + preview_start_time + end + + def synchronize_preview_dev(jam_track) + jam_track.jam_track_tracks.each do |track| + next if track.track_type != 'Master' + + + most_recent_aac = nil + most_recent_ogg = nil + most_recent_mp3 = nil + public_jamkazam_s3_manager.list_files(track.preview_directory).each do |s3_preview_item| + + s3_object = public_jamkazam_s3_manager.object(s3_preview_item) + + if s3_preview_item.end_with?('.aac') + if most_recent_aac + if s3_object.last_modified > most_recent_aac.last_modified + most_recent_aac = s3_object + end + else + most_recent_aac = s3_object + end + end + + if s3_preview_item.end_with?('.mp3') + if most_recent_mp3 + if s3_object.last_modified > most_recent_mp3.last_modified + most_recent_mp3 = s3_object + end + else + most_recent_mp3 = s3_object + end + end + + if s3_preview_item.end_with?('.ogg') + if most_recent_ogg + if s3_object.last_modified > most_recent_ogg.last_modified + most_recent_ogg = s3_object + end + else + most_recent_ogg = s3_object + end + end + end + + if most_recent_aac + track['preview_aac_md5'] = 'md5' + track['preview_aac_url'] = most_recent_aac.key + track['preview_aac_length'] = most_recent_aac.content_length + end + + if most_recent_mp3 + track['preview_mp3_md5'] = 'md5' + track['preview_mp3_url'] = most_recent_mp3.key + track['preview_mp3_length'] = most_recent_mp3.content_length + end + + if most_recent_ogg + track['preview_md5'] = 'md5' + track['preview_url'] = most_recent_ogg.key + track['preview_length'] = most_recent_ogg.content_length + end + + track.save + end + end + + def create_silence(tmp_dir, segment_count, duration, sample_rate, channels = 2) + file = File.join(tmp_dir, "#{segment_count}.wav") + + # -c 2 means stereo + cmd("sox -n -r #{sample_rate} -c #{channels} #{file} trim 0.0 #{duration}", "silence") + + file + end + + # this method was created due to Tency-sourced data having no master track + # it goes through all audio tracks, and creates a master mix from it. (mix + normalize) + def create_master(metadata, metalocation) + + parsed_metalocation = parse_metalocation(metalocation) + + if parsed_metalocation.nil? + finish("invalid_metalocation", metalocation) + return + end + + original_artist = parsed_metalocation[1] + meta_name = parsed_metalocation[2] + + self.name = metadata[:name] || meta_name + + + audio_path = metalocation[0...-"/meta.yml".length] + + all_files = fetch_important_files(audio_path) + + audio_files = [] + master_found = false + all_files.each do |file| + + parsed_wav = parse_file(file) + if parsed_wav[:master] + master_found = true + elsif parsed_wav[:type] == :track + + audio_files << file + end + end + + if master_found + puts("master exists... skipping #{self.name} ") + finish('success', nil) + return + else + + tracks = [] + + #tmp_dir = Dir.mktmpdir + #tmp_dir = "/var/folders/05/1jpzfcln1hq9p666whnd7chr0000gn/T/d20150809-9945-1ykr85u" + Dir.mktmpdir do |tmp_dir| + puts("downloading all audio files in #{tmp_dir}") + audio_files.each do |s3_track| + track = File.join(tmp_dir, File.basename(s3_track)) + tracks << track + JamTrackLambdaImporter.song_storage_manager.download(s3_track, track) + end + + # first have to check if all are the same sample rate. If not, we have to make it so + + first_sample_rate = nil + normalize_needed = false + tracks.each do |track| + sample_rate = `soxi -r "#{track}"`.strip + + if first_sample_rate.nil? + first_sample_rate = sample_rate + else + if first_sample_rate != sample_rate + # we need to normalize all of them + normalize_needed = true + break + end + end + end + + normalized_tracks = [] + if normalize_needed + tracks.each do |track| + normalized_track = File.join(tmp_dir, 'normalized-' + File.basename(track)) + output = `sox "#{track}" "#{normalized_track}" rate #{first_sample_rate}` + puts("resampling #{normalized_track}; output: #{output}") + normalized_tracks << normalized_track + end + tracks = normalized_tracks + end + + + temp_file = File.join(tmp_dir, "temp.wav") + output_filename = JamTrackLambdaImporter.remove_s3_special_chars("#{self.name} Master Mix.wav") + output_file = File.join(tmp_dir, output_filename) + command = "sox -m " + tracks.each do |track| + command << " \"#{track}\"" + end + command << " \"#{temp_file}\"" + + puts("mixing with cmd: " + command) + sox_output = `#{command}` + result_code = $?.to_i + + if result_code != 0 + @@log.error("unable to generate master mix") + finish("sox_master_mix_failure", sox_output) + else + + # now normalize the audio + + command = "sox --norm \"#{temp_file}\" \"#{output_file}\"" + puts("normalizing with cmd: " + command) + sox_output = `#{command}` + result_code = $?.to_i + if result_code != 0 + @@log.error("unable to normalize master mix") + finish("sox_master_mix_failure", sox_output) + else + + # now we need to upload the output back up + s3_target = audio_path + '/' + output_filename + puts("uploading #{output_file} to #{s3_target}") + JamTrackLambdaImporter.song_storage_manager.upload(s3_target, output_file) + + finish('success', nil) + end + + end + end + end + end + + def dry_run(metadata, metalocation) + # STDIN.gets + + puts("dry_run: #{metadata.inspect}") + metadata ||= {} + + parsed_metalocation = parse_metalocation(metalocation) + + return unless parsed_metalocation + + original_artist = parsed_metalocation[1] + name = parsed_metalocation[2] + + JamTrackLambdaImporter.summaries[:unique_artists] << original_artist + + success = dry_run_metadata(metadata, original_artist, name) + + return unless success + + audio_path = metalocation[0...-"/meta.yml".length] + + + dry_run_audio(metadata, audio_path) + + finish("success", nil) + end + + def add_licensor_metadata(vendor, metalocation) + Dir.mktmpdir do |tmp_dir| + puts("update vendor metadata") + meta_yml = File.join(tmp_dir, 'meta.yml') + if jamkazam_s3_manager.exists?(metalocation) + jamkazam_s3_manager.download(metalocation, meta_yml) + meta = YAML.load_file(meta_yml) + else + meta = {} + end + + meta[:licensor] = vendor + + File.open(meta_yml, 'w') { |f| f.write meta.to_yaml } + + jamkazam_s3_manager.upload(metalocation, meta_yml) + end + end + + def is_tency_storage? + assert_storage_set + @storage_format == 'Tency' + end + + def is_tency_zipped_storage? + assert_storage_set + @storage_format == 'Tency_zipped' + end + + def is_helbing_storage? + assert_storage_set + @storage_format == 'Helbing' + end + + def is_paris_storage? + assert_storage_set + @storage_format == 'Paris' + end + + def is_tim_tracks_storage? + assert_storage_set + @storage_format == 'TimTracks' + end + + def is_drumma_storage? + assert_storage_set + @storage_format == 'Drumma' + end + + def is_clevie_storage? + assert_storage_set + @storage_format == 'Clevie' + end + + + def assert_storage_set + raise "no storage_format set" if @storage_format.nil? + end + + + def parse_metalocation(metalocation) + puts "is_tency_zipped_storage? #{is_tency_zipped_storage?}" + # metalocation = mapped/4 Non Blondes - What's Up - 6475/meta.yml + if is_drumma_storage? || is_clevie_storage? + + suffix = '/meta.yml' + + unless metalocation.end_with? suffix + finish("invalid_metalocation", "metalocation not valid #{metalocation}; no suffix") + return nil + end + + metalocation = metalocation[0...-suffix.length] + + bits = ['audio'] + first_dash = metalocation.index(' - ') + if first_dash + artist = metalocation[0...(first_dash)].strip + bits << artist + else + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no ' - '") + return nil + end + song = metalocation[(first_dash+3)..-1].strip + bits << song + + elsif is_tency_storage? || is_tim_tracks_storage? || is_helbing_storage? + + suffix = '/meta.yml' + + unless metalocation.end_with? suffix + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no suffix #2") + return nil + end + + metalocation = metalocation[0...-suffix.length] + + first_path = metalocation.index('/') + if first_path.nil? + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no '/'") + return nil + end + metalocation = metalocation[(first_path + 1)..-1] + + bits = ['audio'] + # example: Sister Hazel - All For You - 10385 + first_dash = metalocation.index(' - ') + if first_dash + artist = metalocation[0...(first_dash)].strip + bits << artist + else + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no ' - ' #2") + return nil + end + + if is_tim_tracks_storage? + song = metalocation[(first_dash+3)..-1].strip + bits << song + elsif is_helbing_storage? + song = metalocation[(first_dash+3)..-1].strip + bits << song + elsif is_tency_storage? + last_dash = metalocation.rindex('-') + if last_dash + song = metalocation[(first_dash+3)...last_dash].strip + bits << song + else + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no ' - ' #3") + return nil + end + end + + bits << 'meta.yml' + bits + elsif is_tency_zipped_storage? + + puts "is_tency_zipped_storage?" + suffix = '/meta.yml' + + unless metalocation.end_with? suffix + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no ' - '") + return nil + end + + metalocation = metalocation[0...-suffix.length] + + first_path = metalocation.index('/') + if first_path.nil? + finish("invalid_metalocation", "metalocation not valid #{metalocation}, no '/'") + return nil + end + metalocation = metalocation[(first_path + 1)..-1] + + bits = ['audio'] + # example: Sister Hazel - All For You - 10385 + first_dash = metalocation.index('_') + if first_dash + artist = metalocation[0...(first_dash)].strip + bits << artist + else + finish("invalid_metalocation", "metalocation not valid #{metalocation}") + return nil + end + + if is_tim_tracks_storage? + song = metalocation[(first_dash+3)..-1].strip + bits << song + elsif is_helbing_storage? + song = metalocation[(first_dash+3)..-1].strip + bits << song + elsif is_tency_storage? || is_tency_zipped_storage? + last_dash = metalocation.rindex('-') + if last_dash + song = metalocation[(first_dash+3)...last_dash].strip + bits << song + else + finish("invalid_metalocation", "metalocation not valid #{metalocation}") + return nil + end + end + + bits << 'meta.yml' + bits + elsif is_paris_storage? + suffix = '/meta.yml' + + unless metalocation.end_with? suffix + finish("invalid_metalocation", "metalocation not valid #{metalocation}") + return nil + end + + metalocation = metalocation[0...-suffix.length] + + first_path = metalocation.index('/') + if first_path.nil? + finish("invalid_metalocation", "metalocation not valid #{metalocation}") + return nil + end + metalocation = metalocation[(first_path + 1)..-1] + + bits = ['audio'] + + + last_slash = metalocation.rindex('/') + + # example: S4863-Mike Oldfield-Moonlight Shadow-000bpm + + + if last_slash + paris_artist_song_id = metalocation[0...last_slash] + else + paris_artist_song_id = metalocation + end + + + bitbits = paris_artist_song_id.split('-') + song_id = bitbits[0].strip + + artist = bitbits[1] + song_name = bitbits[2] + bpm = bitbits[-1] + + bits << artist + bits << song_name + + bits << 'meta.yml' + bits << song_id + bits << bpm + bits + else + bits = metalocation.split('/') + + if bits.length != 4 + finish("invalid_metalocation", "metalocation not valid #{metalocation}") + return nil + end + + if bits[0] != "audio" + finish("invalid_metalocation", "first bit is not 'audio' #{metalocation}") + return nil + end + + if bits[3] != 'meta.yml' + finish('invalid_metalocation', "last bit is not 'meta.yml' #{metalocation}") + return nil + end + + bits + end + end + + def dry_run_metadata(metadata, original_artist, name) + + self.name = metadata["name"] || name + + original_artist = metadata["original_artist"] || original_artist + description = metadata["description"] + + puts("#{self.name} original_artist=#{original_artist}") + + true + end + + def determine_genres(metadata) + + genres = [] + if metadata[:genres] + metadata[:genres].each do |genre| + if genre == 'hard/metal' + genres << Genre.find('hard rock') + genres << Genre.find('metal') + elsif genre == 'christmas' + genres << Genre.find('holiday') + elsif genre == 'alternative' + genres << Genre.find('alternative rock') + elsif genre == '80s' || genre == "50's" || genre == "60's" || genre == "70's" || genre == "80's" || genre == "90's" || genre == "50/60's" || genre == "00's" || genre == "2010's" + # swallow + elsif genre == 'love' + # swallow + elsif genre == 'christian' || genre == 'gospel' + genres << Genre.find('religious') + elsif genre == 'punk/grunge' + genres << Genre.find('punk') + elsif genre == 'electro' + genres << Genre.find('electronic') + elsif genre == 'teen pop' + genres << Genre.find('pop') + elsif genre == "rock 'n roll" + genres << Genre.find('rock') + elsif genre == 'zouk/creole' + genres << Genre.find('creole') + elsif genre == 'world/folk' + genres << Genre.find('world') + genres << Genre.find('folk') + elsif genre == 'french pop' + # swallow + elsif genre == 'schlager' + #swallow + elsif genre == 'humour' + # swallow + elsif genre == 'oriental' + genres << Genre.find('asian') + elsif genre == 'abba' + genres << Genre.find('pop') + elsif genre == 'movies tv show' || genre == "movies" + genres << Genre.find('tv & movie soundtrack') + elsif genre == 'ballad' + # swallow + elsif genre == "r'n'b" || genre == "pop rnb" + genres << Genre.find("r&b") + elsif genre == "rock & roll" + genres << Genre.find('rock') + elsif genre == "dance pop" + genres << Genre.find('dance') + elsif genre == "soul/motown" || genre == "soul motown" + genres << Genre.find('soul') + elsif genre == "party" + # swallow + elsif genre == "reggae/ska" || genre == "reggae ska" + genres << Genre.find('reggae') + genres << Genre.find('ska') + elsif genre == "pop rock" || genre == "pop/rock" + genres << Genre.find("rock") + genres << Genre.find("pop") + elsif genre == "singalong" + #swallow + elsif genre == "folk rock" + genres << Genre.find('folk') + genres << Genre.find('rock') + elsif genre == "swing" || genre == "swing/big band" || genre == "swing big band" + genres << Genre.find('oldies') + elsif genre == "rap/hip hop" || genre == "rap hip hop" + genres << Genre.find("rap") + elsif genre == "folk traditional" || genre == "folk/traditional" + genres << Genre.find('folk') + elsif genre == "elvis" + genres << Genre.find('rock') + elsif genre == "irish" + genres << Genre.find('celtic') + elsif genre == "dance/pop" + genres << Genre.find('dance') + genres << Genre.find('pop') + elsif genre == "the beatles" + genres << Genre.find("rock") + else + found = Genre.find_by_id(genre) + genres << found if found + end + + end + end + + # just throw them into rock/pop if not known. can fix later... + if genres.length == 0 + genres << Genre.find('rock') + genres << Genre.find('pop') + end + + genres + end + + def determine_language(metadata) + + found = ISO_639.find_by_code('eng') + + language = metadata[:language] + + if language + language.downcase! + + if language == 'instrumental' + return 'instrumental' + end + + if language.include? 'spanish' + found = ISO_639.find_by_code('spa') + elsif language.include? 'german' + found = ISO_639.find_by_code('ger') + elsif language.include? 'portuguese' + found = ISO_639.find_by_code('por') + elsif language.include? 'english' + found = ISO_639.find_by_code('eng') + end + end + + found[0] # 3 letter code + end + + #http://stackoverflow.com/questions/22740252/how-to-generate-javas-string-hashcode-using-ruby + def jhash(str) + result = 0 + mul = 1 + max_mod = 2**31 - 1 + + str.chars.reverse_each do |c| + result += mul * c.ord + result %= max_mod + mul *= 31 + end + + result + end + + def prevent_concurrent_processing(metalocation) + + # use a PG advisory lock to see if someone else is doing this same unit of work right now + track_code = jhash(metalocation) + locked = ActiveRecord::Base.connection.execute("SELECT pg_try_advisory_xact_lock(#{track_code})").values[0][0] + if locked == 'f' + finish("other_processing", "") + raise ActiveRecord::Rollback + end + end + + def synchronize_metadata(jam_track, metadata, metalocation, original_artist, name, options) + + metadata ||= {} + self.name = metadata["name"] || name + + prevent_concurrent_processing(metalocation) + + if jam_track.new_record? + + if ENV['JAM_TRACK_ID'] + id = ENV['JAM_TRACK_ID'] + puts("NODE JAM_TRACK_ID forces JamTrack ID: #{id}") + else + latest_jamtrack = JamTrack.order('id::int desc').first + id = latest_jamtrack.nil? ? 1 : latest_jamtrack.id.to_i + 1 + puts("Natural JamTrack ID: #{id}") + end + + jam_track.id = "#{id}" # default is UUID, but the initial import was based on auto-increment ID, so we'll maintain that + jam_track.status = 'Staging' + jam_track.metalocation = metalocation + jam_track.original_artist = metadata["original_artist"] || original_artist + jam_track.name = self.name + jam_track.additional_info = metadata[:additional_info] + jam_track.year = metadata[:year] + jam_track.genres = determine_genres(metadata) + jam_track.language = determine_language(metadata) + jam_track.price = 1.99 + jam_track.download_price = 2.99 + jam_track.reproduction_royalty_amount = nil + jam_track.reproduction_royalty = true + jam_track.public_performance_royalty = true + jam_track.licensor_royalty_amount = 0.4 + jam_track.sales_region = 'Worldwide' + jam_track.recording_type = 'Cover' + jam_track.description = "This is a JamTrack audio file for use exclusively with the JamKazam service. This JamTrack is a high quality cover of the #{jam_track.original_artist} song \"#{jam_track.name}\"." + jam_track.hfa_license_status = false + jam_track.alternative_license_status = false + jam_track.hfa_license_desired = true + jam_track.server_fixation_date = Time.now + jam_track.generate_s3_host_dir + + if is_tency_storage? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Tency Music') + #add_licensor_metadata('Tency Music', metalocation) + elsif is_tency_zipped_storage? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Tency Music') + elsif is_paris_storage? + raise 'no vendor id' if metadata[:id].nil? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Paris Music') + jam_track.bpm = metadata[:bpm] + elsif is_tim_tracks_storage? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Tim Waurick') + elsif is_helbing_storage? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Stockton Helbing') + elsif is_drumma_storage? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Drumma Boy') + elsif is_clevie_storage? + jam_track.vendor_id = metadata[:id] + jam_track.licensor = JamTrackLicensor.find_by_name!('Steely & Clevie') + end + jam_track.slug = metadata['slug'] + if jam_track.slug.nil? + jam_track.generate_slug + end + jam_track.plan_code = metadata["plan_code"] + if jam_track.plan_code.nil? + jam_track.gen_plan_code + end + + + else + if !options[:resync_audio] + #puts("#{self.name} skipped because it already exists in database") + finish("jam_track_exists", "") + return false + else + # jamtrack exists, leave it be + return true + end + + + end + + puts("about to save") + saved = jam_track.save + + if !saved + finish("invalid_definition", jam_track.errors.inspect) + end + + saved + end + + # oddballs - Guitar Solo.wav + # Rocket Man Stem - Vocal Back Up + # Rocket Man Stem - Vocal Lead Double + # Rock and Roll Stem - Electric Guitar - Main - Solo + def determine_instrument(potential_instrument_original, potential_part_original = nil) + potential_instrument = potential_instrument_original.downcase + potential_part = potential_part_original.downcase if potential_part_original + + instrument = nil + used_helper = false + part = nil + + if potential_instrument == 'guitar' + if potential_part + if potential_part == 'acoustic' + instrument = 'acoustic guitar' + used_helper = true + elsif potential_part == 'electric' + instrument = 'electric guitar' + used_helper = true + elsif potential_part == 'acoustic solo' + instrument = 'acoustic guitar' + used_helper = true + part = 'Solo' + elsif potential_part.include?('acoustic') + used_helper = true # ambiguous + else + instrument = 'electric guitar' + used_helper = false + end + else + instrument = 'electric guitar' + end + elsif potential_instrument == 'acoustic' + instrument = 'acoustic guitar' + elsif potential_instrument == 'acoutic guitar' + instrument = 'electric guitar' + elsif potential_instrument == 'electric gutiar' || potential_instrument == 'electric guitat' || potential_instrument == 'electric guitary' || potential_instrument == 'elec guitar' + instrument = 'electric guitar' + elsif potential_instrument == 'lead guitar' + instrument = 'electric guitar' + part = 'Lead' + elsif potential_instrument == 'keys' + instrument = 'keyboard' + elsif potential_instrument == 'vocal' || potential_instrument == 'vocals' + instrument = 'voice' + elsif potential_instrument == 'upright bass' + instrument = 'double bass' + elsif potential_instrument == 'bass' + instrument = 'bass guitar' + elsif potential_instrument == 'drum' + instrument = 'drums' + elsif potential_instrument == 'sound effects' || potential_instrument == 'sound efx' || potential_instrument == 'effects' + instrument = 'computer' + + if potential_part_original + part = "Sound FX (#{potential_part_original})" + else + part = 'Sound FX' + end + elsif potential_instrument == 'computer scratches' + instrument = 'computer' + part = 'Scratches' + elsif potential_instrument == "sax" + instrument = 'saxophone' + elsif potential_instrument == "vocal back up" + instrument = "voice" + part = "Back Up" + elsif potential_instrument == "vocal lead double" + instrument = "voice" + part = "Lead Double" + elsif potential_instrument == "guitar solo" + instrument = "electric guitar" + part = "Solo" + elsif potential_instrument == 'stadium crowd' + instrument = 'computer' + part = 'Crowd Noise' + elsif potential_instrument == 'cannons' + instrument = 'computer' + part = 'Cannons' + elsif potential_instrument == 'bells' + instrument = 'computer' + part = 'Bells' + elsif potential_instrument == 'percussion' + instrument = 'percussion' + part = 'Percussion' + elsif potential_instrument == 'fretless bass' + instrument = 'bass guitar' + part = 'Fretless' + elsif potential_instrument == 'lap steel' || potential_instrument == 'pedal steel' + instrument = 'steel guitar' + elsif potential_instrument == 'clock percussion' + instrument = 'computer' + part = 'Clock' + elsif potential_instrument == 'horns' || potential_instrument == 'horn' + instrument = 'other' + part = 'Horns' if potential_part.nil? + elsif potential_instrument == 'english horn' + instrument = 'other' + part = 'English Horn' + elsif potential_instrument == 'bass clarinet' + instrument = 'other' + part = 'Bass Clarinet' + elsif potential_instrument == 'recorder' + instrument = 'other' + part = 'Recorder' + elsif potential_instrument == 'marimba' + instrument = 'keyboard' + part = 'Marimba' + elsif potential_instrument == 'strings' + instrument = 'orchestra' + part = 'Strings' + elsif potential_instrument == 'celesta' || potential_instrument == 'celeste' + instrument = 'keyboard' + part = 'Celesta' + elsif potential_instrument == 'balalaika' + instrument = 'other' + part = 'Balalaika' + elsif potential_instrument == 'tanpura' + instrument = 'other' + part = 'Tanpura' + elsif potential_instrument == 'quena' + instrument = 'other' + part = 'Quena' + elsif potential_instrument == 'bouzouki' + instrument = 'other' + part = 'Bouzouki' + elsif potential_instrument == 'claps' || potential_instrument == 'hand claps' + instrument = 'other' + part = 'Claps' + elsif potential_instrument == 'snaps' || potential_instrument == 'snap' + instrument = 'other' + part = 'Snaps' + else + found_instrument = Instrument.find_by_id(potential_instrument) + if found_instrument + instrument = found_instrument.id + end + end + + if !used_helper && !part + part = potential_part_original + end + + part = potential_instrument_original if !part + + {instrument: instrument, + part: part} + + end + + def parse_file(file, metadata) + + bits = file.split('/') + filename = bits[bits.length - 1] # remove all but just the filename + filename_no_ext = filename[0..-5] + comparable_filename = filename_no_ext.downcase # remove .wav + + type = nil + master = false + instrument = nil + part = nil + precount_num = nil + no_precount_detail = nil + if comparable_filename == "click" || comparable_filename.include?("clicktrack") || comparable_filename.include?("click track") || comparable_filename.end_with?('click') || comparable_filename.end_with?('click trac') + if filename.end_with?('.txt') + type = :clicktxt + else + type = :clickwav + end + elsif comparable_filename.include? "precount" + type = :precount + index = comparable_filename.index('precount') + precount = comparable_filename[(index + 'precount'.length)..-1].strip + if precount.start_with?('_') + precount = precount[1..-1] + end + if precount.to_i == 0 + no_precount_detail = comparable_filename + else + precount_num = precount.to_i + end + + elsif comparable_filename.include?("master mix") || comparable_filename.include?("mastered mix") || comparable_filename.include?("- #{metadata[:id]} -") || (@metadata && (@metadata[:id] && comparable_filename.start_with?(@metadata[:id].downcase))) + master = true + type = :master + else + type = :track + stem_location = comparable_filename.index('stem -') + unless stem_location + stem_location = comparable_filename.index('stems -') + end + unless stem_location + stem_location = comparable_filename.index('stem-') + end + unless stem_location + stem_location = comparable_filename.index('stems-') + end + unless stem_location + stem_location = comparable_filename.index(' -') + end + + if stem_location + bits = filename_no_ext[stem_location..-1].split('-') + bits.collect! { |bit| bit.strip } + + possible_instrument = nil + possible_part = nil + + if bits.length == 2 + # second bit is instrument + possible_instrument = bits[1] + elsif bits.length == 3 + # second bit is instrument, third bit is part + possible_instrument = bits[1] + possible_part = bits[2] + elsif bits.length == 4 + possible_instrument = bits[1] + possible_part = "#{bits[2]} #{bits[3]}" + end + + if possible_instrument.nil? + raise "Unable to find instrument data in bits #{bits}" + end + result = determine_instrument(possible_instrument, possible_part) + instrument = result[:instrument] + part = result[:part] + + if is_tim_tracks_storage? + if instrument.nil? + # some stems don't include 'voice'. but... they are all voice :) + instrument = 'voice' + end + end + else + if (is_tency_storage? || is_tency_zipped_storage?) + + if !filename.ends_with?(".wav") + puts "Skipping #{filename}" + return nil + end + # we can check to see if we can find mapping info for this filename + mapping = JamTrackLambdaImporter.tency_mapping[filename.downcase] + + if mapping && mapping[:trust] + instrument = mapping[:instrument] + part = mapping[:part] + end + + # tency mapping didn't work; let's retry with our own home-grown mapping + if instrument.nil? && !possible_instrument.nil? + result = determine_instrument(possible_instrument, possible_part) + instrument = result[:instrument] + part = result[:part] + puts "WARN: Home grown mappig for possible_instrument=#{possible_instrument} possible_port=#{possible_port} = #{result}" + end + elsif is_paris_storage? + # example: Eternal Flame-Guide Lead Vocal.wav + # or with a part: Eternal Flame-Keyboard-Stab.wav + bits = filename_no_ext.split('-') + bits.collect! { |bit| bit.strip } + + while true + instrument, part = paris_instrument_parse(bits) + + if instrument.nil? && bits.length > 2 + bits.shift + instrument, part = paris_instrument_parse(bits) + else + break + end + end + end + + end + end + + {filename: filename, master: master, instrument: instrument, part: part, type: type, precount_num: precount_num, no_precount_detail: no_precount_detail} + end + + def paris_instrument_parse(bits) + instrument = nil + part = nil + possible_instrument = nil + possible_part = nil + + if bits.length == 2 + # second bit is instrument + possible_instrument = bits[1] + elsif bits.length == 3 + # second bit is instrument, third bit is part + possible_instrument = bits[1] + possible_part = bits[2] + elsif bits.length >= 4 + possible_instrument = bits[1] + possible_part = "#{bits[2]} #{bits[3]}" + end + + # otherwise, try mapping + if instrument.nil? && possible_instrument + mapping = JamTrackLambdaImporter.paris_mapping[possible_instrument.downcase] + if mapping + instrument = mapping[:instrument].downcase + part = mapping[:part] + part = nil if part.blank? + end + end + + # paris mapping didn't work; let's retry one more time with our own home-grown mapping + if instrument.nil? + result = determine_instrument(possible_instrument, possible_part) + instrument = result[:instrument] + part = result[:part] + end + return instrument, part + end + + def dry_run_audio(metadata, s3_path) + all_files = fetch_important_files(s3_path) + + masters = 0 + all_files.each do |file| + + # ignore click/precount + parsed_wav = parse_file(file) + if parsed_wav[:master] + puts("#{self.name} master! filename: #{parsed_wav[:filename]}") + masters += 1 + if masters > 1 + JamTrackLambdaImporter.summaries[:multiple_masters] += 1 + end + elsif parsed_wav[:type] == :track + + JamTrackLambdaImporter.summaries[:total_tracks] += 1 + + if parsed_wav[:instrument].nil? + detail = JamTrackLambdaImporter.summaries[:no_instrument_detail] + file_detail = detail[parsed_wav[:filename].downcase] + if file_detail.nil? + detail[parsed_wav[:filename].downcase] = 0 + end + detail[parsed_wav[:filename].downcase] += 1 + + JamTrackLambdaImporter.summaries[:no_instrument] += 1 + end + + JamTrackLambdaImporter.summaries[:no_part] += 1 if parsed_wav[:part].nil? + + if !parsed_wav[:instrument] || !parsed_wav[:part] + puts("#{self.name} track! instrument: #{parsed_wav[:instrument] ? parsed_wav[:instrument] : 'N/A'}, part: #{parsed_wav[:part] ? parsed_wav[:part] : 'N/A'}, filename: #{parsed_wav[:filename]} ") + else + puts("#{self.name} track! instrument: #{parsed_wav[:instrument] ? parsed_wav[:instrument] : 'N/A'}, part: #{parsed_wav[:part] ? parsed_wav[:part] : 'N/A'}, filename: #{parsed_wav[:filename]} ") + end + elsif parsed_wav[:type] == :clickwav + + elsif parsed_wav[:type] == :clicktxt + + elsif parsed_wav[:type] == :precount + if parsed_wav[:precount_num].nil? + JamTrackLambdaImporter.summaries[:no_precount_num] += 1 + JamTrackLambdaImporter.summaries[:no_precount_detail] << parsed_wav[:no_precount_detail] + end + + else + JamTrackLambdaImporter.summaries[:unknown_filetype] += 1 + end + end + end + + + def set_custom_weight(track) + + slop = 950 + + instrument_weight = nil + # if there are any persisted tracks, do not sort from scratch; just stick new stuff at the end + + #if track.persisted? + # instrument_weight = track.position + #else + if track.instrument_id == 'voice' + + if track.part && track.part.start_with?('Lead') + instrument_weight = 100 + elsif track.part && track.part.start_with?('Backing') + instrument_weight = 120 + else + instrument_weight = 140 + end + + elsif track.instrument_id == 'drums' + + if track.part && track.part == 'Drums' + instrument_weight = 160 + elsif track.part && track.part == 'Percussion' + instrument_weight = 180 + else + instrument_weight = 200 + end + elsif track.instrument_id == 'percussion' + instrument_weight = 220 + elsif track.instrument_id == 'bass guitar' && track.part && track.part == 'Bass' + instrument_weight = 240 + + elsif track.instrument_id == 'piano' && track.part && track.part == 'Piano' + instrument_weight = 260 + + elsif track.instrument_id == 'keyboard' + + if track.part && track.part.start_with?('Synth') + instrument_weight = 280 + elsif track.part && track.part.start_with?('Pads') + instrument_weight = 300 + else + instrument_weight = 320 + end + + elsif track.instrument_id == 'acoustic guitar' + if track.part && track.part.start_with?('Lead') + instrument_weight = 600 + elsif track.part && track.part.start_with?('Rhythm') + instrument_weight = 630 + else + instrument_weight = 660 + end + elsif track.instrument_id == 'electric guitar' + if track.part && track.part.start_with?('Lead') + instrument_weight = 800 + elsif track.part && track.part.start_with?('Solo') + instrument_weight = 830 + elsif track.part && track.part.start_with?('Rhythm') + instrument_weight = 860 + else + instrument_weight = 890 + end + else + instrument_weight = slop + end + + if track.track_type == 'Master' + instrument_weight = 1000 + end + + if track.track_type == 'Click' + instrument_weight = 10000 + end + #end + + instrument_weight = instrument_weight + track.position + + instrument_weight + end + + def deduplicate_parts(tracks) + unique_instruments = {} + + tracks.each do |track| + + key = "#{track.instrument_id} | #{track.part}" + found = unique_instruments[key] + if !found + found = [] + unique_instruments[key] = found + end + + found << track + end + + unique_instruments.each do |key, value| + if value.length > 1 + count = 0 + + value.each do |track| + if track.part.nil? + track.part = (count + 1).to_s + else + track.part = "#{track.part} #{count + 1}" + end + count += 1 + end + + end + end + + # debug output + tracks.each do |track| + puts "TRACK #{track.instrument_id} #{track.part}" + end + end + + + def sort_tracks(tracks) + + if tracks.size == 0 + raise "Tracks should not be 0 at this point" + end + + # this is used for tie breakers in the set_custom_weight routine + position = 1 + tracks.each do | track| + track.position = position + position = position + 1 + end + + sorted_tracks = tracks.sort do |a, b| + a_weight = set_custom_weight(a) + b_weight = set_custom_weight(b) + + if a_weight != b_weight + a_weight <=> b_weight + elsif a.instrument_id != b.instrument_id + a.instrument_id <=> b.instrument_id + else + a_part = a.part + b_part = b.part + a_part <=> b_part + end + end + + position = 1 + sorted_tracks.each do |track| + track.position = position + position = position + 1 + end + + # get click/master tracks position re-set correctly + + last_track = sorted_tracks[sorted_tracks.length - 1] + second_to_last = sorted_tracks[sorted_tracks.length - 2] + + if last_track.track_type == 'Master' + last_track.position = 1000 + elsif last_track.track_type == 'Click' + last_track.position = 10000 + end + + if second_to_last.track_type == 'Master' + second_to_last.position = 1000 + elsif second_to_last.track_type == 'Click' + second_to_last.position = 10000 + end + + sorted_tracks + end + + # this will put original_audio_s3_path on each jam_track_track + def associate_tracks_with_original_stems(jam_track, s3_path) + attempt_to_match_existing_tracks = true + + # find all wav files in the JamTracks s3 bucket + wav_files = fetch_important_files(s3_path) + + tracks = [] + + wav_files.each do |wav_file| + + if attempt_to_match_existing_tracks + # try to find a matching track from the JamTrack based on the name of the 44.1 path + basename = File.basename(wav_file) + ogg_44100_filename = File.basename(basename, ".wav") + "-44100.ogg" + + found_track = nil + jam_track.jam_track_tracks.each do |jam_track_track| + + if jam_track_track["url_44"] && jam_track_track["url_44"].end_with?(ogg_44100_filename) + # found a match! + found_track = jam_track_track + break + end + end + + if found_track + puts("found a existing track to reuse") + found_track.original_audio_s3_path = wav_file + tracks << found_track + next + end + end + end + + tracks + end + + def synchronize_audio(jam_track, metadata, s3_path, skip_audio_upload) + + attempt_to_match_existing_tracks = true + + # find all wav files in the JamTracks s3 bucket + wav_files = fetch_important_files(s3_path) + + tracks = [] + addt_files = [] + + wav_files.each do |wav_file| + + if attempt_to_match_existing_tracks + # try to find a matching track from the JamTrack based on the name of the 44.1 path + basename = File.basename(wav_file) + ogg_44100_filename = File.basename(basename, ".wav") + "-44100.ogg" + + found_track = nil + jam_track.jam_track_tracks.each do |jam_track_track| + + if jam_track_track["url_44"] && jam_track_track["url_44"].end_with?(ogg_44100_filename) + # found a match! + found_track = jam_track_track + break + end + end + + if found_track + puts("found a existing track to reuse") + found_track.original_audio_s3_path = wav_file + tracks << found_track + next + end + end + + if !assign_instrument_parts(wav_file, tracks, addt_files, metadata) + return false + end + puts("no existing track found; creating a new one") + end + + jam_track.jam_track_tracks.each do |jam_track_track| + # delete all jam_track_tracks not in the tracks array + unless tracks.include?(jam_track_track) + puts("destroying removed JamTrackTrack #{jam_track_track.inspect}") + jam_track_track.destroy # should also delete s3 files associated with this jamtrack + end + end + + jam_track.jam_track_files.each do |jam_track_file| + unless addt_files.include?(jam_track_file) + puts("destroying removed JamTrackFile #{jam_track_file.inspect}") + jam_track_file.destroy # should also delete s3 files associated with this jamtrack + end + end + + disambiguate_missing_instrument_parts(tracks) + puts("sorting tracks") + tracks = sort_tracks(tracks) + + deduplicate_parts(tracks) + + jam_track.jam_track_tracks = tracks + jam_track.jam_track_files = addt_files + + saved = jam_track.save + + if !saved + finish('invalid_audio', jam_track.errors.inspect) + return false + end + + return synchronize_audio_files(jam_track, skip_audio_upload) + end + + def disambiguate_missing_instrument_parts(jam_tracks) + # Collect all jam tracks where instrument_id is 'other' + other_tracks = jam_tracks.select { |track| track.instrument_id == 'other' } + + # Further filter those where part is nil + nil_part_tracks = other_tracks.select { |track| track.part.nil? } + + # If more than one exists with part as nil, update part with filename (without extension) + if nil_part_tracks.size > 1 + nil_part_tracks.each do |track| + track.part = Pathname(track.original_filename).basename(".*").to_s + puts "Deduping #{track} with #{track.part}" + end + end + + # Collect all other tracks of the same + end + def reassign_instrument_parts(jam_track) + + tracks = [] + addt_files = [] + + jam_track.jam_track_tracks.each do |track| + return if !assign_instrument_parts(track.original_filename, tracks, addt_files, true) + end + + puts("sorting #{tracks.length} tracks") + tracks = sort_tracks(tracks) + + deduplicate_parts(tracks) + + changed = false + tracks.each do |track| + if track.changed? + changed = true + puts "CHANGE: #{track.changes.inspect}" + track.skip_inst_part_uniq = true + track.save! + end + end + + if changed + # if we messed up any instrument/parts by making a dup, this will catch it + tracks.each do |track| + track.skip_inst_part_uniq = false + track.save! + end + end + end + + + + def assign_instrument_parts(wav_file, tracks, addt_files, metadata, reassign = false) + if !reassign + track = JamTrackTrack.new + track.original_filename = wav_file + track.original_audio_s3_path = wav_file + + file = JamTrackFile.new + file.original_filename = wav_file + file.original_audio_s3_path = wav_file + else + matches = JamTrackTrack.where(original_filename: wav_file) + if matches.count > 1 + raise "multiple jam track tracks encountered with #{wav_file} as original_filename" + elsif matches.count == 0 + raise "unable to locate jam track wit h#{wav_file} as original_filename" + end + track = matches[0] + track.original_audio_s3_path = wav_file + file = nil + end + + parsed_wav = parse_file(wav_file, metadata) + + if parsed_wav.nil? + puts "Skipping #{wav_file}" + return true + end + unknowns = 0 + if parsed_wav[:master] + track.track_type = 'Master' + track.part = 'Master Mix' + track.instrument_id = 'computer' + tracks << track + puts("#{self.name} master! filename: #{parsed_wav[:filename]}") + elsif parsed_wav[:type] == :track + + if !parsed_wav[:instrument] || !parsed_wav[:part] + puts("#{self.name} track! instrument: #{parsed_wav[:instrument] ? parsed_wav[:instrument] : 'N/A'}, part: #{parsed_wav[:part] ? parsed_wav[:part] : 'N/A'}, filename: #{parsed_wav[:filename]} ") + unknowns += 1 + else + puts("#{self.name} track! instrument: #{parsed_wav[:instrument] ? parsed_wav[:instrument] : 'N/A'}, part: #{parsed_wav[:part] ? parsed_wav[:part] : 'N/A'}, filename: #{parsed_wav[:filename]} ") + end + + track.instrument_id = parsed_wav[:instrument] || 'other' + track.track_type = 'Track' + track.part = parsed_wav[:part]; + tracks << track + elsif parsed_wav[:type] == :clicktxt + file.file_type = 'ClickTxt' + addt_files << file + elsif parsed_wav[:type] == :clickwav + if file + file.file_type = 'ClickWav' + addt_files << file + end + + # and also add a JamTrackTrack for this click track + track.track_type = 'Click' + track.part = 'Clicktrack' + track.instrument_id = 'computer' + track.position = 10000 + tracks << track + elsif parsed_wav[:type] == :precount + file.file_type = 'Precount' + file.precount_num = parsed_wav[:precount_num] + addt_files << file + else + finish("unknown_file_type", "unknown file type #{wave_file}") + return false + end + + return true + end + + def synchronize_audio_files(jam_track, skip_audio_upload) + + begin + Dir.mktmpdir do |tmp_dir| + + # download each jam track here, and then do processing to determine: + # what's the longest stem + # and to then pad the rest of the tracks to make them all match in length + jam_track.jam_track_tracks.each do |track| + basename = File.basename(track.original_audio_s3_path) + wav_file = File.join(tmp_dir, basename) + + # bring the original wav file down from S3 to local file system + JamTrackLambdaImporter::song_storage_manager.download(track.original_audio_s3_path, wav_file) + track.wav_file = wav_file + end + + same_lengthening(jam_track, tmp_dir) + + jam_track.jam_track_tracks.each do |track| + synchronize_audio_track(jam_track, tmp_dir, skip_audio_upload, track) + end + end + + generate_jmep(jam_track) + rescue Exception => e + puts e.backtrace + finish("sync_audio_exception", e.to_s) + return false + end + + return true + end + + # make all stems be the same length + def same_lengthening(jam_track, tmp_dir) + longest_duration = nil + jam_track.jam_track_tracks.each do |track| + duration_command = "soxi -D \"#{track.wav_file}\"" + output = `#{duration_command}` + + result_code = $?.to_i + + if result_code == 0 + duration = output.to_f.round + + track.tmp_duration = duration + if longest_duration.nil? + longest_duration = duration + else + if duration > longest_duration + longest_duration = duration + end + end + else + puts("unable to determine duration for jam_track track #{jam_track.name} #{jam_track_track.instrument} #{jam_track_track.part}. output #{output}") + end + end + + puts("duration determined to be #{longest_duration}") + jam_track.duration = longest_duration + jam_track.jam_track_tracks.each do |track| + if track.tmp_duration < longest_duration + # need to pad with silence to make all match in length + + amount = longest_duration - track.tmp_duration + + puts("track #{track.instrument_id}:#{track.part} needs to be lengthened by #{amount}") + + output = cmd("soxi -c \"#{track.wav_file}\"", "padded_silence") + channels = output.to_i + + output = cmd("soxi -r \"#{track.wav_file}\"", "get_sample_rate") + sample_rate = output.to_i + + padding_file = create_silence(tmp_dir, "padded_silence#{track.id}", amount, sample_rate, channels) + + output_file = File.join(tmp_dir, "with_padding_#{track.id}.wav") + + cmd("sox \"#{track.wav_file}\" \"#{padding_file}\" \"#{output_file}\"", "same_lengthening") + + track.wav_file = output_file + end + end + end + + def cmd(cmd, type) + + puts("executing #{cmd}") + + output = `#{cmd}` + + result_code = $?.to_i + + if result_code == 0 + output + else + @error_reason = type + "_fail" + @error_detail = "#{cmd}, #{output}" + raise "command `#{cmd}` failed. #{type}, #{output}" + end + end + + def synchronize_audio_track(jam_track, tmp_dir, skip_audio_upload, track) + basename = File.basename(track.original_audio_s3_path) + + # make a 44100 version, and a 48000 version + ogg_44100_filename = File.basename(basename, ".wav") + "-44100.ogg" + ogg_48000_filename = File.basename(basename, ".wav") + "-48000.ogg" + + + # make a 44100 version, and a 48000 version + mp3_48000_filename = File.basename(basename, ".wav") + "-48000.mp3" + aac_48000_filename = File.basename(basename, ".wav") + "-48000.aac" + + ogg_44100_s3_path = track.filename(ogg_44100_filename) + ogg_48000_s3_path = track.filename(ogg_48000_filename) + + mp3_48000_s3_path = track.filename(mp3_48000_filename) + aac_48000_s3_path = track.filename(aac_48000_filename) + + track.skip_uploader = true + + if skip_audio_upload + track["url_44"] = ogg_44100_s3_path + track["md5_44"] = 'md5' + track["length_44"] = 1 + + track["url_48"] = ogg_48000_s3_path + track["md5_48"] = 'md5' + track["length_48"] = 1 + + track["url_mp3_48"] = mp3_48000_filename + track["md5_mp3_48"] = 'md5' + track["length_mp3_48"] = 1 + + track["url_aac_48"] = aac_48000_filename + track["md5_aac_48"] = 'md5' + track["length_aac_48"] = 1 + + # we can't fake the preview as easily because we don't know the MD5 of the current item + #track["preview_md5"] = 'md5' + #track["preview_mp3_md5"] = 'md5' + #track["preview_url"] = track.preview_filename('md5', 'ogg') + #track["preview_length"] = 1 + #track["preview_mp3_url"] = track.preview_filename('md5', 'mp3') + #track["preview_mp3_length"] = 1 + #track["preview_start_time"] = 0 + else + wav_file = track.wav_file + + sample_rate = `soxi -r "#{wav_file}"`.strip + + ogg_44100 = File.join(tmp_dir, ogg_44100_filename) + ogg_48000 = File.join(tmp_dir, File.basename(basename, ".wav") + "-48000.ogg") + + if sample_rate == "44100" + `oggenc "#{wav_file}" -q 6 -o "#{ogg_44100}"` + else + `oggenc "#{wav_file}" --resample 44100 -q 6 -o "#{ogg_44100}"` + end + + if sample_rate == "48000" + `oggenc "#{wav_file}" -q 6 -o "#{ogg_48000}"` + else + `oggenc "#{wav_file}" --resample 48000 -q 6 -o "#{ogg_48000}"` + end + + # upload the new ogg files to s3 + puts("uploading 44100 to #{ogg_44100_s3_path}") + + jamkazam_s3_manager.upload(ogg_44100_s3_path, ogg_44100) + + puts("uploading 48000 to #{ogg_48000_s3_path}") + + jamkazam_s3_manager.upload(ogg_48000_s3_path, ogg_48000) + + ogg_44100_digest = ::Digest::MD5.file(ogg_44100) + # and finally update the JamTrackTrack with the new info + track["url_44"] = ogg_44100_s3_path + track["md5_44"] = ogg_44100_digest.hexdigest + track["length_44"] = File.new(ogg_44100).size + + track["url_48"] = ogg_48000_s3_path + track["md5_48"] = ::Digest::MD5.file(ogg_48000).hexdigest + track["length_48"] = File.new(ogg_48000).size + + # now create mp3 and aac files + mp3_48000 = File.join(tmp_dir, File.basename(basename, ".wav") + "-48000.mp3") + aac_48000 = File.join(tmp_dir, File.basename(basename, ".wav") + "-48000.aac") + + `#{APP_CONFIG.ffmpeg_path_mp3} -i "#{wav_file}" -ar 48000 -ab 192k "#{mp3_48000}"` + + `#{APP_CONFIG.ffmpeg_path} -i "#{wav_file}" -c:a libfdk_aac -b:a 192k "#{aac_48000}"` + + # upload the new ogg files to s3 + puts("uploading mp3 48000 to #{mp3_48000_s3_path}") + + jamkazam_s3_manager.upload(mp3_48000_s3_path, mp3_48000) + + puts("uploading aac 48000 to #{aac_48000_s3_path}") + + jamkazam_s3_manager.upload(aac_48000_s3_path, aac_48000) + + mp3_48000_digest = ::Digest::MD5.file(mp3_48000) + # and finally update the JamTrackTrack with the new info + track["url_mp3_48"] = mp3_48000_s3_path + track["md5_mp3_48"] = mp3_48000_digest.hexdigest + track["length_mp3_48"] = File.new(mp3_48000).size + + track["url_aac_48"] = aac_48000_s3_path + track["md5_aac_48"] = ::Digest::MD5.file(aac_48000).hexdigest + track["length_aac_48"] = File.new(aac_48000).size + + jam_track.save! + + # convert entire master ogg file to mp3, and push both to public destination + if track.track_type == 'Master' + preview_succeeded = synchronize_master_preview(track, tmp_dir, ogg_44100, ogg_44100_digest) + + if !preview_succeeded + return false + end + elsif track.track_type == 'Track' || track.track_type == 'Click' + synchronize_track_preview(track, tmp_dir, ogg_44100) + end + + end + + track.save! + end + + def generate_mp3_aac_stem(jam_track, tmp_dir, skip_audio_upload) + jam_track.jam_track_tracks.each do |track| + + if track.original_audio_s3_path.nil? + + @@log.error("jam_track #{jam_track.name} has empty stem. stem: #{track.id}") + next + end + + puts "track.original_audio_s3_path #{track.original_audio_s3_path}" + basename = File.basename(track.original_audio_s3_path) + s3_dirname = File.dirname(track.original_audio_s3_path) + + # make a 44100 version, and a 48000 version + mp3_48000_filename = File.basename(basename, ".wav") + "-48000.mp3" + aac_48000_filename = File.basename(basename, ".wav") + "-48000.aac" + + mp3_48000_s3_path = track.filename(mp3_48000_filename) + aac_48000_s3_path = track.filename(aac_48000_filename) + + puts "mp3_48000_s3_path #{mp3_48000_s3_path}" + track.skip_uploader = true + + if skip_audio_upload + track["url_mp3_48"] = mp3_48000_filename + track["md5_mp3_48"] = 'md5' + track["length_mp3_48"] = 1 + + track["url_aac_48"] = aac_48000_filename + track["md5_aac_48"] = 'md5' + track["length_aac_48"] = 1 + + # we can't fake the preview as easily because we don't know the MD5 of the current item + #track["preview_md5"] = 'md5' + #track["preview_mp3_md5"] = 'md5' + #track["preview_url"] = track.preview_filename('md5', 'ogg') + #track["preview_length"] = 1 + #track["preview_mp3_url"] = track.preview_filename('md5', 'mp3') + #track["preview_mp3_length"] = 1 + #track["preview_start_time"] = 0 + else + wav_file = File.join(tmp_dir, basename) + + # the wave file might already be on the system... + + # don't bother with the same track twice + + next if track["url_mp3_48"] && track["url_aac_48"] + + # bring the original wav file down from S3 to local file system + JamTrackLambdaImporter::song_storage_manager.download(track.original_audio_s3_path, wav_file) unless File.exists?(wav_file) + + mp3_48000 = File.join(tmp_dir, File.basename(basename, ".wav") + "-48000.mp3") + aac_48000 = File.join(tmp_dir, File.basename(basename, ".wav") + "-48000.aac") + + `#{APP_CONFIG.ffmpeg_path_mp3} -i "#{wav_file}" -ar 48000 -ab 192k "#{mp3_48000}"` + + `#{APP_CONFIG.ffmpeg_path} -i "#{wav_file}" -c:a libfdk_aac -b:a 192k "#{aac_48000}"` + + # upload the new ogg files to s3 + puts("uploading mp3 48000 to #{mp3_48000_s3_path}") + + jamkazam_s3_manager.upload(mp3_48000_s3_path, mp3_48000) + + puts("uploading aac 48000 to #{aac_48000_s3_path}") + + jamkazam_s3_manager.upload(aac_48000_s3_path, aac_48000) + + mp3_48000_digest = ::Digest::MD5.file(mp3_48000) + # and finally update the JamTrackTrack with the new info + track["url_mp3_48"] = mp3_48000_s3_path + track["md5_mp3_48"] = mp3_48000_digest.hexdigest + track["length_mp3_48"] = File.new(mp3_48000).size + + track["url_aac_48"] = aac_48000_s3_path + track["md5_aac_48"] = ::Digest::MD5.file(aac_48000).hexdigest + track["length_aac_48"] = File.new(aac_48000).size + track.save + end + end + end + + + def synchronize_duration(jam_track, ogg_44100) + duration_command = "soxi -D \"#{ogg_44100}\"" + output = `#{duration_command}` + + result_code = $?.to_i + + if result_code == 0 + duration = output.to_f.round + jam_track.duration = duration + else + puts("unable to determine duration for jam_track #{jam_track.name}. output #{output}") + end + true + end + + def synchronize_track_preview(track, tmp_dir, ogg_44100) + + preview_start_time = determine_start_time(ogg_44100, tmp_dir, track.original_filename) + + # this is in seconds; convert to integer milliseconds + preview_start_time = (preview_start_time * 1000).to_i + + preview_start_time = 0 if preview_start_time < 0 + + track.preview_start_time = preview_start_time + + track.process_preview(ogg_44100, tmp_dir) if track.preview_start_time + + if track.preview_generate_error + puts(track.preview_generate_error) + raise track.preview_generate_error + end + + end + + def synchronize_aac_preview(track, tmp_dir, ogg_44100, ogg_digest) + begin + aac_44100 = File.join(tmp_dir, 'output-preview-44100.aac') + convert_aac_cmd = "#{APP_CONFIG.ffmpeg_path} -i \"#{ogg_44100}\" -c:a libfdk_aac -b:a 192k \"#{aac_44100}\"" + puts("converting to aac using: " + convert_aac_cmd) + + convert_output = `#{convert_aac_cmd}` + + aac_digest = ::Digest::MD5.file(aac_44100) + + track["preview_aac_md5"] = aac_md5 = aac_digest.hexdigest + + # upload 44100 aac to public location + puts("uploading aac preview to #{track.preview_filename('aac')}") + public_jamkazam_s3_manager.upload(track.preview_filename(aac_digest.hexdigest, 'aac'), aac_44100, content_type: 'audio/aac', content_md5: aac_digest.base64digest) + + + track.skip_uploader = true + + original_aac_preview_url = track["preview_aac_url"] + + # and finally update the JamTrackTrack with the new info + track["preview_aac_url"] = track.preview_filename(aac_md5, 'aac') + track["preview_aac_length"] = File.new(aac_44100).size + track["preview_start_time"] = 0 + + if !track.save + finish("save_master_preview", track.errors.to_s) + return false + end + + # if all that worked, now delete old previews, if present + begin + public_jamkazam_s3_manager.delete(original_aac_preview_url) if original_aac_preview_url && original_aac_preview_url != track["preview_aac_url"] + rescue + puts "UNABLE TO CLEANUP OLD PREVIEW URL" + end + rescue Exception => e + finish("sync_master_preview_exception", e.to_s) + return false + end + + + return true + + end + + def synchronize_master_preview(track, tmp_dir, ogg_44100, ogg_digest) + + begin + mp3_44100 = File.join(tmp_dir, 'output-preview-44100.mp3') + convert_mp3_cmd = "#{APP_CONFIG.ffmpeg_path_mp3} -i \"#{ogg_44100}\" -ab 192k \"#{mp3_44100}\"" + puts("converting to mp3 using: " + convert_mp3_cmd) + + convert_output = `#{convert_mp3_cmd}` + + mp3_digest = ::Digest::MD5.file(mp3_44100) + + aac_44100 = File.join(tmp_dir, 'output-preview-44100.aac') + convert_aac_cmd = "#{APP_CONFIG.ffmpeg_path} -i \"#{ogg_44100}\" -c:a libfdk_aac -b:a 192k \"#{aac_44100}\"" + puts("converting to aac using: " + convert_aac_cmd) + + convert_output = `#{convert_aac_cmd}` + + aac_digest = ::Digest::MD5.file(aac_44100) + + + track["preview_md5"] = ogg_md5 = ogg_digest.hexdigest + track["preview_mp3_md5"] = mp3_md5 = mp3_digest.hexdigest + track["preview_aac_md5"] = aac_md5 = aac_digest.hexdigest + + # upload 44100 ogg, mp3, aac to public location as well + puts("uploading ogg preview to #{track.preview_filename('ogg')}") + public_jamkazam_s3_manager.upload(track.preview_filename(ogg_digest.hexdigest, 'ogg'), ogg_44100, content_type: 'audio/ogg', content_md5: ogg_digest.base64digest) + puts("uploading mp3 preview to #{track.preview_filename('mp3')}") + public_jamkazam_s3_manager.upload(track.preview_filename(mp3_digest.hexdigest, 'mp3'), mp3_44100, content_type: 'audio/mpeg', content_md5: mp3_digest.base64digest) + puts("uploading aac preview to #{track.preview_filename('aac')}") + public_jamkazam_s3_manager.upload(track.preview_filename(aac_digest.hexdigest, 'aac'), aac_44100, content_type: 'audio/aac', content_md5: aac_digest.base64digest) + + + track.skip_uploader = true + + original_ogg_preview_url = track["preview_url"] + original_mp3_preview_url = track["preview_mp3_url"] + original_aac_preview_url = track["preview_aac_url"] + + # and finally update the JamTrackTrack with the new info + track["preview_url"] = track.preview_filename(ogg_md5, 'ogg') + track["preview_length"] = File.new(ogg_44100).size + # and finally update the JamTrackTrack with the new info + track["preview_mp3_url"] = track.preview_filename(mp3_md5, 'mp3') + track["preview_mp3_length"] = File.new(mp3_44100).size + track["preview_aac_url"] = track.preview_filename(aac_md5, 'mp3') + track["preview_aac_length"] = File.new(aac_44100).size + track["preview_start_time"] = 0 + + if !track.save + finish("save_master_preview", track.errors.to_s) + return false + end + + # if all that worked, now delete old previews, if present + begin + public_jamkazam_s3_manager.delete(original_ogg_preview_url) if original_ogg_preview_url && original_ogg_preview_url != track["preview_url"] + public_jamkazam_s3_manager.delete(original_mp3_preview_url) if original_mp3_preview_url && original_mp3_preview_url != track["preview_mp3_url"] + public_jamkazam_s3_manager.delete(original_aac_preview_url) if original_aac_preview_url && original_aac_preview_url != track["preview_aac_url"] + rescue + puts "UNABLE TO CLEANUP OLD PREVIEW URL" + end + rescue Exception => e + finish("sync_master_preview_exception", e.to_s) + return false + end + + + return true + + end + + def fetch_all_files(s3_path) + puts "fetch_all_files #{s3_path}" + JamTrackLambdaImporter::song_storage_manager.list_files(s3_path) + end + + def fetch_important_files(s3_path) + files = fetch_all_files(s3_path) + files.select { |file| file.end_with?('.wav') || file.end_with?('.txt') } + end + + def synchronize(jam_track, metadata, metalocation, options) + + # metalocation should be audio/original artist/song name/meta.yml + + metadata ||= {} + + parsed_metalocation = parse_metalocation(metalocation) + puts "PARESD META LOCATIN #{parsed_metalocation}" + return unless parsed_metalocation + + original_artist = parsed_metalocation[1] + name = parsed_metalocation[2] + + if is_paris_storage? + bpm = parsed_metalocation[-1] + bpm.downcase! + if bpm.end_with?('bpm') + bpm = bpm[0..-4].to_f + end + metadata[:bpm] = bpm + end + + success = synchronize_metadata(jam_track, metadata, metalocation, original_artist, name, options) + + return unless success + + audio_path = metalocation[0...-"/meta.yml".length] + + synchronized_audio = synchronize_audio(jam_track, metadata, audio_path, options[:skip_audio_upload]) + + return unless synchronized_audio + + #created_plan = synchronize_recurly(jam_track) + #if created_plan + # finish("success", nil) + #end + + # do a last check on any problems with the jamtrack + jam_track.sync_onboarding_exceptions + end + + + # def synchronize_recurly(jam_track) + # begin + # recurly = RecurlyClient.new + # # no longer create JamTrack plans: VRFS-3028 + # # recurly.create_jam_track_plan(jam_track) unless recurly.find_jam_track_plan(jam_track) + # rescue RecurlyClientError => x + # finish('recurly_create_plan', x.errors.to_s) + # return false + # end + # + # true + # end + + # this seems to be a one-off function for some JamTracks missing click tracks initially + def import_click_track(jam_track) + # we need to download the click track, if it exists. + Dir.mktmpdir do |tmp_dir| + + puts("importing clicking track for #{jam_track.original_artist}:#{jam_track.name}") + + if jam_track.click_track + puts("already has click track: #{jam_track.original_artist}:#{jam_track.name}") + finish('success', 'already_has_click_track') + return + end + + click_track_file = jam_track.click_track_file + if click_track_file.nil? + puts("no click track for #{jam_track.original_artist}:#{jam_track.name}") + finish('success', 'no_click_track') + return + end + + original_filename = click_track_file[:original_filename] + + if original_filename.nil? + puts("no click track s3 path for #{jam_track.original_artist}:#{jam_track.name}") + finish('no_original_source', 'click track is missing s3 path:' + click_track_file.id) + return + end + + wav_file = File.join(tmp_dir, File.basename(click_track_file[:original_filename])) + JamTrackLambdaImporter.song_storage_manager.download(click_track_file[:original_filename], wav_file) + + JamTrack.transaction do + click_track = jam_track.click_track + + if click_track.nil? + click_track = JamTrackTrack.new + click_track.original_filename = click_track_file[:original_filename] + click_track.original_audio_s3_path = click_track_file[:original_filename] + click_track.track_type = 'Click' + click_track.part = 'Clicktrack' + click_track.instrument_id = 'computer' + click_track.jam_track = jam_track + click_track.position = 10000 + click_track.wav_file = wav_file + + if !click_track.save + @@log.error("unable to create jamtrack click track #{click_track.errors.inspect}") + finish("jam_track_click", "unable to create: #{click_track.errors.inspect}") + return false + end + end + + jam_track.increment_version! + + # with the click track in hand, flesh out the details + synchronize_audio_track(jam_track, tmp_dir, false, click_track) + + finish('success', nil) + end + end + end + + def execute_cmd(cmd) + + puts "executing cmd '#{cmd}'" + output = `#{cmd}` + result_code = $?.to_i + #puts "output: #{output}" + [result_code, output] + end + def sanity_check_env + + #execute_cmd("ls -laR /opt") + + #puts `ldd /opt/bin/sox` + result_code = execute_cmd("sox -h") + if result_code != 0 + puts "sox failed" + return + end + result_code = execute_cmd("soxi") + if result_code != 0 + puts "soxi failed" + return + end + + result_code = execute_cmd("oggenc -h") + if result_code != 0 + puts "oggenc failed" + return + end + + result_code = execute_cmd("ffmpeg -h") + if result_code != 0 + puts "ffmpeg failed" + return + end + + + result_code = execute_cmd("bpm -h") + if result_code != 0 + puts "bpm failed" + return + end + end + + + + # jamkazam-tency-uploads + def tency_unzipper(tency_zips_manager, tence_uploads_manager, working_dir, manifest_name, manifest_path) + # unzip the files in the directory; responsibility is to name + # the folder well, based on the name of the master track. + + # get one directory up from the manifest file; this is the zip file name + # + + zip_file_path = File.join(working_dir, "#{manifest_name}") + + s3_zip_path = "/#{manifest_name}" + puts "downloading from #{s3_zip_path} to zip_file_path: #{zip_file_path}" + + # temporary - REMOVE ME + #if !File.exist?(zip_file_path) + # find the zip file in the bucket + # download the zip file to the tmp_dir location + tency_zips_manager.download(s3_zip_path, zip_file_path) + #end + + output = `unzip #{zip_file_path} -d #{working_dir}` + if $?.to_i != 0 + puts "unzip failed: #{output}" + exit 1 + end + puts "output: #{output}" + output = `ls -laR #{working_dir}` + puts "output: #{output}" + # first, find the song id from the manifest name, which will look like: + # 38-special_rockin-into-the-night_65638/ + # so split by '_' and take the last one + song_id = manifest_name.split('_').last.to_i + puts "song_id: #{song_id}" + # check that it's a number + if song_id == 0 + puts "song_id is not a number: #{song_id}, manifest_name: #{manifest_name}" + raise "song_id is not a number: #{song_id}, manifest_name: #{manifest_name}" + end + + # there is a file in the unzipped folder that is the master track. It's named like this: + # - <artist> - <song_id> - <desc>.wav + # for example: Little River Band - Cool Change - 40149 - nbv-bv-ld.wav + # so split by '-' and take the first three + # the manifest file is also contents of the zip file, so we could use that instead of iterating over the files + # iterate each line in manifest.txt file + artist = nil + title = nil + + + manifest_file_contents = "" + Dir.glob("#{working_dir}/**/*").each do |file| + # split by '-' and take the first three + if File.directory?(file) + next + end + + line = file.sub("#{working_dir}/", "") + manifest_file_contents += line + manifest_file_contents += "\n" + end + + Dir.glob("#{working_dir}/**/*").each do |file| + # split by '-' and take the first three + if File.directory?(file) + next + end + + line = file.sub("#{working_dir}/", "") + + master_artist, master_title, master_song_id, desc = line.split('-') + if song_id == master_song_id.to_i + artist = master_artist + title = master_title + break + end + end + if artist.nil? || title.nil? + puts "artist or title not found in manifest file: #{working_dir}" + raise "artist or title not found in manifest file: #{working_dir}" + end + + + # create a new folder with the artist and song_id + folder_name = "mapped/#{artist.strip} - #{title.strip} - #{song_id}" + puts "folder_name: #{folder_name}" + + + Tempfile.create("manifest_tmp_file") do |file| + file.write(manifest_file_contents) # Write the string to the file + file.flush # Ensure the content is written to disk + tence_uploads_manager.upload("#{folder_name}/manifest.txt",file) + end # The file is automatically closed and deleted when the block ends + + + # iterate every file in the working dir, recursively, uploading each file + # found to the folder_name in S3 + Dir.glob("#{working_dir}/**/*").each do |file| + # skip directories + if File.directory?(file) + next + end + if file.end_with?('.zip') + next + end + # make the file name relative to the working dir + relative_file = file[(working_dir.length + 1)..-1] + upload_path = "#{folder_name}/#{relative_file}" + puts "uploading #{file} to #{upload_path}" + tence_uploads_manager.upload(upload_path,file) + end + end + + ### SELFZONE ### + class << self + + attr_accessor :storage_format + attr_accessor :tency_mapping + attr_accessor :tency_metadata + attr_accessor :paris_mapping + attr_accessor :paris_metadata + attr_accessor :summaries + attr_accessor :marks_approved + + # Lambda invoked import command + def import(tence_uploads_manager, working_dir, manifest_name, manifest_path, s3_manifest_path) + # sanity_check_env + + metalocation = File.dirname(s3_manifest_path) + '/meta.yml' + options = {} + puts "#{manifest_name}: metalocation #{metalocation}" + importer = synchronize_from_meta(metalocation, options) + end + + + def dry_run + iterate_song_storage do |metadata, metalocation| + jam_track_importer = JamTrackLambdaImporter.new(@storage_format) + jam_track_importer.metadata = metadata + + JamTrackLambdaImporter.summaries[:total] += 1 + + jam_track_importer.dry_run(metadata, metalocation) + end + + report_summaries + end + + def synchronize_all(options) + importers = [] + + count = 0 + iterate_song_storage do |metadata, metalocation| + + next if metadata.nil? && (is_tency_storage? || is_tency_zipped_storage? || is_paris_storage?) + + importer = synchronize_from_meta(metalocation, options) + importers << importer + + if importer.reason != 'jam_track_exists' && importer.reason != "other_processing" + count+=1 + end + + if count > 500 + #break + end + end + + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "jam_track_exists" || importer.reason == "other_processing" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + + def synchronize_from_meta(metalocation, options) + # see if we can find a JamTrack with this metalocation + jam_track = JamTrack.find_by_metalocation(metalocation) + + meta = load_metalocation(metalocation) + + if meta.nil? + raise "no tency song matching this metalocation #{metalocation}" + end + jam_track_importer = nil + if jam_track + puts ("jamtrack #{jam_track.name} located by metalocation") + puts "Not supported yet" + return nil + jam_track_importer = update_from_metalocation(jam_track, meta, metalocation, options) + else + puts ("jamtrack #{metalocation} is being created") + jam_track_importer = create_from_metalocation(meta, metalocation, options) + end + + if jam_track_importer.reason == "success" + puts("#{jam_track_importer.jam_track.id}: #{jam_track_importer.jam_track.original_artist} #{jam_track_importer.jam_track.name}\nhttps://www.jamkazam.com/landing/jamtracks/#{jam_track_importer.jam_track.slug} successfully imported") + else + @@log.error("#{jam_track_importer.name} failed to import.") + @@log.error("#{jam_track_importer.name} reason=#{jam_track_importer.reason}") + @@log.error("#{jam_track_importer.name} detail=#{jam_track_importer.detail}") + end + + jam_track_importer + end + + def report_summaries + puts("SUMMARIES DUMP") + puts("--------------") + @summaries.each do |k, v| + + if k == :no_instrument_detail + puts("#{k}: #{v}") + elsif k == :no_precount_detail + v.each do |precount_detail| + puts("precount: #{precount_detail}") + end + elsif k == :unique_artists + v.each do |artist| + puts("artist: #{artist}") + end + else + puts("#{k}: #{v}") + end + end + end + + def song_storage_manager + if is_tency_storage? + tency_s3_manager + elsif is_tency_zipped_storage? + tency_zipped_s3_manager + elsif is_paris_storage? + paris_s3_manager + elsif is_tim_tracks_storage? + tim_tracks_s3_manager + elsif is_drumma_storage? + drumma_s3_manager + elsif is_clevie_storage? + clevie_s3_manager + elsif is_helbing_storage? + helbing_s3_manager + else + s3_manager + end + end + + def summaries + @summaries ||= {unknown_filetype: 0, no_instrument: 0, no_part: 0, total_tracks: 0, no_instrument_detail: {}, no_precount_num: 0, no_precount_detail: [], unique_artists: SortedSet.new, multiple_masters: 0, total: 0} + end + + def drumma_s3_manager + @drumma_s3_manager ||= S3Manager.new('jamkazam-drumma', APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + + def clevie_s3_manager + @clevie_s3_manager ||= S3Manager.new('jamkazam-clevie', APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + + def tency_s3_manager + @tency_s3_manager ||= S3Manager.new(ENV["TENCY_JAMTRACKS_BUCKET"]) + end + + def tency_zipped_s3_manager + @tency_zipped_s3_manager ||= S3Manager.new(ENV["TENCY_ZIPS_BUCKET"]) + end + + def paris_s3_manager + @paris_s3_manager ||= S3Manager.new('jamkazam-paris', APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + + def tim_tracks_s3_manager + @tim_tracks_s3_manager ||= S3Manager.new('jamkazam-timtracks', APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + + def helbing_s3_manager + @tim_tracks_s3_manager ||= S3Manager.new('jamkazam-helbing', APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + + def s3_manager + @s3_manager ||= S3Manager.new(APP_CONFIG.aws_bucket_jamtracks, APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + + def private_s3_manager + @private_s3_manager ||= S3Manager.new(APP_CONFIG.aws_bucket) + end + + def extract_paris_song_id(metalocation) + + first_path = metalocation.index('/') + return nil unless first_path + metalocation = metalocation[(first_path + 1)..-1] + + suffix = '/meta.yml' + metalocation = metalocation[0...-suffix.length] + + first_dash = metalocation.index('-') + return nil if first_dash.nil? + + id = metalocation[0...first_dash].strip + + return nil unless id.start_with?('S') # all start with S + return nil if id[1..-1].to_i == 0 # and number after that + id + end + + def extract_tency_song_id(metalocation) + # metalocation = mapped/4 Non Blondes - What's Up - 6475/meta.yml + + first_path = metalocation.index('/') + return nil unless first_path + metalocation = metalocation[(first_path + 1)..-1] + + suffix = '/meta.yml' + metalocation = metalocation[0...-suffix.length] + + last_dash = metalocation.rindex('-') + return nil if last_dash.nil? + + id = metalocation[(last_dash+1)..-1].strip + + return nil if id.to_i == 0 + + id + end + + def is_default_storage? + assert_storage_set + @storage_format == 'default' + end + + def is_drumma_storage? + assert_storage_set + @storage_format == 'Drumma' + end + + def is_clevie_storage? + assert_storage_set + @storage_format == 'Clevie' + end + + def is_tency_storage? + assert_storage_set + @storage_format == 'Tency' + end + + def is_tency_zipped_storage? + assert_storage_set + @storage_format == 'Tency_zipped' + end + + def is_paris_storage? + assert_storage_set + @storage_format == 'Paris' + end + + def is_tim_tracks_storage? + assert_storage_set + @storage_format == 'TimTracks' + end + + def is_helbing_storage? + assert_storage_set + @storage_format == 'Helbing' + end + + + def assert_storage_set + raise "no storage_format set" if @storage_format.nil? + end + + def iterate_tim_tracks_song_storage(&blk) + count = 0 + song_storage_manager.list_directories('mapped').each do |song| + puts("searching through song directory '#{song}'") + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + blk.call(metadata, metalocation) + + count += 1 + #break if count > 100 + + end + end + + def iterate_paris_song_storage(&blk) + count = 0 + song_storage_manager.list_directories('mapped').each do |song| + puts("searching through song directory '#{song}'") + + #next if song != 'mapped/S1555-Ashlee Simpson-L-O-V-E-96bpm/' + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + if metadata.nil? + # we don't do a paris song unless it has metadata + next + end + blk.call(metadata, metalocation) + + count += 1 + #break if count > 1000 + end + end + + def handle_tency_song(directory, &blk) + metalocation = "#{directory}meta.yml" + + metadata = load_metalocation(metalocation) + + blk.call(metadata, metalocation) + end + + def iterate_tency_song_storage(&blk) + count = 0 + song_storage_manager.list_directories('mapped').each do |song| + puts("searching through song directory '#{song}'") + + handle_tency_song(song, &blk) + + count += 1 + #break if count > 100 + end + end + + def iterate_tency_zipped_song_storage(&blk) + count = 0 + song_storage_manager.list_directories('mapped').each do |song| + puts("searching through song directory '#{song}'") + + handle_tency_song(song, &blk) + + count += 1 + #break if count > 100 + end + end + + def iterate_default_song_storage(&blk) + song_storage_manager.list_directories('audio').each do |original_artist| + puts("searching through artist directory '#{original_artist}'") + + songs = song_storage_manager.list_directories(original_artist) + songs.each do |song| + puts("searching through song directory' #{song}'") + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + blk.call(metadata, metalocation) + end + end + end + + def iterate_drumma_song_storage(&blk) + song_storage_manager.list_directories.each do |song| + puts("searching through song directory '#{song}'") + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + blk.call(metadata, metalocation) + + end + end + + def iterate_clevie_song_storage(&blk) + song_storage_manager.list_directories.each do |song| + puts("searching through song directory '#{song}'") + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + blk.call(metadata, metalocation) + + end + end + + def iterate_helbing_song_storage(&blk) + count = 0 + song_storage_manager.list_directories('mapped').each do |song| + puts("searching through song directory '#{song}'") + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + blk.call(metadata, metalocation) + + count += 1 + #break if count > 100 + end + end + + def iterate_song_storage(&blk) + if is_tency_storage? + iterate_tency_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + elsif is_tency_zipped_storage? + iterate_tency_zipped_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + elsif is_paris_storage? + iterate_paris_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + elsif is_tim_tracks_storage? + iterate_tim_tracks_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + elsif is_drumma_storage? + iterate_drumma_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + elsif is_clevie_storage? + iterate_clevie_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + elsif is_helbing_storage? + iterate_helbing_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + else + iterate_default_song_storage do |metadata, metalocation| + blk.call(metadata, metalocation) + end + end + end + + # figure out which songs are in S3 that do not exist in the 2k spreadsheet (mapping.csv), and which songs are in the 2k spreadsheet that are not in S3 + def tency_delta + in_s3 = {} + in_mapping = {} + + load_tency_mappings + + JamTrackLambdaImporter.tency_metadata.each do |song_id, metadata| + in_mapping[song_id] = {artist: metadata[:original_artist], song: metadata[:name]} + end + + iterate_song_storage do |metadata, metalocation| + + importer = JamTrackLambdaImporter.new(@storage_format) + importer.metadata = metadata + song_id = JamTrackLambdaImporter.extract_tency_song_id(metalocation) + parsed_metalocation = importer.parse_metalocation(metalocation) + + next if song_id.nil? + next if parsed_metalocation.nil? + + original_artist = parsed_metalocation[1] + meta_name = parsed_metalocation[2] + + in_s3[song_id] = {artist: original_artist, song: meta_name} + end + + in_s3_keys = Set.new(in_s3.keys) + in_mapping_keys = Set.new(in_mapping.keys) + only_in_mapping = in_mapping_keys - in_s3_keys + only_in_s3 = in_s3_keys - in_mapping_keys + + CSV.open("only_in_s3.csv", "wb") do |csv| + only_in_s3.each do |song_id| + csv << [song_id, in_s3[song_id][:artist], in_s3[song_id][:song]] + end + end + + CSV.open("only_in_2k_selection.csv", "wb") do |csv| + only_in_mapping.each do |song_id| + csv << [song_id, in_mapping[song_id][:artist], in_mapping[song_id][:song]] + end + end + + end + + def add_tency_metadata + JamTrackLicensor.find_by_name('Tency Music').jam_tracks.each do |jam_track| + jam_track_importer = JamTrackLambdaImporter.new(@storage_format) + jam_track_importer.add_licensor_metadata('Tency Music', jam_track.metalocation) + break + end + end + + def create_masters + iterate_song_storage do |metadata, metalocation| + next if metadata.nil? + jam_track_importer = JamTrackLambdaImporter.new(@storage_format) + jam_track_importer.metadata = metadata + jam_track_importer.create_master(metadata, metalocation) + end + end + + def create_master(path) + metalocation = "#{path}/meta.yml" + + metadata = load_metalocation(metalocation) + + jam_track_importer = JamTrackLambdaImporter.new(@storage_format) + + jam_track_importer.create_master(metadata, metalocation) + end + + def dry_run_original + s3_manager.list_directories('audio').each do |original_artist| + puts("searching through artist directory '#{original_artist}'") + + songs = s3_manager.list_directories(original_artist) + songs.each do |song| + puts("searching through song directory' #{song}'") + + metalocation = "#{song}meta.yml" + + metadata = load_metalocation(metalocation) + + jam_track_importer = JamTrackLambdaImporter.new + jam_track_importer.metadata = metadata + + jam_track_importer.dry_run(metadata, metalocation) + end + end + + end + + def synchronize_preview(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + error_occurred = false + error_msg = nil + jam_track.jam_track_tracks.each do |track| + next if track.track_type == 'Master' + + if track.preview_start_time + track.generate_preview + if track.preview_generate_error + error_occurred = true + error_msg = track.preview_generate_error + raise track.preview_generate_error + else + end + end + end + + if error_occurred + importer.finish('preview_error', error_msg) + else + importer.finish('success', nil) + end + importer + end + + # hunts for the most recent .aac, .mp3, or .ogg file + def synchronize_preview_dev(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + importer.synchronize_preview_dev(jam_track) + + importer.finish('success', nil) + importer + end + + def synchronize_jamtrack_aac_preview(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + track = jam_track.master_track + + if track + Dir.mktmpdir do |tmp_dir| + ogg_44100 = File.join(tmp_dir, 'input.ogg') + private_s3_manager.download(track.url_by_sample_rate(44), ogg_44100) + ogg_44100_digest = ::Digest::MD5.file(ogg_44100) + if importer.synchronize_aac_preview(track, tmp_dir, ogg_44100, ogg_44100_digest) + importer.finish("success", nil) + end + end + else + importer.finish('no_master_track', nil) + end + importer + end + + # created for helbing tracks which had .mp3 as click track + def convert_click_track_to_wav(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + track = jam_track.click_track + + if !track + Dir.mktmpdir do |tmp_dir| + + # something like: "mapped/Victor Young - Stella By Starlight/meta.yml" + metalocation = jam_track.metalocation + base_dir = metalocation[0...metalocation.rindex('/')] + click_mp3 = File.join(tmp_dir, 'Click.mp3') + click_wav = File.join(tmp_dir, 'Click.wav') + song_storage_manager.download(base_dir + '/Click.mp3', click_mp3) + + cmd = "#{APP_CONFIG.ffmpeg_path_mp3} -i \"#{click_mp3}\" \"#{click_wav}\"" + + result, output = execute_cmd(cmd) + if result != 0 + raise "#{cmd} failed to convert click track to wave: #{output}" + end + + song_storage_manager.upload(base_dir + '/Click.wav', click_wav) + importer.finish("success", nil) + end + else + importer.finish('success', nil) + end + importer + end + + def synchronize_jamtrack_master_preview(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + master_track = jam_track.master_track + + if master_track + Dir.mktmpdir do |tmp_dir| + ogg_44100 = File.join(tmp_dir, 'input.ogg') + private_s3_manager.download(master_track.url_by_sample_rate(44), ogg_44100) + ogg_44100_digest = ::Digest::MD5.file(ogg_44100) + if importer.synchronize_master_preview(master_track, tmp_dir, ogg_44100, ogg_44100_digest) + importer.finish("success", nil) + end + end + else + importer.finish('no_master_track', nil) + end + + importer + end + + def synchronize_previews_dev + importers = [] + + JamTrack.all.each do |jam_track| + importers << synchronize_preview_dev(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "no_preview_start_time" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def import_click_track(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + importer.import_click_track(jam_track) + + importer + end + + def generate_jmep(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + importer.generate_jmep(jam_track) + + importer + end + + def import_click_tracks + importers = [] + + licensor = JamTrackLicensor.find_by_name!('Stockton Helbing') + JamTrack.where(licensor_id: licensor.id).each do |jam_track| + #jam_track = JamTrack.find('126') + importers << import_click_track(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to generate jmep.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def generate_jmeps + importers = [] + if is_tency_storage? || is_tency_zipped_storage? + licensor = JamTrackLicensor.find_by_name!('Tency Music') + elsif is_paris_storage? + licensor = JamTrackLicensor.find_by_name!('Paris Music') + end + + JamTrack.where(licensor_id: licensor).each do |jam_track| + importers << generate_jmep(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to generate jmep.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + + def synchronize_previews + importers = [] + + JamTrack.all.each do |jam_track| + importers << synchronize_preview(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "no_preview_start_time" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def convert_click_track_to_wavs + importers = [] + + licensor = JamTrackLicensor.find_by_name!('Stockton Helbing') + JamTrack.where(licensor_id: licensor.id).each do |jam_track| + importers << convert_click_track_to_wav(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "jam_track_exists" || importer.reason == "other_processing" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + + end + end + def synchronize_jamtrack_aac_previews + + importers = [] + + JamTrack.all.each do |jam_track| + importers << synchronize_jamtrack_aac_preview(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "jam_track_exists" || importer.reason == "other_processing" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + end + end + + def synchronize_jamtrack_master_previews + importers = [] + + JamTrack.all.each do |jam_track| + importers << synchronize_jamtrack_master_preview(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "jam_track_exists" || importer.reason == "other_processing" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def synchronize_duration(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + master_track = jam_track.master_track + if master_track + begin + Dir.mktmpdir do |tmp_dir| + ogg_44100 = File.join(tmp_dir, 'input.ogg') + private_s3_manager.download(master_track.url_by_sample_rate(44), ogg_44100) + + if importer.synchronize_duration(jam_track, ogg_44100) + jam_track.save! + importer.finish("success", nil) + end + end + rescue + logger.error("ERROR: Import failed: "+$!.to_s) + importer.finish('no_duration', nil) + end + else + importer.finish('no_duration', nil) + end + + importer + end + + def synchronize_durations + importers = [] + + JamTrack.all.each do |jam_track| + importers << synchronize_duration(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" || importer.reason == "jam_track_exists" || importer.reason == "other_processing" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to import.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def download_master(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + Dir.mkdir('tmp') unless Dir.exists?('tmp') + Dir.mkdir('tmp/jam_track_masters') unless Dir.exists?('tmp/jam_track_masters') + + master_track = jam_track.master_track + if master_track + ogg_44100 = File.join('tmp/jam_track_masters', "#{jam_track.original_artist} - #{jam_track.name}.ogg") + private_s3_manager.download(master_track.url_by_sample_rate(44), ogg_44100) + end + importer + end + + def generate_mp3_aac_stem(jam_track) + importer = JamTrackLambdaImporter.new + importer.name = jam_track.name + + Dir.mktmpdir do |tmp_dir| + + audio_path = jam_track.metalocation[0...-"/meta.yml".length] + importer.associate_tracks_with_original_stems(jam_track, audio_path) + importer.generate_mp3_aac_stem(jam_track, tmp_dir, false) + end + + importer + end + + def download_masters + importers = [] + + JamTrack.all.each do |jam_track| + importers << download_master(jam_track) + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to download.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def remove_s3_special_chars(filename) + filename.tr('/&@:,$=+?;\^`><{}[]#%~|', '') + end + + def generate_mp3_aac_stems(format) + importers = [] + + jam_tracks = [] + + tency = JamTrackLicensor.find_by_name('Tency Music') + + puts("processing storage #{@storage_format}") + if is_tency_storage? || is_tency_zipped_storage? + tency = JamTrackLicensor.find_by_name!('Tency Music') + jam_tracks = JamTrack.where(licensor_id: tency.id) + elsif is_paris_storage? + paris = JamTrackLicensor.find_by_name!('Paris Music') + jam_tracks = JamTrack.where(licensor_id: paris.id) + elsif is_default_storage? + # XXX IF WE ADD ANOTHER STORAGE, UPDATE THE WHERE TO EXCLUDE IT AS WELL + jam_tracks = JamTrack.where('licensor_id is null OR licensor_id != ?', tency.id) + else + raise 'unknown storage format!' + end + + jam_tracks.each do |jam_track| + + if ENV['NODE_COUNT'] + node_count = ENV['NODE_COUNT'].to_i + node_number = ENV['NODE_NUMBER'].to_i + raise "NO NODE_COUNT" if node_count == 0 + + jam_track_id = jam_track.id.to_i + jam_track_id = jam_track_id + node_number + if jam_track_id == 0 + puts("skipping #{jam_track_id} because non-numeric ID") + next + elsif jam_track_id % node_count == 0 + puts("starting JamTrack #{jam_track.id} (#{jam_track_id})") + importers << generate_mp3_aac_stem(jam_track) + else + puts("skipping #{jam_track_id}") + next + end + else + importers << generate_mp3_aac_stem(jam_track) + end + + end + + puts("SUMMARY") + puts("-------") + importers.each do |importer| + if importer + if importer.reason == "success" + puts("#{importer.name} #{importer.reason}") + else + @@log.error("#{importer.name} failed to download.") + @@log.error("#{importer.name} reason=#{importer.reason}") + @@log.error("#{importer.name} detail=#{importer.detail}") + end + else + @@log.error("NULL IMPORTER") + end + + end + end + + def generate_slugs + JamTrack.all.each do |jam_track| + jam_track.generate_slug + jam_track.save! + end + end + + def onboarding_exceptions + JamTrack.all.each do |jam_track| + jam_track.onboarding_exceptions + end + end + + def jam_track_dry_run(metalocation) + # see if we can find a JamTrack with this metalocation + jam_track = JamTrack.find_by_metalocation(metalocation) + + meta = load_metalocation(metalocation) + + if jam_track + puts("jamtrack #{jam_track.name} located by metalocation") + jam_track.dry_run(meta, metalocation) + else + jam_track = JamTrack.new + jam_track.dry_run(meta, metalocation) + end + end + + def paris_genre_dump + load_paris_mappings + + genres = {} + @paris_metadata.each do |id, value| + genre1 = value[:genre1] + genre2 = value[:genre2] + genre3 = value[:genre3] + + genres[genre1.downcase.strip] = genre1.downcase.strip if genre1 + genres[genre2.downcase.strip] = genre2.downcase.strip if genre2 + genres[genre3.downcase.strip] = genre3.downcase.strip if genre3 + end + + all_genres = Genre.select(:id).all.map(&:id) + + all_genres = Set.new(all_genres) + genres.each do |genre, value| + found = all_genres.include? genre + + puts "#{genre}" unless found + end + end + + + def create_importer_from_existing(jam_track) + importer = JamTrackLambdaImporter.new(@storage_format) + importer.name = jam_track.name + importer.metadata = load_metalocation(jam_track.metalocation) + importer + end + + def resync_instruments(licensor) + + load_paris_mappings if @paris_mapping.nil? && is_paris_storage? + + JamTrack.where(licensor_id: licensor.id).each do |jam_track| + + if is_paris_storage? && @paris_metadata[jam_track.vendor_id].nil? + next + end + puts "RESYNCING JAMTRACK #{jam_track.id}" + JamTrackTrack.where(jam_track_id: jam_track.id).order(:position).each do |track| + puts "BEFORE TRACK #{track.instrument_id} #{track.part}" + end + + importer = create_importer_from_existing(jam_track) + importer.reassign_instrument_parts(jam_track) + + #puts ">>>>>>>>> HIT KEY TO CONTINUE <<<<<<<<<<" + #STDIN.gets + break + end + + end + + + def fix_artist_song_name (licensor) + + load_paris_mappings if @paris_mapping.nil? + + JamTrack.where(licensor_id: licensor.id).each do |jam_track| + + metadata = @paris_metadata[jam_track.vendor_id] + + if metadata.nil? + puts "OH NO! A Paris Song that does not belong! #{jam_track.id} #{jam_track.vendor_id}" + next + end + + puts "STARTING JAM_TRACK #{jam_track.id} #{jam_track.original_artist} #{jam_track.name}" + + jam_track.generate_slug + + if jam_track.changed? + puts "SLUG CHANGED! #{jam_track.changes.inspect}" + end + + if !jam_track.save + puts "dup slug!!!!: #{jam_track.id} #{jam_track.name} #{jam_track.original_artist}" + end + + if jam_track.changed? + jam_track.reload + end + + jam_track.original_artist = metadata[:original_artist] + jam_track.name = metadata[:name] + if jam_track.changed? + puts "ARTIST/NAME CHANGE: #{jam_track.changes.inspect}" + end + + if !jam_track.save + puts "unable to save new artist/song!" + end + end + end + + def fix_slugs(licensor) + + JamTrack.where(licensor_id: licensor.id).each do |jam_track| + + if jam_track.slug.end_with?('-') + puts "removing trailing dash" + jam_track.slug = jam_track.slug[0...-1] + if !jam_track.save + puts "dup slug!!!!: #{jam_track.id} #{jam_track.name} #{jam_track.original_artist}" + end + end + end + end + + def missing_masters(licensor) + + count = 0 + JamTrack.where(licensor_id: licensor.id).each do |jam_track| + + + if jam_track.master_track.nil? + puts "MISSING #{jam_track.metalocation}" + count += 1 + end + + end + + puts "missing master count: #{count}" + end + + def tency_genre_dump + load_tency_mappings + + genres = {} + @tency_metadata.each do |id, value| + + genre1 = value[:genre1] + genre2 = value[:genre2] + genre3 = value[:genre3] + genre4 = value[:genre4] + genre5 = value[:genre5] + + genres[genre1.downcase.strip] = genre1.downcase.strip if genre1 + genres[genre2.downcase.strip] = genre2.downcase.strip if genre2 + genres[genre3.downcase.strip] = genre3.downcase.strip if genre3 + genres[genre4.downcase.strip] = genre4.downcase.strip if genre4 + genres[genre5.downcase.strip] = genre5.downcase.strip if genre5 + end + + all_genres = Genre.select(:id).all.map(&:id) + + all_genres = Set.new(all_genres) + genres.each do |genre, value| + found = all_genres.include? genre + + puts "#{genre}" unless found + end + end + + def load_marks_approved + @marks_approved = {} + Dir.mktmpdir do |tmp_dir| + mapping_file = 'marks_approved.csv' + mapping_csv = CSV.read(mapping_file, headers: true, return_headers: false) + + mapping_csv.each do |line| + approved = line[3] + track_url = line[2] + comments = line[7] + + approved.strip! if approved + track_url.strip! if track_url + comments.strip! if comments + + if approved == 'MJ' + prefix = 'https://www.jamkazam.com/landing/jamtracks/'.length + slug = track_url[prefix..-1] + + puts "MARKS APPROVED #{slug} #{comments}" + @marks_approved[slug] = comments + end + end + end + end + + def load_paris_mappings + Dir.mktmpdir do |tmp_dir| + mapping_file = File.join(tmp_dir, 'mapping.csv') + metadata_file = File.join(tmp_dir, 'metadata.csv') + + # this is a developer option to skip the download and look in the CWD to grab mapping.csv and metadata.csv + if ENV['PARIS_ALREADY_DOWNLOADED'] == '1' + mapping_file = 'paris_mapping.csv' + metadata_file = 'paris_metadata.csv' + else + paris_s3_manager.download('mapping/mapping.csv', mapping_file) + paris_s3_manager.download('mapping/metadata.csv', metadata_file) + end + + mapping_csv = CSV.read(mapping_file) + metadata_csv = CSV.read(metadata_file, headers: true, return_headers: false) + + @paris_mapping = {} + @paris_metadata = {} + # convert both to hashes + mapping_csv.each do |line| + instrument = line[1] + instrument.strip! if instrument + + part = line[2] + part.strip! if part + @paris_mapping[line[0].strip.downcase] = {instrument: instrument, part: part} + end + + metadata_csv.each do |line| + paris_artist = line[2] + # Paris artist in metadata file is often all caps + artist = paris_artist.split(' ').collect do |item| + if item == 'DJ' + 'DJ' + else + item.titleize + end + end.join(' ') + @paris_metadata[line[1].strip] = {id: line[1].strip, original_artist: artist, name: line[3], genre1: line[4], genre2: line[5], genre3: line[6]} + end + + @paris_metadata.each do |id, value| + + genres = [] + + genre1 = value[:genre1] + genre2 = value[:genre2] + genre3 = value[:genre3] + + genres << genre1.downcase.strip if genre1 + genres << genre2.downcase.strip if genre2 + genres << genre3.downcase.strip if genre3 + + value[:genres] = genres + end + end + end + + def load_tency_mappings + if is_tency_zipped_storage? + load_tency_first_mappings + else + load_tency_first_mappings + end + end + + def load_tency_zipped_mappings + # there is a locally available CSV file that we can load + # it has the columns: + # count,track_name,Instrument,Disambiguation String + # We want track_name to be the key to the tency_maping hash + # and the Instrument and Disambiguation String to be the values as names instrument and part + # we will ignore the count column + # we will not load a metadata file, as t + end + + def load_tency_first_mappings + Dir.mktmpdir do |tmp_dir| + mapping_file = File.join(tmp_dir, 'mapping.csv') + metadata_file = File.join(tmp_dir, 'metadata.csv') + + mapping_file = 'mapping.csv' + metadata_file = 'metadata.csv' + + mapping_csv = CSV.read(mapping_file, headers: true) + metadata_csv = CSV.read(metadata_file, headers: true) + + # mapping holds track-name to instrument/part data + @tency_mapping = {} + # metadata holds per-song info + @tency_metadata = {} + + # gather all instruments + instruments = Instrument.pluck(:id).to_set + # convert both to hashes + mapping_csv.each do |line| + instrument_id = line["Instrument"].downcase + if !instruments.include?(instrument_id) && instrument_id != "clicktrack" + raise "Line from metadata file does not have valid instrument #{line["Instrument"]}" + end + @tency_mapping[line[1].strip.downcase] = {instrument: instrument_id, part: line["Disambiguation String"], count: line["count"], trust: true} + end + + metadata_csv.each do |line| + if line["Source"] == "new" + @tency_metadata[line["tency_id"].strip] = {id: line["tency_id"].strip, original_artist: line["Artist"].strip, override_artist: line["Override Artist"], name: line["Song"].strip, override_song_name: line["Override Song"], source: line["Source"].strip, skip_import: line["Skip"], disable_existing: line["DisableExisting"]} + end + end + + + @tency_metadata.each do |id, value| + + genres = [] + + genre1 = value[:genre1] + genre2 = value[:genre2] + genre3 = value[:genre3] + genre4 = value[:genre4] + genre5 = value[:genre5] + + genres << genre1.downcase.strip if genre1 + genres << genre2.downcase.strip if genre2 + genres << genre3.downcase.strip if genre3 + genres << genre4.downcase.strip if genre4 + genres << genre5.downcase.strip if genre5 + + value[:genres] = genres + + # support overrides and data sanitization + value[:original_artist] = value[:override_artist].strip if value[:override_artist] + value[:name] = value[:override_song_name].strip if value[:override_song_name] + value[:disable_existing] = value[:disable_existing].strip == "TRUE" if value[:disable_existing] + end + + end + end + + def load_metalocation(metalocation) + + if is_tency_storage? + load_tency_mappings if @tency_mapping.nil? + song_id = extract_tency_song_id(metalocation) + + if song_id.nil? + puts "missing_song_id #{metalocation}" + return nil + end + + + puts "SONG ID #{song_id}" + tency_data = @tency_metadata[song_id] + + if tency_data.nil? + puts("missing tency metadata '#{song_id}'") + end + + return tency_data + elsif is_tency_zipped_storage? + load_tency_mappings if @tency_mapping.nil? + song_id = extract_tency_song_id(metalocation) + + if song_id.nil? + puts "missing_song_id #{metalocation}" + return nil + end + + + tency_data = @tency_metadata[song_id] + + if tency_data.nil? + puts("missing tency metadata '#{song_id}'") + end + + return tency_data + elsif is_paris_storage? + load_paris_mappings if @paris_mapping.nil? + song_id = extract_paris_song_id(metalocation) + + if song_id.nil? + puts "missing_song_id #{metalocation}" + return nil + end + + paris_data = @paris_metadata[song_id] + + if paris_data.nil? + puts("missing paris metadata '#{song_id}'") + end + + return paris_data + elsif is_drumma_storage? + + data = {} + begin + data = drumma_s3_manager.read_all(metalocation) + rescue AWS::S3::Errors::NoSuchKey + return {} + end + meta = YAML.load(data) + meta[:genres] = ['r&b'] if !meta[:genres] + meta + elsif is_clevie_storage? + + data = {} + begin + data = clevie_s3_manager.read_all(metalocation) + rescue AWS::S3::Errors::NoSuchKey + return {} + end + meta = YAML.load(data) + meta[:genres] = ['reggae'] if !meta[:genres] + meta + else + begin + data = s3_manager.read_all(metalocation) + meta = YAML.load(data) + + if is_tim_tracks_storage? + meta[:genres] = ['acapella'] + elsif is_helbing_storage? + meta[:genres] = ['jazz'] + end + + meta + rescue AWS::S3::Errors::NoSuchKey + return nil + end + end + end + + def create_from_metalocation(meta, metalocation, options = {skip_audio_upload: false}) + jam_track = JamTrack.new + sync_from_metadata(jam_track, meta, metalocation, options) + end + + def update_from_metalocation(jam_track, meta, metalocation, options) + sync_from_metadata(jam_track, meta, metalocation, options) + end + + def sync_from_metadata(jam_track, meta, metalocation, options) + jam_track_importer = JamTrackLambdaImporter.new(@storage_format) + jam_track_importer.metadata = meta + jam_track_importer.jam_track = jam_track + JamTrack.connection.execute('SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED') + + JamTrack.transaction do + + jam_track.origin_s3_path = metalocation[0...-"meta.yml".length] + jam_track.origin_s3_bucket = ENV["TENCY_JAMTRACKS_BUCKET"] + + #begin + jam_track_importer.synchronize(jam_track, meta, metalocation, options) + #rescue Exception => e + # jam_track_importer.finish("unhandled_exception", e.to_s) + #end + + Dir.mktmpdir do |tmp_dir| + # make an empty file so we can push it to s3 + completed_file = File.join(tmp_dir, 'completed') + # make the empty file + File.open(completed_file, 'w') {} + # push a file to AWS s3 that indicates we completed the job + private_s3_manager.upload(jam_track.s3_audio_dir + '/.completed', completed_file) + end + + if jam_track_importer.reason != "success" + raise ActiveRecord::Rollback + end + end + + jam_track_importer + end + end + end +end + diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/lambda_function.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/lambda_function.rb new file mode 100644 index 000000000..e59b9dce0 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/lambda_function.rb @@ -0,0 +1,100 @@ +require "json" +require "pg" +#require "protected_attributes" +require "active_record" +require "logging" + +#$LOAD_PATH.unshift(File.expand_path('lib', __dir__)) + +require_relative "../../app_config" + +require_relative "./app_config" +require_relative "./s3_manager_mixin" +require_relative "./s3_public_manager_mixin" +require_relative "./module_overrides" +require_relative "./s3_util" +require_relative "./s3_manager" +require_relative "./profanity" +require_relative "../jmep_manager" +require_relative "../models/genre" +require_relative "../models/instrument" +require_relative "../models/jam_track" +require_relative "../models/genre_jam_track" +require_relative "../models/jam_track_track" +require_relative "../models/jam_track_file" +require_relative "../models/jam_track_licensor" +require_relative "./jam_track_lambda_importer" + + +APP_CONFIG = app_config + +# invoked by Lambda +def handler(event:, context:) + # Extract functionality from your Rake task here + import_jamtrack(event) +end + +module JamRuby + +class JamTrackHandlerImporter + def initialize + puts "JamTrackHandlerImporter initialized" + end + + def import_jamtrack(event) + # Parse job parameters from Amazon S3 batch operations + invocation_id = event["invocationId"] + invocation_schema_version = event["invocationSchemaVersion"] + + results = [] + result_code = nil + result_string = nil + + task = event["tasks"][0] + task_id = task["taskId"] + + puts("start invocation_id #{invocation_id} task_id #{task_id}") + + puts("TASK #{task}") + obj_key = URI.unescape(task["s3Key"]) + obj_version_id = task["s3VersionId"] + bucket_name = task["s3BucketArn"].split(":")[-1] + + puts("Got task: create manifest just for #{obj_version_id} and bucket #{bucket_name} from object #{obj_key}.") + + zip_key = obj_key + + # Configure ActiveRecord connection (update with your DB config) + ActiveRecord::Base.establish_connection( + adapter: "postgresql", + host: ENV["DB_HOST"], + username: ENV["DB_USER"], + password: ENV["DB_PASS"], + database: ENV["DB_NAME"] + ) + + #importer = JamRuby::JamTrackLambdaImporter.new(storage_format="Tency_zipped") + #importer.dry_run + JamRuby::JamTrackLambdaImporter.storage_format = "Tency" + JamRuby::JamTrackLambdaImporter.dry_run + + importer + # add one result to the list of possible acions take n (always 1, for us0) + results.append( + { + "taskId": task_id, + "resultCode": result_code, + "resultString": result_string, + } + ) + + + { + "invocationSchemaVersion": invocation_schema_version, + "treatMissingKeysAs": "PermanentFailure", + "invocationId": invocation_id, + "results": results, + } + end + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/module_overrides.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/module_overrides.rb new file mode 100644 index 000000000..db937edd2 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/module_overrides.rb @@ -0,0 +1,11 @@ +require 'json' + +class String + def is_json? + begin + !!JSON.parse(self) + rescue + false + end + end +end \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/process_kfn.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/process_kfn.rb new file mode 100644 index 000000000..e69de29bb diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/profanity.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/profanity.rb new file mode 100644 index 000000000..21993a998 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/profanity.rb @@ -0,0 +1,39 @@ +module JamRuby + + class Profanity + @@dictionary_file = File.join(File.dirname(__FILE__), '../../..', 'config/profanity.yml') + @@dictionary = nil + + def self.dictionary + @@dictionary ||= load_dictionary + end + + def self.load_dictionary + YAML.load_file(@@dictionary_file) + end + + def self.check_word(word) + dictionary.include?(word.downcase) + end + + def self.is_profane?(text) + return false if text.nil? + + text.split(/\W+/).each do |word| + return true if check_word(word) + end + return false + end + end + + +end + +# This needs to be outside the module to work. +class NoProfanityValidator < ActiveModel::EachValidator + # implement the method called during validation + def validate_each(record, attribute, value) + record.errors[attribute] << 'cannot contain profanity' if JamRuby::Profanity.is_profane?(value) + end +end + diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_manager.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_manager.rb new file mode 100644 index 000000000..a9c320c8b --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_manager.rb @@ -0,0 +1,174 @@ +require 'aws-sdk-s3' +require 'active_support/all' +require 'openssl' + +module JamRuby + + class S3Manager + + @@def_opts = { :expires => 3600 * 24, :secure => true } # 24 hours from now + + S3_PREFIX = 's3://' + + def initialize(aws_bucket, endpoint = nil) + if aws_bucket.nil? + "BUCKET #{aws_bucket}" + raise "auhaoeu" + end + @aws_bucket = aws_bucket + if endpoint.nil? + @s3 = Aws::S3::Client.new(region: 'us-east-1') + else + @s3 = Aws::S3::Client.new(:endpoint => endpoint) + end + @aws_key = nil + @aws_endpoint = endpoint + end + + def s3_url(filename) + "#{S3_PREFIX}#{@aws_bucket}/#{filename}" + end + + def s3_url?(filename) + filename.start_with? S3_PREFIX + end + + def url(filename, options = @@def_opts) + "http#{options[:secure] ? "s" : ""}://s3.amazonaws.com/#{@aws_bucket}/#{filename}" + end + + # XXX: the client can not support HTTPS atm!!! AGH Change the :url to => https://s3.jamkazam.com when client supports https + # is_native_client check? + def upload_sign(filename, content_md5, part_number, upload_id) + hdt = http_date_time + str_to_sign = "PUT\n#{content_md5}\n#{content_type}\n#{hdt}\n/#{@aws_bucket}/#{filename}?partNumber=#{part_number}&uploadId=#{upload_id}" + signature = Base64.encode64(OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha1'), @aws_secret, str_to_sign)).chomp + { :datetime => hdt, + :md5 => content_md5, + :url => "http://s3.amazonaws.com/#{@aws_bucket}/#{filename}?partNumber=#{part_number}&uploadId=#{upload_id}", + :authorization => "AWS #{@aws_key}:#{signature}" + } + end + + def sign_url(key, options = @@def_opts, operation = :read) + s3_bucket.objects(key).url_for(operation, options).to_s + end + + def public_url(key, options = @@def_opts) + s3_bucket.objects(key).public_url(options).to_s + end + + def presigned_post(key, options = @@def_opts) + s3_bucket.objects(key).presigned_post(options) + end + + def multipart_upload_start(upload_filename) + s3_bucket.objects[upload_filename].multipart_upload.id + end + + def multipart_upload_complete(upload_filename, upload_id) + s3_bucket.objects[upload_filename].multipart_uploads[upload_id].complete(:remote_parts) + end + + def multipart_upload_abort(upload_filename, upload_id) + s3_bucket.objects[upload_filename].multipart_uploads[upload_id].abort + end + + def multiple_upload_find_part(upload_filename, upload_id, part) + s3_bucket.objects[upload_filename].multipart_uploads[upload_id].parts[part] + end + + def exists?(filename) + s3_bucket.objects[filename].exists? + end + + def delete(filename) + s3_bucket.objects[filename].delete + end + + def upload(key, filename, options={}) + object = s3_bucket.object(key) + puts "upload key #{object} #{key} from #{filename}" + object.upload_file(filename, options) + end + + def cached_upload(key, filename, options={}) + options[:file] = filename + options.merge({expires: 5.years.from_now}) + s3_bucket.objects(key).write(filename, options) + end + + def delete_folder(folder) + s3_bucket.objects.with_prefix(folder).delete_all + end + + def download(key, filename) + object = s3_bucket.object(key) + File.open(filename, "wb") do |f| + object.get do |data| + f.write(data) + end + end + end + + def read_all(key) + s = StringIO.new + s3_bucket.objects(key).read do |data| + s.write(data) + end + s.string + end + + def list_files(prefix) + #tree = s3_bucket.as_tree(prefix: prefix) + #tree.children.select(&:leaf?).collect(&:key) + + list = [] + s3_bucket.objects(prefix: prefix).map(&:key).each do |key| + list << key + end + + puts "list_files: #{prefix}, LIST #{list}" + list + end + + def list_directories(prefix = nil) + tree = s3_bucket.as_tree(prefix: prefix) + tree.children.select(&:branch?).collect(&:prefix) + end + + def exists?(filename) + s3_bucket.objects[filename].exists? + end + + def object(filename) + s3_bucket.objects[filename] + end + + def length(filename) + s3_bucket.objects[filename].content_length + end + + private + + def s3_bucket + #@s3.buckets[@aws_bucket] + if @aws_endpoint.nil? + s3 = Aws::S3::Resource.new(region: 'us-east-1') + else + s3 = Aws::S3::Resource.new(region: 'us-east-1', endpoint: @aws_endpoint) + end + s3.bucket(@aws_bucket) + end + + def content_type + "audio/ogg" + end + + def http_date_time + Time.now.strftime("%a, %d %b %Y %H:%M:%S %z") + end + + + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_manager_mixin.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_manager_mixin.rb new file mode 100644 index 000000000..b7759afc8 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_manager_mixin.rb @@ -0,0 +1,19 @@ +module JamRuby + module S3ManagerMixin + extend ActiveSupport::Concern + include AppConfig + + included do + end + + module ClassMethods + def s3_manager(options={:bucket => nil, :public => false}) + @s3_manager ||= S3Manager.new(options[:bucket] ? options[:bucket] : (options[:public] ? APP_CONFIG.aws_bucket_public : APP_CONFIG.aws_bucket), APP_CONFIG.aws_access_key_id, APP_CONFIG.aws_secret_access_key) + end + end + + def s3_manager(options={:bucket => nil, :public => false}) + @s3_manager ||= S3Manager.new(options[:bucket] ? options[:bucket] : (options[:public] ? app_config.aws_bucket_public : app_config.aws_bucket), app_config.aws_access_key_id, app_config.aws_secret_access_key) + end + end +end \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_public_manager_mixin.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_public_manager_mixin.rb new file mode 100644 index 000000000..e95f91743 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_public_manager_mixin.rb @@ -0,0 +1,17 @@ +module JamRuby + module S3PublicManagerMixin + extend ActiveSupport::Concern + include AppConfig + + included do + end + + module ClassMethods + + end + + def s3_public_manager() + @s3_public_manager ||= S3Manager.new(app_config.aws_bucket_public) + end + end +end \ No newline at end of file diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_util.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_util.rb new file mode 100644 index 000000000..9ecafe082 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/lib/s3_util.rb @@ -0,0 +1,27 @@ +require 'aws-sdk-s3' +require 'active_support/all' + +module JamRuby + class S3Util + @@def_opts = { :expires => 3600 * 24, :secure => true } # 24 hours from now + @@s3 = Aws::S3::Client.new(:access_key_id => ENV['AWS_KEY'], :secret_access_key => ENV['AWS_SECRET']) + + def self.sign_url(bucket, path, options = @@def_opts) + bucket_gen = @@s3.buckets[bucket] + "#{bucket_gen.objects[path].url_for(:read, options).to_s}" + end + + def self.url(aws_bucket, filename, options = @@def_opts) + "http#{options[:secure] ? "s" : ""}://s3.amazonaws.com/#{aws_bucket}/#{filename}" + end + + def self.move(aws_bucket, source, destination) + @@s3.buckets[aws_bucket].objects[source].move_to[destination] + end + + def self.delete(aws_bucket, path) + @@s3.buckets[aws_bucket].objects[path].delete() + end + end +end + diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/genre.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/genre.rb new file mode 100644 index 000000000..24a93a830 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/genre.rb @@ -0,0 +1,38 @@ +module JamRuby + class Genre < ActiveRecord::Base + + self.primary_key = 'id' + + # bands + # has_many :genre_players, class_name: "JamRuby::GenrePlayer" + # has_many :bands, class_name: "JamRuby::Band", through: :genre_players, condition: ['player_type = ?', 'JamRuby::Band'] + # has_many :users, class_name: "JamRuby::User", through: :genre_players, condition: ['player_type = ?', 'JamRuby::User'] + + + # music sessions + has_many :music_sessions, :class_name => "JamRuby::MusicSession" + + # genres + has_and_belongs_to_many :recordings, :class_name => "JamRuby::Recording", :join_table => "recordings_genres" + + # teachers + has_many :teachers, :class_name => "JamRuby::Teacher", :through => :teachers_genres + has_many :teachers_genres, :class_name => "JamRuby::TeacherGenre" + + # jam tracks + has_many :genres_jam_tracks, :class_name => "JamRuby::GenreJamTrack", :foreign_key => "genre_id" + has_many :jam_tracks, :through => :genres_jam_tracks, :class_name => "JamRuby::JamTrack", :source => :genre + + def to_s + description + end + + def self.jam_track_list + sql = "SELECT DISTINCT genre_id FROM genres_jam_tracks WHERE genre_id IS NOT NULL" + Genre.select("DISTINCT(genres.id), genres.*") + .where("genres.id IN (#{sql})") + .order('genres.description ASC, genres.id') + end + + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/genre_jam_track.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/genre_jam_track.rb new file mode 100644 index 000000000..e5edb2544 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/genre_jam_track.rb @@ -0,0 +1,11 @@ +module JamRuby + class GenreJamTrack < ActiveRecord::Base + + self.table_name = 'genres_jam_tracks' + + #attr_accessible :jam_track_id, :genre_id + + belongs_to :jam_track, class_name: 'JamRuby::JamTrack', inverse_of: :genres_jam_tracks + belongs_to :genre, class_name: 'JamRuby::Genre', inverse_of: :genres_jam_tracks + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/instrument.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/instrument.rb new file mode 100644 index 000000000..16b907301 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/instrument.rb @@ -0,0 +1,70 @@ +module JamRuby + class Instrument < ActiveRecord::Base + + MAP_ICON_NAME = { + "accordion" => "accordion", + "acoustic guitar" => "acoustic_guitar", + "banjo" => "banjo", + "bass guitar" => "bass_guitar", + "cello" => "cello", + "clarinet" => "clarinet", + "computer" => "computer", + "default" => "default", + "drums" => "drums", + "electric guitar" => "electric_guitar", + "euphonium" => "euphonium", + "flute" => "flute", + "french horn" => "french_horn", + "harmonica" => "harmonica", + "keyboard" => "keyboard", + "mandolin" => "mandolin", + "oboe" => "oboe", + "other" => "other", + "piano" => "piano", + "saxophone" => "saxophone", + "trombone" => "trombone", + "trumpet" => "trumpet", + "tuba" => "tuba", + "ukulele" => "ukelele", + "upright bass" => "upright_bass", + "double bass" => "double_bass", + "viola" => "viola", + "violin" => "violin", + "voice" => "voice" + } + + self.primary_key = 'id' + + # users + has_many :musician_instruments, :class_name => "JamRuby::MusicianInstrument" + has_many :players, :through => :musician_instruments + has_many :tracks, :class_name => "JamRuby::Track", :inverse_of => :instrument + has_many :recorded_tracks, :class_name => "JamRuby::RecordedTrack", :inverse_of => :instrument + + # music sessions + has_and_belongs_to_many :music_sessions, :class_name => "JamRuby::ActiveMusicSession", :join_table => "genres_music_sessions" + + # teachers + has_many :teachers, :class_name => "JamRuby::Teacher", through: :teachers_instruments + has_many :teachers_instruments, class_name: "JamRuby::TeacherInstrument" + + def self.standard_list + return Instrument.where('instruments.popularity > 0').order('instruments.description ASC') + end + + def self.jam_track_list + sql = "SELECT DISTINCT instrument_id FROM jam_track_tracks WHERE instrument_id IS NOT NULL" + Instrument.where("instruments.id IN (#{sql})") + .order('instruments.description ASC') + end + + def icon_name + MAP_ICON_NAME[self.id] + end + + def to_s + description + end + + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track.rb new file mode 100644 index 000000000..2ab576c6b --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track.rb @@ -0,0 +1,680 @@ +# -*- coding: utf-8 -*- +module JamRuby + class JamTrack < ActiveRecord::Base + include JamRuby::S3ManagerMixin + + TIME_SIGNATURES = %w{4/4 3/4 2/4 6/8 5/8'} + STATUS = %w{Staging Production Retired} + RECORDING_TYPE = %w{Cover Original} + PRO = %w{ASCAP BMI SESAC} + SALES_REGION = ['United States', 'Worldwide'] + + PRODUCT_TYPE = 'JamTrack' + + @@log = Logging.logger[JamTrack] + + attr_accessor :uploading_preview + # attr_accessible :name, :description, :bpm, :time_signature, :status, :recording_type, + # :original_artist, :songwriter, :publisher, :licensor, :licensor_id, :pro, :genres_jam_tracks_attributes, :sales_region, :price, + # :reproduction_royalty, :public_performance_royalty, :reproduction_royalty_amount, + # :licensor_royalty_amount, :pro_royalty_amount, :plan_code, :initial_play_silence, :jam_track_tracks_attributes, + # :jam_track_tap_ins_attributes, :genre_ids, :version, :jmep_json, :jmep_text, :pro_ascap, :pro_bmi, :pro_sesac, :duration, + # :server_fixation_date, :hfa_license_status, :hfa_license_desired, :alternative_license_status, :hfa_license_number, :hfa_song_code, :album_title, :year, :allow_free, as: :admin + + validates :name, presence: true, length: {maximum: 200} + validates :plan_code, presence: true, uniqueness: true, length: {maximum: 50 } + validates :description, length: {maximum: 1000} + validates :time_signature, inclusion: {in: [nil] + [''] + TIME_SIGNATURES} # the empty string is needed because of activeadmin + validates :status, inclusion: {in: [nil] + STATUS} + validates :recording_type, inclusion: {in: [nil] + RECORDING_TYPE} + validates :original_artist, length: {maximum: 200} + validates :songwriter, length: {maximum: 1000} + validates :publisher, length: {maximum: 1000} + validates :sales_region, inclusion: {in: [nil] + SALES_REGION} + validates_format_of :price, with: /\A\d+\.*\d{0,2}\z/ + validates :version, presence: true + validates :pro_ascap, inclusion: {in: [true, false]} + validates :pro_bmi, inclusion: {in: [true, false]} + validates :pro_sesac, inclusion: {in: [true, false]} + validates :public_performance_royalty, inclusion: {in: [nil, true, false]} + validates :reproduction_royalty, inclusion: {in: [nil, true, false]} + validates :public_performance_royalty, inclusion: {in: [nil, true, false]} + validates :duration, numericality: {only_integer: true}, :allow_nil => true + validates :hfa_license_status, inclusion: {in: [true, false]} + validates :hfa_license_desired, inclusion: {in: [true, false]} + validates :alternative_license_status, inclusion: {in: [true, false]} + validates :hfa_license_number, numericality: {only_integer: true}, :allow_nil => true + validates :hfa_song_code, length: {maximum: 200} + validates :album_title, length: {maximum: 200} + validates :slug, uniqueness: true + + validates_format_of :reproduction_royalty_amount, with: /\A\d+\.*\d{0,4}\z/, :allow_blank => true + validates_format_of :licensor_royalty_amount, with: /\A\d+\.*\d{0,4}\z/, :allow_blank => true + + belongs_to :licensor , class_name: 'JamRuby::JamTrackLicensor', foreign_key: 'licensor_id', :inverse_of => :jam_tracks + + has_many :genres_jam_tracks, :class_name => "JamRuby::GenreJamTrack", :foreign_key => "jam_track_id", inverse_of: :jam_track + has_many :genres, :through => :genres_jam_tracks, :class_name => "JamRuby::Genre", :source => :genre + + has_many :jam_track_tracks, -> { order('track_type ASC, position ASC, part ASC, instrument_id ASC' )},:class_name => "JamRuby::JamTrackTrack" + has_many :jam_track_tap_ins, -> { order('offset_time ASC')}, :class_name => "JamRuby::JamTrackTapIn" + has_many :jam_track_files, :class_name => "JamRuby::JamTrackFile" + + has_many :jam_track_rights, :class_name => "JamRuby::JamTrackRight" #, inverse_of: 'jam_track', :foreign_key => "jam_track_id" # ' + + has_many :owners, :through => :jam_track_rights, :class_name => "JamRuby::User", :source => :user + + has_many :playing_sessions, :class_name => "JamRuby::ActiveMusicSession", :dependent => :destroy + + has_many :recordings, :class_name => "JamRuby::Recording", :dependent => :destroy + + # VRFS-2916 jam_tracks.id is varchar: REMOVE + # has_many :plays, :class_name => "JamRuby::PlayablePlay", :foreign_key => :jam_track_id, :dependent => :destroy + # VRFS-2916 jam_tracks.id is varchar: ADD + has_many :plays, :class_name => "JamRuby::PlayablePlay", :as => :playable, :dependent => :destroy + + has_many :jam_track_session, :class_name => "JamRuby::JamTrackSession" + + # when we know what JamTrack this refund is related to, these are associated + belongs_to :recurly_transactions, class_name: 'JamRuby::RecurlyTransactionWebHook' + + accepts_nested_attributes_for :jam_track_tracks, allow_destroy: true + accepts_nested_attributes_for :jam_track_tap_ins, allow_destroy: true + + + # we can make sure a few things stay in sync here. + # 1) the reproduction_royalty_amount has to stay in sync based on duration + # 2) the onboarding_exceptions JSON column + after_save :sync_reproduction_royalty + after_save :sync_onboarding_exceptions + + # NEW TO LAMBDA + # create storage directory that will house this jam_track, as well as + def store_dir + "jam_track_tracks" + end + + # NEW TO LAMBDA + def licensor_suffix + suffix = '' + if licensor + raise "no licensor name" if licensor.name.nil? + suffix = " - #{licensor.name}" + end + suffix + end + + # NEW TO LAMBDA + def generate_s3_host_dir() + if self.s3_audio_dir.nil? + raise "original_artist is nil" if original_artist.nil? + raise "name is nil" if name.nil? + raise "licensor_suffix is nil" if licensor_suffix.nil? + self.s3_audio_dir = "#{store_dir}/#{original_artist}/#{name}#{licensor_suffix}" + end + self.s3_audio_dir + end + + def increment_version! + self.version = version.to_i + 1 + save! + end + + def sync_reproduction_royalty + + # reproduction royalty table based on duration + + # The statutory mechanical royalty rate for permanent digital downloads is: + # 9.10¢ per copy for songs 5 minutes or less, or + # 1.75¢ per minute or fraction thereof, per copy for songs over 5 minutes. + # So the base rate is 9.1 cents for anything up to 5 minutes. + # 5.01 to 6 minutes should be 10.5 cents. + # 6.01 to 7 minutes should be 12.25 cents. + # Etc. + + royalty = nil + if self.duration + minutes = (self.duration - 1) / 60 + extra_minutes = minutes - 4 + extra_minutes = 0 if extra_minutes < 0 + royalty = (0.091 + (0.0175 * extra_minutes)).round(5) + end + self.update_column(:reproduction_royalty_amount, royalty) + + true + end + + def sync_onboarding_exceptions + + exceptions = {} + if self.duration.nil? + exceptions[:no_duration] = true + end + + if self.genres.count == 0 + exceptions[:no_genres] = true + end + + if self.year.nil? + exceptions[:no_year] = true + end + + if self.licensor.nil? + exceptions[:no_licensor] = true + end + + if self.missing_instrument_info? + exceptions[:unknown_instrument] = true + end + + if self.master_track.nil? + exceptions[:no_master] = true + end + + if missing_previews? + exceptions[:missing_previews] = true + end + + if duplicate_positions? + exceptions[:duplicate_positions] = true + end + + if exceptions.keys.length == 0 + self.update_column(:onboarding_exceptions, nil) + else + self.update_column(:onboarding_exceptions, exceptions) + end + + true + end + + def sale_display(variant = nil) + if variant == ShoppingCart::JAMTRACK_FULL + variant_desc = 'FULL' + elsif variant == ShoppingCart::JAMTRACK_DOWNLOAD + variant_desc = 'UPRGADE' + elsif variant == ShoppingCart::JAMTRACK_STREAM + variant_desc = 'FOR USE ONLY WITHIN APP' + else + variant_desc = 'UNKNOWN' + end + + + "JamTrack: #{name} - #{variant_desc}" + end + + + def duplicate_positions? + counter = {} + jam_track_tracks.each do |track| + count = counter[track.position] + if count.nil? + count = 0 + end + counter[track.position] = count + 1 + end + + duplicate = false + counter.each do|position, count| + if count > 1 + duplicate = true + break + end + end + duplicate + end + + def missing_instrument_info? + missing_instrument_info = false + self.jam_track_tracks.each do |track| + if track.instrument_id == 'other' && (track.part == nil || track.part.start_with?('Other')) + missing_instrument_info = true + break + end + end + missing_instrument_info + end + + def missing_previews? + missing_preview = false + self.jam_track_tracks.each do |track| + unless track.has_preview? + missing_preview = true + break + end + end + missing_preview + end + + def onboard_warnings + warnings = [] + warnings << 'POSITIONS' if duplicate_positions? + warnings << 'PREVIEWS'if missing_previews? + warnings << 'DURATION' if duration.nil? + warnings << 'JMEP' if jmep_json.blank? + warnings.join(',') + end + + def band_jam_track_count + JamTrack.where(original_artist: original_artist).count + end + + class << self + # @return array[artist_name(string)] + def all_artists + JamTrack.select("original_artist"). + group("original_artist"). + order('original_artist'). + collect{|jam_track|jam_track.original_artist} + end + + # @return array[JamTrack] for given artist_name + def tracks_for_artist(artist_name) + JamTrack.where("original_artist=?", artist_name).all + end + + # special case of index + def autocomplete(options, user) + + if options[:match].blank? + return {artists: [], songs: []} + end + + options[:show_purchased_only] = options[:show_purchased_only] + + options[:limit] = options[:limit] || 5 + + options[:artist_search] = options[:match] + artists, pager = artist_index(options, user) + + options.delete(:artist_search) + options[:song_search] = options[:match] + options[:sort_by] = 'jamtrack' + songs, pager = index(options, user) + + {artists: artists, songs:songs} + end + + def purchase_stubs(user) + JamTrack. + select(['jam_tracks.id', :name, :original_artist, :year, 'jam_track_rights.created_at AS purchased_at']). + joins(:jam_track_rights). + where("jam_track_rights.user_id = ?", user.id). + includes(:genres). + order([:original_artist, :name]) + end + + def index(options, user) + if options[:page] + page = options[:page].to_i + per_page = options[:per_page].to_i + + if per_page == 0 + # try and see if limit was specified + limit = options[:limit] + limit ||= 20 + limit = limit.to_i + per_page = limit + else + limit = per_page + end + + start = (page -1 )* per_page + else + limit = options[:limit] + limit ||= 20 + limit = limit.to_i + + start = options[:start].presence + start = start.to_i || 0 + + page = 1 + start/limit + per_page = limit + end + + + query = JamTrack.joins(:jam_track_tracks) + .paginate(page: page, per_page: per_page) + + if options[:show_purchased_only] + query = query.joins(:jam_track_rights) + query = query.where("jam_track_rights.user_id = ?", user.id) + end + + if options[:search] + tsquery = Search.create_tsquery(options[:search]) + if tsquery + query = query.where("(search_tsv @@ to_tsquery('jamenglish', ?))", tsquery) + end + end + + if options[:artist_search] + tsquery = Search.create_tsquery(options[:artist_search]) + if tsquery + query = query.where("(artist_tsv @@ to_tsquery('jamenglish', ?))", tsquery) + end + end + + if options[:song_search] + tsquery = Search.create_tsquery(options[:song_search]) + if tsquery + query = query.where("(name_tsv @@ to_tsquery('jamenglish', ?))", tsquery) + end + end + + if options[:artist].present? + artist_param = options[:artist] + # todo: add licensor option + if artist_param == 'Stockton Helbing' + licensor = JamTrackLicensor.find_by_name('Stockton Helbing') + if licensor + query = query.where(licensor_id: licensor.id) + end + else + query = query.where("original_artist=?", options[:artist]) + end + end + + if options[:song].present? + query = query.where("name=?", options[:song]) + end + + if options[:id].present? + query = query.where("jam_tracks.id=?", options[:id]) + end + + if options[:group_artist] + query = query.select("original_artist, array_agg(jam_tracks.id) AS id, MIN(name) AS name, MIN(description) AS description, MIN(recording_type) AS recording_type, MIN(original_artist) AS original_artist, MIN(songwriter) AS songwriter, MIN(publisher) AS publisher, MIN(sales_region) AS sales_region, MIN(price) AS price, MIN(version) AS version") + query = query.group("original_artist") + query = query.order('jam_tracks.original_artist') + query = query.includes([{ jam_track_tracks: :instrument }, { genres_jam_tracks: :genre }]) + else + query = query.group("jam_tracks.id") + if options[:sort_by] == 'jamtrack' + query = query.order('jam_tracks.name') + else + query = query.order('jam_tracks.original_artist, jam_tracks.name') + end + + + end + + if (! user.try(:admin) && 'development' != Rails.env) + query = query.where("jam_tracks.status = ?", 'Production') + end + + unless options[:genre].blank? + query = query.joins(:genres) + query = query.where('genre_id = ? ', options[:genre]) + end + + query = query.where("jam_track_tracks.instrument_id = '#{options[:instrument]}' and jam_track_tracks.track_type = 'Track'") unless options[:instrument].blank? + query = query.where("jam_tracks.sales_region = '#{options[:availability]}'") unless options[:availability].blank? + + # FIXME: n+1 queries for rights and genres + # query = query.includes([{ jam_track_tracks: :instrument }, + # :jam_track_tap_ins, + # :jam_track_rights, + # :genres]) + # { genres_jam_tracks: :genre }, + # query = query.includes([{ jam_track_tracks: :instrument }, + # { genres_jam_tracks: :genre }]) + + count = query.total_entries + + if count == 0 + [query, nil, count] + elsif query.length < limit + [query, nil, count] + else + [query, start + limit, count] + end + end + + + # provides artist names and how many jamtracks are available for each + def artist_index(options, user) + if options[:page] + page = options[:page].to_i + per_page = options[:per_page].to_i + + if per_page == 0 + # try and see if limit was specified + limit = options[:limit] + limit ||= 100 + limit = limit.to_i + else + limit = per_page + end + + start = (page -1 )* per_page + limit = per_page + else + limit = options[:limit] + limit ||= 100 + limit = limit.to_i + + start = options[:start].presence + start = start.to_i || 0 + + page = 1 + start/limit + per_page = limit + end + + + query = JamTrack.paginate(page: page, per_page: per_page) + query = query.select("original_artist, count(original_artist) AS song_count") + query = query.group("original_artist") + query = query.order('jam_tracks.original_artist') + + query = query.where("jam_tracks.status = ?", 'Production') unless user.admin + + if options[:show_purchased_only] + query = query.joins(:jam_track_rights) + query = query.where("jam_track_rights.user_id = ?", user.id) + end + + if options[:artist_search] + tsquery = Search.create_tsquery(options[:artist_search]) + if tsquery + query = query.where("(artist_tsv @@ to_tsquery('jamenglish', ?))", tsquery) + end + end + + + unless options[:genre].blank? + query = query.joins(:genres) + query = query.where('genre_id = ? ', options[:genre]) + end + + query = query.where("jam_track_tracks.instrument_id = '#{options[:instrument]}'") unless options[:instrument].blank? + query = query.where("jam_tracks.sales_region = '#{options[:availability]}'") unless options[:availability].blank? + + + if query.length == 0 + [query, nil] + elsif query.length < limit + [query, nil] + else + [query, start + limit] + end + end + end + + def click_track_file + JamTrackFile.where(jam_track_id: self.id).where(file_type: 'ClickWav').first + end + + def click_track + JamTrackTrack.where(jam_track_id: self.id).where(track_type: 'Click').first + end + + def has_count_in? + has_count_in = false + if jmep_json + jmep = jmep_json + + if jmep["Events"] + events = jmep["Events"] + metronome = nil + events.each do |event| + if event.has_key?("metronome") + metronome = event["metronome"] + break + end + end + if metronome + has_count_in = true + end + end + end + + has_count_in + end + + def master_track + JamTrackTrack.where(jam_track_id: self.id).where(track_type: 'Master').first + end + + def stem_tracks + JamTrackTrack.where(jam_track_id: self.id).where("track_type = 'Track' or track_type = 'Click'") + end + + def can_download?(user) + owners.include?(user) + end + + def right_for_user(user, variant = nil) + + query = jam_track_rights.where("user_id=?", user) + + if variant + if variant == ShoppingCart::JAMTRACK_DOWNLOAD + query = query.where('can_download', true) + elsif variant == ShoppingCart::JAMTRACK_FULL + query = query.where('can_download', true) + elsif variant == ShoppingCart::JAMTRACK_STREAM + + else + throw 'unknown variant ' + variant + end + end + query.first + end + + + def mixdowns_for_user(user) + JamTrackMixdown.where(user_id: user.id).where(jam_track_id: self.id) + end + + def upgrade_price + variant_price('download') + end + + def variant_price(variant) + if variant == 'full' + download_price + elsif variant == 'download' + download_price - price + else + price + end + end + + def short_plan_code + prefix = 'jamtrack-' + plan_code[prefix.length..-1] + end + + # http://stackoverflow.com/questions/4308377/ruby-post-title-to-slug + def sluggarize(field) + field.downcase.strip.gsub(' ', '-').gsub(/[^\w-]/, '') + end + + def generate_slug + self.slug = sluggarize(original_artist) + '-' + sluggarize(name) + + if licensor && licensor.slug.present? + #raise "no slug on licensor #{licensor.id}" if licensor.slug.nil? + self.slug << "-" + licensor.slug + end + end + + def gen_plan_code + # remove all non-alphanumeric chars from artist as well as name + artist_code = original_artist.gsub(/[^0-9a-z]/i, '').downcase + name_code = name.gsub(/[^0-9a-z]/i, '').downcase + self.plan_code = "jamtrack-#{artist_code[0...20]}-#{name_code}" + + if licensor && licensor.slug + raise "no slug on licensor #{licensor.id}" if licensor.slug.nil? + self.plan_code << "-" + licensor.slug + end + + self.plan_code = self.plan_code[0...50] # make sure it's a max of 50 long + + + end + + def to_s + "#{self.name} (#{self.original_artist})" + end + + def self.latestPurchase(user_id) + JamTrackRight + .select('created_at') + .where(user_id: user_id) + .order('created_at DESC') + .limit(1) + .first + .try(:created_at) + .to_i + end + + attr_accessor :preview_generate_error + + before_save :jmep_json_generate + validate :jmep_text_validate + + def jmep_text_validate + begin + JmepManager.execute(self.jmep_text) + rescue ArgumentError => err + errors.add(:jmep_text, err.to_s) + end + end + + def jmep_json_generate + self.licensor_id = nil if self.licensor_id == '' + self.jmep_json = nil if self.jmep_json == '' + self.time_signature = nil if self.time_signature == '' + + begin + json_str = JmepManager.execute(self.jmep_text) + self.jmep_json = json_str.nil? ? nil : JSON.parse(json_str) + rescue ArgumentError => err + #errors.add(:jmep_text, err.to_s) + end + end + + # used in mobile simulate purchase + def self.forsale(user) + sql =<<SQL + SELECT jt.* FROM jam_tracks jt + WHERE jt.id NOT IN ( + SELECT jt.id + FROM jam_tracks jt + JOIN jam_track_rights AS jtr ON jtr.jam_track_id = jt.id + WHERE jtr.user_id = '#{user.id}' + ) + LIMIT 1 +SQL + self.find_by_sql(sql).first + end + + def genre_name + self.genres.first.try(:description) + end + + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_file.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_file.rb new file mode 100644 index 000000000..4b2e650c0 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_file.rb @@ -0,0 +1,87 @@ +module JamRuby + + # holds a click track or precount file + class JamTrackFile < ActiveRecord::Base + include JamRuby::S3ManagerMixin + + # there should only be one Master per JamTrack, but there can be N Track per JamTrack + FILE_TYPE = %w{ClickWav ClickTxt Precount} + + @@log = Logging.logger[JamTrackFile] + + before_destroy :delete_s3_files + + #attr_accessible :jam_track_id, :file_type, :filename, as: :admin + #attr_accessible :url, :md5, :length, as: :admin + + attr_accessor :original_audio_s3_path, :skip_uploader, :preview_generate_error + + before_destroy :delete_s3_files + + validates :file_type, inclusion: {in: FILE_TYPE } + + belongs_to :jam_track, class_name: "JamRuby::JamTrack" + + # create storage directory that will house this jam_track, as well as + def store_dir + "jam_track_files" + end + + def licensor_suffix + suffix = '' + if jam_track.licensor + raise "no licensor name" if jam_track.licensor.name.nil? + suffix = " - #{jam_track.licensor.name}" + end + suffix + end + + # create name of the file + def filename(original_name) + "#{store_dir}/#{jam_track.original_artist}/#{jam_track.name}#{licensor_suffix}/#{original_name}" + end + + def manually_uploaded_filename + if click_wav? + filename('click.wav') + elsif click_txt? + filename('click.txt') + elsif precount? + filename('precount.wav') + else + raise 'unknown file type: ' + file_type + end + + end + + def click_wav? + track_type == 'ClickWav' + end + + def click_txt? + track_type == 'ClickTxt' + end + + def precount? + track_type == 'Precount' + end + + # creates a short-lived URL that has access to the object. + # the idea is that this is used when a user who has the rights to this tries to download this JamTrack + # we would verify their rights (can_download?), and generates a URL in response to the click so that they can download + # but the url is short lived enough so that it wouldn't be easily shared + def sign_url(expiration_time = 120) + s3_manager.sign_url(self[url], {:expires => expiration_time, :response_content_type => 'audio/wav', :secure => true}) + end + + def can_download?(user) + # I think we have to make a special case for 'previews', but maybe that's just up to the controller to not check can_download? + jam_track.owners.include?(user) + end + + + def delete_s3_files + s3_manager.delete(self[:url]) if self[:url] && s3_manager.exists?(self[:url]) + end + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_licensor.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_licensor.rb new file mode 100644 index 000000000..97023313f --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_licensor.rb @@ -0,0 +1,23 @@ +module JamRuby + class JamTrackLicensor < ActiveRecord::Base + + table_name = 'jam_track_licensors' + + #attr_accessible :name, :description, :attention, :address_line_1, :address_line_2, + # :city, :state, :zip_code, :contact, :email, :phone, :slug, as: :admin + + validates :name, presence: true, uniqueness: true, length: {maximum: 200} + validates :description, length: {maximum: 1000} + validates :attention, length: {maximum: 200} + validates :address_line_1, length: {maximum: 200} + validates :address_line_2, length: {maximum: 200} + validates :city, length: {maximum: 200} + validates :state, length: {maximum: 200} + validates :zip_code, length: {maximum: 200} + validates :contact, length: {maximum: 200} + validates :email, length: {maximum: 200} + validates :phone, length: {maximum: 200} + + has_many :jam_tracks, :class_name => "JamRuby::JamTrack", foreign_key: 'licensor_id', :inverse_of => :licensor + end +end diff --git a/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_track.rb b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_track.rb new file mode 100644 index 000000000..5467d7a94 --- /dev/null +++ b/lambda/jamtrack-importer/shared/lib/jam_ruby/models/jam_track_track.rb @@ -0,0 +1,314 @@ +module JamRuby + + # describes an audio track (like the drums, or guitar) that comprises a JamTrack + class JamTrackTrack < ActiveRecord::Base + include JamRuby::S3ManagerMixin + include JamRuby::S3PublicManagerMixin + + # there should only be one Master per JamTrack, but there can be N Track per JamTrack + TRACK_TYPE = %w{Track Master Click} + + @@log = Logging.logger[JamTrackTrack] + + before_destroy :delete_s3_files + + # Because JamTrackImporter imports audio files now, and because also the mere presence of this causes serious issues when updating the model (because reset of url_44 to something bogus), I've removed these + #mount_uploader :url_48, JamTrackTrackUploader + #mount_uploader :url_44, JamTrackTrackUploader + + #attr_accessible :jam_track_id, :track_type, :instrument, :instrument_id, :position, :part, as: :admin + #attr_accessible :url_44, :url_48, :md5_44, :md5_48, :length_44, :length_48, :preview_start_time_raw, as: :admin + + attr_accessor :original_audio_s3_path, :skip_uploader, :preview_generate_error, :wav_file, :tmp_duration, :skip_inst_part_uniq + + before_destroy :delete_s3_files + + validates :position, presence: true, numericality: {only_integer: true}, length: {in: 1..1000} + validates :part, length: {maximum: 35} + validates :track_type, inclusion: {in: TRACK_TYPE } + validates :preview_start_time, numericality: {only_integer: true}, length: {in: 1..1000}, :allow_nil => true + validates_uniqueness_of :part, scope: [:jam_track_id, :instrument_id], unless: :skip_inst_part_uniq + # validates :jam_track, presence: true + + belongs_to :instrument, class_name: "JamRuby::Instrument" + belongs_to :jam_track, class_name: "JamRuby::JamTrack" + + has_many :recorded_jam_track_tracks, :class_name => "JamRuby::RecordedJamTrackTrack", :foreign_key => :jam_track_track_id, :dependent => :destroy + has_one :jam_track_right, class_name: 'JamRuby::JamTrackRight', foreign_key: 'last_stem_id', inverse_of: :last_stem + + # create storage directory that will house this jam_track, as well as + def store_dir + "jam_track_tracks" + end + + + def licensor_suffix + suffix = '' + if jam_track.licensor + raise "no licensor name" if jam_track.licensor.name.nil? + suffix = " - #{jam_track.licensor.name}" + end + suffix + end + + # NEW TO LAMBDA + # create name of the file + def filename(original_name) + "#{jam_track.s3_audio_dir}/#{original_name}" + end + + # create name of the preview file. + # md5-'ed because we cache forever + def preview_filename(md5, ext='ogg') + original_name = "#{File.basename(self["url_44"], ".ogg")}-preview-#{md5}.#{ext}" + "#{preview_directory}/#{original_name}" + end + + def preview_directory + "jam_track_previews/#{jam_track.original_artist}/#{jam_track.name}#{licensor_suffix}" + end + + def has_preview? + !self["preview_url"].nil? && !self['preview_mp3_url'].nil? + end + + # generates a URL that points to a public version of the preview + def preview_public_url(media_type='ogg') + case media_type + when 'ogg' + url = self[:preview_url] + when 'mp3' + url = self[:preview_mp3_url] + when 'aac' + url = self[:preview_aac_url] + else + raise "unknown media_type #{media_type}" + end + if url + s3_public_manager.public_url(url,{ :secure => true}) + else + nil + end + end + + def display_name + if track_type == 'Master' + 'Master Mix' + else + display_part = '' + if part + display_part = "-(#{part})" + end + "#{instrument.description}#{display_part}" + end + end + + def manually_uploaded_filename(mounted_as) + if track_type == 'Master' + filename("Master Mix-#{mounted_as == :url_48 ? '48000' : '44100'}.ogg") + else + filename("#{jam_track.name} Stem - #{instrument.description}-#{part}-#{mounted_as == :url_48 ? '48000' : '44100'}.ogg") + end + end + + def master? + track_type == 'Master' + end + + def url_by_sample_rate(sample_rate=48) + field_name = (sample_rate==48) ? "url_48" : "url_44" + self[field_name] + end + # creates a short-lived URL that has access to the object. + # the idea is that this is used when a user who has the rights to this tries to download this JamTrack + # we would verify their rights (can_download?), and generates a URL in response to the click so that they can download + # but the url is short lived enough so that it wouldn't be easily shared + def sign_url(expiration_time = 120, sample_rate=48) + s3_manager.sign_url(url_by_sample_rate(sample_rate), {:expires => expiration_time, :response_content_type => 'audio/ogg', :secure => true}) + end + + def web_download_sign_url(expiration_time = 120, type='mp3', content_type = nil, response_content_disposition = nil) + options = {:expires => expiration_time, :secure => true} + options[:response_content_type] = content_type if content_type + options[:response_content_disposition] = response_content_disposition if response_content_disposition + + url_field = self['url_' + type + '_48'] + url_field = self['url_48'] if type == 'ogg' # ogg has different column format in database + + + s3_manager.sign_url(url_field, options) + end + + def can_download?(user) + # I think we have to make a special case for 'previews', but maybe that's just up to the controller to not check can_download? + jam_track.owners.include?(user) + end + + def move_up + #normalize_position + if self.position > 1 + # Switch with previous + previous_track = self.jam_track.jam_track_tracks.where("position=?", self.position-1).first + if previous_track + JamTrack.transaction do + previous_track.position,self.position = self.position,previous_track.position + previous_track.save(validate:false) + self.save(validate:false) + end + end + end + end + + def move_down + count=normalize_position + if self.position < count + # Switch with next: + next_track = self.jam_track.jam_track_tracks.where("position=?", self.position+1).first + if next_track + next_track.position,self.position = self.position,next_track.position + next_track.save(validate:false) + self.save(validate:false) + end + end + end + + def delete_s3_files + s3_manager.delete(self[:url_44]) if self[:url_44] && s3_manager.exists?(self[:url_44]) + s3_manager.delete(self[:url_48]) if self[:url_48] && s3_manager.exists?(self[:url_48]) + s3_public_manager.delete(self[:preview_url]) if self[:preview_url] && s3_public_manager.exists?(self[:preview_url]) + s3_public_manager.delete(self[:preview_mp3_url]) if self[:preview_mp3_url] && s3_public_manager.exists?(self[:preview_mp3_url]) + end + + + + def generate_preview + + begin + Dir.mktmpdir do |tmp_dir| + + input = File.join(tmp_dir, 'in.ogg') + + raise 'no track' unless self["url_44"] + + s3_manager.download(self.url_by_sample_rate(44), input) + + process_preview(input, tmp_dir) + end + rescue Exception => e + @@log.error("error in sox command #{e.to_s}") + @preview_generate_error = e.to_s + end + + end + + # input is the original ogg file for the track. tmp_dir is where this code can safely generate output stuff and have it cleaned up later + def process_preview(input, tmp_dir) + uuid = SecureRandom.uuid + output = File.join(tmp_dir, "#{uuid}.ogg") + output_mp3 = File.join(tmp_dir, "#{uuid}.mp3") + output_aac = File.join(tmp_dir, "#{uuid}.aac") + + start = self.preview_start_time.to_f / 1000 + stop = start + 20 + + command = "sox \"#{input}\" \"#{output}\" trim #{sprintf("%.3f", start)} =#{sprintf("%.3f", stop)}" + + @@log.debug("trimming using: " + command) + + sox_output = `#{command}` + + result_code = $?.to_i + + if result_code != 0 + @@log.debug("fail #{result_code}") + @preview_generate_error = "unable to execute cut command #{sox_output}" + else + # now create mp3 off of ogg preview + + convert_mp3_cmd = "#{APP_CONFIG.ffmpeg_path_mp3} -i \"#{output}\" -ab 192k \"#{output_mp3}\"" + @@log.debug("converting to mp3 using: " + convert_mp3_cmd) + + convert_output = `#{convert_mp3_cmd}` + + result_code = $?.to_i + + if result_code != 0 + @@log.debug("fail #{result_code}") + @preview_generate_error = "unable to execute mp3 convert command #{convert_output}" + else + + convert_aac_cmd = "#{APP_CONFIG.ffmpeg_path} -i \"#{output}\" -c:a libfdk_aac -b:a 192k \"#{output_aac}\"" + @@log.debug("converting to aac using: " + convert_aac_cmd) + + convert_output = `#{convert_aac_cmd}` + + result_code = $?.to_i + + if result_code != 0 + @@log.debug("fail #{result_code}") + @preview_generate_error = "unable to execute aac convert command #{convert_output}" + else + + ogg_digest = ::Digest::MD5.file(output) + mp3_digest = ::Digest::MD5.file(output_mp3) + aac_digest = ::Digest::MD5.file(output_aac) + self["preview_md5"] = ogg_md5 = ogg_digest.hexdigest + self["preview_mp3_md5"] = mp3_md5 = mp3_digest.hexdigest + self["preview_aac_md5"] = aac_md5 = mp3_digest.hexdigest + + @@log.debug("uploading ogg preview to #{self.preview_filename('ogg')}") + s3_public_manager.upload(self.preview_filename(ogg_md5, 'ogg'), output, content_type: 'audio/ogg', content_md5: ogg_digest.base64digest) + @@log.debug("uploading mp3 preview to #{self.preview_filename('mp3')}") + s3_public_manager.upload(self.preview_filename(mp3_md5, 'mp3'), output_mp3, content_type: 'audio/mpeg', content_md5: mp3_digest.base64digest) + @@log.debug("uploading aac preview to #{self.preview_filename('aac')}") + s3_public_manager.upload(self.preview_filename(aac_md5, 'aac'), output_aac, content_type: 'audio/aac', content_md5: aac_digest.base64digest) + + self.skip_uploader = true + + original_ogg_preview_url = self["preview_url"] + original_mp3_preview_url = self["preview_mp3_url"] + original_aac_preview_url = self["preview_aac_url"] + + self["preview_url"] = self.preview_filename(ogg_md5, 'ogg') + self["preview_length"] = File.new(output).size + self["preview_mp3_url"] = self.preview_filename(mp3_md5, 'mp3') + self["preview_mp3_length"] = File.new(output_mp3).size + self["preview_aac_url"] = self.preview_filename(aac_md5, 'aac') + self["preview_aac_length"] = File.new(output_aac).size + self.save! + + # if all that worked, now delete old previews, if present + begin + s3_public_manager.delete(original_ogg_preview_url) if original_ogg_preview_url && original_ogg_preview_url != self["preview_url"] + s3_public_manager.delete(original_mp3_preview_url) if original_mp3_preview_url && original_mp3_preview_url != track["preview_mp3_url"] + s3_public_manager.delete(original_aac_preview_url) if original_aac_preview_url && original_aac_preview_url != track["preview_aac_url"] + rescue + puts "UNABLE TO CLEANUP OLD PREVIEW URL" + end + end + + end + end + end + + + private + def normalize_position + parent = self.jam_track + position = 0 + if parent + JamTrack.transaction do + parent.jam_track_tracks.each do |jtt| + position += 1 + if jtt.position != position + jtt.position = position + jtt.save(validate:false) + end + end + end + end + position + end # normalize_position + + end # class +end # module diff --git a/lambda/jamtrack-importer/shared/shared.gemspec b/lambda/jamtrack-importer/shared/shared.gemspec new file mode 100644 index 000000000..91438f312 --- /dev/null +++ b/lambda/jamtrack-importer/shared/shared.gemspec @@ -0,0 +1,24 @@ +Gem::Specification.new do |spec| + spec.name = "shared" + spec.version = "0.1.0" + spec.authors = ["Your Name"] + spec.email = ["your_email@example.com"] + + spec.summary = "Shared library for Lambda functions" + spec.description = "A shared Ruby library for common functionality used by multiple AWS Lambda functions." + spec.license = "MIT" + + # Files to include in the gem + spec.files = Dir.glob("lib/**/*.rb") + ["README.md"] + + # Entry point for the library + spec.require_paths = ["lib"] + + # Dependencies + spec.add_dependency "aws-sdk-s3", "~> 1.0" + spec.add_dependency "json", "~> 2.0" + + # Development dependencies (optional) + spec.add_development_dependency "rspec", "~> 3.0" +end + diff --git a/lambda/jamtrack-importer/template.yaml b/lambda/jamtrack-importer/template.yaml new file mode 100644 index 000000000..a7b00b9a4 --- /dev/null +++ b/lambda/jamtrack-importer/template.yaml @@ -0,0 +1,205 @@ +AWSTemplateFormatVersion: '2010-09-09' +Transform: AWS::Serverless-2016-10-31 + +Parameters: + Environment: + Type: String + AllowedValues: + - dev + - prod + Description: The environment (e.g., dev or prod) + TencyZipsBucket: + Type: String + Description: Where tency uploads their original zips + TencyJamTracksBucket: + Type: String + Description: Where we unzip their zipped files + EfsId: + Type: String + Description: The ID of the EFS to use for scratch + VpcId: + Type: String + Description: The ID of the VPC where the Lambda function and EFS are deployed. + SubnetIds: + Type: CommaDelimitedList + Description: The IDs of the subnets where the Lambda function will be deployed. + SgIds: + Type: CommaDelimitedList + Description: The Id Of the security group + MountPath: + Type: String + Description: The path to mount the EFS volume into the lamdda + JamTrackContainerPath: + Type: String + Description: The local or container registry path to the jamtrack container + DbHost: + Type: String + Description: potsgresql host + DbUser: + Type: String + Description: postgresql user + DbPass: + Type: String + Description: postgresql pass + DbName: + Type: String + Description: db name + AwsBucket: + Type: String + Description: aws bucket + AwsBucketPublic: + Type: String + Description: aws bucket public + +Globals: + Function: + #Runtime: ruby3.3 + CodeUri: ./ + Architectures: + - x86_64 + #Handler: app.lambda_handler + +Resources: + TencyUnzipFunction: + Type: AWS::Serverless::Function + Properties: + #Handler: lambdas/unzipper/app.lambda_handler + #Runtime: ruby3.3 +# Layers: +# - !Ref AssetLayer +# - !Ref PGLayer +# - !Ref SharedLayer + MemorySize: 500 + Timeout: 900 + PackageType: Image + ImageUri: !Ref JamTrackContainerPath + FileSystemConfigs: + - Arn: !GetAtt EFSMountTarget.Arn + LocalMountPath: /mnt/efs + VpcConfig: + SubnetIds: !Ref SubnetIds + SecurityGroupIds: !Ref SgIds + Role: !GetAtt ZipExtractorFunctionRole.Arn + Environment: + Variables: + ENV: !Ref Environment + DB_HOST: !Ref DbHost + DB_USER: !Ref DbUser + DB_PASS: !Ref DbPass + DB_NAME: !Ref DbName + TENCY_ZIPS_BUCKET: !Ref TencyZipsBucket + TENCY_JAMTRACKS_BUCKET: !Ref TencyJamTracksBucket + AWS_BUCKET: !Ref AwsBucket + AWS_BUCKET_PUBLIC: !Ref AwsBucketPublic + FFMPEG_PATH: /opt/bin/ffmpeg + FFMPEG_PATH_MP3: /opt/bin/ffmpeg + JMEP_DIR: /var/task/shared/jmep + END_ON_FAIL: 1 + MOUNT_PATH: !Ref MountPath +# AssetLayer: +# Type: AWS::Serverless::LayerVersion +# Properties: +# LayerName: asset-layer +# ContentUri: s3://jamkazam-repo/lambda-assets/jamtrack-importer-assets.zip +# ContentUri: ./assets/assets.zip +# CompatibleRuntimes: +# - ruby3.3 +# PGLayer: +# Type: AWS::Serverless::LayerVersion +# Properties: +# CompatibleRuntimes: +# - ruby3.3 +# ContentUri: 'pg_layer' +# Metadata: +# BuildMethod: makefile + +# SharedLayer: +# Type: AWS::Serverless::LayerVersion +# Properties: +# LayerName: shared-layer +# Description: Shared code layer for Lambda functions +# ContentUri: shared/ +# CompatibleRuntimes: +# - ruby3.3 + + # IAM Role for Lambda + ZipExtractorFunctionRole: + Type: AWS::IAM::Role + Properties: + AssumeRolePolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: Allow + Principal: + Service: lambda.amazonaws.com + Action: sts:AssumeRole + ManagedPolicyArns: + - !Ref EFSFullAccessPolicy + - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" + Policies: + - PolicyName: S3AccessPolicy + PolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: Allow + Action: + - "s3:ListBucket" + - "s3:GetObject" + Resource: + - !Sub "arn:aws:s3:::${TencyZipsBucket}" + - !Sub "arn:aws:s3:::${TencyZipsBucket}/*" + - Effect: Allow + Action: + - "s3:ListBucket" + - "s3:GetObject" + - "s3:PutObject" + Resource: + - !Sub "arn:aws:s3:::${TencyJamTracksBucket}" + - !Sub "arn:aws:s3:::${TencyJamTracksBucket}/*" + - PolicyName: VPCNetworkingPolicy + PolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: Allow + Action: + - "ec2:CreateNetworkInterface" + - "ec2:DescribeNetworkInterfaces" + - "ec2:DeleteNetworkInterface" + Resource: "*" # You can narrow this down by specifying resources if needed + # Managed Policy for EFS Access + EFSFullAccessPolicy: + Type: AWS::IAM::ManagedPolicy + Properties: + Description: EFS full access for Lambda + PolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: Allow + Action: + - "elasticfilesystem:ClientMount" + - "elasticfilesystem:ClientWrite" + Resource: !GetAtt EFSMountTarget.Arn + + + # EFS Mount Target +# MountTaget1: +# Type: AWS::EFS::MountTarget +# Properties: +# FileSystemId: !Ref EfsId +# SubnetId: !Select [0, !Ref SubnetIds] # us-east1 +# SecurityGroups: [!Ref SgId] + + # EFS Mount Target for Lambda + EFSMountTarget: + Type: AWS::EFS::AccessPoint + Properties: + FileSystemId: !Ref EfsId + PosixUser: + Uid: "1000" + Gid: "1000" + RootDirectory: + CreationInfo: + OwnerUid: "1000" + OwnerGid: "1000" + Permissions: "0777" + Path: !Ref MountPath diff --git a/lambda/jamtrack-importer/tency_filename_instruments.csv b/lambda/jamtrack-importer/tency_filename_instruments.csv new file mode 100644 index 000000000..01671e802 --- /dev/null +++ b/lambda/jamtrack-importer/tency_filename_instruments.csv @@ -0,0 +1,9105 @@ +count,track_name,Instrument,Disambiguation String +4893,click.wav,Clicktrack, +3873,drums.wav,Drums, +3797,bass.wav,Bass Guitar, +2508,bv.wav,Voice,Backing +1657,piano.wav,Piano, +1654,ld.wav,Voice,Lead +1004,strings.wav,Orchestra,Strings +810,lv.wav,Voice,Lead +764,perc.wav,Percussion, +672,organ.wav,Keyboard,Organ +666,fx.wav,Computer,FX +564,synth.wav,Keyboard,Synth +459,pad.wav,Keyboard,Pad +414,ag.wav,Acoustic Guitar, +382,s_drums.wav,Drums, +380,percussion.wav,Percussion, +367,voc.wav,Voice, +351,s_bass.wav,Bass Guitar, +321,eg.wav,Electric Guitar, +306,bkgnds.wav,Computer,Backgrounds +288,precount.wav,Computer,Count In +270,brass.wav,Other,Brass +255,s_bv.wav,Voice,Backing +234,gtr.wav,Electric Guitar, +223,eg 2.wav,Electric Guitar,Electric 2 +216,eg 1.wav,Electric Guitar,Electric 1 +208,gtr 1.wav,Electric Guitar,Electric 1 +205,lead vocal.wav,Voice,Lead +192,s_lv.wav,Voice,Lead +184,gtr 2.wav,Electric Guitar,Electric 2 +183,synth bass.wav,Keyboard,Synth Bass +183,synth 1.wav,Keyboard,Synth 1 +179,synth 2.wav,Keyboard,Synth 2 +174,sfx.wav,Computer,SFX +170,guitar.wav,Electric Guitar, +170,gtr 3.wav,Electric Guitar,Electric 3 +167,percussions.wav,Percussion, +166,pads.wav,Keyboard,Pad +166,lead vox.wav,Voice,Lead +161,eg 3.wav,Electric Guitar,Electric 3 +156,ld-adlib.wav,Voice,Lead Rap +151,rhodes.wav,Keyboard,Rhodes +149,tambourine.wav,Percussion,Tambourine +148,guitar 2.wav,Electric Guitar,Electric 2 +146,synths.wav,Keyboard,Synths +142,s_piano.wav,Piano, +140,b vox only.wav,Voice,Backing +139,guitar 1.wav,Electric Guitar,Electric 1 +134,el piano.wav,Keyboard,Electric Piano +134,bells.wav,Other,Bells +133,horns.wav,Other,Horns +131,flute.wav,Flute, +124,keys.wav,Keyboard, +123,ep.wav,Keyboard,Electric Piano +119,claps.wav,Other,Claps +113,gtr 1 left.wav,Electric Guitar,Electric 1 Left +113,eg_r.wav,Electric Guitar,Right +113,eg_l.wav,Electric Guitar,Left +111,percs.wav,Percussion, +105,sax.wav,Saxophone, +101,eg 4.wav,Electric Guitar,Electric 4 +100,gtr 2 right.wav,Electric Guitar,Electric 2 Right +98,s_perc.wav,Percussion, +96,synth pad.wav,Keyboard,Synth Pad +96,banjo.wav,Banjo, +95,gtr 4.wav,Electric Guitar,Electric 4 +93,synth2.wav,Keyboard,Synth 2 +90,bgv.wav,Voice,Backing +89,synth lead.wav,Keyboard,Synth Lead +88,guitar 3.wav,Electric Guitar,Electric 3 +86,s_fx.wav,Computer,FX +86,gtr1.wav,Electric Guitar,Electric 1 +85,synth 3.wav,Keyboard,Synth 3 +84,gtr2.wav,Electric Guitar,Electric 2 +83,shaker.wav,Percussion,Shaker +83,hammond.wav,Keyboard,Hammond +81,s_gtr1.wav,Electric Guitar,Electric 1 +81,backing vocals.wav,Voice,Backing +78,s_gtr2.wav,Electric Guitar,Electric 2 +78,percu.wav,Percussion, +76,harp.wav,Harp, +76,drum.wav,Drums, +76,bg vocals.wav,Voice,Backing +75,synth1.wav,Keyboard,Synth 1 +75,s_ld.wav,Voice,Lead +74,bvox only.wav,Voice,Backing +72,s_ag.wav,Acoustic Guitar, +71,steel.wav,Electric Guitar,Steel +71,acoustic guitar.wav,Acoustic Guitar, +68,fiddle.wav,Violin,Fiddle +67,synth 01.wav,Keyboard,Synth 1 +66,backing_vocals.wav,Voice,Backing +65,lead.wav,Voice,Lead +65,harmonica.wav,Harmonica, +64,synth 02.wav,Keyboard,Synth 2 +64,s_pad.wav,Keyboard,Pad +63,s_organ.wav,Keyboard,Organ +63,mandolin.wav,Mandolin, +62,s_strings.wav,Orchestra,Strings +62,eglead.wav,Electric Guitar,Lead +62,eg solo.wav,Electric Guitar,Solo +58,synth strings.wav,Keyboard,Synth Strings +56,s_synth.wav,Keyboard,Synth +56,lead_vocals.wav,Voice,Lead +56,drum kit.wav,Drums, +55,trumpet.wav,Trumpet, +55,s_percussion.wav,Percussion, +54,s_eg.wav,Electric Guitar, +52,violin.wav,Violin, +52,eg 5.wav,Electric Guitar,Electric 5 +50,s_gtr3.wav,Electric Guitar,Electric 3 +50,gtr3.wav,Electric Guitar,Electric 3 +50,fxs.wav,Computer,FX +49,synth3.wav,Keyboard,Synth 3 +49,lv-adlib.wav,Voice,Lead Rap +49,gtr 5.wav,Electric Guitar,Electric 5 +47,synthpad.wav,Keyboard,Synth Pad +47,e piano.wav,Keyboard,Electric Piano +47,clavinet.wav,Keyboard,Clavinet +45,leadgt.wav,Electric Guitar,Lead +45,adds.wav,Electric Guitar,Adds +44,gtr 2 left.wav,Electric Guitar,Electric 2 Left +44,bass 2.wav,Bass Guitar,Bass 2 +43,noise.wav,Computer,Noise +43,epiano.wav,Keyboard,Electric Piano +42,guitar 4.wav,Electric Guitar,Electric 4 +41,scratch.wav,Other,Scratch +40,bass 1.wav,Bass Guitar,Bass 1 +39,gtr 3 right.wav,Electric Guitar,Electric 3 Right +39,clarinet.wav,Clarinet, +39,arp.wav,Keyboard,Arpeggio +38,synth brass.wav,Keyboard,Synth Brass +38,eg(lead).wav,Electric Guitar,Lead +38,acgtr.wav,Acoustic Guitar, +37,pluck.wav,Other,Pluck +37,guits.wav,Electric Guitar,Guitars +37,electric guitar.wav,Electric Guitar, +37,ac gtr.wav,Acoustic Guitar, +36,lvocal.wav,Voice,Lead +36,glockenspiel.wav,Glockenspiel, +35,synthbass.wav,Keyboard,Synth Bass +35,oboe.wav,Oboe, +35,flutes.wav,Flute, +35,eguit.wav,Electric Guitar, +35,congas.wav,Percussion,Congas +34,french horns.wav,French Horn, +34,egclean.wav,Electric Guitar,Clean +34,ag 2.wav,Acoustic Guitar,Acoustic 2 +34,808.wav,Keyboard,808 +33,voc 1.wav,Voice,Lead +33,marimba.wav,Percussion,Marimba +33,cello.wav,Cello, +33,bvocal.wav,Voice,Backing +33,acoustic.wav,Acoustic Guitar, +32,tamb.wav,Percussion,Tambourine +32,guitars 2.wav,Electric Guitar,Guitars 2 +32,guitars 1.wav,Electric Guitar,Guitars 1 +32,eg dist.wav,Electric Guitar,Distorted +32,eg 02.wav,Electric Guitar,Electric 2 +32,eg 01.wav,Electric Guitar,Electric 1 +32,choir.wav,Voice,Choir +31,whistle.wav,Other,Whistle +31,vibes.wav,Keyboard,Vibes +31,synth 4.wav,Keyboard,Synth 4 +31,solo eg.wav,Electric Guitar,Solo +31,electric guitar 2.wav,Electric Guitar,Electric 2 +31,eg2.wav,Electric Guitar,Electric 2 +31,bvs.wav,Voice,Backing +31,ag 1.wav,Acoustic Guitar,Acoustic 1 +30,voc 2.wav,Voice,Voice 2 +30,synthlead.wav,Keyboard,Synth Lead +30,eg clean.wav,Electric Guitar,Clean +30,drake.wav,Voice,Drake +30,acougt.wav,Acoustic Guitar, +29,synth 03.wav,Keyboard,Synth 3 +29,s_b.v.wav,Voice,Backing +29,rhygt.wav,Electric Guitar,Rhythm +29,gtr 3 left.wav,Electric Guitar,Electric 3 Left +29,electric guitar 1.wav,Electric Guitar,Electric 1 +28,synth choir.wav,Keyboard,Synth Choir +28,s_synth bass.wav,Keyboard,Synth Bass +28,mix synths.wav,Keyboard,Synth Mix +28,gtr 4 right.wav,Electric Guitar,Electric 4 Right +27,string.wav,Orchestra,Strings +27,s_gtr4.wav,Electric Guitar,Electric 4 +27,brasses.wav,Other,Brass +27,accordion.wav,Accordion, +26,guitars 3.wav,Electric Guitar,Electric 3 +26,guit.wav,Electric Guitar, +26,electric piano.wav,Keyboard,Electric Piano +25,mellotron.wav,Keyboard,Mellotron +25,egdisto.wav,Electric Guitar,Distorted +24,percs and fx.wav,Percussion, +24,ld and double.wav,Voice,Lead +24,ld 12.wav,Voice,Lead +24,lap steel.wav,Electric Guitar,Lap Steel +24,eg 6.wav,Electric Guitar,Electric 6 +24,eg 1 left.wav,Electric Guitar,Electric 1 Left +24,dobro.wav,Dobro, +23,solo.wav,Electric Guitar,Solo +23,loop.wav,Computer,Loop +23,leftgtr 1.wav,Electric Guitar,Electric 1 Left +23,glock.wav,Glockenspiel, +23,elgtr 02.wav,Electric Guitar,Electric 2 +23,elgtr 01.wav,Electric Guitar,Electric 1 +23,eguit2.wav,Electric Guitar,Electric 2 +22,trance.wav,Computer,Trance +22,synth guit.wav,Keyboard,Synth Guitar +22,synth arp.wav,Keyboard,Synth Arpeggio +22,gtr4.wav,Electric Guitar,Electric 4 +22,eg lead.wav,Electric Guitar,Lead +22,eg adds.wav,Electric Guitar,Adds +22,brass section.wav,Other,Brass +22,ag_r.wav,Acoustic Guitar,Right +22,ag_l.wav,Acoustic Guitar,Left +21,voc 1b.wav,Voice,Backing +21,trumpets.wav,Trumpet, +21,synth pluck.wav,Keyboard,Synth Pluck +21,sitar.wav,Sitar, +21,s_synth1.wav,Keyboard,Synth 1 +21,s_ep.wav,Keyboard,Electric Piano +21,eguit 1.wav,Electric Guitar,Electric 1 +21,eg l.wav,Electric Guitar,Left +21,eg 2 right.wav,Electric Guitar,Electric 2 Right +21,acoustic_guitar.wav,Acoustic Guitar, +20,synth 5.wav,Keyboard,Synth 5 +20,s_synth2.wav,Keyboard,Synth 2 +20,rightgtr 2.wav,Electric Guitar,Electric 2 Right +20,right eg.wav,Electric Guitar,Right +20,mallets.wav,Percussion,Mallets +20,lead synth.wav,Keyboard,Synth Lead +20,elgtr.wav,Electric Guitar, +20,electric guitar 3.wav,Electric Guitar,Electric 3 +20,eg r.wav,Electric Guitar,Right +20,eg crunch.wav,Electric Guitar,Crunch +20,eg 03.wav,Electric Guitar,Electric 3 +20,double bass.wav,Double Bass, +20,cleangt.wav,Electric Guitar,Clean +20,clav.wav,Keyboard,Clavinet +20,bv2.wav,Voice,Backing 2 +20,bass synth.wav,Keyboard,Synth Bass +20,ag 02.wav,Acoustic Guitar,Acoustic 2 +20,ag 01.wav,Acoustic Guitar,Acoustic 1 +19,vocoder.wav,Vocoder, +19,trombone.wav,Trombone, +19,synths 1.wav,Keyboard,Synth 1 +19,s_sfx.wav,Computer,SFX +19,gtr 6.wav,Electric Guitar,Electric 6 +19,eguit1.wav,Electric Guitar,Electric 1 +19,02_drums.wav,Drums,Drums 2 +18,s_synth keys.wav,Keyboard,Synth Keys +18,precompte.wav,Other, +18,left eg.wav,Electric Guitar,Left +18,guitars 4.wav,Electric Guitar,Electric 4 +18,gtrs.wav,Electric Guitar,Guitars +18,gtr 4 left.wav,Electric Guitar,Electric 4 Left +18,gtr 1 right.wav,Electric Guitar,Electric 1 Right +18,egsolo.wav,Electric Guitar,Solo +18,e guitar 1.wav,Electric Guitar,Electric 1 +18,cowbell.wav,Percussion,Cowbell +18,bell.wav,Keyboard,Synth Bells +18,acc guitar.wav,Acoustic Guitar, +17,synth4.wav,Keyboard,Synth 4 +17,synth keys.wav,Keyboard,Synth +17,synth bells.wav,Keyboard,Synth Bells +17,organ 1.wav,Keyboard,Organ +17,moog.wav,Keyboard,Moog +17,lil wayne.wav,Voice,Lil Wayne +17,lead vocals.wav,Voice,Lead +17,guitar 1 left.wav,Electric Guitar,Electric 1 Left +17,gtr solo.wav,Electric Guitar,Solo +17,gtr 5 right.wav,Electric Guitar,Electric 5 Right +17,disto eg.wav,Electric Guitar,Distorted +16,vocal.wav,Voice,Lead +16,tympani.wav,Timpani, +16,s_gtr.wav,Electric Guitar, +16,s_eg1.wav,Electric Guitar,Electric 1 +16,s_brass.wav,Other,Brass +16,organ 2.wav,Keyboard,Organ 2 +16,key.wav,Keyboard, +16,elegtr1.wav,Electric Guitar,Electric 1 +16,elegtr.wav,Electric Guitar, +16,electric_guitar.wav,Electric Guitar, +16,eguit solo.wav,Electric Guitar,Solo +16,eguit 3.wav,Electric Guitar,Electric 3 +16,eguit 2.wav,Electric Guitar,Electric 2 +16,eg(disto).wav,Electric Guitar,Distorted +16,eg(clean).wav,Electric Guitar,Clean +16,eg arr.wav,Electric Guitar,Arpeggios +16,bg vocals 2.wav,Voice,Backing +15,timpani.wav,Timpani, +15,synths 2.wav,Keyboard,Synth 2 +15,synthbrass.wav,Keyboard,Synth Brass +15,s_electric guitar 2.wav,Electric Guitar,Electric 2 +15,s_eg_l.wav,Electric Guitar,Left +15,s_eg2.wav,Electric Guitar,Electric 2 +15,s_eg 02.wav,Electric Guitar,Electric 2 +15,pizzicato.wav,Keyboard,Pizzicato +15,lv and double.wav,Voice,Lead +15,left gtr 1.wav,Electric Guitar,Electric 1 Left +15,leadsynth.wav,Keyboard,Synth Lead +15,lds.wav,Voice,Lead +15,harpsichord.wav,Keyboard,Harpsichord +15,guitar 5.wav,Electric Guitar,Electric 5 +15,guitar 2 right.wav,Electric Guitar,Electric 2 Right +15,elegtr2.wav,Electric Guitar,Electric 2 +15,el gtr.wav,Electric Guitar, +15,eg c.wav,Electric Guitar, +15,e guitar 2.wav,Electric Guitar,Electric 2 +15,cardi b.wav,Voice,Cardi B +15,brass synth.wav,Keyboard,Synth Brass +15,bg vocals 1.wav,Voice,Backing +15,bassoon.wav,Bassoon, +15,bad bunny.wav,Voice,Bad Bunny +15,ag2.wav,Acoustic Guitar,Acoustic 2 +15,acoustic guitar 2.wav,Acoustic Guitar,Acoustic 2 +15,acoustic guitar 1.wav,Acoustic Guitar,Acoustic 1 +14,wurlitzer.wav,Keyboard,Wurlitzer +14,tuba.wav,Tuba, +14,synthfx.wav,Keyboard,Synth FX +14,synth fx.wav,Keyboard,Synth FX +14,sub bass.wav,Bass Guitar, +14,snoop dogg.wav,Voice,Snoop Dogg +14,s_sax.wav,Saxophone, +14,s_gtr5.wav,Electric Guitar,Electric 5 +14,s_electric guitar 1.wav,Electric Guitar,Electric 1 +14,s_eg3.wav,Electric Guitar,Electric 3 +14,s_eg 01.wav,Electric Guitar,Electric 1 +14,right gtr 2.wav,Electric Guitar,Electric 2 Right +14,female.wav,Voice,Female +14,egcrunch.wav,Electric Guitar,Crunch +14,drivegt.wav,Electric Guitar,Drive +14,basse.wav,Bass Guitar, +14,arr eg.wav,Electric Guitar,Arpeggios +14,acoustic_guitar_steel.wav,Acoustic Guitar,Steel +13,vibraphone.wav,Keyboard,Vibes +13,synth lead 2.wav,Keyboard,Synth Lead 2 +13,snaps.wav,Other,Snaps +13,s_guit.wav,Electric Guitar, +13,s_gtr r.wav,Electric Guitar,Right +13,s_gtr ld.wav,Electric Guitar,Lead +13,s_gtr l.wav,Electric Guitar,Left +13,s_flute.wav,Flute, +13,s_electric guitar.wav,Electric Guitar, +13,s_eg_r.wav,Electric Guitar,Right +13,s_bass synth.wav,Keyboard,Synth Bass +13,s_banjo.wav,Banjo, +13,s_ag2.wav,Acoustic Guitar,Acoustic 2 +13,rhygt_r.wav,Electric Guitar,Rhythm Right +13,rhygt_l.wav,Electric Guitar,Rhythm Left +13,pluck synth.wav,Keyboard,Synth Pluck +13,organs.wav,Keyboard,Organ +13,lead_vocal.wav,Voice,Lead +13,kalimba.wav,Other,Kalimba +13,guitar2.wav,Electric Guitar,Electric 2 +13,eguit3.wav,Electric Guitar,Electric 3 +13,eg3.wav,Electric Guitar,Electric 3 +13,eg 7.wav,Electric Guitar,Electric Guitar 7 +13,eg 04.wav,Electric Guitar,Electric 4 +13,efx.wav,Keyboard,FX +13,clap.wav,Other,Clap +13,bv 2.wav,Voice,Backing 2 +13,addgt.wav,Electric Guitar,Adds +13,acguitar.wav,Acoustic Guitar, +13,2pac.wav,Voice,2Pac +13,01 drums.wav,Drums, +12,voc-adlib.wav,Voice,Rap +12,tubular bells.wav,Keyboard,Tubular Bells +12,synthstrings.wav,Keyboard,Synth Strings +12,s_violin.wav,Violin, +12,s_keys.wav,Keyboard, +12,pre count.wav,Computer,Count In +12,percus.wav,Percussion, +12,perc 1.wav,Percussion,Percussion 1 +12,nicki minaj.wav,Voice,Nicki Minaj +12,male lead.wav,Voice,Male Lead +12,lead guitar.wav,Electric Guitar,Lead +12,lead guit.wav,Electric Guitar,Lead +12,horn.wav,Other,Horns +12,hits.wav,Percussion,Hits +12,hammond organ.wav,Keyboard,Hammond +12,guitars.wav,Electric Guitar,Guitars +12,guitar solo.wav,Electric Guitar,Solo +12,gtr synth.wav,Keyboard,Synth Guitar +12,elec gtr 1.wav,Electric Guitar,Electric 1 +12,eguit 4.wav,Electric Guitar,Electric 4 +12,eg dist 01.wav,Electric Guitar,Distorted 1 +12,eg 2 left.wav,Electric Guitar,Electric 2 Left +12,edrums.wav,Drums,Electronic +12,drumkit.wav,Drums, +12,bv male.wav,Voice,Backing Male +12,bongos.wav,Percussion,Bongos +12,ag 2 right.wav,Acoustic Guitar,Acoustic 2 Right +12,ag 1 left.wav,Acoustic Guitar,Acoustic 1 Left +12,ac guitar.wav,Acoustic Guitar, +11,xylophone.wav,Other,Xylophone +11,upright bass.wav,Double Bass, +11,tpt.wav,Other, +11,synth pads.wav,Keyboard,Synth Pad +11,synth pad 2.wav,Keyboard,Synth Pad 2 +11,synth lead 1.wav,Keyboard,Synth Lead 1 +11,synth guitar.wav,Keyboard,Synth Guitar +11,synth adds.wav,Keyboard,Synth Adds +11,synth 6.wav,Keyboard,Synth 6 +11,strings 1.wav,Orchestra,Strings 1 +11,string section.wav,Orchestra,Strings +11,string ensemble.wav,Orchestra,Strings +11,s_trumpet.wav,Trumpet, +11,s_sub.wav,Other, +11,s_eglead.wav,Electric Guitar,Lead +11,rap lead.wav,Voice,Rap Lead +11,perc 2.wav,Percussion,Percussion 2 +11,male.wav,Voice,Male +11,lap steel guitar.wav,Electric Guitar,Lap Steel +11,gtr 7.wav,Electric Guitar,Electric 7 +11,eminem.wav,Voice,Eminem +11,electric guitar 5.wav,Electric Guitar,Electric 5 +11,electric guitar 4.wav,Electric Guitar,Electric 4 +11,el gtr 2.wav,Electric Guitar,Electric 2 +11,eguit solos.wav,Electric Guitar,Solo +11,egmute.wav,Electric Guitar,Muted +11,eg_r 2.wav,Electric Guitar,Electric Right 2 +11,eg dis.wav,Electric Guitar,Distorted +11,eg clean 01.wav,Electric Guitar,Electric Clean 1 +11,eg 3 left.wav,Electric Guitar,Electric 3 Left +11,eg 1 right.wav,Electric Guitar,Electric 1 Right +11,eg 1 + 2.wav,Electric Guitar, +11,doublebass.wav,Double Bass, +11,clean eg.wav,Electric Guitar,Clean +11,bv female.wav,Voice,Backing Female +11,bv 1.wav,Voice,Backing 1 +11,b.v.wav,Voice,Backing +11,accordeon.wav,Accordion, +11,03_percu.wav,Percussion,Percussion 3 +10,vox.wav,Voice, +10,voicesynth.wav,Keyboard,Synth Voice +10,tambo.wav,Percussion,Tambourine +10,strings 2.wav,Orchestra,Strings 2 +10,saxes.wav,Saxophone, +10,s_synth3.wav,Keyboard,Synth 3 +10,s_ag1.wav,Acoustic Guitar,Acoustic 1 +10,rhythmic eg.wav,Electric Guitar,Rhythm +10,real pedal steel.wav,Electric Guitar,Pedal Steel +10,quavo.wav,Voice,Quavo +10,piano 2.wav,Piano,Piano 2 +10,piano 1.wav,Piano,Piano 1 +10,pad 2.wav,Keyboard,Pad 2 +10,mix keys.wav,Keyboard,Mixed Keys +10,ludacris.wav,Voice,Ludacris +10,ld 2.wav,Voice,Lead 2 +10,lapsteelgt.wav,Electric Guitar,Lap Steel +10,kendrick lamar.wav,Voice,Kendrick Lamar +10,kanye west.wav,Voice,Kanye West +10,gtr5.wav,Electric Guitar,Electric 5 +10,electric_rhythm_guitar_left.wav,Electric Guitar,Rhythm Left +10,electric_rhythm_guitar.wav,Electric Guitar,Rhythm +10,electric_lead_guitar.wav,Electric Guitar,Lead +10,elec gtr.wav,Electric Guitar, +10,elec gtr 2.wav,Electric Guitar,Electric 2 +10,egtr2.wav,Electric Guitar,Electric 2 +10,egslide.wav,Electric Guitar,Slide +10,eg(solo).wav,Electric Guitar,Solo +10,eg dist 03.wav,Electric Guitar,Distorted 3 +10,celeste.wav,Voice,Celeste +10,all bvs.wav,Voice,Backing +10,add synths.wav,Keyboard,Synth Adds +10,acousticguitar.wav,Acoustic Guitar, +10,2.wav,Other, +10,1.wav,Other, +9,woodwinds.wav,Orchestra,Woodwinds +9,windchimes.wav,Percussion,Wind Chimes +9,travis scott.wav,Voice,Travis Scott +9,synthkey.wav,Keyboard,Synth +9,subbass.wav,Bass Guitar,Sub Bass +9,steel drums.wav,Percussion,Steel Drums +9,slide gtr.wav,Electric Guitar,Slide +9,sax solo.wav,Saxophone,Solo +9,s_tambourine.wav,Percussion,Tambourine +9,s_string section.wav,Orchestra,Strings +9,s_mandolin.wav,Mandolin, +9,s_electric piano.wav,Keyboard,Electric Piano +9,s_ag 02.wav,Acoustic Guitar,Acoustic 2 +9,s_ag 01.wav,Acoustic Guitar,Acoustic 1 +9,rhode.wav,Keyboard,Rhodes +9,plucksynth.wav,Keyboard,Synth Pluck +9,plucks.wav,Keyboard,Synth Pluck +9,pluck synths.wav,Keyboard,Synth Pluck +9,organ synth.wav,Keyboard,Organ +9,mix synthpads.wav,Keyboard,Synth Pad +9,mandoline.wav,Mandolin, +9,ld synth.wav,Keyboard,Synth Lead +9,female lead.wav,Voice,Lead Female +9,electronic_drums.wav,Drums,Electronic +9,electric_rhythm_guitar_right.wav,Electric Guitar,Rhythm Right +9,electric_rhythm_guitar_2.wav,Electric Guitar,Rhythm 2 +9,electric_rhythm_guitar_1.wav,Electric Guitar,Rhythm 1 +9,el piano 2.wav,Keyboard,Electric Piano +9,el gtr 1.wav,Electric Guitar,Electric 1 +9,eguit4.wav,Electric Guitar,Electric 4 +9,eg1.wav,Electric Guitar,Electric 1 +9,eg(crunch).wav,Electric Guitar,Crunch +9,eg fx.wav,Electric Guitar,FX +9,eg b.wav,Electric Guitar,Electric 2 +9,eg a.wav,Electric Guitar,Electric 1 +9,e guitar lead.wav,Electric Guitar,Lead +9,conga.wav,Percussion,Congas +9,clavi.wav,Keyboard,Clavinet +9,bv1.wav,Voice,Backing +9,bv and adds.wav,Voice,Backing +9,04_bass.wav,Bass Guitar, +8,vocal synth.wav,Keyboard,Synth Vocal +8,violins.wav,Violin, +8,trombones.wav,Trombone, +8,theremin.wav,Theremin, +8,t-pain.wav,Voice,T-Pain +8,synth_pad.wav,Keyboard,Synth Pad +8,synth_bass.wav,Keyboard,Synth Bass +8,synth pad 1.wav,Keyboard,Synth Pad 1 +8,synth 04.wav,Keyboard,Synth 4 +8,sung lead.wav,Voice,Lead +8,strings section.wav,Orchestra,Strings +8,sample.wav,Computer,Sample +8,s_tambo.wav,Percussion,Tambourine +8,s_synth strings.wav,Keyboard,Synth Strings +8,s_synth lead.wav,Keyboard,Synth Lead +8,s_sound effects.wav,Computer,SFX +8,s_eg lead.wav,Electric Guitar,Lead +8,s_eg 2.wav,Electric Guitar,Electric 2 +8,s_eg 1.wav,Electric Guitar,Electric 1 +8,s_eg 03.wav,Electric Guitar,Electric 3 +8,s_distortion guitar.wav,Electric Guitar,Distorted +8,rhythmguitar.wav,Electric Guitar,Rhythm +8,rhythmgtr.wav,Electric Guitar,Rhythm +8,reversecymbal.wav,Computer,Reverse Cymbal +8,pizz.wav,Keyboard,Pizzicato +8,pad 1.wav,Keyboard,Synth Pad 1 +8,mutegt.wav,Electric Guitar,Muted +8,missy elliott.wav,Voice,Missy Elliott +8,megan thee stallion.wav,Voice,Megan Thee Stallion +8,lv and adds.wav,Voice,Lead +8,leadguitar.wav,Electric Guitar,Lead +8,jay-z.wav,Voice,Jay-Z +8,gtrsolo.wav,Electric Guitar,Solo +8,gtr-acst.wav,Acoustic Guitar, +8,gtr 5 left.wav,Electric Guitar,Electric 5 Left +8,electric_piano.wav,Keyboard,Electric Piano +8,el piano 1.wav,Keyboard,Electric Piano 1 +8,el guit.wav,Electric Guitar, +8,egtr3.wav,Electric Guitar,Electric 3 +8,egdistortion.wav,Electric Guitar,Distorted +8,eg_rlead.wav,Electric Guitar,Lead Right +8,eg_rcrunch.wav,Electric Guitar,Crunch Right +8,eg_llead.wav,Electric Guitar,Lead +8,eg_lcrunch.wav,Electric Guitar,Crunch Left +8,eg2 right.wav,Electric Guitar,Electric Right 2 +8,eg dist 04.wav,Electric Guitar,Distorted 4 +8,eg dist 02.wav,Electric Guitar,Distorted 2 +8,eg clean 02.wav,Electric Guitar,Electric Clean 2 +8,eg chorus.wav,Electric Guitar,Chorus +8,eg 4 right.wav,Electric Guitar,Electric 4 Right +8,drums-.wav,Drums, +8,dr. dre.wav,Voice,Dr. Dre +8,crunch eg.wav,Electric Guitar,Crunch +8,contrabass.wav,Other,Contrabass +8,choeurs.wav,Other, +8,chimes.wav,Keyboard,Chimes +8,celesta.wav,Keyboard,Celesta +8,camila cabello.wav,Voice,Camila Cabello +8,bv-2.wav,Voice,Backing 2 +8,bruno mars.wav,Voice,Bruno Mars +8,basssynth.wav,Keyboard,Synth Bass +8,bass-.wav,Bass Guitar, +8,atmo.wav,Computer,Atmosphere +8,ag3.wav,Acoustic Guitar,Acoustic 3 +8,ag1.wav,Acoustic Guitar,Acoustic 1 +8,ag l.wav,Acoustic Guitar,Acoustic Left +8,acgtrs.wav,Acoustic Guitar,Guitars +7,wurly.wav,Keyboard,Wurlitzer +7,willie nelson.wav,Voice,Willie Nelson +7,vox fx.wav,Keyboard,Synth Vox FX +7,trp.wav,Other, +7,triangle.wav,Percussion,Triangle +7,sza.wav,Voice,SZA +7,synthsolo.wav,Keyboard,Synth Solo +7,syntharp.wav,Keyboard,Synth Arpeggios +7,synth5.wav,Keyboard,Synth 5 +7,synth key.wav,Keyboard,Synth +7,synth bell.wav,Keyboard,Synth Bells +7,synth 7.wav,Keyboard,Synth 7 +7,strings vst.wav,Keyboard,Synth Strings +7,steeldrums.wav,Percussion,Steel Drums +7,steel gtr.wav,Electric Guitar,Steel +7,scratches.wav,Other,Scratches +7,s_trombone.wav,Trombone, +7,s_synth_lead.wav,Keyboard,Synth Lead +7,s_shaker.wav,Percussion,Shaker +7,s_mellotron.wav,Keyboard,Mellotron +7,s_lap steel guitar.wav,Electric Guitar,Lap Steel +7,s_bv m.wav,Voice,Backing Male +7,s_bv f.wav,Voice,Backing Female +7,s_bells.wav,Keyboard,Synth Bells +7,s_arpeggiator.wav,Keyboard,Arpeggios +7,s_acoustic guitar.wav,Acoustic Guitar, +7,rock organ.wav,Keyboard,Rock Organ +7,rightgtr 3.wav,Electric Guitar,Electric Right 3 +7,right ag.wav,Acoustic Guitar,Right +7,real harmonica.wav,Harmonica, +7,perc-.wav,Percussion, +7,perc+fx.wav,Percussion, +7,pads and strings.wav,Keyboard,Pads & Strings +7,orchestra.wav,Orchestra, +7,mix percs+fxs.wav,Percussion, +7,mix ld1+2.wav,Other, +7,mando.wav,Mandolin, +7,left ag.wav,Acoustic Guitar,Left +7,ld and adds.wav,Other, +7,ld 123.wav,Other, +7,kick.wav,Drums,Kick +7,keyboard.wav,Keyboard, +7,hit.wav,Percussion,Hit +7,guitar 6.wav,Electric Guitar,Electric 6 +7,gtr6.wav,Electric Guitar,Electric 6 +7,elpiano.wav,Keyboard,Electric Piano +7,el.gtr solo.wav,Electric Guitar,Solo +7,eguit5.wav,Electric Guitar,Electric 5 +7,eguit 5.wav,Electric Guitar,Electric 5 +7,egtr1.wav,Electric Guitar,Electric 1 +7,eg rhythm.wav,Electric Guitar,Rhythm +7,eg lead 2.wav,Electric Guitar,Electric Lead 2 +7,eg clean 03.wav,Electric Guitar,Electric Clean 3 +7,eg 3 right.wav,Electric Guitar,Electric 3 Right +7,eg 05.wav,Electric Guitar,Electric 5 +7,e guitar 3.wav,Electric Guitar,Electric 3 +7,countin.wav,Computer,Count In +7,chris brown.wav,Voice,Chris Brown +7,chords.wav,Other,Chords +7,bv-.wav,Voice,Backing +7,bkgnds 2.wav,Computer,Background 2 +7,bkgnds 1.wav,Computer,Background 1 +7,beyonce.wav,Voice,Beyonce +7,bell synth.wav,Keyboard,Synth Bells +7,becky g.wav,Voice,Becky G +7,beat.wav,Percussion,Beat +7,batterie.wav,Other, +7,bass_synth.wav,Keyboard,Synth Bass +7,bass-01.wav,Bass Guitar,Bass 1 +7,bass guitar.wav,Bass Guitar, +7,b3.wav,Bass Guitar,Bass 3 +7,anderson .paak.wav,Voice,Anderson .Paak +7,ag r.wav,Acoustic Guitar,Right +7,ag 3.wav,Acoustic Guitar,Acoustic 3 +7,add guits.wav,Electric Guitar,Adds +7,ad libs.wav,Voice,Rap +7,acougt_r.wav,Acoustic Guitar,Right +7,accordian.wav,Accordion, +7,ac gtr 2.wav,Acoustic Guitar,Acoustic 2 +7,808 bass.wav,Keyboard,808 +7,50 cent.wav,Voice,50 Cent +6,whagt.wav,Other, +6,voc 4.wav,Voice,Voice 4 +6,voc 3.wav,Voice,Voice 3 +6,vinyl.wav,Other,Vinyl +6,ukelele.wav,Ukulele, +6,synthpluck.wav,Keyboard,Synth Pluck +6,synthflute.wav,Keyboard,Synth Flute +6,synth-2.wav,Keyboard,Synth 2 +6,synth vox.wav,Keyboard,Synth Vox +6,synth string.wav,Keyboard,Synth Strings +6,synth organ.wav,Keyboard,Organ +6,synth flute.wav,Keyboard,Synth Flute +6,synth 1 left.wav,Keyboard,Synth 1 Left +6,sweep.wav,Keyboard,Sweep +6,sound fx.wav,Keyboard,SFX +6,seq synths.wav,Keyboard, +6,sax 2.wav,Saxophone,Sax 2 +6,s_synth bells.wav,Keyboard,Synth Bells +6,s_synth 1.wav,Keyboard,Synth 1 +6,s_synth 02.wav,Keyboard,Synth 2 +6,s_synth 01.wav,Keyboard,Synth 1 +6,s_string ensemble.wav,Orchestra,Strings +6,s_pluck.wav,Keyboard,Synth Pluck +6,s_percs.wav,Percussion, +6,s_guit_solo.wav,Electric Guitar,Solo +6,s_epiano.wav,Keyboard,Electric Piano +6,s_electric guitar 3.wav,Electric Guitar,Electric 3 +6,s_eg4.wav,Electric Guitar,Electric 4 +6,s_eg solo.wav,Electric Guitar,Solo +6,s_crunch guitar.wav,Electric Guitar,Crunch +6,s_cello.wav,Cello, +6,s_bell.wav,Keyboard,Synth Bells +6,rhythmic ag.wav,Acoustic Guitar,Rhythm +6,real violin.wav,Violin, +6,post malone.wav,Voice,Post Malone +6,poly synth.wav,Keyboard,Poly Synth +6,pitbull.wav,Voice,Pitbull +6,pia.wav,Voice,Pia +6,pharrell williams.wav,Voice,Pharrell Williams +6,pedal steel.wav,Electric Guitar,Pedal Steel +6,offset.wav,Other, +6,nate dogg.wav,Voice,Nate Dogg +6,mix strings.wav,Orchestra,Strings +6,mix percs.wav,Percussion, +6,mix brasses.wav,Other,Brass +6,mix basses.wav,Other,Brass +6,mix ac.gtrs.wav,Acoustic Guitar, +6,mainsynth.wav,Keyboard,Synth Main +6,main synth.wav,Keyboard,Synth Main +6,leftgtr 3.wav,Electric Guitar,Electric Left 3 +6,leftgtr 2.wav,Electric Guitar,Electric Left 2 +6,leadvox.wav,Voice,Lead +6,leadgtr.wav,Electric Guitar,Lead +6,leadgt 2.wav,Electric Guitar,Lead 2 +6,lead gtr.wav,Electric Guitar,Lead +6,ld-.wav,Electric Guitar,Lead +6,ld 1.wav,Electric Guitar,Lead 1 +6,lady gaga.wav,Voice,Lady Gaga +6,keyboards.wav,Keyboard, +6,justin bieber.wav,Voice,Justin Bieber +6,guitars 5.wav,Electric Guitar,Electric 5 +6,guitar 2 left.wav,Electric Guitar,Electric 2 Left +6,gtr synths.wav,Keyboard,Synth Guitar +6,gtr ld.wav,Electric Guitar,Lead +6,gtr 6 left.wav,Electric Guitar,Electric 6 Left +6,french horn.wav,French Horn, +6,electric_solo_guitar.wav,Electric Guitar,Solo +6,electric_arrangement_guitar.wav,Electric Guitar, +6,electric guitar solo.wav,Electric Guitar,Solo +6,elec guitar.wav,Electric Guitar, +6,egtr1 left.wav,Electric Guitar,Electric 1 Left +6,egtr.wav,Electric Guitar, +6,egt 2.wav,Electric Guitar,Electric 2 +6,egt 1.wav,Electric Guitar,Electric 1 +6,eg_r(disto).wav,Electric Guitar,Distorted Right +6,eg_lclean.wav,Electric Guitar,Clean Left +6,eg_l(disto).wav,Electric Guitar,Distorted Left +6,eg_l 2.wav,Electric Guitar,Electric 2 Left +6,eg left.wav,Electric Guitar,Left +6,eg lead 3.wav,Electric Guitar,Lead 3 +6,eg lead 1.wav,Electric Guitar,Lead 1 +6,eg 8.wav,Electric Guitar,Electric 8 +6,ed sheeran.wav,Voice,Ed Sheeran +6,e guitar.wav,Electric Guitar, +6,drivegt_l.wav,Electric Guitar,Drive Left +6,distortion guitar.wav,Electric Guitar,Distorted +6,distortion guitar solo.wav,Electric Guitar,Distorted Solo +6,dist synths.wav,Keyboard,Synths +6,clngtr.wav,Electric Guitar,Clean +6,cleangt_r.wav,Electric Guitar,Clean Right +6,cleangt_l.wav,Electric Guitar,Clean Left +6,bv-1.wav,Voice,Backing 1 +6,bgs.wav,Voice,Backing 1 +6,beatbox.wav,Other,Beatbox +6,arpeggio.wav,Other,Arpeggios +6,arp synth.wav,Keyboard,Synth Arpeggios +6,ag 1 + 2.wav,Acoustic Guitar, +6,acoustic gtr.wav,Acoustic Guitar, +6,acougt_l.wav,Acoustic Guitar,Left +6,ac gtr 1.wav,Acoustic Guitar,Acoustic 1 +6,a guitar 2.wav,Acoustic Guitar,Acoustic 2 +6,a guitar 1.wav,Acoustic Guitar,Acoustic 1 +6,3.wav,Other, +5,wurli.wav,Keyboard,Wurlitzer +5,will.i.am.wav,Voice,Will.i.am +5,vocals.wav,Voice, +5,vocal fx.wav,Voice,FX +5,voc synth.wav,Keyboard,Synth Vox +5,voc 2b.wav,Voice, +5,violons.wav,Violin, +5,viola.wav,Viola, +5,vibra.wav,Keyboard,Vibes +5,ty dolla sign.wav,Voice,Ty Dolla Sign +5,trancesynth.wav,Keyboard,Synth Trance +5,the weeknd.wav,Voice,The Weeknd +5,the notorious b.i.g..wav,Voice,Notorious B.I.G. +5,tambourin.wav,Percussion,Tambourine +5,takeoff.wav,Other,Takeoff +5,synth-1.wav,Keyboard,Synth 1 +5,synth vocal.wav,Keyboard,Synth Vox +5,synth solo.wav,Keyboard,Synth Solo +5,synth melo.wav,Keyboard,Synth Melo +5,synth ld.wav,Keyboard,Synth Lead +5,synth arr.wav,Keyboard,Synth Arpeggios +5,sub.wav,Other, +5,stabs.wav,Keyboard,Synth Stabs +5,sonar.wav,Other,Sonar +5,sexyy red.wav,Voice,Sexyy Red +5,scott.wav,Other, +5,saxophone.wav,Saxophone, +5,saw synth.wav,Keyboard,Synth Saw +5,s_synth4.wav,Keyboard,Synth 4 +5,s_synth vox.wav,Keyboard,Synth Vox +5,s_synth pad.wav,Keyboard,Synth Pad +5,s_rock organ.wav,Keyboard,Rock Organ +5,s_guit_clean.wav,Electric Guitar,Clean +5,s_gtr6.wav,Electric Guitar,Electric 6 +5,s_gtr fx.wav,Electric Guitar,FX +5,s_fiddle.wav,Violin,Fiddle +5,s_electric guitar 4.wav,Electric Guitar,Electric 4 +5,s_eg 3.wav,Electric Guitar,Electric 3 +5,s_claps.wav,Other,Claps +5,s_clap.wav,Other,Claps +5,s_choir.wav,Voice,Choir +5,s_brasses.wav,Other,Brass +5,s_bass gtr.wav,Bass Guitar, +5,s_ag3.wav,Acoustic Guitar,Acoustic 3 +5,s_acoustic guitar 2.wav,Acoustic Guitar,Acoustic 2 +5,rightgtr 4.wav,Electric Guitar,Electric 4 Right +5,real trumpet.wav,Trumpet, +5,precount click.wav,Computer,Count In +5,playboi carti.wav,Voice,Playboi Carti +5,pink.wav,Voice,Pink +5,percusion.wav,Percussion, +5,music box.wav,Other,Music Box +5,mix synthkeys.wav,Keyboard,Synth Mix +5,mix synthbasses.wav,Keyboard,Synth Bass +5,mix pad+strings.wav,Keyboard,Synth Pad +5,mix fx.wav,Other,FX +5,mix el.gtrs.wav,Electric Guitar,Guitars +5,mix bv.wav,Voice,Backing +5,mix bv+adds.wav,Voice,Backing +5,mallet synths.wav,Keyboard,Synth Mallet +5,machine gun kelly.wav,Voice,Machine Gun Kelly +5,lil nas x.wav,Voice,Lil Nas X +5,lil kim.wav,Voice,Lil Kim +5,lil durk.wav,Voice,Lil Durk +5,left gtr 3.wav,Electric Guitar,Electric 3 Left +5,lead guits.wav,Electric Guitar,Lead +5,ldgtr.wav,Electric Guitar,Lead +5,key synths.wav,Keyboard,Synth Lead +5,intro.wav,Other,Intro +5,hammond_organ_2.wav,Keyboard,Hammond 2 +5,hammond_organ_1.wav,Keyboard,Hammond 1 +5,hammond_organ.wav,Keyboard,Hammond +5,hammond-.wav,Keyboard,Hammond +5,guitar_2.wav,Electric Guitar,Electric 2 +5,guitar_1.wav,Electric Guitar,Electric 1 +5,guitar3.wav,Electric Guitar,Electric 3 +5,guitar-2.wav,Electric Guitar,Electric 2 +5,guitar 1 right.wav,Electric Guitar,Electric 1 Right +5,guit 2.wav,Electric Guitar,Electric 2 +5,guit 1.wav,Electric Guitar,Electric 1 +5,gtr-solo.wav,Electric Guitar,Solo +5,gtr clean.wav,Electric Guitar,Clean +5,gtr 8.wav,Electric Guitar,Electric 8 +5,fiddle 2.wav,Violin,Fiddle 2 +5,fergie.wav,Voice,Fergie +5,electric_clean_guitar.wav,Electric Guitar,Clean +5,elec gtr 3.wav,Electric Guitar,Electric 3 +5,el.gtr.wav,Electric Guitar, +5,el gtr1.wav,Electric Guitar,Electric 1 +5,eguitar.wav,Electric Guitar, +5,eguit7.wav,Electric Guitar,Electric 7 +5,eguit rhytmic 1.wav,Electric Guitar,Rhythm 1 +5,eguit 6.wav,Electric Guitar,Electric 6 +5,eguit 1 left.wav,Electric Guitar,Electric 1 Left +5,egtremolo.wav,Electric Guitar,Tremolo +5,egchorus3.wav,Electric Guitar,Chorus 3 +5,egchorus2.wav,Electric Guitar,Chorus 2 +5,egatmo.wav,Electric Guitar,Atmospheric +5,eg_ldisto.wav,Electric Guitar,Distorted Left +5,eg right.wav,Electric Guitar,Right +5,eg rhy.wav,Electric Guitar,Rhythm +5,eg clean r.wav,Electric Guitar,Clean Right +5,eg arr 2.wav,Electric Guitar,Arpeggio 2 +5,eg 02 left.wav,Electric Guitar,Electric 2 Left +5,e guitar rhytmic clean.wav,Electric Guitar,Rhythm Clean +5,e guitar 4.wav,Electric Guitar,Electric 4 +5,e guitar 2 right.wav,Electric Guitar,Electric 2 Right +5,dv.wav,Other, +5,dulcimer.wav,Keyboard,Dulcimer +5,drivegt_r.wav,Eel,Drive Right +5,dj khaled.wav,Voice,DJ Khaled +5,dbass.wav,Double Bass, +5,crunch guitar.wav,Electric Guitar,Crunch +5,count in.wav,Computer,Count In +5,cleanguitar.wav,Electric Guitar,Clean +5,center eg.wav,Electric Guitar,Center +5,bradley cooper.wav,Voice,Bradley Cooper +5,bips.wav,Other, +5,bg vocals 3.wav,Voice,Backing 3 +5,agsolo.wav,Acoustic Guitar,Solo +5,ag nylon.wav,Acoustic Guitar,Nylon +5,acoustic bass.wav,Double Bass, +5,acordeon.wav,Accordion, +5,acgtr 02.wav,Acoustic Guitar,Acoustic 2 +5,acgtr 01.wav,Acoustic Guitar,Acoustic 1 +5,acc guitar 2.wav,Acoustic Guitar,Acoustic 2 +5,14_bv.wav,Voice,Backing +5,03_bass.wav,Bass Guitar,Bass 3 +5,03 bass.wav,Bass Guitar,Bass 3 +5,02 bass.wav,Bass Guitar,Bass 2 +4,wiz khalifa.wav,Voice,Wiz Khalifa +4,wind.wav,Other,Wind +4,vst brass.wav,Keyboard,Synth Brass +4,vocal synths.wav,Keyboard,Synth Vox +4,usher.wav,Voice,Usher +4,trumpet solo.wav,Trumpet,Solo +4,tremologt.wav,Electric Guitar,Tremolo +4,timbaland.wav,Voice,Timbaland +4,t.i..wav,Voice,T.I. +4,synthvox.wav,Keyboard,Synth Vox +4,synthvoice.wav,Keyboard,Synth Vox +4,synths 3.wav,Keyboard,Synth 3 +4,synthpiano.wav,Keyboard,Synth Piano +4,synthpad2.wav,Keyboard,Pad 2 +4,synthlead2.wav,Keyboard,Synth Lead 2 +4,synthguitar.wav,Keyboard,Synth Guitar +4,synthe.wav,Keyboard,Synth +4,synth_strings.wav,Keyboard,Synth Strings +4,synth_lead.wav,Keyboard,Synth Lead +4,synth_choir.wav,Keyboard,Synth Choir +4,synth-bass.wav,Keyboard,Synth Bass +4,synth-3.wav,Keyboard,Synth 3 +4,synth voices.wav,Keyboard,Synth Vox +4,synth vocals.wav,Keyboard,Synth Vox +4,synth saw.wav,Keyboard,Synth Saw +4,synth piano.wav,Keyboard,Electric Piano +4,synth lead 3.wav,Keyboard,Synth Lead 3 +4,synth dis.wav,Keyboard,Synth Distorted +4,synth 8.wav,Keyboard,Synth 8 +4,synth 4 right.wav,Keyboard,Synth 4 Right +4,synth 12.wav,Keyboard, +4,square.wav,Keyboard,Square +4,sound effects.wav,Keyboard,SFX +4,solo_guitar.wav,Electric Guitar,Solo +4,solo ag.wav,Acoustic Guitar,Solo +4,sfx 2.wav,Keyboard,SFX 2 +4,seq synth.wav,Keyboard,Synth Seq +4,selena gomez.wav,Voice,Selena Gomez +4,sean paul.wav,Voice,Sean Paul +4,sax 3.wav,Saxophone,Sax 3 +4,sax 1.wav,Saxophone,Sax 1 +4,s_vox synth.wav,Keyboard,Synth Vox +4,s_trumpets.wav,Trumpet, +4,s_tpt.wav,Other, +4,s_timpani.wav,Timpani, +4,s_tamb.wav,Percussion,Tambourine +4,s_synth keys 2.wav,Keyboard,Synth 2 +4,s_synth choir.wav,Keyboard,Synth Choir +4,s_synth brass.wav,Keyboard,Synth Brass +4,s_synth 2.wav,Keyboard,Synth 2 +4,s_sub_bass.wav,Keyboard,Sub Bass +4,s_samples.wav,Computer,Samples +4,s_overdriven guitar.wav,Electric Guitar,Overdriven +4,s_lead vocal.wav,Voice,Lead +4,s_lapsteel.wav,Electric Guitar,Lap Steel +4,s_harp.wav,Harp, +4,s_guit_rythm.wav,Electric Guitar,Rhythm +4,s_guit_dist.wav,Electric Guitar,Distorted +4,s_gtr solo.wav,Electric Guitar,Solo +4,s_eg 04.wav,Electric Guitar,Electric 4 +4,s_e piano.wav,Keyboard,Electric Piano +4,s_dobro.wav,Dobro, +4,s_distortion guitar solo.wav,Electric Guitar,Solo Distorted +4,s_brass section.wav,Other,Brass +4,s_bass2.wav,Bass Guitar,Bass 2 +4,s_ag 2.wav,Acoustic Guitar,Acoustic 2 +4,s_acoustic guitar 1.wav,Acoustic Guitar,Acoustic 1 +4,s_acoust.wav,Acoustic Guitar, +4,rihanna.wav,Voice,Rihanna +4,rhythm gtr.wav,Electric Guitar,Rhythm +4,recorder.wav,Other,Recorder +4,real sax.wav,Saxophone, +4,q-tip.wav,Voice,Q-Tip +4,polysynth.wav,Keyboard,Polysynth +4,pluckedsynth.wav,Keyboard,Synth Pluck +4,pipes.wav,Other,Pipes +4,piano-notdups.wav,Piano, +4,piano-01.wav,Piano,Piano 1 +4,piano-.wav,Piano, +4,percussion 2.wav,Percussion,Percussion 2 +4,percussion 1.wav,Percussion,Percussion 1 +4,pads and choir.wav,Keyboard,Synth Pad & Choir +4,pads 2.wav,Keyboard,Synth Pad 2 +4,pads 12.wav,Keyboard,Synth Pad +4,pad synths.wav,Keyboard,Synth Pad +4,pad synth.wav,Keyboard,Synth Pad +4,overdriven guitar.wav,Electric Guitar,Overdriven +4,organ_hammond_1.wav,Keyboard,Hammond +4,organ2.wav,Keyboard,Organ 2 +4,organ 3.wav,Keyboard,Organ 3 +4,orchestra hit.wav,Orchestra,Hit +4,noises.wav,Computer,Noise +4,noisefx.wav,Computer,Noise FX +4,noah kahan.wav,Voice,Noah Kahan +4,muted eg.wav,Electric Guitar,Muted +4,mix synthleads.wav,Keyboard,Synth Lead +4,mix piano.wav,Piano, +4,mix lv.wav,Voice,Lead +4,mix el.gtr arr.wav,Electric Guitar,Arpeggios +4,mix eg5+6.wav,Electric Guitar,Electric 5 +4,mix bvs.wav,Voice,Backing +4,mix ag1+2.wav,Acoustic Guitar, +4,mitch.wav,Voice,Mitch +4,missy elliott-adlib.wav,Voice,Missy Elliot +4,melodica.wav,Keyboard,Melodica +4,melo synths.wav,Keyboard,Synth Melo +4,mandolina.wav,Other, +4,mallet.wav,Keyboard,Mallets +4,macklemore.wav,Voice,Macklemore +4,lv ad lib.wav,Voice,Lead Rap +4,lv 2.wav,Voice,Lead 2 +4,lv 1.wav,Voice,Lead 1 +4,lil peep.wav,Voice,Lil Peep +4,lil baby.wav,Voice,Lil Baby +4,left gtr 2.wav,Electric Guitar,Electric 2 Left +4,leads.wav,Electric Guitar,Lead +4,lead voc.wav,Voice,Lead +4,ld synths.wav,Keyboard,Synth Lead +4,ld 12 and adds.wav,Other, +4,latto.wav,Other, +4,koto.wav,Other, +4,keys 2.wav,Keyboard,Synth 2 +4,keys 1.wav,Keyboard,Synth 1 +4,kesha.wav,Voice,Kesha +4,kali uchis.wav,Voice,Kali Uchis +4,jack harlow.wav,Voice,Jack Harlow +4,harpsicord.wav,Keyboard,Harpsichord +4,harmonium.wav,Keyboard,Harmonium +4,hamm.wav,Voice,Hamm +4,halsey.wav,Voice,Halsey +4,h.e.r..wav,Voice,H.E.R. +4,guitar-1.wav,Electric Guitar,Electric 1 +4,guitar fx.wav,Electric Guitar,FX +4,guitar 3 right.wav,Electric Guitar,Electric 3 Right +4,guitar 3 left.wav,Electric Guitar,Electric 3 Left +4,gtr-elec.wav,Electric Guitar, +4,gtr r.wav,Electric Guitar,Right +4,gtr left.wav,Electric Guitar,Left +4,gtr l.wav,Electric Guitar,Left +4,gtr fx.wav,Electric Guitar,FX +4,gtr 2 muted.wav,Electric Guitar,Electric 2 Muted +4,future.wav,Voice,Future +4,fr horns.wav,French Horn, +4,flugel.wav,Other,Flugelhorn +4,flo rida.wav,Voice,Flo Rida +4,fiddle 1 left.wav,Violin,Fiddle +4,eric clapton.wav,Voice,Eric Clapton +4,electricguitar.wav,Electric Guitar, +4,electric_lead_guitar_2.wav,Electric Guitar,Electric Lead 2 +4,electric_lead_guitar_1.wav,Electric Guitar,Electric Lead 1 +4,electric_guitar_left.wav,Electric Guitar,Left +4,electric_guitar_lead.wav,Electric Guitar,Lead +4,electric_arrangement_guitar_right.wav,Electric Guitar,Right +4,electric_arrangement_guitar_2.wav,Electric Guitar,Electric 2 +4,electric guitars.wav,Electric Guitar,Guitars +4,electric bass.wav,Bass Guitar, +4,elec gt 2.wav,Electric Guitar,Electric 2 +4,el.gtr disto.wav,Electric Guitar,Distorted +4,el guits.wav,Electric Guitar,Guitars +4,el guitar.wav,Electric Guitar, +4,el guitar lead.wav,Electric Guitar,Lead +4,el gtr 4.wav,Electric Guitar,Electric 4 +4,el gtr 3.wav,Electric Guitar,Electric 3 +4,eguit8.wav,Electric Guitar,Electric 8 +4,eguit6.wav,Electric Guitar,Electric 6 +4,eguit rhytmic 2.wav,Electric Guitar,Rhythm 2 +4,egtreble.wav,Electric Guitar,Treble +4,egmute2.wav,Electric Guitar,Electric 2 Muted +4,egchorus1.wav,Electric Guitar,Electric Chorus 1 +4,eg_rdisto.wav,Electric Guitar,Distorted Right +4,eg(muted).wav,Electric Guitar,Muted +4,eg(lead) 2.wav,Electric Guitar,Lead 2 +4,eg wah.wav,Electric Guitar,Wah +4,eg solo 2.wav,Electric Guitar,Solo 2 +4,eg solo 1.wav,Electric Guitar,Solo 1 +4,eg main.wav,Electric Guitar,Main +4,eg dist 05.wav,Electric Guitar,Electric 5 +4,eg dis l.wav,Electric Guitar,Distorted Left +4,eg clean l.wav,Electric Guitar,Clean Left +4,eg clean 2.wav,Electric Guitar,Clean 2 +4,eg adds 2.wav,Electric Guitar,Adds 2 +4,eg 3 + 4.wav,Electric Guitar,Electric 3 +4,eg 01 right.wav,Electric Guitar,Electric 1 Right +4,e-piano.wav,Keyboard,Electric Piano +4,e guitar rhythm.wav,Electric Guitar,Rhythm +4,e gtr.wav,Electric Guitar, +4,drums_1.wav,Drums,Drums 1 +4,distogtrs.wav,Electric Guitar,Distorted +4,distgtr.wav,Electric Guitar,Distorted +4,demi lovato.wav,Voice,Demi Lovato +4,crowd.wav,Other,Crows +4,cosmic.wav,Voice,Cosmic +4,ciara.wav,Voice,Ciara +4,charlie puth.wav,Voice,Charlie Puth +4,centergtr 3.wav,Electric Guitar,Electric 3 Center +4,carrie underwood.wav,Voice,Carrie Underwood +4,bv_1.wav,Voice,Backing +4,bv m.wav,Voice,Backing Male +4,bv 12.wav,Voice,Backing +4,busta rhymes.wav,Voice,Busta Rhymes +4,breath.wav,Other,Breath +4,block.wav,Keyboard,Block +4,blips.wav,Computer,Blips +4,bkgnd vocals.wav,Voice,Backing +4,baritone sax.wav,Saxophone,Baritone +4,backvox.wav,Voice,Backing +4,b.wav,Voice,Backing +4,b.v..wav,Voice,Backing +4,b.b. king.wav,Voice,B.B. King +4,arp synths.wav,Keyboard,Synth Arpeggios +4,andre 3000.wav,Voice,Andre 3000 +4,alto sax.wav,Saxophone,Alto +4,alejandro sanz.wav,Voice,Alejandro Sanz +4,agt.wav,Acoustic Guitar, +4,agmute.wav,Acoustic Guitar,Muted +4,ag slide.wav,Acoustic Guitar,Slide +4,ag lead.wav,Acoustic Guitar,Lead +4,ag arr.wav,Acoustic Guitar, +4,ag 03.wav,Acoustic Guitar,Acoustic 3 +4,ag 01 left.wav,Acoustic Guitar,Acoustic 1 Left +4,acousticgtr.wav,Acoustic Guitar, +4,acoustic_guitar_steel_left.wav,Acoustic Guitar,Steel Left +4,acoustic_guitar_left.wav,Acoustic Guitar,Left +4,acoustic guitars.wav,Acoustic Guitar, +4,acoustic guitar 3.wav,Acoustic Guitar,Acoustic 3 +4,acoustic gtrs.wav,Acoustic Guitar, +4,acguit.wav,Acoustic Guitar, +4,acc guitar 1.wav,Acoustic Guitar,Acoustic 1 +4,ac.gtr.wav,Acoustic Guitar, +4,ac guitars.wav,Acoustic Guitar, +4,ac gtr 3.wav,Acoustic Guitar,Acoustic 3 +4,a guitar.wav,Acoustic Guitar, +4,21 savage.wav,Voice,21 Savage +4,2 chainz.wav,Voice,2 Chainz +4,09 lead vocal.wav,Voice,Lead +4,08 backing vocals.wav,Voice,Backing +3,zach bryan.wav,Voice,Zach Bryan +3,yg.wav,Other, +3,woosh.wav,Other,Woosh +3,woodwind.wav,Orchestra,Woodwinds +3,wobble.wav,Other,Wobble +3,vox synth.wav,Keyboard,Synth Vox +3,voicepad.wav,Keyboard,Pad Voice +3,voice pad.wav,Keyboard,Pad Voice +3,vocalsynth.wav,Keyboard,Synth Vox +3,vocalfx.wav,Keyboard,FX Vox +3,violins real.wav,Violin, +3,trombone solo.wav,Trombone,Solo +3,toy piano.wav,Piano,Toy +3,tenor sax.wav,Saxophone,Tenor +3,synthstring.wav,Keyboard,Synth Strings +3,synths1.wav,Keyboard,Synth 1 +3,synths-.wav,Keyboard,Synths +3,synths pad.wav,Keyboard,Synth Pad +3,synthpad1.wav,Keyboard,Synth Pad 1 +3,synthkeys.wav,Keyboard,Synth +3,synthchords.wav,Keyboard,Synth Chords +3,synthchoir.wav,Keyboard,Synth Choir +3,synthbells.wav,Keyboard,Synth Bells +3,synth_chords.wav,Keyboard,Synth Chords +3,synth_arp.wav,Keyboard,Synth Arpeggios +3,synth-strings.wav,Keyboard,Synth Strings +3,synth-pad.wav,Keyboard,Synth Pad +3,synth-lead.wav,Keyboard,Synth Lead +3,synth-.wav,Keyboard,Synth +3,synth theme.wav,Keyboard,Synth Theme +3,synth strings 2.wav,Keyboard,Synth Strings 2 +3,synth strings 1.wav,Keyboard,Synth Strings 1 +3,synth poly.wav,Keyboard,Synth Poly +3,synth leads.wav,Keyboard,Synth Lead +3,synth intro.wav,Keyboard,Synth Intro +3,synth guits.wav,Keyboard,Synth Guitar +3,synth gtr.wav,Keyboard,Synth Guitar +3,synth 2 left.wav,Keyboard,Synth 2 Left +3,strings pad.wav,Keyboard,Synth Strings +3,strings mix.wav,Keyboard,Synth Strings +3,strings and violin.wav,Keyboard,Synth Strings +3,strings and harp.wav,Keyboard,Synth Strings & Harp +3,string synth.wav,Keyboard,Synth Strings +3,steel drum.wav,Percussion,Steel Drum +3,spoken.wav,Other,Spoken +3,soundfx.wav,Computer,SFX +3,sologtr.wav,Electric Guitar,Solo +3,solo eg1.wav,Electric Guitar,Solo +3,slidegt.wav,Electric Guitar,Slide +3,siren.wav,Other,Siren +3,shakira.wav,Voice,Shakira +3,sfx 1.wav,Other,SFX +3,seq.wav,Other,Seq +3,sax vst.wav,Keyboard,Synth Sax +3,sawsynth.wav,Keyboard,Synth Saw +3,saw.wav,Keyboard,Synth Saw +3,s_vibraphone.wav,Keyboard,Vibes +3,s_tubular_bells.wav,Keyboard,Tubular Bells +3,s_ts.wav,Other, +3,s_synthstrings.wav,Keyboard,Synth Strings +3,s_synths.wav,Keyboard,Synth +3,s_synth clavinet.wav,Keyboard,Clavinet +3,s_subbass.wav,Bass Guitar,Sub Bass +3,s_sub bass.wav,Bass Guitar,Sub Bass +3,s_string sctn.wav,Orchestra,Strings +3,s_scratch.wav,Other,Scratch +3,s_saxophone.wav,Saxophone, +3,s_noise.wav,Computer,Noise +3,s_marimba.wav,Other,Marimba +3,s_lead.wav,Electric Guitar,Lead +3,s_lap.wav,Electric Guitar,Lap Steel +3,s_guit_crunch.wav,Electric Guitar,Crunch +3,s_gtr7.wav,Electric Guitar,Electric 7 +3,s_gtr ld2.wav,Electric Guitar,Lead 2 +3,s_gtr ld1.wav,Electric Guitar,Lead 1 +3,s_gtr clean.wav,Electric Guitar,Clean +3,s_fxs.wav,Computer,FX +3,s_el_piano.wav,Keyboard,Electric Piano +3,s_egdisto.wav,Electric Guitar,Distorted +3,s_eg_llead.wav,Electric Guitar,Lead Left +3,s_eg riff.wav,Electric Guitar,Riff +3,s_eg r.wav,Electric Guitar,Right +3,s_eg l.wav,Electric Guitar,Left +3,s_eg harmonics.wav,Electric Guitar,Harmonics +3,s_eg clean.wav,Electric Guitar,Clean +3,s_drum loop.wav,Percussion,Drum Loop +3,s_cowbell.wav,Percussion,Cowbell +3,s_bvs.wav,Voice,Backing +3,s_bv2.wav,Voice,Backing 2 +3,s_bass1.wav,Bass Guitar,Bass 1 +3,s_arp.wav,Other, +3,s_ag_l.wav,Acoustic Guitar,Left +3,s_acoustic guitar 3.wav,Acoustic Guitar,Acoustic 3 +3,run.wav,Other,Run +3,robert plant.wav,Voice,Robert Plant +3,rightgtr 5.wav,Electric Guitar,Electric 5 Right +3,right gtr 4.wav,Electric Guitar,Electric 4 Right +3,rhythm_electric_guitar_2.wav,Electric Guitar,Rhythm 2 +3,rhythm_electric_guitar_1.wav,Electric Guitar,Rhythm 1 +3,rhythm_electric_guitar.wav,Electric Guitar,Rhythm +3,rhodes ep.wav,Keyboard,Rhodes +3,rhodes 1.wav,Keyboard,Rhodes 1 +3,reverse piano.wav,Keyboard,Reverse Piano +3,reeds.wav,Keyboard,Synth Reeds +3,real dobro.wav,Dobro, +3,real banjo.wav,Banjo, +3,rap vox.wav,Voice,Rap +3,r. kelly.wav,Voice,R. Kelly +3,prince.wav,Voice,Prince +3,prekey.wav,Other, +3,precountclick.wav,Computer,Count In +3,plucked.wav,Keyboard,Synth Pluck +3,plucked synth.wav,Keyboard,Synth Pluck +3,pluck2.wav,Keyboard,Synth Pluck 2 +3,pluck1.wav,Keyboard,Synth Pluck 1 +3,pizzicato strings.wav,Keyboard,Pizzicato +3,pianos.wav,Piano, +3,pianopad.wav,Keyboard,Piano Pad +3,piano_2.wav,Piano,Piano 2 +3,piano_1.wav,Piano,Piano 1 +3,piano2.wav,Piano,Piano 2 +3,piano1.wav,Piano,Piano 1 +3,piano+organ.wav,Keyboard,Organ +3,phife dawg.wav,Voice,Phife Dawg +3,percs+fx.wav,Percussion, +3,perc&fx.wav,Percussion, +3,pads strings.wav,Keyboard,Synth Strings +3,pad_synth.wav,Keyboard,Synth Pad +3,pad strings.wav,Keyboard,Synth Strings +3,pad and organ.wav,Keyboard,Organ Pad +3,pad 01.wav,Keyboard,Pad 1 +3,organ_hammond_2.wav,Keyboard,Hammond 2 +3,organ hammond.wav,Keyboard,Hammond +3,organ + pad.wav,Keyboard,Organ Pad +3,orchestral percussion.wav,Percussion,Orchestral +3,nylon guitar 1.wav,Acoustic Guitar,Nylon +3,noise-fx.wav,Computer,Noise FX +3,noise fx.wav,Computer,Noise FX +3,mystikal.wav,Voice,Mystikal +3,morgan wallen.wav,Voice,Morgan Wallen +3,mix synth lead 1+2.wav,Keyboard,Synth Lead +3,mix synth 1 + 2.wav,Keyboard,Synth Mix +3,mix strings+pad.wav,Keyboard,Synth Strings +3,mix pianos.wav,Piano, +3,mix piano1+2.wav,Piano, +3,mix pads.wav,Keyboard,Synth Pad +3,mix lds.wav,Other, +3,mix ld.wav,Other, +3,mix fxs.wav,Other,FX +3,mix eps.wav,Keyboard,Electric Piano +3,mix ep.wav,Other,Electric Piano +3,mix drums.wav,Drums, +3,mix disto egs.wav,Electric Guitar,Distorted +3,mix arr egs.wav,Electric Guitar,Arpeggios +3,mix ags.wav,Acoustic Guitar, +3,minimoog.wav,Keyboard,Mini Moog +3,miley cyrus.wav,Voice,Miley Cyrus +3,mike shinoda.wav,Voice,Mike Shinoda +3,miguel.wav,Voice,Miguel +3,method man.wav,Voice,Method Man +3,melotron.wav,Keyboard,Melotron +3,maluma.wav,Voice,Maluma +3,lv1.wav,Voice,Lead +3,lv add lib.wav,Voice,Lead Rap +3,lv 12.wav,Voice,Lead +3,ll cool j.wav,Voice,LL Cool J +3,lil jon.wav,Voice,Lil Jon +3,leftgtr 4.wav,Electric Guitar,Electric 4 Left +3,lead_synth.wav,Keyboard,Synth Lead +3,lead_2.wav,Other, +3,lead_1.wav,Other, +3,lead vox glu.wav,Voice,Lead +3,lead vox 2.wav,Voice,Lead 2 +3,lead 2.wav,Voice,Lead 2 +3,ld2.wav,Voice,Lead 2 +3,ld-2.wav,Voice,Lead 2 +3,ld fem.wav,Voice,Lead Female +3,lapsteel.wav,Electric Guitar,Lap Steel +3,lapsteel eg.wav,Electric Guitar,Lap Steel +3,lap.wav,Electric Guitar,Lap Steel +3,kurupt.wav,Voice,Kurupt +3,kristin.wav,Voice,Kristin +3,kora.wav,Voice,Kora +3,kit.wav,Voice,Kit +3,killer mike.wav,Voice,Killer Mike +3,khalid.wav,Voice,Khalid +3,key synth.wav,Keyboard,Synth +3,kevin.wav,Voice,Kevin +3,kelsea ballerini.wav,Voice,Kelsea Ballerini +3,jupitor.wav,Voice,Jupitor +3,joy williams.wav,Voice,Joy Williams +3,john paul white.wav,Voice,John Paul White +3,joao gilberto.wav,Voice,Joao Gilberto +3,jennifer lopez.wav,Voice,Jennifer Lopez +3,ja rule.wav,Voice,Ja Rule +3,j. cole.wav,Voice,J. Cole +3,j balvin.wav,Voice,J. Balvin +3,inspectah deck.wav,Voice,Inspectah Deck +3,iggy azalea.wav,Voice,Iggy Azalea +3,ice cube.wav,Voice,Ice Cube +3,i.wav,Other, +3,harmonic.wav,Other, +3,hammondorgan.wav,Keyboard,Hammond +3,guitars acoustic.wav,Acoustic Guitar, +3,guitarlead.wav,Electric Guitar,Lead +3,guitar_mute.wav,Electric Guitar,Muted +3,guitar left.wav,Electric Guitar,Left +3,guitar intro.wav,Electric Guitar,Intro +3,guitar 4 left.wav,Electric Guitar,Electric 4 Left +3,guitar 1 muted.wav,Electric Guitar,Electric 1 Muted +3,guit_rthm.wav,Electric Guitar,Rhythm +3,guiro.wav,Percussion,Guiro +3,gtrr.wav,Electric Guitar,Right +3,gtr3 left.wav,Electric Guitar,Electric 3 Left +3,gtr-riff.wav,Electric Guitar,Riff +3,gtr-dist.wav,Electric Guitar,Distorted +3,gtr-clean.wav,Electric Guitar,Clean +3,gtr right.wav,Electric Guitar,Right +3,gtr lead.wav,Electric Guitar,Lead +3,gtr ac.wav,Acoustic Guitar, +3,gtr ac-.wav,Acoustic Guitar, +3,gtr 6 right.wav,Electric Guitar,Electric 6 Right +3,gtr 3+4.wav,Electric Guitar,Electric 3 Left +3,gtr 1+2.wav,Electric Guitar,Electric 1 +3,glocken.wav,Glockenspiel, +3,g-eazy.wav,Voice,G-Eazy +3,fx synth.wav,Keyboard,Synth FX +3,fx 1.wav,Keyboard,Synth FX 1 +3,fr horn.wav,French Horn, +3,flute synth.wav,Keyboard,Synth Flute +3,filter bit.wav,Other, +3,fiddle 2 right.wav,Violin,Fiddle 2 Right +3,fiddle 1.wav,Violin,Fiddle 1 +3,farfisa.wav,Keyboard,Farfisa +3,ethnic.wav,Other, +3,ethnic guitar.wav,Other,Ethnic Guitar +3,enrique iglesias.wav,Voice,Enrique Iglesias +3,endsynth.wav,Keyboard,Synth End +3,elguitar.wav,Electric Guitar, +3,elgtr2.wav,Electric Guitar,Electric 2 +3,elgtr1.wav,Electric Guitar,Electric 1 +3,elgtr 03.wav,Electric Guitar,Electric 3 +3,elegtrs.wav,Electric Guitar,Guitars +3,elegtr3.wav,Electric Guitar,Electric 3 +3,electronic drums.wav,Drums,Electronic +3,electronic drum kit.wav,Drums,Electronic +3,electro drums.wav,Drums,Electronic +3,electric_rhythm_guitar_3.wav,Electric Guitar,Rhythm 3 +3,electric_guitar_clean_left.wav,Electric Guitar,Clean Left +3,electric_guitar_clean.wav,Electric Guitar,Clean +3,electric_arrangement_guitar_left.wav,Electric Guitar,Left +3,electric_arrangement_guitar_1.wav,Electric Guitar,Electric 1 +3,electric_adds_guitar.wav,Electric Guitar,Adds +3,electric guitar2.wav,Electric Guitar,Electric 2 +3,electric guitar 2 left.wav,Electric Guitar,Electric 2 Left +3,electric gtr.wav,Electric Guitar, +3,elec piano.wav,Keyboard,Electric Piano +3,elec gt 1.wav,Electric Guitar,Electric 1 +3,el.gtr theme.wav,Electric Guitar,Theme +3,el.gtr rhythm.wav,Electric Guitar,Rhythm +3,el.gtr arr.wav,Electric Guitar, +3,el guitar rhythm.wav,Electric Guitar,Rhythm +3,el gtr2.wav,Electric Guitar,Electric 2 +3,eguitarrhythm.wav,Electric Guitar,Rhythm +3,eguitarlead.wav,Electric Guitar,Lead +3,eguitar rythmic 2.wav,Electric Guitar,Rhythm 2 +3,eguitar rythmic 1.wav,Electric Guitar,Rhythm 1 +3,eguit trem.wav,Electric Guitar,Tremolo +3,eguit solos 2.wav,Electric Guitar,Solo 2 +3,eguit dist 1.wav,Electric Guitar,Distorted 1 +3,eguit 2 right.wav,Electric Guitar,Electric 2 Right +3,eguit 1 right.wav,Electric Guitar,Electric 1 Right +3,egtr5.wav,Electric Guitar,Electric 5 +3,egtr2 right.wav,Electric Guitar,Electric 2 Right +3,egtr2 left.wav,Electric Guitar,Electric 2 Left +3,egt.wav,Electric Guitar, +3,egstereo.wav,Electric Guitar, +3,egmuted.wav,Electric Guitar,Muted +3,egfx.wav,Electric Guitar,FX +3,egchorus2 right.wav,Electric Guitar,Chorus 2 Right +3,egchorus1 left.wav,Electric Guitar,Chorus 1 Left +3,eg_r(lead).wav,Electric Guitar,Lead Right +3,eg_r(crunch).wav,Electric Guitar,Crunch Right +3,eg_l(crunch).wav,Electric Guitar,Crunch Left +3,eg5.wav,Electric Guitar,Electric 5 +3,eg4.wav,Electric Guitar,Electric 4 +3,eg4 left.wav,Electric Guitar,Electric 4 Left +3,eg(treble).wav,Electric Guitar,Treble +3,eg(stereo).wav,Electric Guitar, +3,eg(arr).wav,Electric Guitar, +3,eg rythm.wav,Electric Guitar,Rhythm +3,eg mute.wav,Electric Guitar,Muted +3,eg lead 4.wav,Electric Guitar,Lead 4 +3,eg dis r.wav,Electric Guitar,Distorted Right +3,eg clean 1.wav,Electric Guitar,Clean 1 +3,eg chords.wav,Electric Guitar,Chords +3,eg arr 1.wav,Electric Guitar, +3,eg 5 right.wav,Electric Guitar,Electric 5 Right +3,eg 5 + 6.wav,Electric Guitar,Electric 5 +3,eg 2 + 4.wav,Electric Guitar,Electric 2 +3,eg 12.wav,Electric Guitar, +3,eg 1 + 3.wav,Electric Guitar, +3,eg 06.wav,Electric Guitar,Electric 6 +3,eg 02 right.wav,Electric Guitar,Electric 2 Right +3,effects.wav,Computer,FX +3,edrum.wav,Drums,Electronic +3,eazy-e.wav,Voice,Eazy-E +3,e guitar solo.wav,Electric Guitar,Solo 2 +3,e guitar r.wav,Electric Guitar,Right +3,e guitar lead disto.wav,Electric Guitar,Lead Distorted +3,e guitar l.wav,Electric Guitar,Left +3,e guitar arragement disto.wav,Electric Guitar,Distorted +3,e guitar 1 left.wav,Electric Guitar,Electric 1 Left +3,e drums.wav,Drums,Electronic +3,dua lipa.wav,Voice,Dua Lipa +3,drums 2.wav,Drums,Drums 2 +3,drums 1.wav,Drums,Drums 1 +3,drake-adlib.wav,Voice,Drake +3,dr.wav,Other, +3,dolly parton.wav,Voice,Dolly Parton +3,doja cat.wav,Voice,Doja Cat +3,dist synth.wav,Keyboard,Synth Distorted +3,delaygtr.wav,Electric Guitar,Delay +3,daniel caesar.wav,Voice,Daniel Caesar +3,dance.wav,Other, +3,d.m.c..wav,Voice,D.M.C. +3,cp70.wav,Other, +3,cordes.wav,Other, +3,clean.wav,Electric Guitar,Clean +3,clean guitar.wav,Electric Guitar,Clean +3,clavinet 2.wav,Keyboard,Clavinet 2 +3,christina aguilera.wav,Voice,Christina Aguilera +3,choir pad.wav,Keyboard,Synth Choir +3,charlie scene.wav,Voice,Charlie Scene +3,chance the rapper.wav,Voice,Chance The Rapper +3,cardi b-adlib.wav,Voice,Cardi B +3,camila cabello-adlib.wav,Voice,Camila Cabello +3,bv fem.wav,Voice,Backing Female +3,bv f.wav,Voice,Backing Female +3,bv adds.wav,Voice,Backing Adds +3,bv (2).wav,Voice,Backing +3,bois.wav,Other, +3,blackbear.wav,Voice,Black Bear +3,big sean.wav,Voice,Big Sean +3,big boi.wav,Voice,Big Boi +3,bg vocals male.wav,Voice,Backing Male +3,bg vocals 1 2.wav,Voice,Backing +3,bells2.wav,Keyboard,Synth Bells +3,bell synths.wav,Keyboard,Synth Bells +3,beat box.wav,Percussion,Beat Box +3,bd.wav,Other, +3,bassguitar.wav,Bass Guitar, +3,bass2.wav,Bass Guitar,Bass 2 +3,bass1.wav,Bass Guitar,Bass 1 +3,bass-synth.wav,Keyboard,Synth Bass +3,bass clarinet.wav,Clarinet,Bass +3,bass 808.wav,Keyboard,808 +3,backing_vocal.wav,Voice,Backing +3,ashnikko.wav,Voice,Ashnikko +3,asap rocky.wav,Voice,ASAP Rocky +3,arr ag.wav,Acoustic Guitar, +3,arpeggiosynth.wav,Keyboard,Synth Arpeggios +3,arpeggiator.wav,Keyboard,Synth Arpeggios +3,analogsynth.wav,Keyboard,Synth Analog +3,all strings.wav,Keyboard,Synth Strings +3,all percs.wav,Percussion, +3,akon.wav,Voice,Akon +3,ag-notdups.wav,Acoustic Guitar, +3,ag solo.wav,Acoustic Guitar,Solo +3,ag l + r.wav,Acoustic Guitar, +3,ag base.wav,Acoustic Guitar, +3,ag adds.wav,Acoustic Guitar,Adds +3,ag 3 right.wav,Acoustic Guitar,Acoustic 3 Right +3,ag 12.wav,Acoustic Guitar, +3,ag 02 right.wav,Acoustic Guitar, +3,addleadgt.wav,Electric Guitar,Lead Adds +3,acoustic_rhythm_guitar.wav,Acoustic Guitar,Rhythm +3,acoustic_guitar_steel_right.wav,Acoustic Guitar,Steel +3,acoustic_guitar_right.wav,Acoustic Guitar,Right +3,acoustic guitar 2 right.wav,Acoustic Guitar,Right +3,acoustic guitar 1 left.wav,Acoustic Guitar,Left +3,acoust-guitar.wav,Acoustic Guitar, +3,acgtr2.wav,Acoustic Guitar, +3,acgtr1.wav,Acoustic Guitar, +3,acc gtr 1.wav,Acoustic Guitar, +3,ac piano.wav,Piano, +3,ac guit.wav,Acoustic Guitar, +3,ac gtr 1+2.wav,Acoustic Guitar, +3,ac drums.wav,Drums, +3,abass.wav,Bass Guitar, +3,a.wav,Other, +3,808bass.wav,Keyboard,808 +3,06 clean guitar.wav,Electric Guitar,Clean +3,05_bass.wav,Bass Guitar, +3,04_fx.wav,Computer,FX +3,04 rhythm guitars.wav,Electric Guitar,Rhythm +3,04 bass.wav,Bass Guitar, +3,02 samples.wav,Computer,Samples +3,02 percussion.wav,Percussion, +2,zither.wav,Other,Zither +2,young thug.wav,Voice,Young Thug +2,wurlitzer 1.wav,Keyboard,Wurlitzer +2,wurlit.wav,Keyboard,Wurlitzer +2,wurlie.wav,Keyboard,Wurlitzer +2,woodwind section.wav,Orchestra,Woodwinds +2,woods.wav,Orchestra,Woodwinds +2,winds.wav,Orchestra,Woodwinds +2,weird.wav,Other, +2,waylon jennings.wav,Voice,Waylon Jennings +2,warren g.wav,Voice,Warren G +2,vst str.wav,Keyboard,Synth Strings +2,voxsynth.wav,Keyboard,Synth Vox +2,voice-melody.wav,Voice,Lead Adds +2,voice synth.wav,Keyboard,Synth Vox +2,voc and 1b.wav,Voice,Lead +2,voc 5.wav,Voice, +2,voc 3b.wav,Voice, +2,violin 02.wav,Violin, +2,violin 01.wav,Violin, +2,vinyl fx.wav,Keyboard,Synth +2,vince gill.wav,Voice,Vince Gill +2,usher-adlib.wav,Voice,Usher +2,ukulele.wav,Ukulele, +2,tyler the creator.wav,Voice,Tyler The Creator +2,twista.wav,Voice,Twista +2,tubularbells.wav,Keyboard,Synth +2,trumpets real.wav,Trumpet, +2,trumpet 123.wav,Trumpet, +2,trb.wav,Other, +2,trance synths.wav,Keyboard,Synth +2,trance 1.wav,Keyboard,Synth +2,tpts.wav,Other, +2,tp 2.wav,Other, +2,tp 1.wav,Other, +2,tone.wav,Other, +2,tinie tempah.wav,Voice,Tinie Tempah +2,tinashe.wav,Voice,Tinashe +2,tina turner.wav,Voice,Tina Turner +2,timbales.wav,Percussion,Timbales +2,ti.wav,Voice,T.I. +2,thing.wav,Other, +2,the kid laroi.wav,Voice,The Kid Laroi +2,tammi terrell.wav,Voice,Tammi Terrell +2,synthstrings2.wav,Keyboard,Synth +2,synthplucks.wav,Keyboard,Synth +2,synthperc.wav,Keyboard,Synth +2,synthmelo.wav,Keyboard,Synth +2,synthlow.wav,Keyboard,Synth +2,synthlead1.wav,Keyboard,Synth +2,synthhit.wav,Keyboard,Synth +2,synthetic_piano.wav,Keyboard,Synth +2,synthe lead.wav,Keyboard,Synth +2,synth_solo.wav,Keyboard,Synth +2,synth_melody.wav,Keyboard,Synth +2,synth_mellotron_strings.wav,Keyboard,Synth +2,synth_flutes.wav,Keyboard,Synth +2,synth_brass.wav,Keyboard,Synth +2,synth_bells.wav,Keyboard,Synth +2,synth_2.wav,Keyboard,Synth +2,synth_1.wav,Keyboard,Synth +2,synth6.wav,Keyboard,Synth +2,synth4 bass.wav,Keyboard,Synth +2,synth12.wav,Keyboard,Synth +2,synth-bridge.wav,Keyboard,Synth +2,synth-4.wav,Keyboard,Synth +2,synth(efx).wav,Keyboard,Synth +2,synth str.wav,Keyboard,Synth +2,synth square.wav,Keyboard,Synth +2,synth sax.wav,Keyboard,Synth +2,synth riser.wav,Keyboard,Synth +2,synth reverse.wav,Keyboard,Synth +2,synth power.wav,Keyboard,Synth +2,synth pluck 1+2.wav,Keyboard,Synth +2,synth perc.wav,Keyboard,Synth +2,synth pad+strings.wav,Keyboard,Synth +2,synth noise.wav,Keyboard,Synth +2,synth marimba.wav,Keyboard,Synth +2,synth main.wav,Keyboard,Synth +2,synth hits.wav,Keyboard,Synth +2,synth harp.wav,Keyboard,Synth +2,synth fxs.wav,Keyboard,Synth +2,synth flutes.wav,Keyboard,Synth +2,synth disto.wav,Keyboard,Synth +2,synth bass moog.wav,Keyboard,Synth +2,synth bass 2.wav,Keyboard,Synth +2,synth bass 1.wav,Keyboard,Synth +2,synth bass 02.wav,Keyboard,Synth +2,synth bass 01.wav,Keyboard,Synth +2,synth arpegiator.wav,Keyboard,Synth +2,synth ambient.wav,Keyboard,Synth +2,synth adds 2.wav,Keyboard,Synth +2,synth add.wav,Keyboard,Synth +2,synth 9.wav,Keyboard,Synth +2,synth 5 left.wav,Keyboard,Synth +2,synth 3 right.wav,Keyboard,Synth +2,synth 3 left.wav,Keyboard,Synth +2,synth 2 right.wav,Keyboard,Synth +2,synth 2 intro.wav,Keyboard,Synth +2,synth 124.wav,Keyboard,Synth +2,synth 1 right.wav,Keyboard,Synth +2,synth 1 bells.wav,Keyboard,Synth +2,synth 1 bass.wav,Keyboard,Synth +2,synth 05.wav,Keyboard,Synth +2,synth + pads.wav,Keyboard,Synth +2,sung vox.wav,Voice, +2,sub_bass.wav,Bass Guitar,Sub Bass +2,strs.wav,Other, +2,strings_1.wav,Keyboard,Synth Strings +2,strings2.wav,Keyboard,Synth Strings +2,strings1.wav,Keyboard,Synth Strings +2,strings synth.wav,Keyboard,Synth Strings +2,strings and violins.wav,Keyboard,Synth Strings +2,strings (vst).wav,Keyboard,Synth Strings +2,stringpad.wav,Keyboard,Synth Strings +2,string synths.wav,Keyboard,Synth Strings +2,str synth.wav,Keyboard,Synth Strings +2,stick.wav,Other, +2,steve perry.wav,Voice, +2,steel guitar.wav,Electric Guitar,Steel +2,square synth.wav,Keyboard,Synth +2,speranto.wav,Other, +2,spanish guitar.wav,Acoustic Guitar, +2,solos.wav,Other, +2,solo sax.wav,Saxophone, +2,solo organ.wav,Keyboard,Organ +2,solo guitar.wav,Electric Guitar, +2,solo eg2.wav,Electric Guitar, +2,solo 2.wav,Electric Guitar, +2,solo 1.wav,Electric Guitar, +2,snap.wav,Other,Snaps +2,slidegtr.wav,Electric Guitar, +2,slide.wav,Electric Guitar, +2,slide guitar.wav,Electric Guitar, +2,slide guit.wav,Electric Guitar, +2,skylar grey.wav,Voice, +2,sisqo.wav,Voice, +2,sine synth.wav,Keyboard,Synth +2,sheena easton.wav,Voice, +2,shakers.wav,Percussion,Shakers +2,sfx vocal.wav,Keyboard,Synth +2,sfx crowd cheer.wav,Keyboard,Synth +2,sculpture.wav,Keyboard,Synth +2,scratching.wav,Other,Scratches +2,scratch and fx.wav,Other,Scratches +2,scott hoying.wav,Voice, +2,saxo.wav,Saxophone, +2,sax_tenor.wav,Saxophone, +2,sax_baritone.wav,Saxophone, +2,sax real.wav,Saxophone, +2,sax lead.wav,Saxophone, +2,saweetie.wav,Voice, +2,sawbass.wav,Keyboard,Synth +2,saw synths.wav,Keyboard,Synth +2,sam smith.wav,Voice, +2,salt.wav,Other, +2,s_woodwinds.wav,Orchestra,Woodwinds +2,s_whistle.wav,Other,Whistle +2,s_vocal synth.wav,Keyboard,Synth +2,s_vln.wav,Violin, +2,s_viola.wav,Viola, +2,s_trp.wav,Trumpet, +2,s_trombones.wav,Trombone, +2,s_timps.wav,Timpani, +2,s_taiko.wav,Other, +2,s_synth_strings.wav,Keyboard,Synth +2,s_synth_pluck.wav,Keyboard,Synth +2,s_synth_pad.wav,Keyboard,Synth +2,s_synth lead 2.wav,Keyboard,Synth +2,s_synth lead 1.wav,Keyboard,Synth +2,s_synth guitar.wav,Keyboard,Synth +2,s_synth effects.wav,Keyboard,Synth +2,s_synth bass 2.wav,Keyboard,Synth +2,s_synth 3.wav,Keyboard,Synth +2,s_synth 04.wav,Keyboard,Synth +2,s_synth 03.wav,Keyboard,Synth +2,s_strings sectn.wav,Keyboard,Synth +2,s_string.wav,Keyboard,Synth +2,s_shakers.wav,Percussion,Shakers +2,s_rhodes.wav,Keyboard,Synth +2,s_polysynth.wav,Keyboard,Synth +2,s_pianos.wav,Keyboard,Synth +2,s_pedal steel.wav,Electric Guitar, +2,s_pedal steel guitar.wav,Electric Guitar, +2,s_pads.wav,Keyboard,Synth +2,s_pad2.wav,Keyboard,Synth +2,s_oboe.wav,Oboe, +2,s_noize.wav,Computer,Noise +2,s_leadchiff.wav,Other, +2,s_kick.wav,Other, +2,s_harmonium.wav,Other, +2,s_harmonica.wav,Harmonica, +2,s_hammnd.wav,Keyboard,Synth +2,s_guit_wah.wav,Electric Guitar, +2,s_guit_lead.wav,Electric Guitar, +2,s_glock.wav,Glockenspiel, +2,s_french horn.wav,French Horn, +2,s_electric guitar 5.wav,Electric Guitar, +2,s_electric guitar 12.wav,Electric Guitar, +2,s_egclean.wav,Electric Guitar, +2,s_eg_rlead.wav,Electric Guitar, +2,s_eg_rclean.wav,Electric Guitar, +2,s_eg solo 2.wav,Electric Guitar, +2,s_eg solo 1.wav,Electric Guitar, +2,s_eg slide.wav,Electric Guitar, +2,s_eg intro.wav,Electric Guitar, +2,s_eg ctr.wav,Electric Guitar, +2,s_eg clean 2.wav,Electric Guitar, +2,s_eg chorus.wav,Electric Guitar, +2,s_eg 4.wav,Electric Guitar, +2,s_efx.wav,Other, +2,s_e-piano.wav,Keyboard,Synth +2,s_distortion guitar2.wav,Electric Guitar, +2,s_clavinet.wav,Keyboard,Clavinet +2,s_clav.wav,Keyboard,Clavinet +2,s_bv1.wav,Voice,Backing +2,s_bv sample.wav,Voice,Backing Sample +2,s_brass sect.wav,Other, +2,s_bgv.wav,Voice,Backing +2,s_bell synth.wav,Keyboard,Synth +2,s_bass_synth.wav,Keyboard,Synth +2,s_bass sub.wav,Bass Guitar, +2,s_bass acoustic.wav,Bass Guitar, +2,s_ag_r.wav,Acoustic Guitar, +2,s_ag 1.wav,Acoustic Guitar, +2,s_ag 03.wav,Acoustic Guitar, +2,s_acoustic guitarstrumming.wav,Acoustic Guitar, +2,s_acoustic guitar2.wav,Acoustic Guitar, +2,s_acoustic bass.wav,Bass Guitar, +2,s_accordion.wav,Accordion, +2,rza.wav,Voice, +2,russ.wav,Voice, +2,rthm.wav,Other, +2,rodhes.wav,Keyboard,Synth +2,rob halford.wav,Voice, +2,rm.wav,Other, +2,riser.wav,Other, +2,rightguitar 2.wav,Electric Guitar, +2,rightgtr 1.wav,Electric Guitar, +2,right gtr 1.wav,Electric Guitar, +2,right disto eg.wav,Electric Guitar, +2,ricky martin.wav,Voice, +2,rick ross.wav,Voice, +2,rhythm_guitars.wav,Electric Guitar, +2,rhythm guitars.wav,Electric Guitar, +2,reversefx.wav,Keyboard,Synth +2,reverse fx.wav,Keyboard,Synth +2,real trumpet 2.wav,Trumpet, +2,real trumpet 1.wav,Trumpet, +2,real trombon.wav,Trombone, +2,real tenor sax.wav,Saxophone,Tenor +2,raye.wav,Voice, +2,rap fills.wav,Voice, +2,raekwon.wav,Voice, +2,popcorn.wav,Other, +2,poly.wav,Keyboard,Synth +2,plucked2.wav,Keyboard,Synth +2,pluck 2.wav,Keyboard,Synth +2,pluck 1.wav,Keyboard,Synth +2,pluck 1 + 2.wav,Keyboard,Synth +2,picked bass.wav,Bass Guitar, +2,pick bass.wav,Bass Guitar, +2,piccolo.wav,Piccolo, +2,piano-notdup.wav,Keyboard,Synth +2,piano+rhodes.wav,Keyboard,Synth +2,piano melo.wav,Keyboard,Synth +2,piano loop.wav,Keyboard,Synth +2,piano 3.wav,Piano, +2,piano + ep.wav,Piano, +2,peso pluma.wav,Voice, +2,perx.wav,Percussion, +2,percussion-2.wav,Percussion, +2,percussion-1.wav,Percussion, +2,percussion+fx.wav,Percussion, +2,percumix.wav,Percussion, +2,percu + fx.wav,Percussion, +2,percs+sfx.wav,Percussion, +2,percs+fxs.wav,Percussion, +2,perc+sfx.wav,Percussion, +2,perc synth.wav,Percussion, +2,perc 3.wav,Percussion, +2,pepa.wav,Voice, +2,pedalgt.wav,Electric Guitar, +2,paul simon.wav,Voice, +2,pads-.wav,Keyboard,Synth +2,pads+strings.wav,Keyboard,Synth +2,pads and fx.wav,Keyboard,Synth +2,pads 1.wav,Keyboard,Synth +2,pad2.wav,Keyboard,Synth +2,pad vox.wav,Keyboard,Synth +2,pad and strings.wav,Keyboard,Synth +2,pad 3.wav,Keyboard,Synth +2,pad 02.wav,Keyboard,Synth +2,overdrive eg.wav,Electric Guitar, +2,other synths.wav,Keyboard,Synth +2,other guits.wav,Electric Guitar, +2,other bits.wav,Other, +2,organ_hammond_3.wav,Keyboard,Synth +2,organ_hammond.wav,Keyboard,Synth +2,organ+pad.wav,Keyboard,Synth +2,organ synths.wav,Keyboard,Synth +2,organ pad.wav,Keyboard,Synth +2,organ key.wav,Keyboard,Synth +2,organ 4.wav,Keyboard,Synth +2,organ 1 + 2.wav,Keyboard,Synth +2,organ + synth.wav,Keyboard,Synth +2,organ + bells.wav,Keyboard,Synth +2,orch hit.wav,Other, +2,omara portuondo.wav,Voice, +2,oboes.wav,Oboe, +2,nylon guitar.wav,Acoustic Guitar, +2,nylon guitar 2.wav,Acoustic Guitar, +2,nova.wav,Other, +2,nick jonas.wav,Voice, +2,nick cave.wav,Voice, +2,nf.wav,Other, +2,nelly.wav,Voice, +2,nelly furtado.wav,Voice, +2,ne-yo.wav,Voice, +2,muteguitar.wav,Electric Guitar, +2,muted trumpet.wav,Trumpet, +2,muted trp.wav,Trumpet, +2,muted guitar.wav,Electric Guitar, +2,mute guit.wav,Electric Guitar, +2,monosynth.wav,Keyboard,Synth +2,mono synth.wav,Keyboard,Synth +2,mix woodwinds.wav,Keyboard,Synth +2,mix synth1+4.wav,Keyboard,Synth +2,mix synth1+2+3.wav,Keyboard,Synth +2,mix synth.wav,Keyboard,Synth +2,mix synth+pad.wav,Keyboard,Synth +2,mix synth keys.wav,Keyboard,Synth +2,mix synth bass1+2.wav,Keyboard,Synth +2,mix synth bass.wav,Keyboard,Synth +2,mix synth 5+6.wav,Keyboard,Synth +2,mix rhodes.wav,Keyboard,Synth +2,mix piano+organ.wav,Keyboard,Synth +2,mix percus.wav,Percussion, +2,mix pads+strings.wav,Keyboard,Synth +2,mix organ.wav,Keyboard,Synth +2,mix lv1+2.wav,Voice,Lead +2,mix lv+dv.wav,Voice,Lead +2,mix l+r ags.wav,Other, +2,mix guit 1 + 2.wav,Electric Guitar, +2,mix gtr5+6.wav,Electric Guitar, +2,mix gtr2+4.wav,Electric Guitar, +2,mix gtr 3+4.wav,Electric Guitar, +2,mix eg3+5.wav,Electric Guitar, +2,mix eg2+6.wav,Electric Guitar, +2,mix eg2+4.wav,Electric Guitar, +2,mix eg l+r.wav,Electric Guitar, +2,mix eg crunch 1+2.wav,Electric Guitar, +2,mix eg clean 1+2.wav,Electric Guitar, +2,mix drums+tamb.wav,Drums, +2,mix drums + percs.wav,Drums, +2,mix bv1+2.wav,Voice,Backing +2,mix brass.wav,Other, +2,mix bells.wav,Other, +2,mix bass.wav,Other, +2,mitch grassi.wav,Voice, +2,misc.wav,Other, +2,misc lead synths.wav,Keyboard,Synth +2,miranda lambert.wav,Voice, +2,minji.wav,Voice, +2,mike d.wav,Voice, +2,melodysynth.wav,Keyboard,Synth +2,melo synth.wav,Keyboard,Synth +2,mellotron strings.wav,Keyboard,Synth +2,meghan trainor.wav,Voice, +2,mary j. blige.wav,Voice, +2,marvin gaye.wav,Voice, +2,mariah carey.wav,Voice, +2,marc anthony.wav,Voice, +2,mandolin 2.wav,Mandolin,Mandolin 2 +2,male vox.wav,Voice, +2,macklemore-adlib.wav,Voice, +2,mac miller.wav,Voice, +2,lv_1.wav,Voice,Lead 1 +2,lv2.wav,Voice,Lead 2 +2,lv and double-adlib.wav,Voice,Lead +2,lv adds.wav,Voice,Lead Adds +2,luke combs.wav,Voice, +2,louis armstrong.wav,Voice, +2,loop fx.wav,Other, +2,logic.wav,Other, +2,lizzo.wav,Voice, +2,lil tracy.wav,Voice, +2,lil kleine.wav,Voice, +2,lil jon-adlib.wav,Voice, +2,lil flip.wav,Voice, +2,lil bow wow.wav,Voice, +2,leftguitar 1.wav,Electric Guitar, +2,leftgtr 5.wav,Electric Guitar, +2,left rhythmic eg.wav,Electric Guitar, +2,left disto eg.wav,Electric Guitar, +2,leadgt_r.wav,Electric Guitar, +2,leadgt_l.wav,Electric Guitar, +2,leadgt right.wav,Electric Guitar, +2,lead_synth_1.wav,Electric Guitar, +2,lead_guitar.wav,Electric Guitar, +2,lead vox 1.wav,Voice, +2,lead vocal 1.wav,Voice, +2,lead sinth.wav,Keyboard,Synth +2,lead guitar 2.wav,Electric Guitar, +2,lead guitar 1.wav,Electric Guitar, +2,lea.wav,Voice, +2,ld12.wav,Voice, +2,ld1.wav,Voice, +2,ld-man.wav,Voice, +2,ld-girl.wav,Voice, +2,ld-1.wav,Voice, +2,ld(addlib).wav,Voice, +2,ld vox.wav,Voice, +2,ld male.wav,Voice, +2,ld female.wav,Voice, +2,ld and echo.wav,Voice, +2,ld adds.wav,Voice, +2,ld ad lib.wav,Voice, +2,lap steel real.wav,Electric Guitar, +2,kris kristofferson.wav,Voice, +2,kirstin maldonado.wav,Voice, +2,kim petras.wav,Voice, +2,key fx.wav,Other,FX +2,keri hilson.wav,Voice, +2,kelsea ballerini-adlib.wav,Voice, +2,kelly rowland.wav,Voice, +2,kelis.wav,Voice, +2,keith urban.wav,Voice, +2,kane brown.wav,Voice, +2,justin timberlake.wav,Voice, +2,jungkook.wav,Voice, +2,jung kook.wav,Voice, +2,julia michaels.wav,Voice, +2,juice wrld.wav,Voice, +2,jonny lang.wav,Voice, +2,johnny 3 tears.wav,Voice, +2,john legend.wav,Voice, +2,joe bonamassa.wav,Voice, +2,jessie murph.wav,Voice, +2,jay sean.wav,Voice, +2,jaw harp.wav,Other,Jaw Harp +2,jason derulo.wav,Voice, +2,intro synth.wav,Keyboard,Synth +2,ice spice.wav,Voice, +2,hit 2.wav,Other, +2,hillary scott.wav,Voice, +2,hautbois.wav,Voice, +2,hats.wav,Other, +2,harp synth.wav,Keyboard,Synth +2,harmonics.wav,Other, +2,hardy.wav,Voice, +2,hanni.wav,Voice, +2,haerin.wav,Voice, +2,gwen stefani.wav,Voice, +2,gun shot.wav,Voice, +2,guitarsynth.wav,Keyboard,Synth +2,guitars rhythm.wav,Electric Guitar, +2,guitars 6.wav,Electric Guitar, +2,guitarright.wav,Electric Guitar, +2,guitarrhythm.wav,Electric Guitar, +2,guitarfx.wav,Electric Guitar, +2,guitar_acoustic.wav,Acoustic Guitar, +2,guitar_3.wav,Electric Guitar, +2,guitar_2 right.wav,Electric Guitar, +2,guitar_1 left.wav,Electric Guitar, +2,guitar1.wav,Electric Guitar, +2,guitar-solo.wav,Electric Guitar, +2,guitar-acoust.wav,Acoustic Guitar, +2,guitar-3.wav,Electric Guitar, +2,guitar lead.wav,Electric Guitar, +2,guitar 4 right.wav,Electric Guitar, +2,guit_solo.2.wav,Electric Guitar, +2,guit_mute.wav,Electric Guitar, +2,guit solo.wav,Electric Guitar, +2,guit right.wav,Electric Guitar, +2,guit left.wav,Electric Guitar, +2,guit 3 + 5.wav,Electric Guitar, +2,guit 2 right.wav,Electric Guitar, +2,gucci mane.wav,Voice, +2,gtrs 2.wav,Electric Guitar, +2,gtrl.wav,Electric Guitar, +2,gtracus.wav,Acoustic Guitar, +2,gtracoustic.wav,Acoustic Guitar, +2,gtrac.wav,Acoustic Guitar, +2,gtr7.wav,Electric Guitar, +2,gtr2 right.wav,Electric Guitar, +2,gtr2 clean.wav,Electric Guitar, +2,gtr1+3.wav,Electric Guitar, +2,gtr-r.wav,Electric Guitar, +2,gtr-l.wav,Electric Guitar, +2,gtr-chords.wav,Electric Guitar, +2,gtr-c.wav,Electric Guitar, +2,gtr synth 2.wav,Electric Guitar, +2,gtr sample.wav,Electric Guitar, +2,gtr ny.wav,Electric Guitar, +2,gtr el.wav,Electric Guitar, +2,gtr el 4-.wav,Electric Guitar, +2,gtr el 3-.wav,Electric Guitar, +2,gtr el 3 right.wav,Electric Guitar, +2,gtr el 2 right.wav,Electric Guitar, +2,gtr el 2 left.wav,Electric Guitar, +2,gtr el 1-.wav,Electric Guitar, +2,gtr el 1 right.wav,Electric Guitar, +2,gtr el 1 left.wav,Electric Guitar, +2,gtr dist.wav,Electric Guitar, +2,gtr adds.wav,Electric Guitar, +2,gtr ac 2.wav,Acoustic Guitar, +2,gtr ac 1.wav,Acoustic Guitar, +2,gtr 9.wav,Electric Guitar, +2,gtr 7 right.wav,Electric Guitar, +2,gtr 3gauche.wav,Electric Guitar, +2,gtr 3 muted.wav,Electric Guitar, +2,gtr 1gauche.wav,Electric Guitar, +2,gtr 1 + 2.wav,Electric Guitar, +2,gt.wav,Electric Guitar, +2,gregg rolie.wav,Voice, +2,gong.wav,Percussion,Gong +2,glorilla.wav,Voice, +2,gate synth.wav,Keyboard,Synth +2,fx-.wav,Keyboard,Synth +2,fx's.wav,Keyboard,Synth +2,fx synths.wav,Keyboard,Synth +2,fx intro.wav,Keyboard,Synth +2,fx crowd.wav,Keyboard,Synth +2,fx birds.wav,Keyboard,Synth +2,fx and sweep.wav,Keyboard,Synth +2,fx 2.wav,Keyboard,Synth +2,fx + noise.wav,Keyboard,Synth +2,funk eg.wav,Electric Guitar, +2,frank zappa.wav,Voice, +2,flute synths.wav,Flute, +2,flute 2.wav,Flute, +2,fills.wav,Other, +2,fill.wav,Other, +2,fiddle 2 left.wav,Violin, +2,fiddle 1 right.wav,Violin, +2,female vox.wav,Voice, +2,feedback.wav,Other, +2,end synth.wav,Keyboard,Synth +2,ellie goulding.wav,Voice, +2,ella fitzgerald.wav,Voice, +2,elguit.wav,Electric Guitar, +2,elgtr lead.wav,Electric Guitar, +2,elegtr4.wav,Electric Guitar, +2,electrique.wav,Electric Guitar, +2,electric_rhythm_guitar_clean.wav,Electric Guitar, +2,electric_rhythm_guitar_center.wav,Electric Guitar, +2,electric_piano_rhodes_1.wav,Keyboard,Synth +2,electric_lead_guitar_left.wav,Electric Guitar, +2,electric_guitar_solo.wav,Electric Guitar, +2,electric_guitar_right.wav,Electric Guitar, +2,electric_guitar_rhythm_right.wav,Electric Guitar, +2,electric_guitar_rhythm_left.wav,Electric Guitar, +2,electric_guitar_rhythm.wav,Electric Guitar, +2,electric_guitar_overdrive.wav,Electric Guitar, +2,electric_guitar_clean_right.wav,Electric Guitar, +2,electric_guitar_clean_intro.wav,Electric Guitar, +2,electric_guitar_clean_center.wav,Electric Guitar, +2,electric_guitar_3.wav,Electric Guitar, +2,electric_guitar_2.wav,Electric Guitar, +2,electric_guitar_1.wav,Electric Guitar, +2,electric_feedback_guitar.wav,Electric Guitar, +2,electric_clean_guitar_left.wav,Electric Guitar, +2,electric_arrangement_guitar_3.wav,Electric Guitar, +2,electric piano 1.wav,Keyboard,Synth +2,electric guitar3.wav,Electric Guitar, +2,electric guitar(solo).wav,Electric Guitar, +2,electric guitar solo 2.wav,Electric Guitar, +2,electric guitar solo 1.wav,Electric Guitar, +2,electric guitar r.wav,Electric Guitar, +2,electric guitar muted.wav,Electric Guitar, +2,electric guitar l.wav,Electric Guitar, +2,electric guitar clean 3.wav,Electric Guitar, +2,electric guitar clean 2.wav,Electric Guitar, +2,electric guitar clean 1.wav,Electric Guitar, +2,electric guitar 6.wav,Electric Guitar, +2,electric guitar 4 right.wav,Electric Guitar, +2,electric guitar 1 left.wav,Electric Guitar, +2,electric drums.wav,Drums, +2,elect guitar.wav,Electric Guitar, +2,elecgtr.wav,Electric Guitar, +2,elec gtr 2 right.wav,Electric Guitar, +2,elec gtr 1 left.wav,Electric Guitar, +2,el.gtr rhyt.wav,Electric Guitar, +2,el.gtr r.wav,Electric Guitar, +2,el.gtr left.wav,Electric Guitar, +2,el.gtr l.wav,Electric Guitar, +2,el.gtr clean.wav,Electric Guitar, +2,el.gtr arp.wav,Electric Guitar, +2,el.drums.wav,Drums, +2,el-p.wav,Keyboard,Synth +2,el piano 3.wav,Keyboard,Synth +2,el piano 2 right.wav,Keyboard,Synth +2,el piano 1 left.wav,Keyboard,Synth +2,el pia.wav,Keyboard,Synth +2,el guitar solo.wav,Electric Guitar, +2,el guitar clean.wav,Electric Guitar, +2,el guitar 3.wav,Electric Guitar, +2,el guitar 2.wav,Electric Guitar, +2,el guitar 1.wav,Electric Guitar, +2,el gtr clean.wav,Electric Guitar, +2,el gtr 5.wav,Electric Guitar, +2,el gtr 1 left.wav,Electric Guitar, +2,el alfa.wav,Other, +2,egwah.wav,Other, +2,eguitar2.wav,Electric Guitar, +2,eguitar1.wav,Electric Guitar, +2,eguitar rythmic 3.wav,Electric Guitar, +2,eguitar clean.wav,Electric Guitar, +2,eguitar arrangement 3.wav,Electric Guitar, +2,eguitar arrangement 2.wav,Electric Guitar, +2,eguitar arrangement 1.wav,Electric Guitar, +2,eguit2 intro.wav,Electric Guitar, +2,eguit solos 1.wav,Electric Guitar, +2,eguit lead.wav,Electric Guitar, +2,eguit dist 3.wav,Electric Guitar, +2,eguit dist 2.wav,Electric Guitar, +2,eguit 7.wav,Electric Guitar, +2,eguit 2 left.wav,Electric Guitar, +2,egtrsolo.wav,Electric Guitar, +2,egtr4.wav,Electric Guitar, +2,egtr1 right.wav,Electric Guitar, +2,egt 3.wav,Electric Guitar, +2,egmute left.wav,Electric Guitar, +2,eglead 2.wav,Electric Guitar, +2,egfuzz.wav,Electric Guitar, +2,egclean2.wav,Electric Guitar, +2,egchorus.wav,Electric Guitar, +2,eg_rclean.wav,Electric Guitar, +2,eg_lslide.wav,Electric Guitar, +2,eg_l(lead).wav,Electric Guitar, +2,eg_l 3.wav,Electric Guitar, +2,eg6.wav,Electric Guitar, +2,eg3 left.wav,Electric Guitar, +2,eg2lead.wav,Electric Guitar, +2,eg1 right.wav,Electric Guitar, +2,eg1 left.wav,Electric Guitar, +2,eg(wha).wav,Electric Guitar, +2,eg(tremolo).wav,Electric Guitar, +2,eg(lead)_2.wav,Electric Guitar, +2,eg(fuzz).wav,Electric Guitar, +2,eg(efx).wav,Electric Guitar, +2,eg trem.wav,Electric Guitar, +2,eg slide.wav,Electric Guitar, +2,eg phaser.wav,Electric Guitar, +2,eg od.wav,Electric Guitar, +2,eg lead 5.wav,Electric Guitar, +2,eg lead 02.wav,Electric Guitar, +2,eg lead 01.wav,Electric Guitar, +2,eg intro.wav,Electric Guitar, +2,eg disto.wav,Electric Guitar, +2,eg dist solo.wav,Electric Guitar, +2,eg dist 02 right.wav,Electric Guitar, +2,eg dist 02 left.wav,Electric Guitar, +2,eg cln.wav,Electric Guitar, +2,eg clean c.wav,Electric Guitar, +2,eg clean adds.wav,Electric Guitar, +2,eg background.wav,Electric Guitar, +2,eg arrangement 02.wav,Electric Guitar, +2,eg arrangement 01.wav,Electric Guitar, +2,eg arr 3.wav,Electric Guitar, +2,eg adds 1.wav,Electric Guitar, +2,eg 9.wav,Electric Guitar, +2,eg 9 + 10.wav,Electric Guitar, +2,eg 7 + 8.wav,Electric Guitar, +2,eg 6 + 7.wav,Electric Guitar, +2,eg 5 left.wav,Electric Guitar, +2,eg 4 left.wav,Electric Guitar, +2,eg 4 + 6.wav,Electric Guitar, +2,eg 4 + 5.wav,Electric Guitar, +2,eg 3 end.wav,Electric Guitar, +2,eg 2 + 3.wav,Electric Guitar, +2,eg 11 + 12.wav,Electric Guitar, +2,e-40.wav,Other, +2,e piano adds.wav,Keyboard,Synth +2,e keys.wav,Keyboard,Synth +2,e guitar riff.wav,Electric Guitar, +2,e guitar rhytmic disto.wav,Electric Guitar, +2,e guitar arragement clean.wav,Electric Guitar, +2,e guitar arragement 2.wav,Electric Guitar, +2,e guitar arragement 1.wav,Electric Guitar, +2,e guitar 6 right.wav,Electric Guitar, +2,e guitar 5 left.wav,Electric Guitar, +2,e guitar 4 right.wav,Electric Guitar, +2,e guitar 3 left.wav,Electric Guitar, +2,drumset.wav,Drums, +2,drums-01.wav,Drums, +2,drums and fx.wav,Drums, +2,drum machine.wav,Drums, +2,drum fx.wav,Drums, +2,dr dre.wav,Voice,Dr. Dre +2,double_bass.wav,Double Bass, +2,distrhythmgtr.wav,Electric Guitar, +2,distogtr1.wav,Electric Guitar, +2,dist.wav,Electric Guitar, +2,dido.wav,Voice, +2,didgeridoo.wav,Other,Didgeridoo +2,descemer bueno.wav,Other, +2,deep bass.wav,Other, +2,dbl bass.wav,Double Bass, +2,danielle.wav,Voice, +2,dance_synth.wav,Keyboard,Synth +2,dance piano.wav,Keyboard,Synth +2,dababy.wav,Voice, +2,cymbals.wav,Percussion,Cymbals +2,crunch_guitar.wav,Electric Guitar, +2,crunch rhythmic eg.wav,Electric Guitar, +2,crowdfx.wav,Other,Crowd FX +2,count.wav,Computer,Count In +2,count off.wav,Computer,Count In +2,continental.wav,Other, +2,coko.wav,Voice, +2,cocotte eg.wav,Voice, +2,clean_guitars.wav,Electric Guitar, +2,clean_guitar.wav,Electric Guitar, +2,clean guits.wav,Electric Guitar, +2,clarinets.wav,Clarinet, +2,ciara-adlib.wav,Voice, +2,chromatic percs.wav,Percussion, +2,chris young.wav,Voice, +2,chorusrhythmgtr.wav,Electric Guitar, +2,chorusgtr.wav,Electric Guitar, +2,choirs.wav,Other, +2,chester bennington.wav,Voice, +2,chelo.wav,Other, +2,charlie wilson.wav,Voice, +2,charles kelley.wav,Voice, +2,chainsmokers.wav,Voice, +2,central cee.wav,Other, +2,centerguitar 1.wav,Electric Guitar, +2,center ag.wav,Acoustic Guitar, +2,celo.wav,Other, +2,cellos.wav,Cello, +2,bvs male.wav,Voice, +2,bv_female.wav,Voice, +2,bv5.wav,Voice, +2,bv3.wav,Voice, +2,bv-female.wav,Voice, +2,bv-adlib.wav,Voice, +2,bv+ld2.wav,Voice, +2,bv fixed.wav,Voice, +2,bv drake.wav,Voice, +2,brass-.wav,Other,Brass +2,brass vst.wav,Other,Brass +2,brass s.wav,Other,Brass +2,brass intro.wav,Other,Brass +2,brad paisley.wav,Voice, +2,bouzouki.wav,Other, +2,bootsy collins.wav,Voice, +2,boom.wav,Other, +2,blocks.wav,Other, +2,blip.wav,Other, +2,blake shelton.wav,Voice, +2,black thought.wav,Voice, +2,billie eilish.wav,Voice, +2,bigsynth.wav,Keyboard,Synth +2,big synth.wav,Keyboard,Synth +2,bg.wav,Voice, +2,bg vocals female.wav,Voice, +2,beep.wav,Other, +2,bass_1.wav,Bass Guitar, +2,bass_01.wav,Bass Guitar, +2,bass.2.wav,Bass Guitar, +2,bass+synth bass.wav,Keyboard,Synth +2,bass slap.wav,Bass Guitar, +2,bass pad.wav,Keyboard,Synth +2,bass mix.wav,Keyboard,Synth +2,bass filter.wav,Keyboard,Synth +2,bass disto.wav,Bass Guitar, +2,bass dist.wav,Bass Guitar, +2,basic synth.wav,Keyboard,Synth +2,bas.wav,Other, +2,bari sax.wav,Saxophone,Baritone +2,banjo-.wav,Banjo, +2,bagpipes.wav,Bagpipes, +2,bagpipe.wav,Bagpipes, +2,back vocal.wav,Voice, +2,avi.wav,Other, +2,atmoguitar.wav,Electric Guitar, +2,astrud gilberto.wav,Voice, +2,art garfunkel.wav,Voice, +2,arrange_electric_guitar_2.wav,Electric Guitar, +2,arrange_electric_guitar_1.wav,Electric Guitar, +2,arpsynth.wav,Keyboard,Synth +2,arps.wav,Keyboard,Synth +2,arpeggiator 2.wav,Keyboard,Synth +2,arpeggiator 1.wav,Keyboard,Synth +2,arp eg.wav,Electric Guitar, +2,arp clean eg.wav,Electric Guitar, +2,arp ag.wav,Acoustic Guitar, +2,arp 2.wav,Other, +2,arp 1.wav,Other, +2,ariana grande.wav,Voice, +2,anne-marie.wav,Voice, +2,andrew taggart.wav,Voice, +2,andrea bocelli.wav,Voice, +2,analog_seq.wav,Keyboard,Synth +2,analog strings.wav,Orchestra,Strings +2,ambient.wav,Keyboard,Synth +2,ambiance pads.wav,Keyboard,Synth +2,alvaro soler.wav,Voice, +2,all synths.wav,Keyboard,Synth +2,all bass.wav,Other, +2,alison krauss.wav,Voice, +2,alicia keys.wav,Voice, +2,alex gaskarth.wav,Voice, +2,akk.wav,Other, +2,agt 2.wav,Acoustic Guitar, +2,agt 1.wav,Acoustic Guitar, +2,agnylon.wav,Acoustic Guitar, +2,ag_l 2.wav,Acoustic Guitar, +2,ag_1.wav,Acoustic Guitar, +2,ag2 right.wav,Acoustic Guitar, +2,ag-notdup.wav,Acoustic Guitar, +2,ag steel l.wav,Acoustic Guitar, +2,ag right.wav,Acoustic Guitar, +2,ag nylon solo.wav,Acoustic Guitar, +2,ag nylon r.wav,Acoustic Guitar, +2,ag c.wav,Acoustic Guitar, +2,ag 4.wav,Acoustic Guitar, +2,ag 3 left.wav,Acoustic Guitar, +2,ag 04.wav,Acoustic Guitar, +2,ag 03 right.wav,Acoustic Guitar, +2,add guit.wav,Other, +2,adam yauch.wav,Voice, +2,ad-rock.wav,Other, +2,ad lib.wav,Voice, +2,acusgtr.wav,Acoustic Guitar, +2,acoustics.wav,Acoustic Guitar, +2,acoustic_guitars.wav,Acoustic Guitar, +2,acoustic guitar-notdups.wav,Acoustic Guitar, +2,acoustic gtr 2.wav,Acoustic Guitar, +2,acoustic gtr 1.wav,Acoustic Guitar, +2,acguitar2.wav,Acoustic Guitar, +2,acc guitar solo.wav,Acoustic Guitar, +2,acc gtr 2.wav,Acoustic Guitar, +2,ac.gtr theme.wav,Acoustic Guitar, +2,ac.gtr arp.wav,Acoustic Guitar, +2,ac guitar rythmic.wav,Acoustic Guitar, +2,ac guitar rhytmic.wav,Acoustic Guitar, +2,ac guitar arrangement.wav,Acoustic Guitar, +2,ac guitar 2.wav,Acoustic Guitar, +2,ac guitar 1.wav,Acoustic Guitar, +2,ac gtrs.wav,Acoustic Guitar, +2,ac gtr2.wav,Acoustic Guitar, +2,ac gtr1.wav,Acoustic Guitar, +2,ac gtr + mando.wav,Acoustic Guitar, +2,a guitar 3.wav,Acoustic Guitar, +2,_drums.wav,Drums, +2,_bass.wav,Bass Guitar, +2,4.wav,Other, +2,2-d.wav,Other, +2,13_lv.wav,Voice,Lead +2,13_clavinet.wav,Keyboard,Clavinet +2,13_bv.wav,Voice,Backing +2,12_lv.wav,Voice,Lead +2,12_bv.wav,Voice,Backing +2,11 lead vocal.wav,Voice,Lead +2,10_strings.wav,Other, +2,10_brasses.wav,Other, +2,10 synth pad.wav,Other, +2,10 strings.wav,Other, +2,10 lead vocal.wav,Other, +2,10 backing vocals.wav,Other, +2,09_eg2 r.wav,Other, +2,09 backing vocals.wav,Other, +2,07_organ.wav,Other, +2,07_ep.wav,Other, +2,07_ac gtr l.wav,Other, +2,07 strings.wav,Other, +2,07 lead vocal.wav,Other, +2,06_piano.wav,Other, +2,06_eg1 l.wav,Other, +2,06_ac piano.wav,Other, +2,05_percu.wav,Other, +2,05 piano.wav,Other, +2,05 lead guitars.wav,Other, +2,05 clean guitar.wav,Other, +2,04_synth bass.wav,Other, +2,04_drums.wav,Other, +2,04 lead guitar.wav,Other, +2,03 rhythm guitars.wav,Other, +1,zoo station u2 wurlitzer.wav,Other, +1,zoo station u2 perc.wav,Other, +1,zoo station u2 pedalsteel.wav,Other, +1,zoo station u2 pad.wav,Other, +1,zoo station u2 organ.wav,Other, +1,zoo station u2 ld.wav,Other, +1,zoo station u2 e guitar 3.wav,Other, +1,zoo station u2 e guitar 2.wav,Other, +1,zoo station u2 e guitar 1.wav,Other, +1,zoo station u2 drums.wav,Other, +1,zoo station u2 bv.wav,Other, +1,zoo station u2 bass.wav,Other, +1,zoo station u2 ambient.wav,Other, +1,zonderling.wav,Other, +1,zion.wav,Other, +1,zara larsson.wav,Other, +1,zacari.wav,Other, +1,yungstar.wav,Other, +1,yungblud.wav,Other, +1,yung gravy.wav,Other, +1,yung berg.wav,Other, +1,yung baby tate.wav,Other, +1,yuki chiba.wav,Other, +1,young thug-adlib.wav,Other, +1,young noble.wav,Other, +1,young jeezy.wav,Other, +1,young buck.wav,Other, +1,young biggie.wav,Other, +1,ynth 2.wav,Other, +1,ympani.wav,Other, +1,xzibit.wav,Other, +1,xylophones.wav,Other, +1,xxxtentacion.wav,Other, +1,xp.wav,Other, +1,wyclef jean.wav,Other, +1,wurly ep.wav,Keyboard,Wurlitzer +1,wurlt.wav,Keyboard,Wurlitzer +1,wurlitzer_ep.wav,Keyboard,Wurlitzer +1,wurlitzer+clavinet.wav,Keyboard,Wurlitzer +1,wurlitzer solo melodies.wav,Keyboard,Wurlitzer +1,wurlitzer ep.wav,Keyboard,Wurlitzer +1,wurlitzer 2.wav,Keyboard,Wurlitzer +1,wurlitzer 2 solo.wav,Keyboard,Wurlitzer +1,wurli+rhod.wav,Keyboard,Wurlitzer +1,wurli wha.wav,Keyboard,Wurlitzer +1,wurli synth.wav,Keyboard,Wurlitzer +1,wurli 200a.wav,Keyboard,Wurlitzer +1,wurli 140b.wav,Keyboard,Wurlitzer +1,wunder_s_synths.wav,Other, +1,wunder_s_piano.wav,Other, +1,wunder_s_guitar_02.wav,Other, +1,wunder_s_guitar_01.wav,Other, +1,wunder_s_drums.wav,Other, +1,wunder_s_bv.wav,Other, +1,wunder_s_bass.wav,Other, +1,wu-tang.wav,Other, +1,world_percussion.wav,Other, +1,world_instruments.wav,Other, +1,world-voices e,Other, +1,wooshfx.wav,Other, +1,woodwings.wav,Other, +1,woodblock.wav,Other, +1,wonder mike.wav,Other, +1,wolftyla.wav,Other, +1,wobble_bass_synth.wav,Other, +1,wisin.wav,Other, +1,wine.wav,Other, +1,winds + pipe.wav,Other, +1,windfx.wav,Other, +1,wind synth.wav,Other, +1,wind section.wav,Other, +1,wind harp.wav,Other, +1,wind fx.wav,Other, +1,willow sage hart.wav,Other, +1,william.wav,Other, +1,will.i.am-adlib.wav,Other, +1,whurli.wav,Other, +1,whistler.wav,Other, +1,whistle 2 end.wav,Other, +1,whistle 1 right.wav,Other, +1,whisper.wav,Other, +1,whilstesynth.wav,Other, +1,whilstemonolead.wav,Other, +1,whagt_l.wav,Other, +1,wha clean.wav,Other, +1,wesley schultz.wav,Other, +1,weird noise.wav,Other, +1,wblock.wav,Other, +1,wawagtr 1.wav,Other, +1,wawa.wav,Other, +1,waterphone.wav,Other, +1,wanya morris.wav,Other, +1,wale.wav,Other, +1,waka flocka flame.wav,Other, +1,wahwah guitar 2.wav,Other, +1,wahwah funk eg.wav,Other, +1,wahwah filter eg.wav,Other, +1,wahsynth.wav,Other, +1,wahgtr.wav,Other, +1,wah guit.wav,Other, +1,vynyl slowdown fx.wav,Other, +1,vynil_noise.wav,Other, +1,vx lead.wav,Other, +1,vx back.wav,Other, +1,vst strings.wav,Other, +1,vst choir.wav,Other, +1,voz.wav,Other, +1,voxsynth12.wav,Keyboard,Synth Vox +1,voxfx.wav,Keyboard,Synth Vox +1,vox_chops.wav,Keyboard,Synth Vox +1,vox-stac.wav,Keyboard,Synth Vox +1,vox shouts.wav,Keyboard,Synth Vox +1,vox shout.wav,Keyboard,Synth Vox +1,vox scream.wav,Keyboard,Synth Vox +1,vox sampler.wav,Keyboard,Synth Vox +1,vox sample loop.wav,Keyboard,Synth Vox +1,vox sample loop bong bong.wav,Keyboard,Synth Vox +1,vox punch.wav,Keyboard,Synth Vox +1,vox pad.wav,Keyboard,Synth Vox +1,vox organ.wav,Keyboard,Synth Vox +1,vox only.wav,Keyboard,Synth Vox +1,vox mellotron.wav,Keyboard,Synth Vox +1,vox leadmaster.wav,Keyboard,Synth Vox +1,vox lead.wav,Keyboard,Synth Vox +1,vox hey.wav,Keyboard,Synth Vox +1,vox cut.wav,Keyboard,Synth Vox +1,vox breath.wav,Keyboard,Synth Vox +1,vox 2.wav,Keyboard,Synth Vox +1,volbeat.wav,Other, +1,voicesynth 1+2.wav,Keyboard,Synth Vox +1,voices.wav,Keyboard,Synth Vox +1,voices glass synth.wav,Keyboard,Synth Vox +1,voicepad+atmo.wav,Keyboard,Synth Vox +1,voicefx.wav,Keyboard,Synth Vox +1,voice.wav,Keyboard,Synth Vox +1,voice fx.wav,Keyboard,Synth Vox +1,voice efx.wav,Keyboard,Synth Vox +1,vocoder synth.wav,Other, +1,voco.wav,Other, +1,vocglitch.wav,Keyboard,Synth Vox +1,vocals_sfx.wav,Keyboard,Synth Vox +1,vocals fx.wav,Keyboard,Synth Vox +1,vocalpad.wav,Keyboard,Synth Vox +1,vocal_sfx.wav,Keyboard,Synth Vox +1,vocal shouts.wav,Keyboard,Synth Vox +1,vocal sample.wav,Keyboard,Synth Vox +1,vocal pad.wav,Keyboard,Synth Vox +1,vocal loop 2.wav,Keyboard,Synth Vox +1,vocal loop 1.wav,Keyboard,Synth Vox +1,vocal choir.wav,Voice, +1,vocal adds.wav,Voice, +1,voc2+3mix.wav,Voice, +1,voc123.wav,Voice, +1,voc12.wav,Voice, +1,voc1+2mix.wav,Voice, +1,voc pads.wav,Voice, +1,voc and 3b.wav,Voice, +1,voc ad lib.wav,Voice, +1,voc 5b.wav,Voice, +1,voc 4b.wav,Voice, +1,voc 2rap.wav,Voice, +1,voc 2b spoken.wav,Voice, +1,voc 2b rap.wav,Voice, +1,voc 2 whisper.wav,Voice, +1,voc 12b.wav,Voice, +1,voc 123.wav,Voice, +1,voc 1+2+3+5mix.wav,Voice, +1,voc 1 rap.wav,Voice, +1,voc 1 2.wav,Other, +1,vln 123.wav,Other, +1,vl ii right.wav,Other, +1,vl i right.wav,Other, +1,vita.wav,Other, +1,violins (real).wav,Violin, +1,violins (cello).wav,Violin, +1,violines.wav,Violin, +1,violin1234567.wav,Violin, +1,violin section.wav,Violin, +1,violin real.wav,Violin, +1,violin loop.wav,Violin, +1,violin 03 pizz.wav,Violin, +1,violas.wav,Viola, +1,violas and cellos.wav,Viola, +1,vinylnoise strings.wav,Other, +1,vinyl_scratches.wav,Other, +1,vinyl_fx.wav,Other, +1,vinyl sfx.wav,Other, +1,vinyl scratch.wav,Other, +1,vinyl noise_01.wav,Other, +1,vinyl noise.wav,Other, +1,vinyl + breath..wav,Other, +1,vin rock.wav,Other, +1,vibrophone.wav,Keyboard,Vibes +1,vibraslap.wav,Keyboard,Vibes +1,vibraphone_2.wav,Keyboard,Vibes +1,vibraphone_1.wav,Keyboard,Vibes +1,vibe.wav,Keyboard,Vibes +1,versesynth.wav,Other, +1,versegtrs.wav,Other, +1,verseacoustic.wav,Other, +1,vee synth.wav,Other, +1,vc left.wav,Other, +1,vanessa carlton.wav,Other, +1,valora.wav,Other, +1,val young.wav,Other, +1,v.wav,Other, +1,urli.wav,Other, +1,uprightbass.wav,Other, +1,upright_piano.wav,Other, +1,upright.wav,Other, +1,uncle charlie wilson.wav,Other, +1,u2.wav,Other, +1,u-god.wav,Other, +1,tzouras.wav,Other, +1,tyler.wav,Other, +1,tyler childers.wav,Other, +1,tyla.wav,Other, +1,tyga.wav,Other, +1,two hearts beat as one u2 ld.wav,Voice,Lead +1,two hearts beat as one u2 e guitar 3.wav,Electric Guitar, +1,two hearts beat as one u2 e guitar 2.wav,Electric Guitar, +1,two hearts beat as one u2 e guitar 1.wav,Electric Guitar, +1,two hearts beat as one u2 drums.wav,Drums, +1,two hearts beat as one u2 bv.wav,Voice,Backing +1,two hearts beat as one u2 bass.wav,Bass Guitar, +1,twang synth.wav,Other, +1,turn table.wav,Other, +1,tuned-percussion.wav,Other, +1,tuned percussion.wav,Other, +1,tulisa.wav,Other, +1,tubulasr.wav,Other, +1,tubular bells_1.wav,Other, +1,tsr.wav,Other, +1,tsmbourine.wav,Other, +1,ts.wav,Other, +1,trumpets vst.wav,Trumpet, +1,trumpets right.wav,Trumpet, +1,trumpets real+vst.wav,Trumpet, +1,trumpets pitch.wav,Trumpet, +1,trumpets left.wav,Trumpet, +1,trumpet_2.wav,Trumpet, +1,trumpet_123.wav,Trumpet, +1,trumpet_1.wav,Trumpet, +1,trumpet and trombone.wav,Trumpet, +1,trumpet 2.wav,Trumpet, +1,trumpet 1.wav,Trumpet, +1,trp solo.wav,Trumpet, +1,troye sivan.wav,Other, +1,trombones vst.wav,Trombone, +1,trombone real.wav,Trombone, +1,trombone 02.wav,Trombone, +1,trombone 01.wav,Trombone, +1,trombon.wav,Trombone, +1,trick daddy.wav,Other, +1,triana.wav,Other, +1,trevor williams.wav,Other, +1,tres.wav,Other, +1,tremologuitar.wav,Other, +1,tremolo guitar 5.wav,Other, +1,trem thing.wav,Other, +1,trem pad.wav,Other, +1,trem gtr.wav,Other, +1,treach.wav,Other, +1,tranceld.wav,Other, +1,tranceextra.wav,Other, +1,trance (bass).wav,Other, +1,tpt2.wav,Other, +1,tpt1.wav,Other, +1,tpt and bone.wav,Other, +1,tp12.wav,Other, +1,tove lo.wav,Other, +1,total.wav,Other, +1,tory lanez.wav,Other, +1,tori kelly.wav,Other, +1,tool synth.wav,Other, +1,tool lv.wav,Other, +1,tool jambi synth pad.wav,Other, +1,tool jambi perc.wav,Other, +1,tool jambi lv.wav,Other, +1,tool jambi guitar 2.wav,Other, +1,tool jambi guitar 1.wav,Other, +1,tool jambi fx.wav,Other, +1,tool jambi drum.wav,Other, +1,tool jambi bv.wav,Other, +1,tool jambi bass 2.wav,Other, +1,tool jambi bass 1.wav,Other, +1,tool guitar 4.wav,Other, +1,tool guitar 3.wav,Other, +1,tool guitar 2.wav,Other, +1,tool guitar 1.wav,Other, +1,tool fx.wav,Other, +1,tool drum.wav,Other, +1,tool bv.wav,Other, +1,tool bass.wav,Other, +1,tony green.wav,Other, +1,tone + synthpad.wav,Other, +1,tonal percussion.wav,Other, +1,toms.wav,Other, +1,toms elec.wav,Other, +1,tom waits.wav,Other, +1,tom mcdonald.wav,Other, +1,tl.wav,Other, +1,tl-adlib.wav,Other, +1,tiple.wav,Other, +1,tink.wav,Other, +1,tinie lead.wav,Other, +1,tin whistle.wav,Other, +1,timps.wav,Other, +1,timp.wav,Other, +1,timp and tamb.wav,Other, +1,timbales fx.wav,Other, +1,timbale.wav,Other, +1,tim mcgraw.wav,Other, +1,thundercat.wav,Other, +1,thomas rhett.wav,Other, +1,third solo eg.wav,Other, +1,themegtr 1.wav,Other, +1,theme.wav,Other, +1,theme synthlead.wav,Other, +1,theme synth arp.wav,Other, +1,theme gtr 3.wav,Other, +1,theme electric guit.wav,Other, +1,the vamps.wav,Other, +1,the struts.wav,Other, +1,the script.wav,Other, +1,the schoolmaster.wav,Other, +1,the notorious b.i.g.-adlib.wav,Other, +1,the judge.wav,Other, +1,the eastside boyz.wav,Other, +1,the chicks travelin soldier perc.wav,Percussion, +1,the chicks travelin soldier mandoline.wav,Mandolin, +1,the chicks travelin soldier lv.wav,Voice,Lead +1,the chicks travelin soldier fiddle 2.wav,Violin,Fiddle 2 +1,the chicks travelin soldier fiddle 1.wav,Violin,Fiddle 1 +1,the chicks travelin soldier drum.wav,Drums, +1,the chicks travelin soldier bass.wav,Bass Guitar, +1,the chicks travelin soldier acordion.wav,Accordion, +1,the chicks travelin soldier acc guitar 4.wav,Acoustic Guitar,Acoustic 4 +1,the chicks travelin soldier acc guitar 3.wav,Acoustic Guitar,Acoustic 3 +1,the chicks travelin soldier acc guitar 2.wav,Acoustic Guitar,Acoustic 2 +1,the chicks travelin soldier acc guitar 1.wav,Acoustic Guitar,Acoustic 1 +1,the chicks traveli soldier bv.wav,Voice,Backing +1,the big money rush synthbass.wav,Keyboard,Synth Bass +1,the big money rush synth gtr.wav,Keyboard,Synth Guitar +1,the big money rush ld.wav,Voice,Lead +1,the big money rush e guitar solo.wav,Electric Guitar,Solo +1,the big money rush e guitar 4.wav,Electric Guitar,Electric 4 +1,the big money rush e guitar 3.wav,Electric Guitar,Electric 3 +1,the big money rush e guitar 2.wav,Electric Guitar,Electric 2 +1,the big money rush e guitar 1.wav,Electric Guitar,Electric 1 +1,the big money rush drums.wav,Drums, +1,the big money rush bv.wav,Voice,Backing +1,the big money rush bass.wav,Bass Guitar, +1,the babys.wav,Other, +1,the 1975 its not living if its not with you vocal synth.wav,Keyboard,Synth Vox +1,the 1975 its not living if its not with you piano.wav,Piano, +1,the 1975 its not living if its not with you lv.wav,Voice,Lead +1,the 1975 its not living if its not with you guitar 7.wav,Electric Guitar,Electric 5 +1,the 1975 its not living if its not with you guitar 4.wav,Electric Guitar,Electric 4 +1,the 1975 its not living if its not with you guitar 3.wav,Electric Guitar,Electric 3 +1,the 1975 its not living if its not with you guitar 2.wav,Electric Guitar,Electric 2 +1,the 1975 its not living if its not with you guitar 1.wav,Electric Guitar,Electric 1 +1,the 1975 its not living if its not with you drum.wav,Drums, +1,the 1975 its not living if its not with you bv.wav,Voice,Backing +1,the 1975 its not living if its not with you bass.wav,Bass Guitar, +1,the 1975 its not living if its not with you acc guitar.wav,Acoustic Guitar, +1,thalia.wav,Other, +1,texture3.wav,Other, +1,texture2.wav,Other, +1,texture1.wav,Other, +1,terry bozzio.wav,Other, +1,terri nunn.wav,Other, +1,tenor sax solo.wav,Other, +1,telle.wav,Other, +1,tbn.wav,Other, +1,tb12.wav,Other, +1,tb.wav,Other, +1,tb 303 bass synth.wav,Other, +1,taylor swift.wav,Other, +1,taurus bass.wav,Other, +1,tate mcrae.wav,Other, +1,tape fx.wav,Other, +1,tanya trotter.wav,Other, +1,tambourines.wav,Percussion,Tambourine +1,tambourine+sfx.wav,Percussion,Tambourine +1,tambourine+jew harp.wav,Percussion,Tambourine +1,tambouirne.wav,Percussion,Tambourine +1,tamborine.wav,Percussion,Tambourine +1,tamborim.wav,Percussion,Tambourine +1,tamb shak cong.wav,Percussion,Tambourine +1,tamb and shak.wav,Percussion,Tambourine +1,tamb and claps.wav,Percussion,Tambourine +1,tamb (quantized).wav,Percussion,Tambourine +1,talkboxgt.wav,Other, +1,talkbox.wav,Other, +1,takeoff-adlib.wav,Other, +1,taj.wav,Other, +1,taikos.wav,Other, +1,taboo.wav,Other, +1,tabla.wav,Other, +1,sytnh2 bells.wav,Keyboard,Synth +1,sytnh guit.wav,Keyboard,Synth +1,sythns.wav,Keyboard,Synth +1,synvox.wav,Keyboard,Synth +1,syntrh.wav,Keyboard,Synth +1,synthvox+synth vocoder.wav,Keyboard,Synth +1,synthvoices.wav,Keyboard,Synth +1,synthvoice2.wav,Keyboard,Synth +1,synthstring with filter.wav,Keyboard,Synth +1,synthsteam.wav,Keyboard,Synth +1,synthstabs.wav,Keyboard,Synth +1,synthsaw.wav,Keyboard,Synth +1,synths2.wav,Keyboard,Synth +1,synths123.wav,Keyboard,Synth +1,synths strings.wav,Keyboard,Synth +1,synths strings+choir.wav,Keyboard,Synth +1,synths plucks.wav,Keyboard,Synth +1,synths mono.wav,Keyboard,Synth +1,synths mixmaster.wav,Keyboard,Synth +1,synths lead+key.wav,Keyboard,Synth +1,synths keys.wav,Keyboard,Synth +1,synths fundations.wav,Keyboard,Synth +1,synths chrom percs.wav,Keyboard,Synth +1,synths and organ.wav,Keyboard,Synth +1,synths and introsynt.wav,Keyboard,Synth +1,synths and fx.wav,Keyboard,Synth +1,synths and bell.wav,Keyboard,Synth +1,synths 5.wav,Keyboard,Synth +1,synths 4.wav,Keyboard,Synth +1,synths 2-.wav,Keyboard,Synth +1,synths 2+3.wav,Keyboard,Synth +1,synths 12 arr.wav,Keyboard,Synth +1,synths 1-.wav,Keyboard,Synth +1,synths 1 dance.wav,Keyboard,Synth +1,synthriser.wav,Keyboard,Synth +1,synthprophetv.wav,Keyboard,Synth +1,synthpolypad.wav,Keyboard,Synth +1,synthpluckvox.wav,Keyboard,Synth +1,synthpianopad.wav,Keyboard,Synth +1,synthpad filtered.wav,Keyboard,Synth +1,synthpad chorus.wav,Keyboard,Synth +1,synthpad ambiance.wav,Keyboard,Synth +1,synthpad 3.wav,Keyboard,Synth +1,synthpad 2.wav,Keyboard,Synth +1,synthpad 1.wav,Keyboard,Synth +1,synthoutro.wav,Keyboard,Synth +1,synthmix1.2.5.6.7.9..wav,Keyboard,Synth +1,synthmix.wav,Keyboard,Synth +1,synthmelody.wav,Keyboard,Synth +1,synthmain.wav,Keyboard,Synth +1,synthleads.wav,Keyboard,Synth +1,synthlead3.wav,Keyboard,Synth +1,synthlead square.wav,Keyboard,Synth +1,synthlead filter.wav,Keyboard,Synth +1,synthlead disto.wav,Keyboard,Synth +1,synthlead 2.wav,Keyboard,Synth +1,synthldvox.wav,Keyboard,Synth +1,synthld.wav,Keyboard,Synth +1,synthld+synthsolo.wav,Keyboard,Synth +1,synthlapsteel.wav,Keyboard,Synth +1,synthlap+synth poly.wav,Keyboard,Synth +1,synthkey filter.wav,Keyboard,Synth +1,synthi.wav,Keyboard,Synth +1,synthharp.wav,Keyboard,Synth +1,synthgtr.wav,Keyboard,Synth +1,synthgt.wav,Keyboard,Synth +1,synthfxhits.wav,Keyboard,Synth +1,synthfx3 disto guit.wav,Keyboard,Synth +1,synthfx2.wav,Keyboard,Synth +1,synthfx + arp.wav,Keyboard,Synth +1,synthfilt.wav,Keyboard,Synth +1,synthfill.wav,Keyboard,Synth +1,synthextras.wav,Keyboard,Synth +1,synthesizer.wav,Keyboard,Synth +1,synthepad.wav,Keyboard,Synth +1,synthe vox.wav,Keyboard,Synth +1,synthe rythmique.wav,Keyboard,Synth +1,synthe pads.wav,Keyboard,Synth +1,synthe cordes.wav,Keyboard,Synth +1,synthe cordes arcos.wav,Keyboard,Synth +1,synthe clavi.wav,Keyboard,Synth +1,synthe brass.wav,Keyboard,Synth +1,synthe bass.wav,Keyboard,Synth +1,synthe bass metal.wav,Keyboard,Synth +1,synthe arp.wav,Keyboard,Synth +1,synthe 02.wav,Keyboard,Synth +1,synthe 01.wav,Keyboard,Synth +1,synthdrone.wav,Keyboard,Synth +1,synthbuzz2.wav,Keyboard,Synth +1,synthbuzz.wav,Keyboard,Synth +1,synthbrass trumpets.wav,Keyboard,Synth +1,synthbell.wav,Keyboard,Synth +1,synthbassoon.wav,Keyboard,Synth +1,synthbasses.wav,Keyboard,Synth +1,synthbass2.wav,Keyboard,Synth +1,synthbass1.wav,Keyboard,Synth +1,synthbass trs sub.wav,Keyboard,Synth +1,synthbass 2 agressive.wav,Keyboard,Synth +1,synthbass 1 soft.wav,Keyboard,Synth +1,synthatmo.wav,Keyboard,Synth +1,syntharr.wav,Keyboard,Synth +1,syntharr and pads.wav,Keyboard,Synth +1,syntharp2.wav,Keyboard,Synth +1,synth_wurli.wav,Keyboard,Synth +1,synth_tone fx arr.wav,Keyboard,Synth +1,synth_the_cars_good_times_roll.wav,Keyboard,Synth +1,synth_tak_piano.wav,Keyboard,Synth +1,synth_supersaw.wav,Keyboard,Synth +1,synth_strings_intro outro.wav,Keyboard,Synth +1,synth_string_lead.wav,Keyboard,Synth +1,synth_string.wav,Keyboard,Synth +1,synth_stab.wav,Keyboard,Synth +1,synth_square.wav,Keyboard,Synth +1,synth_seq.wav,Keyboard,Synth +1,synth_saw.wav,Keyboard,Synth +1,synth_prophet_pad.wav,Keyboard,Synth +1,synth_poly.wav,Keyboard,Synth +1,synth_plucks.wav,Keyboard,Synth +1,synth_plucked.wav,Keyboard,Synth +1,synth_pluck.wav,Keyboard,Synth +1,synth_pianola.wav,Keyboard,Synth +1,synth_pads.wav,Keyboard,Synth +1,synth_oberheim.wav,Keyboard,Synth +1,synth_minimoog.wav,Keyboard,Synth +1,synth_mini_moog_bass.wav,Keyboard,Synth +1,synth_mini_moog_12.wav,Keyboard,Synth +1,synth_mellotron_pluck.wav,Keyboard,Synth +1,synth_mellotron_clarinet.wav,Keyboard,Synth +1,synth_leads.wav,Keyboard,Synth +1,synth_lead_2.wav,Keyboard,Synth +1,synth_lead+2.wav,Keyboard,Synth +1,synth_jupiter.wav,Keyboard,Synth +1,synth_gtr.wav,Keyboard,Synth +1,synth_fm.wav,Keyboard,Synth +1,synth_flute_mellotron 12.wav,Keyboard,Synth +1,synth_diva_sine.wav,Keyboard,Synth +1,synth_dist_lead.wav,Keyboard,Synth +1,synth_clavinet.wav,Keyboard,Synth +1,synth_clavier.wav,Keyboard,Synth +1,synth_brass_pad.wav,Keyboard,Synth +1,synth_brass_1+2.wav,Keyboard,Synth +1,synth_bending.wav,Keyboard,Synth +1,synth_bell.wav,Keyboard,Synth +1,synth_accordion.wav,Keyboard,Synth +1,synth_1 intro three little keys.wav,Keyboard,Synth +1,synth_1 2 3.wav,Keyboard,Synth +1,synth_02.wav,Keyboard,Synth +1,synth_01.wav,Keyboard,Synth +1,synth56.wav,Keyboard,Synth +1,synth4 ringtone style.wav,Keyboard,Synth +1,synth4 bells.wav,Keyboard,Synth +1,synth3low.wav,Keyboard,Synth +1,synth3 organ-style.wav,Keyboard,Synth +1,synth3 boing.wav,Keyboard,Synth +1,synth3 bass.wav,Keyboard,Synth +1,synth3 + voicesynth2.wav,Keyboard,Synth +1,synth24 and vox.wav,Keyboard,Synth +1,synth23.wav,Keyboard,Synth +1,synth2+4+5mix.wav,Keyboard,Synth +1,synth2&3mix.wav,Keyboard,Synth +1,synth2 end.wav,Keyboard,Synth +1,synth2 electronic bips.wav,Keyboard,Synth +1,synth2 bass.wav,Keyboard,Synth +1,synth13.wav,Keyboard,Synth +1,synth12467.wav,Keyboard,Synth +1,synth123 and pad.wav,Keyboard,Synth +1,synth1+2mix.wav,Keyboard,Synth +1,synth1 trance.wav,Keyboard,Synth +1,synth1 pizz.wav,Keyboard,Synth +1,synth1 bells.wav,Keyboard,Synth +1,synth-solo.wav,Keyboard,Synth +1,synth-siren.wav,Keyboard,Synth +1,synth-perc-arpeggiator.wav,Keyboard,Synth +1,synth-other.wav,Keyboard,Synth +1,synth-main.wav,Keyboard,Synth +1,synth-lead-2.wav,Keyboard,Synth +1,synth-lead-1.wav,Keyboard,Synth +1,synth-glide.wav,Keyboard,Synth +1,synth-fx.wav,Keyboard,Synth +1,synth-chorus.wav,Keyboard,Synth +1,synth-chords.wav,Keyboard,Synth +1,synth-choir.wav,Keyboard,Synth +1,synth-brass.wav,Keyboard,Synth +1,synth-bells.wav,Keyboard,Synth +1,synth-bell.wav,Keyboard,Synth +1,synth-bass-2.wav,Keyboard,Synth +1,synth-and-melodyca.wav,Keyboard,Synth +1,synth-7.wav,Keyboard,Synth +1,synth-6.wav,Keyboard,Synth +1,synth-5.wav,Keyboard,Synth +1,synth-12.wav,Keyboard,Synth +1,synth-1 arr fx.wav,Keyboard,Synth +1,synth+fx.wav,Keyboard,Synth +1,synth(saw).wav,Keyboard,Synth +1,synth(poly).wav,Keyboard,Synth +1,synth(plucked).wav,Keyboard,Synth +1,synth wood.wav,Keyboard,Synth +1,synth wha.wav,Keyboard,Synth +1,synth vx.wav,Keyboard,Synth +1,synth vox fx.wav,Keyboard,Synth +1,synth voice.wav,Keyboard,Synth +1,synth vocal eh.wav,Keyboard,Synth +1,synth vintage.wav,Keyboard,Synth +1,synth vibrato lead.wav,Keyboard,Synth +1,synth various.wav,Keyboard,Synth +1,synth uh.wav,Keyboard,Synth +1,synth trumpet.wav,Keyboard,Synth +1,synth trs filter.wav,Keyboard,Synth +1,synth trance.wav,Keyboard,Synth +1,synth trance 2.wav,Keyboard,Synth +1,synth trance 1.wav,Keyboard,Synth +1,synth theme trance.wav,Keyboard,Synth +1,synth swell and extra.wav,Keyboard,Synth +1,synth swell 80s.wav,Keyboard,Synth +1,synth sweep.wav,Keyboard,Synth +1,synth strings arr.wav,Keyboard,Synth +1,synth strings 123 and horns.wav,Keyboard,Synth +1,synth strings 1 + 2.wav,Keyboard,Synth +1,synth stab.wav,Keyboard,Synth +1,synth square 1+2.wav,Keyboard,Synth +1,synth slides.wav,Keyboard,Synth +1,synth siren.wav,Keyboard,Synth +1,synth sequenced.wav,Keyboard,Synth +1,synth saw lead.wav,Keyboard,Synth +1,synth saw 2.wav,Keyboard,Synth +1,synth pluged.wav,Keyboard,Synth +1,synth plucks.wav,Keyboard,Synth +1,synth pluck 2 + synth brass.wav,Keyboard,Synth +1,synth pizzicato.wav,Keyboard,Synth +1,synth percussive.wav,Keyboard,Synth +1,synth perc loop.wav,Keyboard,Synth +1,synth pedal.wav,Keyboard,Synth +1,synth pan flanger.wav,Keyboard,Synth +1,synth pad2.wav,Keyboard,Synth +1,synth pad1.wav,Keyboard,Synth +1,synth pad(fx).wav,Keyboard,Synth +1,synth pad vocals.wav,Keyboard,Synth +1,synth pad lo.wav,Keyboard,Synth +1,synth pad key.wav,Keyboard,Synth +1,synth pad hi.wav,Keyboard,Synth +1,synth pad end.wav,Keyboard,Synth +1,synth pad bright.wav,Keyboard,Synth +1,synth pad 4.wav,Keyboard,Synth +1,synth pad 3.wav,Keyboard,Synth +1,synth pad 123.wav,Keyboard,Synth +1,synth pad 1 2.wav,Keyboard,Synth +1,synth p.wav,Keyboard,Synth +1,synth p + pad + lead synth 1 + 2.wav,Keyboard,Synth +1,synth organ sfx.wav,Keyboard,Synth +1,synth notes.wav,Keyboard,Synth +1,synth noisy + glitch loop + wind pad.wav,Keyboard,Synth +1,synth new.wav,Keyboard,Synth +1,synth moog2+pad.wav,Keyboard,Synth +1,synth moog.wav,Keyboard,Synth +1,synth moog 1.wav,Keyboard,Synth +1,synth mix.wav,Keyboard,Synth +1,synth misc + glitch.wav,Keyboard,Synth +1,synth metal pluck.wav,Keyboard,Synth +1,synth melody.wav,Keyboard,Synth +1,synth melodie.wav,Keyboard,Synth +1,synth melo bells.wav,Keyboard,Synth +1,synth low.wav,Keyboard,Synth +1,synth loop.wav,Keyboard,Synth +1,synth line.wav,Keyboard,Synth +1,synth lfo1.wav,Keyboard,Synth +1,synth lfo 2.wav,Keyboard,Synth +1,synth left.wav,Keyboard,Synth +1,synth leads 2 moog.wav,Keyboard,Synth +1,synth leads 1.wav,Keyboard,Synth +1,synth lead_ok.wav,Keyboard,Synth +1,synth lead+string+synth.wav,Keyboard,Synth +1,synth lead right.wav,Keyboard,Synth +1,synth lead mix.wav,Keyboard,Synth +1,synth lead ep.wav,Keyboard,Synth +1,synth lead disto.wav,Keyboard,Synth +1,synth lead d+synth flute.wav,Keyboard,Synth +1,synth lead c.wav,Keyboard,Synth +1,synth lead bus.wav,Keyboard,Synth +1,synth lead bass.wav,Keyboard,Synth +1,synth lead bass add.wav,Keyboard,Synth +1,synth lead b.wav,Keyboard,Synth +1,synth lead a.wav,Keyboard,Synth +1,synth lead 4.wav,Keyboard,Synth +1,synth lead 2 right.wav,Keyboard,Synth +1,synth lead 2 + 3 + arp.wav,Keyboard,Synth +1,synth lead 1+2.wav,Keyboard,Synth +1,synth lead 1 high.wav,Keyboard,Synth +1,synth lead 1 2 3.wav,Keyboard,Synth +1,synth lead 1 + arr.wav,Keyboard,Synth +1,synth lead 1 + 2.wav,Keyboard,Synth +1,synth keys roland juno.wav,Keyboard,Synth +1,synth keys piano.wav,Keyboard,Synth +1,synth key + choir.wav,Keyboard,Synth +1,synth intro outro.wav,Keyboard,Synth +1,synth horns.wav,Keyboard,Synth +1,synth horn.wav,Keyboard,Synth +1,synth hoover.wav,Keyboard,Synth +1,synth high.wav,Keyboard,Synth +1,synth hi.wav,Keyboard,Synth +1,synth hammond.wav,Keyboard,Synth +1,synth guitary.wav,Keyboard,Synth +1,synth guitar 2.wav,Keyboard,Synth +1,synth guitar 2+3+4+5.wav,Keyboard,Synth +1,synth guitar 1.wav,Keyboard,Synth +1,synth guit dist.wav,Keyboard,Synth +1,synth guit 3 (left).wav,Keyboard,Synth +1,synth guit 2.wav,Keyboard,Synth +1,synth guit 1.wav,Keyboard,Synth +1,synth growl.wav,Keyboard,Synth +1,synth glissando.wav,Keyboard,Synth +1,synth glide.wav,Keyboard,Synth +1,synth giut.wav,Keyboard,Synth +1,synth gated.wav,Keyboard,Synth +1,synth fx loop.wav,Keyboard,Synth +1,synth fx arr.wav,Keyboard,Synth +1,synth fx 2.wav,Keyboard,Synth +1,synth fx 1.wav,Keyboard,Synth +1,synth fix.wav,Keyboard,Synth +1,synth final.wav,Keyboard,Synth +1,synth filter.wav,Keyboard,Synth +1,synth filter and bleeps.wav,Keyboard,Synth +1,synth fill.wav,Keyboard,Synth +1,synth extra.wav,Keyboard,Synth +1,synth ending.wav,Keyboard,Synth +1,synth drone.wav,Keyboard,Synth +1,synth distor2 arr end.wav,Keyboard,Synth +1,synth distor.wav,Keyboard,Synth +1,synth dis + dis2 + gtrs dis.wav,Keyboard,Synth +1,synth d.wav,Keyboard,Synth +1,synth clochettes.wav,Keyboard,Synth +1,synth clavinet.wav,Keyboard,Synth +1,synth chrom perc.wav,Keyboard,Synth +1,synth choruses.wav,Keyboard,Synth +1,synth chords.wav,Keyboard,Synth +1,synth chord.wav,Keyboard,Synth +1,synth choirs.wav,Keyboard,Synth +1,synth center.wav,Keyboard,Synth +1,synth c.wav,Keyboard,Synth +1,synth break.wav,Keyboard,Synth +1,synth brass bass.wav,Keyboard,Synth +1,synth brass 12.wav,Keyboard,Synth +1,synth bending light + mellotron + choir.wav,Keyboard,Synth +1,synth bend.wav,Keyboard,Synth +1,synth bells+flute.wav,Keyboard,Synth +1,synth bells + choir.wav,Keyboard,Synth +1,synth bell+bells+piano+noise.wav,Keyboard,Synth +1,synth bell 2.wav,Keyboard,Synth +1,synth basse.wav,Keyboard,Synth +1,synth bass-1.wav,Keyboard,Synth +1,synth bass riff.wav,Keyboard,Synth +1,synth bass pluck.wav,Keyboard,Synth +1,synth bass mono.wav,Keyboard,Synth +1,synth bass mix.wav,Keyboard,Synth +1,synth bass main 2.wav,Keyboard,Synth +1,synth bass dist.wav,Keyboard,Synth +1,synth bass and bass synth.wav,Keyboard,Synth +1,synth bass 3.wav,Keyboard,Synth +1,synth bass 12.wav,Keyboard,Synth +1,synth bass 1+2.wav,Keyboard,Synth +1,synth bass 1 + 2.wav,Keyboard,Synth +1,synth bass + sound effects.wav,Keyboard,Synth +1,synth bass + outro.wav,Keyboard,Synth +1,synth bass + ep + pads+stabs.wav,Keyboard,Synth +1,synth back2_ok.wav,Keyboard,Synth +1,synth back1_ok.wav,Keyboard,Synth +1,synth b.wav,Keyboard,Synth +1,synth arr+main.wav,Keyboard,Synth +1,synth arr main.wav,Keyboard,Synth +1,synth arps.wav,Keyboard,Synth +1,synth arpeggio.wav,Keyboard,Synth +1,synth arp brass.wav,Keyboard,Synth +1,synth arp 1+2+3.wav,Keyboard,Synth +1,synth and synthfx.wav,Keyboard,Synth +1,synth and strings.wav,Keyboard,Synth +1,synth and pad.wav,Keyboard,Synth +1,synth and lead keys.wav,Keyboard,Synth +1,synth and ep.wav,Keyboard,Synth +1,synth ambiance.wav,Keyboard,Synth +1,synth amb.wav,Keyboard,Synth +1,synth amb mix.wav,Keyboard,Synth +1,synth adds and fx end.wav,Keyboard,Synth +1,synth adds 3.wav,Keyboard,Synth +1,synth adds 1.wav,Keyboard,Synth +1,synth accordion.wav,Keyboard,Synth +1,synth accordion left.wav,Keyboard,Synth +1,synth accordeon.wav,Keyboard,Synth +1,synth 6 arr.wav,Keyboard,Synth +1,synth 56 and resample.wav,Keyboard,Synth +1,synth 5 whistle.wav,Keyboard,Synth +1,synth 5 right.wav,Keyboard,Synth +1,synth 4 solo.wav,Keyboard,Synth +1,synth 4 left.wav,Keyboard,Synth +1,synth 4 bass.wav,Keyboard,Synth +1,synth 4 - pad subtle.wav,Keyboard,Synth +1,synth 3+4.wav,Keyboard,Synth +1,synth 3 solo.wav,Keyboard,Synth +1,synth 3 robot.wav,Keyboard,Synth +1,synth 3 disto end.wav,Keyboard,Synth +1,synth 3 bells.wav,Keyboard,Synth +1,synth 3 bass.wav,Keyboard,Synth +1,synth 2aig.wav,Keyboard,Synth +1,synth 234.wav,Keyboard,Synth +1,synth 2-1.wav,Keyboard,Synth +1,synth 2+3.wav,Keyboard,Synth +1,synth 2 wah.wav,Keyboard,Synth +1,synth 2 stringy.wav,Keyboard,Synth +1,synth 2 square lead.wav,Keyboard,Synth +1,synth 2 sncf.wav,Keyboard,Synth +1,synth 2 minilead end.wav,Keyboard,Synth +1,synth 2 keys reverb right.wav,Keyboard,Synth +1,synth 2 harp.wav,Keyboard,Synth +1,synth 2 bells and synth 4 bells.wav,Keyboard,Synth +1,synth 2 arr.wav,Keyboard,Synth +1,synth 2 aigu.wav,Keyboard,Synth +1,synth 2 4.wav,Keyboard,Synth +1,synth 2 3 4 5.wav,Keyboard,Synth +1,synth 2 + pads.wav,Keyboard,Synth +1,synth 2 + 5.wav,Keyboard,Synth +1,synth 1bas.wav,Keyboard,Synth +1,synth 1234 pad.wav,Keyboard,Synth +1,synth 1-1.wav,Keyboard,Synth +1,synth 1+pad+saw pad.wav,Keyboard,Synth +1,synth 1+4mix.wav,Keyboard,Synth +1,synth 1+3.wav,Keyboard,Synth +1,synth 1+2mix.wav,Keyboard,Synth +1,synth 1+2.wav,Keyboard,Synth +1,synth 1 weird.wav,Keyboard,Synth +1,synth 1 sine.wav,Keyboard,Synth +1,synth 1 rise.wav,Keyboard,Synth +1,synth 1 organ style.wav,Keyboard,Synth +1,synth 1 keys.wav,Keyboard,Synth +1,synth 1 fx.wav,Keyboard,Synth +1,synth 1 2.wav,Keyboard,Synth +1,synth 1 + pad.wav,Keyboard,Synth +1,synth 1 + 2.wav,Keyboard,Synth +1,synth 1 + 2 + 4 + 5 + choir + strings.wav,Keyboard,Synth +1,synth 05 percs.wav,Keyboard,Synth +1,synth 05 arr.wav,Keyboard,Synth +1,synth 03 intro.wav,Keyboard,Synth +1,synth 03 arr.wav,Keyboard,Synth +1,synth 02 siren rise.wav,Keyboard,Synth +1,synth 01 bells.wav,Keyboard,Synth +1,synth 0 1.wav,Keyboard,Synth +1,synth + synthkey.wav,Keyboard,Synth +1,synth + synth strings.wav,Keyboard,Synth +1,synth + synth fx.wav,Keyboard,Synth +1,synth + synth 2.wav,Keyboard,Synth +1,synth + pad.wav,Keyboard,Synth +1,syntch & fx.wav,Keyboard,Synth +1,syntarr and fx.wav,Keyboard,Synth +1,synht bass.wav,Keyboard,Synth +1,synhpad.wav,Keyboard,Synth +1,synhbrass.wav,Keyboard,Synth +1,syn fx.wav,Keyboard,Synth +1,syleena johnson.wav,Other, +1,sx.wav,Other, +1,swizz beatz.wav,Other, +1,swell gtr.wav,Other, +1,sweetie irie.wav,Other, +1,sweeps.wav,Other, +1,sweepfx.wav,Other, +1,sweep pad.wav,Other, +1,swae lee.wav,Other, +1,susan ann sulley.wav,Other, +1,supersawsynth.wav,Other, +1,super fat moog.wav,Other, +1,subtraktor.wav,Other, +1,submarine voice.wav,Other, +1,subbass+synthbass.wav,Other, +1,sub fx.wav,Other, +1,sub drop.wav,Other, +1,sub drive.wav,Other, +1,sub bass drop.wav,Other, +1,su-metal.wav,Other, +1,strummign ag.wav,Other, +1,strum synth.wav,Other, +1,strum guit.wav,Other, +1,strq.wav,Other, +1,stringstheme.wav,Other, +1,stringsreal.wav,Keyboard,Synth Strings +1,stringspadspizzicato.wav,Keyboard,Synth Strings +1,stringsmidi.wav,Keyboard,Synth Strings +1,strings12 choir.wav,Keyboard,Synth Strings +1,strings-sample.wav,Keyboard,Synth Strings +1,strings-01.wav,Keyboard,Synth Strings +1,strings-.wav,Keyboard,Synth Strings +1,strings+pad.wav,Keyboard,Synth Strings +1,strings+flute.wav,Keyboard,Synth Strings +1,strings violin cello harp.wav,Keyboard,Synth Strings +1,strings synths.wav,Keyboard,Synth Strings +1,strings s.wav,Keyboard,Synth Strings +1,strings pizzicato.wav,Keyboard,Synth Strings +1,strings pizz.wav,Keyboard,Synth Strings +1,strings pad and flutes.wav,Keyboard,Synth Strings +1,strings outro.wav,Keyboard,Synth Strings +1,strings keys.wav,Keyboard,Synth Strings +1,strings intro.wav,Keyboard,Synth Strings +1,strings horns.wav,Keyboard,Synth Strings +1,strings hook.wav,Keyboard,Synth Strings +1,strings et violons.wav,Keyboard,Synth Strings +1,strings ensemble.wav,Keyboard,Synth Strings +1,strings ensamble.wav,Keyboard,Synth Strings +1,strings ens.wav,Keyboard,Synth Strings +1,strings chorus.wav,Keyboard,Synth Strings +1,strings choir.wav,Keyboard,Synth Strings +1,strings buzz.wav,Keyboard,Synth Strings +1,strings and tympani.wav,Keyboard,Synth Strings +1,strings and synth6.wav,Keyboard,Synth Strings +1,strings and synth strings.wav,Keyboard,Synth Strings +1,strings and superstrings.wav,Keyboard,Synth Strings +1,strings and glide.wav,Keyboard,Synth Strings +1,strings and brass.wav,Keyboard,Synth Strings +1,strings add.wav,Keyboard,Synth Strings +1,strings 3.wav,Keyboard,Synth Strings +1,strings 2 adds.wav,Keyboard,Synth Strings +1,strings 123.wav,Keyboard,Synth Strings +1,strings 12.wav,Keyboard,Synth Strings +1,strings + pad.wav,Keyboard,Synth Strings +1,strings + lead + synth strings.wav,Keyboard,Synth Strings +1,strings + harp.wav,Keyboard,Synth Strings +1,stringhit.wav,Keyboard,Synth Strings +1,string_pad.wav,Keyboard,Synth Strings +1,string staccato.wav,Keyboard,Synth Strings +1,string sect.wav,Keyboard,Synth Strings +1,string pizzi.wav,Keyboard,Synth Strings +1,string pad.wav,Keyboard,Synth Strings +1,string horn.wav,Keyboard,Synth Strings +1,string ensemble+orchestramix.wav,Keyboard,Synth Strings +1,string ensamble.wav,Keyboard,Synth Strings +1,string dirt.wav,Keyboard,Synth Strings +1,string and pads.wav,Keyboard,Synth Strings +1,string 2.wav,Keyboard,Synth Strings +1,stribgs.wav,Keyboard,Synth Strings +1,stre.wav,Keyboard,Synth Strings +1,str section.wav,Keyboard,Synth Strings +1,str mixmaster.wav,Keyboard,Synth Strings +1,stomps.wav,Other, +1,sticks.wav,Other, +1,steve winwood.wav,Other, +1,stereo eg.wav,Other, +1,stereo eg(treble).wav,Other, +1,steelgt.wav,Other, +1,steelgong.wav,Other, +1,steeldrums + flute.wav,Other, +1,steeldrum.wav,Other, +1,steel-noisegate.wav,Other, +1,steel string.wav,Other, +1,steel drums end.wav,Other, +1,stack synths.wav,Other, +1,staccato dx7.wav,Other, +1,stac synth.wav,Other, +1,stab.wav,Other, +1,sringy.wav,Other, +1,square wave.wav,Other, +1,square synths.wav,Other, +1,square beep.wav,Other, +1,sq wave.wav,Other, +1,spooky.wav,Other, +1,spoken vocals.wav,Other, +1,spoken (chat).wav,Other, +1,spicatto strings.wav,Other, +1,spanishgtr.wav,Acoustic Guitar, +1,spanish guitar left.wav,Acoustic Guitar, +1,spanish guitar 3 left.wav,Acoustic Guitar, +1,spanish guitar 2.wav,Acoustic Guitar, +1,spanish guitar 1.wav,Acoustic Guitar, +1,spanish gtr left(nylon).wav,Acoustic Guitar, +1,span guitar.wav,Acoustic Guitar, +1,space str synth.wav,Other, +1,sp gtr.wav,Acoustic Guitar, +1,soyeon.wav,Other, +1,soundfx crowd live.wav,Other, +1,sound.wav,Other, +1,sound-fx.wav,Other, +1,sound fxs.wav,Other, +1,sound fx train.wav,Other, +1,sound 1.wav,Other, +1,soulja boy.wav,Other, +1,song key.wav,Other, +1,sonar and rotor.wav,Other, +1,solotalkback.wav,Other, +1,solosax.wav,Other, +1,sologtrr.wav,Electric Guitar, +1,sologtrl.wav,Electric Guitar, +1,sologtr2.wav,Electric Guitar, +1,sologtr1.wav,Electric Guitar, +1,sologtr 5.wav,Electric Guitar, +1,solo_guitars.wav,Electric Guitar, +1,solo_electric_guitar_1+2+arr.wav,Electric Guitar, +1,solo_electric_guitar.wav,Electric Guitar, +1,solo synth 2.wav,Other, +1,solo slide.wav,Electric Guitar, +1,solo sax real.wav,Other, +1,solo right.wav,Electric Guitar, +1,solo piano.wav,Other, +1,solo gtr.wav,Electric Guitar, +1,solo gtr 2.wav,Electric Guitar, +1,solo gtr 1.wav,Electric Guitar, +1,solo gt.wav,Electric Guitar, +1,solo eguitar.wav,Electric Guitar, +1,solo eg 2.wav,Electric Guitar, +1,solo eg 1.wav,Electric Guitar, +1,solo disto eg.wav,Electric Guitar, +1,solo clean eg.wav,Electric Guitar, +1,solina_strings_synth.wav,Other, +1,solina_orchestra_synth.wav,Other, +1,solina organ.wav,Other, +1,softstrings.wav,Other, +1,softbells.wav,Other, +1,soft pad + bubble.wav,Other, +1,snoop.wav,Other, +1,snoop dogg-adlib.wav,Other, +1,smotth synth + low.wav,Other, +1,slowdown fx.wav,Other, +1,slow downfx end.wav,Other, +1,slow down.wav,Other, +1,slide4.wav,Other, +1,slide3.wav,Other, +1,slide2.wav,Other, +1,slide1.wav,Other, +1,slide gtr arr.wav,Other, +1,slide eg.wav,Other, +1,slide eg fxs.wav,Other, +1,slide + lapsteel.wav,Other, +1,sleigh bells.wav,Other, +1,sleep token the summoning synth bass.wav,Bass Guitar, +1,sleep token the summoning piano.wav,Piano, +1,sleep token the summoning perc.wav,Percussion, +1,sleep token the summoning guitar 4.wav,Electric Guitar,Electric 4 +1,sleep token the summoning guitar 3.wav,Electric Guitar,Electric 3 +1,sleep token the summoning guitar 2.wav,Electric Guitar,Electric 2 +1,sleep token the summoning guitar 1.wav,Electric Guitar,Electric 1 +1,sleep token the summoning drum.wav,Drums, +1,sleep token the summoning bv.wav,Voice,Backing +1,sleep token the summoning bass.wav,Bass Guitar, +1,sld gtr2.wav,Other, +1,sld gtr1.wav,Other, +1,slap bass.wav,Other, +1,slap bas.wav,Other, +1,skit.wav,Other, +1,skillibeng.wav,Other, +1,skepta.wav,Other, +1,six two.wav,Other, +1,sitarish.wav,Sitar, +1,sitare.wav,Sitar, +1,sitar-01.wav,Sitar, +1,sitar 2.wav,Sitar, +1,sitar 1.wav,Sitar, +1,sirenfx.wav,Other, +1,sinth a.wav,Other, +1,sine wave noise.wav,Other, +1,sine synths.wav,Other, +1,sine pad+synth lead 2.wav,Other, +1,sine lead.wav,Other, +1,sine fx.wav,Other, +1,simple saw.wav,Other, +1,sierra kusterbeck.wav,Other, +1,sidechain_flutes.wav,Other, +1,sia.wav,Other, +1,short tone.wav,Other, +1,short cord.wav,Other, +1,shock g.wav,Other, +1,shneezin.wav,Other, +1,sheila e..wav,Other, +1,shay.wav,Other, +1,shawnna.wav,Other, +1,shawna.wav,Other, +1,shawn stockman.wav,Other, +1,shawn mendes.wav,Other, +1,shawn mendes-adlib.wav,Other, +1,sharon costanzo.wav,Other, +1,shannon hoon.wav,Other, +1,shania twain.wav,Other, +1,shaker_1.wav,Other, +1,shaker+tambourine.wav,Other, +1,shaker congas.wav,Other, +1,shaker castanets congas claps.wav,Other, +1,shaker add.wav,Other, +1,shae.wav,Other, +1,sfxs.wav,Computer,SFX +1,sfxes_ok.wav,Computer,SFX +1,sfx+gt fx.wav,Computer,SFX +1,sfx+applausemix.wav,Computer,SFX +1,sfx wah.wav,Computer,SFX +1,sfx vynil craklings.wav,Computer,SFX +1,sfx vynil cracks.wav,Computer,SFX +1,sfx vocal2.wav,Computer,SFX +1,sfx street cars.wav,Computer,SFX +1,sfx scratch.wav,Computer,SFX +1,sfx lighter.wav,Computer,SFX +1,sfx intro.wav,Computer,SFX +1,sfx gun shot.wav,Computer,SFX +1,sfx distant scream.wav,Computer,SFX +1,sfx crowd.wav,Computer,SFX +1,sfx crowd applause.wav,Computer,SFX +1,sfx children.wav,Computer,SFX +1,sfx arp synth.wav,Computer,SFX +1,sfx and synth 2.wav,Computer,SFX +1,sfx and 2.wav,Computer,SFX +1,sfx addsynth growl granular.wav,Computer,SFX +1,sfx 2 risers.wav,Computer,SFX +1,sfx 2 crowd.wav,Computer,SFX +1,sfx 1 breathing.wav,Computer,SFX +1,sf.wav,Other, +1,sf crowd.wav,Other, +1,serj tankian.wav,Other, +1,sequence.wav,Other, +1,seq synths 2.wav,Other, +1,seq synths 1 disto.wav,Other, +1,seq arp.wav,Other, +1,seq synth.wav,Other, +1,search and destroy the stooges ld.wav,Voice,Lead +1,search and destroy the stooges e guitar lead.wav,Electric Guitar,Lead +1,search and destroy the stooges e guitar fuzz.wav,Electric Guitar,Fuzz +1,search and destroy the stooges e guitar dist.wav,Electric Guitar,Distorted +1,search and destroy the stooges drums.wav,Drums, +1,search and destroy the stooges bass.wav,Bass Guitar, +1,seal.wav,Other, +1,scream.wav,Other, +1,scream sample.wav,Other, +1,scrathces.wav,Other,Scratches +1,scratchfx.wav,Other,Scratches +1,scratches_vinyl.wav,Other,Scratches +1,scratches+clap+fxmix.wav,Other,Scratches +1,scratch12 and fxs.wav,Other,Scratches +1,scratch+fx mix.wav,Other,Scratches +1,scratch vinyl.wav,Other,Scratches +1,scratch fx.wav,Other,Scratches +1,scratch and car fx.wav,Other,Scratches +1,scracth eg.wav,Other, +1,schoolboy.wav,Other, +1,schoolboy q.wav,Other, +1,scartch.wav,Other, +1,saxsolo.wav,Saxophone, +1,saxophones.wav,Saxophone, +1,saxophone bar.wav,Saxophone, +1,saxophone alto.wav,Saxophone, +1,saxo solos.wav,Saxophone, +1,saxaphone.wav,Saxophone, +1,sax_solo.wav,Saxophone, +1,sax_2.wav,Saxophone, +1,sax_1.wav,Saxophone, +1,sax1+2.wav,Saxophone, +1,sax1 + brasses.wav,Saxophone, +1,sax-stan getz.wav,Saxophone, +1,sax(solo).wav,Saxophone, +1,sax tenor + alto.wav,Saxophone, +1,sax s.wav,Saxophone, +1,sax mix.wav,Saxophone, +1,sax fx.wav,Saxophone, +1,sax 4.wav,Saxophone, +1,sax 1+2.wav,Saxophone, +1,sax 02.wav,Saxophone, +1,sax 01.wav,Saxophone, +1,sax + trumpet.wav,Saxophone, +1,sawsynth2.wav,Other, +1,saws ynth.wav,Other, +1,saw wave.wav,Other, +1,saw 2.wav,Other, +1,saw 1.wav,Other, +1,satan.wav,Other, +1,sarah brightman.wav,Other, +1,santur.wav,Other, +1,santoor.wav,Other, +1,sansa.wav,Other, +1,samples.wav,Other, +1,samples+fx.wav,Other, +1,sampleintro.wav,Other, +1,samplee.wav,Other, +1,sampled choir.wav,Other, +1,sample vocals.wav,Other, +1,sample of marvin gaye lets get it on.wav,Other, +1,sample loop.wav,Other, +1,sample guitare-cocot.wav,Other, +1,sample guitare-clean.wav,Other, +1,sample fx.wav,Other, +1,sample fx track.wav,Other, +1,sample 4.wav,Other, +1,sample 3.wav,Other, +1,sample 2.wav,Other, +1,sample 1.wav,Other, +1,sam harris.wav,Other, +1,sakura.wav,Other, +1,sabaton the last stand vocal synth.wav,Keyboard,Synth Vox +1,sabaton the last stand synth 3.wav,Keyboard,Synth 3 +1,sabaton the last stand synth 2.wav,Keyboard,Synth 2 +1,sabaton the last stand synth 1.wav,Keyboard,Synth 1 +1,sabaton the last stand lv.wav,Voice,Lead +1,sabaton the last stand guitar 5.wav,Electric Guitar,Electric 5 +1,sabaton the last stand guitar 4.wav,Electric Guitar,Electric 4 +1,sabaton the last stand guitar 3.wav,Electric Guitar,Electric 3 +1,sabaton the last stand guitar 2.wav,Electric Guitar,Electric 2 +1,sabaton the last stand guitar 1.wav,Electric Guitar,Electric 1 +1,sabaton the last stand fx.wav,Other,FX +1,sabaton the last stand drum.wav,Drums, +1,sabaton the last stand bv.wav,Voice,Backing +1,sabaton the last stand bass.wav,Bass Guitar, +1,s_xylophone.wav,Other, +1,s_woodwind.wav,Other, +1,s_vox_sample.wav,Other, +1,s_vox sample.wav,Other, +1,s_vox fx.wav,Other, +1,s_vocoder.wav,Other, +1,s_vocal sample.wav,Other, +1,s_vocal fx.wav,Other, +1,s_violas.wav,Other, +1,s_vinyl_noise.wav,Other, +1,s_vinyl sample.wav,Other, +1,s_vinyl fx.wav,Other, +1,s_vibraphone_outro.wav,Other, +1,s_upright bass.wav,Other, +1,s_upbass.wav,Other, +1,s_ukelele.wav,Other, +1,s_trb section.wav,Other, +1,s_toms.wav,Other, +1,s_theme.wav,Other, +1,s_tbn.wav,Other, +1,s_tape hiss.wav,Other, +1,s_tambourines.wav,Other, +1,s_synths organ.wav,Keyboard,Synth +1,s_synths intro.wav,Keyboard,Synth +1,s_synths 2.wav,Keyboard,Synth +1,s_synthbass.wav,Keyboard,Synth +1,s_synth_melody.wav,Keyboard,Synth +1,s_synth_lfo.wav,Keyboard,Synth +1,s_synth_lead_filt.wav,Keyboard,Synth +1,s_synth_classic.wav,Keyboard,Synth +1,s_synth_bells.wav,Keyboard,Synth +1,s_synth_arp.wav,Keyboard,Synth +1,s_synth_add.wav,Keyboard,Synth +1,s_synth7 right.wav,Keyboard,Synth +1,s_synth6.wav,Keyboard,Synth +1,s_synth5 right.wav,Keyboard,Synth +1,s_synth3 disto bits.wav,Keyboard,Synth +1,s_synth2 theme.wav,Keyboard,Synth +1,s_synth2 chrom percs.wav,Keyboard,Synth +1,s_synth1 right.wav,Keyboard,Synth +1,s_synth uh vocal.wav,Keyboard,Synth +1,s_synth triangle.wav,Keyboard,Synth +1,s_synth strings 2.wav,Keyboard,Synth +1,s_synth sound effects.wav,Keyboard,Synth +1,s_synth solo.wav,Keyboard,Synth +1,s_synth rave.wav,Keyboard,Synth +1,s_synth pluck.wav,Keyboard,Synth +1,s_synth oh.wav,Keyboard,Synth +1,s_synth harp.wav,Keyboard,Synth +1,s_synth fx.wav,Keyboard,Synth +1,s_synth arpeg.wav,Keyboard,Synth +1,s_synth arp.wav,Keyboard,Synth +1,s_sweeps.wav,Keyboard,Synth +1,s_sweep fx.wav,Keyboard,Synth +1,s_strings_trill.wav,Keyboard,Synth Strings +1,s_strings_outro.wav,Keyboard,Synth Strings +1,s_strings_3.wav,Keyboard,Synth Strings +1,s_strings_2.wav,Keyboard,Synth Strings +1,s_strings_1.wav,Keyboard,Synth Strings +1,s_strings sect.wav,Keyboard,Synth Strings +1,s_strings sampled.wav,Keyboard,Synth Strings +1,s_strings mellotron.wav,Keyboard,Synth Strings +1,s_strings 2.wav,Keyboard,Synth Strings +1,s_string synth.wav,Keyboard,Synth Strings +1,s_string sect.wav,Keyboard,Synth Strings +1,s_string pluck.wav,Keyboard,Synth Strings +1,s_string arpeg.wav,Keyboard,Synth Strings +1,s_steps.wav,Other, +1,s_steel.wav,Other, +1,s_steel gtr.wav,Other, +1,s_steel drums.wav,Other, +1,s_sound effects hits.wav,Other, +1,s_sonar synth.wav,Other, +1,s_snaps.wav,Other, +1,s_slide.wav,Other, +1,s_sitar.wav,Other, +1,s_sine.wav,Other, +1,s_sikus.wav,Other, +1,s_sfx 2.wav,Other, +1,s_screams.wav,Other, +1,s_saxs.wav,Other, +1,s_saxlead.wav,Other, +1,s_saxes.wav,Other, +1,s_samples weird fx.wav,Other, +1,s_sampler.wav,Other, +1,s_sample vox.wav,Other, +1,s_risers.wav,Other, +1,s_riser.wav,Other, +1,s_prekey.wav,Other, +1,s_precount.wav,Other, +1,s_polysynth 2.wav,Other, +1,s_poly.wav,Other, +1,s_pluck2.wav,Other, +1,s_pluck1.wav,Other, +1,s_pluck synth.wav,Other, +1,s_piano_add.wav,Piano, +1,s_piano2.wav,Piano, +1,s_piano-notdups.wav,Piano, +1,s_piano+epiano.wav,Piano, +1,s_piano solo.wav,Piano, +1,s_piano pad.wav,Piano, +1,s_percussion 2.wav,Percussion, +1,s_percu.wav,Percussion, +1,s_percs and loops.wav,Percussion, +1,s_pedal steel 02.wav,Other, +1,s_pedal steel 01.wav,Other, +1,s_pad_melody_2.wav,Keyboard,Synth +1,s_pad_melody_1.wav,Keyboard,Synth +1,s_pad1.wav,Keyboard,Synth +1,s_pad synth.wav,Keyboard,Synth +1,s_pad 3.wav,Keyboard,Synth +1,s_pad 2.wav,Keyboard,Synth +1,s_pad 1.wav,Keyboard,Synth +1,s_organ2.wav,Keyboard,Organ +1,s_organ1.wav,Keyboard,Organ +1,s_organ 2.wav,Keyboard,Organ +1,s_org.wav,Keyboard,Organ +1,s_orch hit+tp+tbn+brass section.wav,Other, +1,s_orc.wav,Other, +1,s_old_drums.wav,Other, +1,s_mono synth.wav,Other, +1,s_melotron.wav,Other, +1,s_melody.wav,Other, +1,s_melodica.wav,Other, +1,s_mandolina.wav,Other, +1,s_mandolin+r+perc.wav,Other, +1,s_mallet.wav,Other, +1,s_main_synth.wav,Other, +1,s_main vocals.wav,Other, +1,s_lv-adlib.wav,Other, +1,s_lv 02.wav,Other, +1,s_lv 01.wav,Other, +1,s_low pad.wav,Other, +1,s_loop eg1.wav,Other, +1,s_leadsquare.wav,Other, +1,s_lead_guitar.wav,Other, +1,s_lead pluck.wav,Other, +1,s_lap steel.wav,Other, +1,s_koto.wav,Other, +1,s_kora.wav,Other, +1,s_kick bomb.wav,Other, +1,s_keys left.wav,Other, +1,s_key.wav,Other, +1,s_jaw harp.wav,Other, +1,s_intro eg.wav,Other, +1,s_horns.wav,Other, +1,s_hit.wav,Other, +1,s_hi perc.wav,Other, +1,s_hey.wav,Other, +1,s_harmonics_gtr.wav,Other, +1,s_hammond.wav,Other, +1,s_guzheng.wav,Other, +1,s_gunshot.wav,Other, +1,s_guitar.wav,Electric Guitar, +1,s_guit_theme.wav,Electric Guitar, +1,s_guit_slide.wav,Electric Guitar, +1,s_guit_sat.wav,Electric Guitar, +1,s_guit_fuzz.wav,Electric Guitar, +1,s_guit_effect.wav,Electric Guitar, +1,s_guit_clean_rythm.wav,Electric Guitar, +1,s_guit_clean_lead.wav,Electric Guitar, +1,s_guit_clean_back.wav,Electric Guitar, +1,s_guit_clean_3.wav,Electric Guitar, +1,s_guit_clean_2.wav,Electric Guitar, +1,s_guit_clean_1.wav,Electric Guitar, +1,s_guit_acoust.wav,Electric Guitar, +1,s_gtrsolo.wav,Electric Guitar, +1,s_gtrright.wav,Electric Guitar, +1,s_gtrl.wav,Electric Guitar, +1,s_gtr12.wav,Electric Guitar, +1,s_gtr1 r.wav,Electric Guitar, +1,s_gtr1 l.wav,Electric Guitar, +1,s_gtr synth.wav,Electric Guitar, +1,s_gtr solo2.wav,Electric Guitar, +1,s_gtr solo1.wav,Electric Guitar, +1,s_gtr perc.wav,Electric Guitar, +1,s_gtr pad.wav,Electric Guitar, +1,s_gtr fuzz.wav,Electric Guitar, +1,s_gtr cln.wav,Electric Guitar, +1,s_gtr c.wav,Electric Guitar, +1,s_glockenspiel.wav,Other, +1,s_fx2.wav,Other, +1,s_fx1.wav,Other, +1,s_fx-1.wav,Other, +1,s_fx slowdown.wav,Other, +1,s_fr horns.wav,Other, +1,s_fr horn section.wav,Other, +1,s_flutes.wav,Other, +1,s_flute_outro.wav,Other, +1,s_flute 2.wav,Other, +1,s_explotion fx.wav,Other, +1,s_ethnic synth.wav,Other, +1,s_electric guitar 2 muted.wav,Electric Guitar, +1,s_electric guitar 1muted.wav,Electric Guitar, +1,s_electric guitar 123.wav,Electric Guitar, +1,s_elec drums.wav,Other, +1,s_egtremolo.wav,Electric Guitar, +1,s_egright.wav,Electric Guitar, +1,s_egmuted.wav,Electric Guitar, +1,s_egleft.wav,Electric Guitar, +1,s_egcrunch.wav,Electric Guitar, +1,s_egbaritone.wav,Electric Guitar, +1,s_eg_rdisto.wav,Electric Guitar, +1,s_eg_ldisto.wav,Electric Guitar, +1,s_eg_lclean.wav,Electric Guitar, +1,s_eg5.wav,Electric Guitar, +1,s_eg3arr.wav,Electric Guitar, +1,s_eg2disto.wav,Electric Guitar, +1,s_eg2arr.wav,Electric Guitar, +1,s_eg2_r.wav,Electric Guitar, +1,s_eg2_l.wav,Electric Guitar, +1,s_eg2_1.wav,Electric Guitar, +1,s_eg1arr.wav,Electric Guitar, +1,s_eg1 r.wav,Electric Guitar, +1,s_eg wah.wav,Electric Guitar, +1,s_eg vibroverb.wav,Electric Guitar, +1,s_eg tremolo lead.wav,Electric Guitar, +1,s_eg tremolo 3.wav,Electric Guitar, +1,s_eg trem l.wav,Electric Guitar, +1,s_eg trem ctr.wav,Electric Guitar, +1,s_eg solo 3.wav,Electric Guitar, +1,s_eg slice.wav,Electric Guitar, +1,s_eg rythmic.wav,Electric Guitar, +1,s_eg rhythm.wav,Electric Guitar, +1,s_eg reverb.wav,Electric Guitar, +1,s_eg r1.wav,Electric Guitar, +1,s_eg pads.wav,Electric Guitar, +1,s_eg ov.wav,Electric Guitar, +1,s_eg od.wav,Electric Guitar, +1,s_eg lider.wav,Electric Guitar, +1,s_eg lead 2.wav,Electric Guitar, +1,s_eg lead 1.wav,Electric Guitar, +1,s_eg l1.wav,Electric Guitar, +1,s_eg fxs.wav,Electric Guitar, +1,s_eg fx.wav,Electric Guitar, +1,s_eg fuzz.wav,Electric Guitar, +1,s_eg effect.wav,Electric Guitar, +1,s_eg disto.wav,Electric Guitar, +1,s_eg dist 2.wav,Electric Guitar, +1,s_eg dist 1.wav,Electric Guitar, +1,s_eg delay.wav,Electric Guitar, +1,s_eg ctr and rev.wav,Electric Guitar, +1,s_eg clean+clean 2+dist.wav,Electric Guitar, +1,s_eg clean 1.wav,Electric Guitar, +1,s_eg cleamn.wav,Electric Guitar, +1,s_eg bass.wav,Electric Guitar, +1,s_eg arrangements.wav,Electric Guitar, +1,s_eg arpeggio.wav,Electric Guitar, +1,s_eg arpeggio chords.wav,Electric Guitar, +1,s_eg arpeg.wav,Electric Guitar, +1,s_eg 2 r.wav,Electric Guitar, +1,s_eg 2 l.wav,Electric Guitar, +1,s_eg 1r.wav,Electric Guitar, +1,s_eg 1l.wav,Electric Guitar, +1,s_eg 06.wav,Electric Guitar, +1,s_edrums.wav,Drums, +1,s_e.piano.wav,Piano, +1,s_e-guitar 2.wav,Electric Guitar, +1,s_e-guitar 1.wav,Electric Guitar, +1,s_e guitar 4.wav,Electric Guitar, +1,s_e guitar 3.wav,Electric Guitar, +1,s_e guitar 2.wav,Electric Guitar, +1,s_e guitar 2 bis.wav,Electric Guitar, +1,s_e guitar 1.wav,Electric Guitar, +1,s_e drums.wav,Other, +1,s_dulcimer.wav,Other, +1,s_drums_1.wav,Other, +1,s_drums2.wav,Other, +1,s_drums1.wav,Other, +1,s_drums real.wav,Other, +1,s_drums intro.wav,Other, +1,s_drum_loop.wav,Other, +1,s_drum loops.wav,Other, +1,s_double_bass_outro.wav,Other, +1,s_double bass.wav,Other, +1,s_dog fx.wav,Other, +1,s_dbl bass.wav,Other, +1,s_dbass.wav,Other, +1,s_cuica.wav,Other, +1,s_crunch guitar 3.wav,Other, +1,s_crunch guitar 2.wav,Other, +1,s_crowd.wav,Other, +1,s_crackle.wav,Other, +1,s_contra bass.wav,Other, +1,s_congas.wav,Other, +1,s_clav synth.wav,Other, +1,s_clarinet.wav,Other, +1,s_chromatic percussion.wav,Other, +1,s_chord.wav,Other, +1,s_chimes.wav,Other, +1,s_children.wav,Other, +1,s_charango 02.wav,Other, +1,s_charango 01.wav,Other, +1,s_cello5.wav,Cello, +1,s_cello4.wav,Cello, +1,s_cello3.wav,Cello, +1,s_cello2.wav,Cello, +1,s_cello1.wav,Cello, +1,s_celeste.wav,Other, +1,s_bv3.wav,Other, +1,s_bright_strings.wav,Other, +1,s_brasses 2.wav,Other, +1,s_brass2.wav,Other, +1,s_brass1.wav,Other, +1,s_brass sampled.wav,Other, +1,s_bass_arp.wav,Other, +1,s_bass_808.wav,Other, +1,s_bass solo.wav,Other, +1,s_bass real.wav,Other, +1,s_bass intro.wav,Other, +1,s_bass fretless.wav,Other, +1,s_bass filter.wav,Other, +1,s_bajo.wav,Other, +1,s_backing vocals.wav,Other, +1,s_b.v choir.wav,Other, +1,s_b.v 2 chant.wav,Other, +1,s_b ass.wav,Other, +1,s_as.wav,Other, +1,s_arpegiator.wav,Other, +1,s_arm.wav,Other, +1,s_ambiance_2.wav,Other, +1,s_ambiance.wav,Other, +1,s_agstrum.wav,Acoustic Guitar, +1,s_agspanish.wav,Acoustic Guitar, +1,s_agr.wav,Acoustic Guitar, +1,s_aglead.wav,Acoustic Guitar, +1,s_ag_l+r+perc.wav,Acoustic Guitar, +1,s_ag4.wav,Acoustic Guitar, +1,s_ag12str.wav,Acoustic Guitar, +1,s_ag12.wav,Acoustic Guitar, +1,s_ag solo 12.wav,Acoustic Guitar, +1,s_ag rythmic.wav,Acoustic Guitar, +1,s_ag rit 12.wav,Acoustic Guitar, +1,s_ag main.wav,Acoustic Guitar, +1,s_ag effect.wav,Acoustic Guitar, +1,s_ag base.wav,Acoustic Guitar, +1,s_ag arpeggios.wav,Acoustic Guitar, +1,s_ag arpeg.wav,Acoustic Guitar, +1,s_ag 4.wav,Acoustic Guitar, +1,s_ag 3.wav,Acoustic Guitar, +1,s_ag 23 left.wav,Acoustic Guitar, +1,s_ag 1 left.wav,Acoustic Guitar, +1,s_acoustic.wav,Acoustic Guitar, +1,s_acoustic guitar3.wav,Acoustic Guitar, +1,s_acoustic guitar r.wav,Acoustic Guitar, +1,s_acoustic guitar nylon.wav,Acoustic Guitar, +1,s_acoustic guitar l.wav,Acoustic Guitar, +1,s_acoustic guitar 12.wav,Acoustic Guitar, +1,s_acoust_rythm.wav,Acoustic Guitar, +1,s_acoust_lead.wav,Acoustic Guitar, +1,s_acoust_add.wav,Acoustic Guitar, +1,s_accordion_1.wav,Other, +1,s_acc.wav,Other, +1,s_acc sctn.wav,Other, +1,s synth.wav,Other, +1,s synth vocals.wav,Other, +1,s piano.wav,Other, +1,s percussion.wav,Other, +1,s mandolin.wav,Other, +1,s mallets.wav,Other, +1,s lv.wav,Other, +1,s eg.wav,Other, +1,s bv.wav,Other, +1,s bass.wav,Other, +1,s ag 02.wav,Other, +1,s ag 01.wav,Other, +1,rythmgtrs.wav,Other, +1,rythmgtr.wav,Other, +1,ryan guldemond.wav,Other, +1,russell hitchcock.wav,Other, +1,russel dickerson.wav,Other, +1,run-d.m.c..wav,Other, +1,rums.wav,Other, +1,rumblebass.wav,Other, +1,rtm synth.wav,Other, +1,rozonda thomas & tionne watkins.wav,Other, +1,rozonda thomas & tionne watkins-adlib.wav,Other, +1,roy orbison.wav,Other, +1,roscoe dash.wav,Other, +1,rosalia.wav,Other, +1,root solo eg.wav,Other, +1,ronnie flex.wav,Other, +1,ronnie flex-adlib.wav,Other, +1,ronnie dunn.wav,Other, +1,ronnie devoe.wav,Other, +1,ronnie devoe-adlib.wav,Other, +1,rohdes.wav,Other, +1,roger waters.wav,Other, +1,roger troutman.wav,Other, +1,robert cray.wav,Other, +1,rita ora.wav,Other, +1,rita ora-adlib.wav,Other, +1,rising synths.wav,Other, +1,rising fx.wav,Other, +1,rise.wav,Other, +1,riley green.wav,Other, +1,rightorgan 2.wav,Other, +1,rightguitar 3.wav,Other, +1,rightgtr 7.wav,Other, +1,right_gtr 6.wav,Other, +1,right_gtr 2.wav,Other, +1,right6gtr 4.wav,Other, +1,right synthlead.wav,Other, +1,right solo classic guitar.wav,Other, +1,right rhytmic eg.wav,Other, +1,right overdrive eg.wav,Other, +1,right mando 2.wav,Other, +1,right in two tool perc.wav,Percussion, +1,right in two tool ld.wav,Voice,Lead +1,right in two tool e guitar dist 4.wav,Electric Guitar,Distorted 4 +1,right in two tool e guitar dist 3.wav,Electric Guitar,Distorted 3 +1,right in two tool e guitar dist 2.wav,Electric Guitar,Distorted 2 +1,right in two tool e guitar dist 1.wav,Electric Guitar,Distorted 1 +1,right in two tool e guitar clean 2.wav,Electric Guitar,Clean 2 +1,right in two tool e guitar clean 1.wav,Electric Guitar,Clean 1 +1,right in two tool drums.wav,Drums, +1,right in two tool bells.wav,Keyboard,Synth Bells +1,right in two tool bass.wav,Bass Guitar,Bass 1 +1,right in two tool bass 2.wav,Bass Guitar,Bass 2 +1,right guitar electro 2.wav,Other, +1,right guitar acoustic 2.wav,Acoustic Guitar, +1,right guitar 3.wav,Electric Guitar, +1,right gtr.wav,Electric Guitar, +1,right gtr-arp2.wav,Electric Guitar, +1,right gtr 5.wav,Electric Guitar, +1,right gtr 3.wav,Electric Guitar, +1,right el gtr 1.wav,Electric Guitar, +1,right eguit 3.wav,Electric Guitar, +1,right eg2.wav,Electric Guitar, +1,right eg1+2.wav,Electric Guitar, +1,right eg 7.wav,Electric Guitar, +1,right eg 2.wav,Electric Guitar, +1,right crunch rhythmic eg.wav,Electric Guitar, +1,right clean eg.wav,Electric Guitar, +1,right chorus eg.wav,Electric Guitar, +1,right arr eg.wav,Electric Guitar, +1,righgtr 2.wav,Electric Guitar, +1,riffguitar.wav,Electric Guitar, +1,ricky munoz.wav,Other, +1,ricky bell.wav,Other, +1,rick james.wav,Other, +1,rick boss.wav,Other, +1,rich the kid.wav,Other, +1,rich homie quan.wav,Other, +1,rhythmic steel guitar.wav,Electric Guitar, +1,rhythmic eg12.wav,Electric Guitar, +1,rhythmic eg1.wav,Electric Guitar, +1,rhythmic classic guitar.wav,Electric Guitar, +1,rhythmgtrs.wav,Electric Guitar, +1,rhythmgtrr.wav,Electric Guitar, +1,rhythm_electric_guitar_left.wav,Electric Guitar, +1,rhythm_electric_guitar_center_2.wav,Electric Guitar, +1,rhythm_electric_guitar_center.wav,Electric Guitar, +1,rhythm_acoustic_guitar.wav,Acoustic Guitar, +1,rhythm guitars 2 - chorus.wav,Electric Guitar, +1,rhythm guitars 1.wav,Electric Guitar, +1,rhythm guitar.wav,Electric Guitar, +1,rhythm gt.wav,Electric Guitar, +1,rhythm electric guitar.wav,Electric Guitar, +1,rhythm eg.wav,Electric Guitar, +1,rhythm acoustic guitar.wav,Acoustic Guitar, +1,rhythgt.wav,Electric Guitar, +1,rhyt gtrs.wav,Electric Guitar, +1,rhyhmic nylon ag.wav,Acoustic Guitar, +1,rhygt2 right.wav,Electric Guitar, +1,rhygt1 left.wav,Electric Guitar, +1,rhodes2.wav,Keyboard,Rhodes +1,rhodes1.wav,Keyboard,Rhodes +1,rhodes-piano.wav,Keyboard,Rhodes +1,rhodes-.wav,Keyboard,Rhodes +1,rhodes+harps+hammond.wav,Keyboard,Rhodes +1,rhodes wah.wav,Keyboard,Rhodes +1,rhodes ep solo.wav,Keyboard,Rhodes +1,rhodes 2+3.wav,Keyboard,Rhodes +1,rhodes 2 right.wav,Keyboard,Rhodes +1,rhodes 12.wav,Keyboard,Rhodes +1,rhodes + clavinet.wav,Keyboard,Rhodes +1,rhode & keys.wav,Keyboard,Rhodes +1,rghtgtr 2.wav,Other, +1,rezz.wav,Other, +1,reversestrings.wav,Other, +1,reverses.wav,Other, +1,reversepiano.wav,Other, +1,reversepad.wav,Other, +1,reversefx + atmo.wav,Other, +1,reversed snare.wav,Other, +1,reversed cymbal.wav,Other, +1,reversecymbal + fx + noise.wav,Other, +1,reversebrass.wav,Other, +1,reverse_fx - copie.wav,Other, +1,reverse.wav,Other, +1,reverse synth.wav,Other, +1,reverse eg.wav,Other, +1,reverse cymbal.wav,Other, +1,reverb guitars.wav,Other, +1,rev synths.wav,Other, +1,rev synth.wav,Other, +1,rev run.wav,Other, +1,rev guits.wav,Other, +1,restsax.wav,Other, +1,reso_pluck_synth.wav,Other, +1,reso synths.wav,Other, +1,reso synth.wav,Other, +1,resample.wav,Other, +1,resample pitch.wav,Other, +1,renee rapp.wav,Other, +1,remo.wav,Other, +1,reminiscing (little river band) trumpet solo.wav,Trumpet, +1,reminiscing (little river band) strings section.wav,Keyboard,Synth Strings +1,reminiscing (little river band) rhodes.wav,Keyboard,Rhodes +1,reminiscing (little river band) perc.wav,Percussion, +1,reminiscing (little river band) ld.wav,Voice,Lead +1,reminiscing (little river band) horns section.wav,Other,Horns +1,reminiscing (little river band) e guitar lead 2.wav,Electric Guitar,Lead 2 +1,reminiscing (little river band) e guitar lead 1.wav,Electric Guitar,Lead 1 +1,reminiscing (little river band) e guitar 2.wav,Electric Guitar,Rhythm 2 +1,reminiscing (little river band) e guitar 1.wav,Electric Guitar,Rhythm 1 +1,reminiscing (little river band) drums.wav,Drum, +1,reminiscing (little river band) clavinet.wav,Keyboard,Clavinet +1,reminiscing (little river band) bv.wav,Voice,Backing +1,reminiscing (little river band) bass.wav,Bass Guitar, +1,reggea bass.wav,Other, +1,reggaepiano.wav,Other, +1,regard.wav,Other, +1,redman.wav,Other, +1,red sector a rush theremin.wav,Theremin, +1,red sector a rush synthstrings.wav,Keyboard,Synth Strings +1,red sector a rush synthkey.wav,Keyboard,Synth Keys +1,red sector a rush polysynth.wav,Keyboard,Polysynth +1,red sector a rush pluck.wav,Keyboard,Pluck +1,red sector a rush perc.wav,Percussion, +1,red sector a rush ld.wav,Voice,Lead +1,red sector a rush e guitar harmonics.wav,Electric Guitar,Harmonics 1 +1,red sector a rush e guitar harmonics 2.wav,Electric Guitar,Harmonics 2 +1,red sector a rush e guitar 2.wav,Electric Guitar,Electric 2 +1,red sector a rush e guitar 1.wav,Electric Guitar,Electric 1 +1,red sector a rush drums.wav,Drums, +1,red sector a rush bass synth.wav,Keyboard,Synth Bass +1,realvlns.wav,Violin, +1,realcellos.wav,Cello, +1,real violin 2.wav,Violin, +1,real violin 1+2+3.wav,Violin, +1,real trumpets.wav,Trumpet, +1,real trumpet 2 left.wav,Trumpet, +1,real trumpet 1 right.wav,Trumpet, +1,real trp 02.wav,Trumpet, +1,real trp 01.wav,Trumpet, +1,real trombone.wav,Trombone, +1,real trombone 3.wav,Trombone, +1,real trombon 2.wav,Trombone, +1,real trombon 1.wav,Trombone, +1,real tenor sax 3 solo.wav,Saxophone, +1,real teanor sax.wav,Saxophone, +1,real strings.wav,Other, +1,real string.wav,Other, +1,real solo sax.wav,Saxophone, +1,real sax tenor.wav,Saxophone, +1,real sax tenor 02.wav,Saxophone, +1,real sax tenor 01.wav,Saxophone, +1,real sax solo.wav,Saxophone, +1,real sax bari.wav,Saxophone, +1,real sax bari 01.wav,Saxophone, +1,real sax alto.wav,Saxophone, +1,real sax 1.wav,Saxophone, +1,real pedal steel solo.wav,Electric Guitar,Pedal Steel +1,real pedal steel r.wav,Electric Guitar,Pedal Steel +1,real pedal steel l.wav,Electric Guitar,Pedal Steel +1,real mandolina.wav,Mandolin, +1,real mandolina solo.wav,Mandolin, +1,real mandolina rhytmic.wav,Mandolin, +1,real mandolin.wav,Mandolin, +1,real lap steel.wav,Electric Guitar,Lap Steel +1,real hermonica.wav,Harmonica, +1,real flute.wav,Flute, +1,real fat.wav,Other, +1,real brass.wav,Other, +1,real bari sax.wav,Other, +1,real banjo 01 right+02.wav,Banjo, +1,real alto sax.wav,Other, +1,ray dalton.wav,Other, +1,ray charles.wav,Other, +1,rauw alexander.wav,Other, +1,rap2.wav,Other, +1,rap1.wav,Other, +1,rap.wav,Other, +1,rap-bvs.wav,Other, +1,rap and sung.wav,Other, +1,randy.wav,Other, +1,random.wav,Other, +1,raiser tone.wav,Other, +1,rain.wav,Other, +1,rag n bone man.wav,Other, +1,radio_voice.wav,Other, +1,radio voice.wav,Other, +1,radio and geiger.wav,Other, +1,r.l. huggar.wav,Other, +1,r.l. huggar-adlib.wav,Other, +1,r. kelly-adlib.wav,Other, +1,r eg.wav,Other, +1,r ag.wav,Other, +1,quite beep.wav,Other, +1,quavo-adlib.wav,Other, +1,pwm.wav,Other, +1,pussycat dolls.wav,Other, +1,pusha t.wav,Other, +1,pulse synth.wav,Other, +1,puff daddy.wav,Other, +1,pseudo mandolin.wav,Other, +1,prosecutor.wav,Other, +1,prophetish.wav,Other, +1,prophet.wav,Other, +1,projector.wav,Other, +1,project pat.wav,Other, +1,princess nokia.wav,Other, +1,prince ital joe.wav,Other, +1,precountkey.wav,Other, +1,precount+key.wav,Other, +1,precount in.wav,Other, +1,preclick.wav,Other, +1,pre.wav,Other, +1,pre-count.wav,Other, +1,power synth.wav,Other, +1,power synth 1+2.wav,Other, +1,power chords.wav,Other, +1,pops.wav,Other, +1,ponderosa twins plus one.wav,Other, +1,polysixperc.wav,Other, +1,polylead r.wav,Other, +1,poly synth 4 fx.wav,Other, +1,poly synth 3.wav,Other, +1,poly synth 2.wav,Other, +1,poly synth 12 piano.wav,Other, +1,polo g.wav,Other, +1,pnpipes.wav,Other, +1,plucked synth arr.wav,Other, +1,plucked strings and keys.wav,Other, +1,plucked high.wav,Other, +1,plucked 1.wav,Other, +1,pluck_synth.wav,Other, +1,pluck synth chrom + synth intro.wav,Other, +1,pluck synth 2.wav,Other, +1,pluck intro synth.wav,Other, +1,pluck inst.wav,Other, +1,pluck gtr + synths.wav,Other, +1,pluck dre arr+saw.wav,Other, +1,pluck chords.wav,Other, +1,pluck arr.wav,Other, +1,plinky.wav,Other, +1,plies.wav,Other, +1,pj harvey.wav,Other, +1,pizzstrings.wav,Other, +1,pizzicatos.wav,Other, +1,pizz violins.wav,Other, +1,pizz 2.wav,Other, +1,pizz 1.wav,Other, +1,pizz + harp.wav,Other, +1,pitchperc.wav,Other, +1,pitchedpercs.wav,Other, +1,pitchedperc.wav,Other, +1,pitched vox.wav,Other, +1,pitched loop.wav,Other, +1,pitch.wav,Other, +1,pitbull & ne-yo.wav,Other, +1,pipeorgan.wav,Other, +1,pipe.wav,Other, +1,pipe organ.wav,Other, +1,pipa.wav,Other, +1,pimp c.wav,Other, +1,pierre bouvier.wav,Other, +1,pierre bouvier-adlib.wav,Other, +1,pier_oh.wav,Other, +1,pickedleadguitar.wav,Other, +1,pick.wav,Other, +1,pianp.wav,Piano, +1,pianostack.wav,Piano, +1,pianomain.wav,Piano, +1,pianolead.wav,Piano, +1,pianola.wav,Piano, +1,piano_ok.wav,Piano, +1,piano_efx.wav,Piano, +1,piano_e.wav,Piano, +1,piano_dist.wav,Piano, +1,piano_01.wav,Piano, +1,piano12.wav,Piano, +1,piano-strings.wav,Piano, +1,piano-bell.wav,Piano, +1,piano-arr synth bells.wav,Piano, +1,piano+piano bell.wav,Piano, +1,piano+intro.wav,Piano, +1,piano+el piano.wav,Piano, +1,piano wurlitzer.wav,Piano, +1,piano with fx.wav,Piano, +1,piano tran.wav,Piano, +1,piano synth.wav,Piano, +1,piano synth koto.wav,Piano, +1,piano space.wav,Piano, +1,piano sample.wav,Piano, +1,piano r.wav,Piano, +1,piano mk.wav,Piano, +1,piano melody.wav,Piano, +1,piano layers theme.wav,Piano, +1,piano l.wav,Piano, +1,piano hi + low.wav,Piano, +1,piano hard.wav,Piano, +1,piano hammond arr.wav,Piano, +1,piano filter.wav,Piano, +1,piano ep pianet.wav,Piano, +1,piano ending.wav,Piano, +1,piano electrique.wav,Piano, +1,piano electric.wav,Piano, +1,piano el_ok.wav,Piano, +1,piano dance.wav,Piano, +1,piano chords.wav,Piano, +1,piano and ep.wav,Piano, +1,piano adds.wav,Piano, +1,piano _01-01 (d).wav,Piano, +1,piano 2 right.wav,Piano, +1,piano 2 intro.wav,Piano, +1,piano 12.wav,Piano, +1,piano 1+2+3.wav,Piano, +1,piano 02.wav,Piano, +1,piano 01.wav,Piano, +1,piano + reverse piano.wav,Piano, +1,piano + cp.wav,Piano, +1,piano (new).wav,Piano, +1,piano (loop).wav,Piano, +1,piack.wav,Other, +1,phish.wav,Other, +1,philippine.wav,Other, +1,philippine lavrey.wav,Other, +1,philip oakey.wav,Other, +1,phaser pad.wav,Other, +1,pharell williams.wav,Other, +1,petra christensen.wav,Other, +1,petey pablo.wav,Other, +1,petey pablo-adlib.wav,Other, +1,peter gabriel.wav,Other, +1,peter cetera.wav,Other, +1,perucssion.wav,Percussion, +1,pertucion.wav,Other, +1,perrie edwards.wav,Other, +1,percussivesynth.wav,Other, +1,percussive synth.wav,Other, +1,percussions+sfx.wav,Percussion, +1,percussions+hits.wav,Percussion, +1,percussion-noises.wav,Percussion, +1,percussion-fx.wav,Percussion, +1,percussion-3.wav,Percussion, +1,percussion+synth perc.wav,Percussion, +1,percussion glockenspiel.wav,Percussion, +1,percussion fix.wav,Percussion, +1,percussion eb 140bpm.wav,Percussion, +1,percussion - weird tube sound.wav,Percussion, +1,percussion - fingersnaps + whip + claps.wav,Percussion, +1,percusiones.wav,Percussion, +1,percuccion.wav,Percussion, +1,percu+mix fxs.wav,Percussion, +1,percu+fx+orch hits.wav,Percussion, +1,percu chrom + hits.wav,Percussion, +1,percu + occhestral percu.wav,Percussion, +1,percshaker.wav,Percussion, +1,percs+scratch+synth2.wav,Percussion, +1,percs chrom.wav,Percussion, +1,percs and revfx.wav,Percussion, +1,percs and chimes.wav,Percussion, +1,percs and 1218_cajon.wav,Percussion, +1,percmixgoo.wav,Percussion, +1,percmix.wav,Percussion, +1,perc_efx.wav,Percussion, +1,perc_claps.wav,Percussion, +1,perc1+2mix.wav,Percussion, +1,perc1+2 mix.wav,Percussion, +1,perc..wav,Percussion, +1,perc-sample.wav,Percussion, +1,perc-mallets.wav,Percussion, +1,perc+synth fx.wav,Percussion, +1,perc+mix fx.wav,Percussion, +1,perc+ guit3 noise.wav,Percussion, +1,perc mix.wav,Percussion, +1,perc metals.wav,Percussion, +1,perc loop.wav,Percussion, +1,perc kick.wav,Percussion, +1,perc gt.wav,Percussion, +1,perc fx.wav,Percussion, +1,perc and timp.wav,Percussion, +1,perc and fx.wav,Percussion, +1,perc and foley.wav,Percussion, +1,perc and claps.wav,Percussion, +1,perc 2 right.wav,Percussion, +1,perc 12.wav,Percussion, +1,perc 1+2 mix.wav,Percussion, +1,perc 1 left.wav,Percussion, +1,perc 1 2.wav,Percussion, +1,perc + vinyl.wav,Percussion, +1,perc + timpani + noise.wav,Percussion, +1,perc + timpani + cymbal.wav,Percussion, +1,perc + noise.wav,Percussion, +1,perc + fx.wav,Percussion, +1,people.wav,Other, +1,pentatonix.wav,Other, +1,pee wee.wav,Other, +1,pedalsteel.wav,Other, +1,pedal_steel_guitar.wav,Other, +1,pedal steel guitar.wav,Other, +1,peaches.wav,Other, +1,pc clic.wav,Other, +1,paulissa moorman.wav,Other, +1,paul.wav,Other, +1,paul mccartney.wav,Other, +1,paolo nutini.wav,Other, +1,pan flute.wav,Other, +1,pam.wav,Other, +1,palmas.wav,Other, +1,paino.wav,Other, +1,padvox.wav,Other, +1,padsynth.wav,Keyboard,Synth Pad +1,padshop-notdups.wav,Keyboard,Synth Pad +1,pads_fxs.wav,Keyboard,Synth Pad +1,pads12 strings riser.wav,Keyboard,Synth Pad +1,pads synths bellsambiance.wav,Keyboard,Synth Pad +1,pads synth.wav,Keyboard,Synth Pad +1,pads strings and synth.wav,Keyboard,Synth Pad +1,pads organ-pad-string-choir.wav,Keyboard,Synth Pad +1,pads mixmaster.wav,Keyboard,Synth Pad +1,pads choir synth2.wav,Keyboard,Synth Pad +1,pads choir strings.wav,Keyboard,Synth Pad +1,pads choir delay wobble.wav,Keyboard,Synth Pad +1,pads and strings and fx.wav,Keyboard,Synth Pad +1,pads and noise.wav,Keyboard,Synth Pad +1,pads and bases.wav,Keyboard,Synth Pad +1,pads 123.wav,Keyboard,Synth Pad +1,pads 12 voice and chorus strings.wav,Keyboard,Synth Pad +1,pads 1 + 2 + 3 + 4.wav,Keyboard,Synth Pad +1,pads + plucked.wav,Keyboard,Synth Pad +1,padmix.wav,Keyboard,Synth Pad +1,padfx.wav,Keyboard,Synth Pad +1,padefx intro.wav,Keyboard,Synth Pad +1,padchoir2.wav,Keyboard,Synth Pad +1,padchoir.wav,Keyboard,Synth Pad +1,pad_synth_2.wav,Keyboard,Synth Pad +1,pad_synth_1.wav,Keyboard,Synth Pad +1,pad_intro_synth.wav,Keyboard,Synth Pad +1,pad_bell.wav,Keyboard,Synth Pad +1,pad_1.wav,Keyboard,Synth Pad +1,pad3.wav,Keyboard,Synth Pad +1,pad123 synth34.wav,Keyboard,Synth Pad +1,pad1.wav,Keyboard,Synth Pad +1,pad-01.wav,Keyboard,Synth Pad +1,pad+voice synth arr.wav,Keyboard,Synth Pad +1,pad+synth+strings.wav,Keyboard,Synth Pad +1,pad+strings.wav,Keyboard,Synth Pad +1,pad+bells.wav,Keyboard,Synth Pad +1,pad voices.wav,Keyboard,Synth Pad +1,pad vocpad strings.wav,Keyboard,Synth Pad +1,pad synth12.wav,Keyboard,Synth Pad +1,pad synth 2.wav,Keyboard,Synth Pad +1,pad synth 1.wav,Keyboard,Synth Pad +1,pad swell.wav,Keyboard,Synth Pad +1,pad sweep.wav,Keyboard,Synth Pad +1,pad strings12 organ.wav,Keyboard,Synth Pad +1,pad strings voicesynth12 synth2.wav,Keyboard,Synth Pad +1,pad string and lead.wav,Keyboard,Synth Pad +1,pad reverse.wav,Keyboard,Synth Pad +1,pad outro.wav,Keyboard,Synth Pad +1,pad loop.wav,Keyboard,Synth Pad +1,pad intro.wav,Keyboard,Synth Pad +1,pad eb 140bpm.wav,Keyboard,Synth Pad +1,pad choirs strings.wav,Keyboard,Synth Pad +1,pad choir.wav,Keyboard,Synth Pad +1,pad choir strings.wav,Keyboard,Synth Pad +1,pad bells.wav,Keyboard,Synth Pad +1,pad and synthstrings.wav,Keyboard,Synth Pad +1,pad and synthbass and string.wav,Keyboard,Synth Pad +1,pad and synth4.wav,Keyboard,Synth Pad +1,pad and sbrass.wav,Keyboard,Synth Pad +1,pad and rhodes.wav,Keyboard,Synth Pad +1,pad and hammond12.wav,Keyboard,Synth Pad +1,pad and choirs.wav,Keyboard,Synth Pad +1,pad and choir vocfx vocsynth.wav,Keyboard,Synth Pad +1,pad ambiant organ.wav,Keyboard,Synth Pad +1,pad 5.wav,Keyboard,Synth Pad +1,pad 123.wav,Keyboard,Synth Pad +1,pad 1+2.wav,Keyboard,Synth Pad +1,pad + whistle + theremin.wav,Keyboard,Synth Pad +1,pad + voicesynth.wav,Keyboard,Synth Pad +1,pad + synth voice.wav,Keyboard,Synth Pad +1,pad + synth strings.wav,Keyboard,Synth Pad +1,pad + padfx.wav,Keyboard,Synth Pad +1,pad + fx.wav,Keyboard,Synth Pad +1,pad + bells + synthfx.wav,Keyboard,Synth Pad +1,pad + bells + arp.wav,Keyboard,Synth Pad +1,p5 r.wav,Other, +1,p5 l.wav,Other, +1,ozuna.wav,Other, +1,overdriven guitar(wah wah).wav,Other, +1,overdriven eg.wav,Other, +1,ovation.wav,Other, +1,outrosynth.wav,Other, +1,outrogtr.wav,Other, +1,outro sound.wav,Other, +1,outkast.wav,Other, +1,other.wav,Other, +1,ostinato synth.wav,Other, +1,orquestra hit.wav,Other, +1,oriental plucked guitar.wav,Other, +1,orgues.wav,Other, +1,orgue.wav,Other, +1,orgue fin.wav,Other, +1,organsynth.wav,Keyboard,Organ +1,organs_1.wav,Keyboard,Organ +1,organs and synth intro lr.wav,Keyboard,Organ +1,organs ambient strings.wav,Keyboard,Organ +1,organpadsynth.wav,Keyboard,Organ +1,organo.wav,Keyboard,Organ +1,organish.wav,Keyboard,Organ +1,organfx arr.wav,Keyboard,Organ +1,organdroite.wav,Keyboard,Organ +1,organ_whitesnake - here i go again.wav,Keyboard,Organ +1,organ_synth.wav,Keyboard,Organ +1,organ_rhodes.wav,Keyboard,Organ +1,organ_hammond_4.wav,Keyboard,Organ +1,organ_hammond_2_clicky.wav,Keyboard,Organ +1,organ12 drone reso saw choirpad.wav,Keyboard,Organ +1,organ1.wav,Keyboard,Organ +1,organ1 pads.wav,Keyboard,Organ +1,organ1 (arpeggio).wav,Keyboard,Organ +1,organ+synths.wav,Keyboard,Organ +1,organ+synth strings.wav,Keyboard,Organ +1,organ+synth lead.wav,Keyboard,Organ +1,organ+pad+choir.wav,Keyboard,Organ +1,organ+ld synth.wav,Keyboard,Organ +1,organ synthchoir.wav,Keyboard,Organ +1,organ synth synthbass.wav,Keyboard,Organ +1,organ synth pad.wav,Keyboard,Organ +1,organ solo.wav,Keyboard,Organ +1,organ pluck2.wav,Keyboard,Organ +1,organ pluck.wav,Keyboard,Organ +1,organ padfx.wav,Keyboard,Organ +1,organ like accordeon.wav,Keyboard,Organ +1,organ intro.wav,Keyboard,Organ +1,organ end.wav,Keyboard,Organ +1,organ dist.wav,Keyboard,Organ +1,organ bass.wav,Keyboard,Organ +1,organ and synth.wav,Keyboard,Organ +1,organ and keys.wav,Keyboard,Organ +1,organ 23.wav,Keyboard,Organ +1,organ 2 solo.wav,Keyboard,Organ +1,organ 2 right.wav,Keyboard,Organ +1,organ 2 pad.wav,Keyboard,Organ +1,organ 123.wav,Keyboard,Organ +1,organ 12.wav,Keyboard,Organ +1,organ 1 arp lead.wav,Keyboard,Organ +1,organ 1 + 2 + 3.wav,Keyboard,Organ +1,organ + synth 80s.wav,Keyboard,Organ +1,organ + pad + strings.wav,Keyboard,Organ +1,organ + harmonium.wav,Keyboard,Organ +1,organ + flute.wav,Keyboard,Organ +1,orgam.wav,Other, +1,orchestral perc.wav,Other, +1,orchestral harp.wav,Other, +1,orchestrahits.wav,Other, +1,orchestra pizz and stabb.wav,Other, +1,orchestra perc fx.wav,Other, +1,orchestra hits.wav,Other, +1,orch.wav,Other, +1,orch stabs.wav,Other, +1,orch sample.wav,Other, +1,orch perc.wav,Other, +1,orch hits.wav,Other, +1,orch drums.wav,Other, +1,orbit station.wav,Other, +1,one single bell.wav,Other, +1,one note synth.wav,Other, +1,omega.wav,Other, +1,omarion.wav,Other, +1,olly murs.wav,Other, +1,olivia.wav,Other, +1,oli sykes.wav,Other, +1,ol dirty bastard.wav,Other, +1,offset-adlib.wav,Other, +1,octobans.wav,Other, +1,octaverhythmgtr.wav,Other, +1,octave saw.wav,Other, +1,ocarina.wav,Other, +1,ocanina_over_the_hills_and_far_away.wav,Other, +1,oboe and piccolo.wav,Other, +1,oboe 1 + 2.wav,Other, +1,oates.wav,Other, +1,o.wav,Other, +1,o hit.wav,Other, +1,nylongtr.wav,Acoustic Guitar, +1,nylongt_r.wav,Acoustic Guitar, +1,nylongt_l.wav,Acoustic Guitar, +1,nylongt.wav,Acoustic Guitar, +1,nylon_solo.wav,Acoustic Guitar, +1,nylon_harmonie_2.wav,Acoustic Guitar, +1,nylon_harmonie_1.wav,Acoustic Guitar, +1,nylon.wav,Acoustic Guitar, +1,nylon guitar vst.wav,Acoustic Guitar, +1,nylon guitar solo.wav,Acoustic Guitar, +1,nylon guitar rhytmic.wav,Acoustic Guitar, +1,nylon guitar rhytmic 2.wav,Acoustic Guitar, +1,nylon guitar intro muted.wav,Acoustic Guitar, +1,nyla.wav,Other, +1,notorious big.wav,Other, +1,notorious b.i.g..wav,Other, +1,notdup-gtr ac.wav,Other, +1,normani.wav,Other, +1,noise vynil crack.wav,Other, +1,noise sfx.wav,Other, +1,noise sea waves.wav,Other, +1,noise and fx.wav,Other, +1,noise + reversed cymb.wav,Other, +1,noir strings.wav,Other, +1,noah cyrus.wav,Other, +1,nle choppa.wav,Other, +1,nk.wav,Other, +1,nivea.wav,Other, +1,nio garcia.wav,Other, +1,nina sky.wav,Other, +1,nico sallach.wav,Other, +1,nicky jam.wav,Other, +1,nicki minaj-adlib.wav,Other, +1,nick jonas-adlib.wav,Other, +1,niall horan.wav,Other, +1,ney.wav,Other, +1,newage ep.wav,Other, +1,new year fx.wav,Other, +1,new drums + perc.wav,Other, +1,new bv.wav,Other, +1,new basse en 440.wav,Other, +1,neunzig_s_synth_04.wav,Other, +1,neunzig_s_synth_03.wav,Other, +1,neunzig_s_synth_02.wav,Other, +1,neunzig_s_synth_01.wav,Other, +1,neunzig_s_lv.wav,Other, +1,neunzig_s_drums.wav,Other, +1,neunzig_s_bv.wav,Other, +1,neunzig_s_bass.wav,Other, +1,nesi.wav,Other, +1,nengo flow.wav,Other, +1,nelly-adlib.wav,Other, +1,nelly furtado and soshy.wav,Other, +1,nbv-notdup-piano.wav,Other, +1,nayer.wav,Other, +1,natti natasha.wav,Other, +1,nathan morris.wav,Other, +1,nate ruess.wav,Other, +1,natasha bedingfield.wav,Other, +1,natalie horler.wav,Other, +1,nancy fletcher.wav,Other, +1,n.o.r.e.wav,Other, +1,n-dubz.wav,Other, +1,n guitar.wav,Other, +1,myrna matthews.wav,Other, +1,muteguitar2.wav,Other, +1,mutedguitar.wav,Other, +1,mutedgtr.wav,Other, +1,muted guitar 1.wav,Other, +1,muted gtr.wav,Other, +1,muted gtr 2.wav,Other, +1,muted + solo.wav,Other, +1,mute.wav,Other, +1,mute trumpet.wav,Other, +1,mute trumpet lead.wav,Other, +1,mute guits.wav,Other, +1,musicbox.wav,Other, +1,ms20.wav,Other, +1,ms. toi.wav,Other, +1,ms. peaches.wav,Other, +1,ms 20.wav,Other, +1,mouth clicks fx.wav,Other, +1,motif synth.wav,Other, +1,motif synth + simply pad.wav,Other, +1,motif hard.wav,Other, +1,morse code.wav,Other, +1,moog syntharp.wav,Other, +1,moog synth.wav,Other, +1,moog bass.wav,Other, +1,monolead.wav,Other, +1,mono synth 1 + 2.wav,Other, +1,molly guldemond.wav,Other, +1,mo.wav,Other, +1,mnek.wav,Other, +1,mlix synth melo+solo.wav,Other, +1,mk-80 rhodes.wav,Other, +1,mixy bit.wav,Other, +1,mixsynth+pad.wav,Other, +1,mixpad+synth6+7.wav,Other, +1,mixlead+bells.wav,Other, +1,mixhorns+clarinet.wav,Other, +1,mixgtr 1+4.wav,Other, +1,mixelectrodrums.wav,Other, +1,mixed bv.wav,Other, +1,mix xylophone1+2+organ3.wav,Other, +1,mix winds.wav,Other, +1,mix winds+oboe.wav,Other, +1,mix warmpad+pad.wav,Other, +1,mix vox fx + bv.wav,Other, +1,mix voilin1+2.wav,Other, +1,mix voice synth+synth3+4+bells.wav,Other, +1,mix voc.wav,Other, +1,mix voc 1 + 2.wav,Other, +1,mix violins.wav,Other, +1,mix trumpet1+2.wav,Other, +1,mix trumpet+trombon+tuba+french horn+flutes.wav,Other, +1,mix trombon1+2.wav,Other, +1,mix trombon 1+2.wav,Other, +1,mix trb1+2.wav,Other, +1,mix tenor sax1+2.wav,Other, +1,mix tambourine+seq+congas+snaps.wav,Other, +1,mix tambourine+handclaps.wav,Other, +1,mix tamb+shaker+cowbell+windchimes.wav,Other, +1,mix synthstrings.wav,Keyboard,Synth +1,mix synths2+3+4+ep.wav,Keyboard,Synth +1,mix synths+piano.wav,Keyboard,Synth +1,mix synths lead.wav,Keyboard,Synth +1,mix synths lead+synthpad+synthfx.wav,Keyboard,Synth +1,mix synths + trance ok.wav,Keyboard,Synth +1,mix synthpas+strings.wav,Keyboard,Synth +1,mix synthpads + reversed piano.wav,Keyboard,Synth +1,mix synthpad+synthvoice.wav,Keyboard,Synth +1,mix synthpad+synthstring.wav,Keyboard,Synth +1,mix synthpad+mystery+synthmallet.wav,Keyboard,Synth +1,mix synthkeys&arp.wav,Keyboard,Synth +1,mix synthguits.wav,Keyboard,Synth +1,mix synthchords.wav,Keyboard,Synth +1,mix synthbrasses.wav,Keyboard,Synth +1,mix synthbell+pad.wav,Keyboard,Synth +1,mix synth6+7.wav,Keyboard,Synth +1,mix synth4+pluck.wav,Keyboard,Synth +1,mix synth4+5.wav,Keyboard,Synth +1,mix synth3+4.wav,Keyboard,Synth +1,mix synth2+strings1.wav,Keyboard,Synth +1,mix synth2+3.wav,Keyboard,Synth +1,mix synth1+2.wav,Keyboard,Synth +1,mix synth1+2+strings+pads.wav,Keyboard,Synth +1,mix synth1+2+saw.wav,Keyboard,Synth +1,mix synth1+2+choir.wav,Keyboard,Synth +1,mix synth1+2+3+synth guitar.wav,Keyboard,Synth +1,mix synth1+2+3+pad1+2+prophet+arpeggiator+trumpet+noise.wav,Keyboard,Synth +1,mix synth1+2+3+mellotron+choir.wav,Keyboard,Synth +1,mix synth1+2+3+hook.wav,Keyboard,Synth +1,mix synth1+2+3+delay.wav,Keyboard,Synth +1,mix synth1+2+3+4+5+bass synth.wav,Keyboard,Synth +1,mix synth+synth strings+strings.wav,Keyboard,Synth +1,mix synth+synth piano.wav,Keyboard,Synth +1,mix synth+synth ld.wav,Keyboard,Synth +1,mix synth+mellotron+sfx.wav,Keyboard,Synth +1,mix synth+clav.wav,Keyboard,Synth +1,mix synth+brass.wav,Keyboard,Synth +1,mix synth strings.wav,Keyboard,Synth +1,mix synth square+synth brass.wav,Keyboard,Synth +1,mix synth sfx.wav,Keyboard,Synth +1,mix synth saw+square1+2+stack.wav,Keyboard,Synth +1,mix synth pad1+2.wav,Keyboard,Synth +1,mix synth pad+pad intro.wav,Keyboard,Synth +1,mix synth pad a+b.wav,Keyboard,Synth +1,mix synth pad 1+2.wav,Keyboard,Synth +1,mix synth pad +choir.wav,Keyboard,Synth +1,mix synth leads.wav,Keyboard,Synth +1,mix synth lead1+2+keys pluck.wav,Keyboard,Synth +1,mix synth lead1+2+3+4.wav,Keyboard,Synth +1,mix synth lead.wav,Keyboard,Synth +1,mix synth lead+pad+choir+pluck+add+mod+piano.wav,Keyboard,Synth +1,mix synth lead minimoog+synth gtr.wav,Keyboard,Synth +1,mix synth lead 3+4 (pluck).wav,Keyboard,Synth +1,mix synth lead + bell.wav,Keyboard,Synth +1,mix synth keys1+2+synth toms.wav,Keyboard,Synth +1,mix synth keys+retro.wav,Keyboard,Synth +1,mix synth keys+arpegiator+brass+harp.wav,Keyboard,Synth +1,mix synth guitar 2+ep.wav,Keyboard,Synth +1,mix synth fx+synth+synth strings.wav,Keyboard,Synth +1,mix synth fx+noise.wav,Keyboard,Synth +1,mix synth dark + horn.wav,Keyboard,Synth +1,mix synth brass+pad.wav,Keyboard,Synth +1,mix synth bass1+2+synth brass.wav,Keyboard,Synth +1,mix synth bass+reso+ambient disto.wav,Keyboard,Synth +1,mix synth arp+chordme.wav,Keyboard,Synth +1,mix synth adds+pad.wav,Keyboard,Synth +1,mix synth 5 + 6.wav,Keyboard,Synth +1,mix synth 5 + 6 + orch hits.wav,Keyboard,Synth +1,mix synth 4+7.wav,Keyboard,Synth +1,mix synth 3 + 4.wav,Keyboard,Synth +1,mix synth 2+3.wav,Keyboard,Synth +1,mix synth 2+3+4.wav,Keyboard,Synth +1,mix synth 2 + 3 + 4.wav,Keyboard,Synth +1,mix synth 1+3.wav,Keyboard,Synth +1,mix synth 1+3+organ.wav,Keyboard,Synth +1,mix synth 1+2.wav,Keyboard,Synth +1,mix synth 1 + 4.wav,Keyboard,Synth +1,mix synth + hi.wav,Keyboard,Synth +1,mix synth + fx.wav,Keyboard,Synth +1,mix synth + flute.wav,Keyboard,Synth +1,mix strings+violin.wav,Keyboard,Synth Strings +1,mix strings+strings reversed.wav,Keyboard,Synth Strings +1,mix strings+organ.wav,Keyboard,Synth Strings +1,mix strings+harp.wav,Keyboard,Synth Strings +1,mix strings+flute.wav,Keyboard,Synth Strings +1,mix strings 1+2.wav,Keyboard,Synth Strings +1,mix strings + synth 3.wav,Keyboard,Synth Strings +1,mix string.wav,Keyboard,Synth Strings +1,mix string+violin.wav,Keyboard,Synth Strings +1,mix stereo egs.wav,Other, +1,mix steel ag1.wav,Other, +1,mix solo nylon ag.wav,Other, +1,mix solo guits.wav,Other, +1,mix solo center eg1+2.wav,Other, +1,mix solo 1c+2c.wav,Other, +1,mix solina + gtr1.wav,Other, +1,mix sfx+sfx synth.wav,Other, +1,mix saxes.wav,Other, +1,mix sax1+2.wav,Other, +1,mix sax section.wav,Other, +1,mix sax baryton 1+2+real.wav,Other, +1,mix rhythmic egs.wav,Other, +1,mix rhythmic eg.wav,Other, +1,mix rhythmic clean eg 1+2.wav,Other, +1,mix rhythmic ags.wav,Other, +1,mix rhyt gtrs.wav,Other, +1,mix real trp1+2+3+4.wav,Other, +1,mix real tenor 1+2.wav,Other, +1,mix real brass+vst brass.wav,Other, +1,mix rap.wav,Other, +1,mix pluck.wav,Other, +1,mix pluck + arpg.wav,Other, +1,mix piano+pianoreverse.wav,Other, +1,mix piano 1+2.wav,Other, +1,mix piano 1 + 2.wav,Other, +1,mix phaser crunch egs.wav,Other, +1,mix percus+sfx.wav,Other, +1,mix percs+sfx.wav,Other, +1,mix percs+noise.wav,Other, +1,mix percs+fx.wav,Other, +1,mix percs+fx+noise.wav,Other, +1,mix percs&fxs.wav,Other, +1,mix percs fxs.wav,Other, +1,mix perc1+2.wav,Other, +1,mix perc.wav,Other, +1,mix perc+drummachine.wav,Other, +1,mix pedal steel+lead.wav,Other, +1,mix pd+efx.wav,Other, +1,mix pads+bell.wav,Keyboard,Synth Pad +1,mix pads + fx.wav,Keyboard,Synth Pad +1,mix pads (pad strings brass).wav,Keyboard,Synth Pad +1,mix pad.wav,Keyboard,Synth Pad +1,mix pad+vocal synth.wav,Keyboard,Synth Pad +1,mix pad+synth+organ.wav,Keyboard,Synth Pad +1,mix pad+synth strings.wav,Keyboard,Synth Pad +1,mix pad synth1+2+strings synth+piano pad.wav,Keyboard,Synth Pad +1,mix pad synth 1+2+3+synth strings.wav,Keyboard,Synth Pad +1,mix pad synth + brass synth1+sfx1.wav,Keyboard,Synth Pad +1,mix pad 1+2+voice pad synth.wav,Keyboard,Synth Pad +1,mix pad 1 + 2.wav,Keyboard,Synth Pad +1,mix pad + strings ok.wav,Keyboard,Synth Pad +1,mix pad + atmo + synth.wav,Keyboard,Synth Pad +1,mix organs.wav,Keyboard,Organ +1,mix organs+pad.wav,Keyboard,Organ +1,mix organ2+4.wav,Keyboard,Organ +1,mix organ2+3.wav,Keyboard,Organ +1,mix organ1+3.wav,Keyboard,Organ +1,mix organ1+2+pad.wav,Keyboard,Organ +1,mix organ1+2+3.wav,Keyboard,Organ +1,mix organ+synthpad+synthstring.wav,Keyboard,Organ +1,mix organ+synth pad.wav,Keyboard,Organ +1,mix organ+pads.wav,Keyboard,Organ +1,mix organ 2+3.wav,Keyboard,Organ +1,mix organ + pad.wav,Keyboard,Organ +1,mix orchestra.wav,Other, +1,mix orchestra inst.wav,Other, +1,mix nylon ags.wav,Other, +1,mix noise+percufx.wav,Other, +1,mix mutesynths1+2+arp.wav,Other, +1,mix muted eg 1+2+3.wav,Other, +1,mix mild+nice+pro bass.wav,Other, +1,mix metal bars.wav,Other, +1,mix mellotron.wav,Other, +1,mix mellotron winds.wav,Other, +1,mix mellotron strings.wav,Other, +1,mix mandonlines.wav,Other, +1,mix mandoline 1+2.wav,Other, +1,mix mallet.wav,Other, +1,mix lv1+2+lv phone.wav,Voice, +1,mix lv+lv2+lvspoken.wav,Voice, +1,mix lv+db.wav,Voice, +1,mix loop+claps.wav,Other, +1,mix leads+pad.wav,Other, +1,mix lead vocal.wav,Voice, +1,mix lead synth1+2.wav,Other, +1,mix ld+ld adds.wav,Voice, +1,mix ld+double.wav,Voice, +1,mix ld+addlib.wav,Voice, +1,mix ld+add.wav,Voice, +1,mix lclean+rclean+clean+cruncharr.wav,Other, +1,mix l+r.wav,Other, +1,mix l+r rhythmic egs.wav,Other, +1,mix l+r rhythmic ags.wav,Other, +1,mix l+r intro ag.wav,Other, +1,mix l+r egs.wav,Other, +1,mix l+r clean intro eg.wav,Other, +1,mix l+r arr egs.wav,Other, +1,mix l+r ac gtr 2+4.wav,Other, +1,mix l+c+r eg 3+4+5.wav,Other, +1,mix keys+synth2.wav,Other, +1,mix keys 1 + 2.wav,Other, +1,mix key1+2.wav,Other, +1,mix key+key2.wav,Other, +1,mix idiophones.wav,Other, +1,mix harp+acoustic guitar.wav,Other, +1,mix harmonica + trumpet.wav,Other, +1,mix hammond+synth square.wav,Other, +1,mix guitar2+6.wav,Electric Guitar, +1,mix guitar2+3.wav,Electric Guitar, +1,mix guitar1+5+7.wav,Electric Guitar, +1,mix guitar rigg+solo1.wav,Electric Guitar, +1,mix guitar lead+disto.wav,Electric Guitar, +1,mix guitar 1+2.wav,Electric Guitar, +1,mix guitar 1+2+4+6+7.wav,Electric Guitar, +1,mix guit solo + lead1.wav,Electric Guitar, +1,mix guit lead3 + harmo.wav,Electric Guitar, +1,mix guit ac 1 + 2.wav,Acoustic Guitar, +1,mix guit 7 + 9.wav,Electric Guitar, +1,mix guit 5 + 8.wav,Electric Guitar, +1,mix guit 4 + 9.wav,Electric Guitar, +1,mix guit 2 + 3.wav,Electric Guitar, +1,mix gtrs clean+left.wav,Electric Guitar, +1,mix gtrs 1+2.wav,Electric Guitar, +1,mix gtrs (palm mute).wav,Electric Guitar, +1,mix gtrs (palm muet+stac).wav,Electric Guitar, +1,mix gtrs (disto+delay).wav,Electric Guitar, +1,mix gtrs (clean).wav,Electric Guitar, +1,mix gtr3+slide.wav,Electric Guitar, +1,mix gtr3+5.wav,Electric Guitar, +1,mix gtr3+4+5+7+8+9+10+11.wav,Electric Guitar, +1,mix gtr1+7.wav,Electric Guitar, +1,mix gtr1+4.wav,Electric Guitar, +1,mix gtr1+3.wav,Electric Guitar, +1,mix gtr1+2.wav,Electric Guitar, +1,mix gtr.wav,Electric Guitar, +1,mix gtr solo.wav,Electric Guitar, +1,mix gtr rhythm.wav,Electric Guitar, +1,mix gtr lead 1+2+3+whas.wav,Electric Guitar, +1,mix gtr fx+gtr ld.wav,Electric Guitar, +1,mix gtr arr.wav,Electric Guitar, +1,mix gtr arp.wav,Electric Guitar, +1,mix gtr 5+6.wav,Electric Guitar, +1,mix gtr 1+3.wav,Electric Guitar, +1,mix fx+fx2+pad+pad02+synth add.wav,Other, +1,mix fx + steel drum ok.wav,Other, +1,mix fx + noise.wav,Other, +1,mix fx + fx synth.wav,Other, +1,mix full orchestra.wav,Other, +1,mix flutes+clari+oboe.wav,Other, +1,mix ep+organ.wav,Other, +1,mix ep l+r.wav,Other, +1,mix elgtr lead wahwah.wav,Electric Guitar, +1,mix elgtr arr.wav,Electric Guitar, +1,mix elegtr2+distogtr2.wav,Electric Guitar, +1,mix electric guitars 5+7+8.wav,Electric Guitar, +1,mix electric guitars 2+3+6.wav,Electric Guitar, +1,mix electric guitar 123.wav,Electric Guitar, +1,mix elect fill gtr+1+2+3+harmonics.wav.wav,Electric Guitar, +1,mix el.piano.wav,Other, +1,mix el.gtrs rhythm.wav,Electric Guitar, +1,mix el.gtrs lead.wav,Electric Guitar, +1,mix el.gtrs l+r.wav,Electric Guitar, +1,mix el.gtrs crunch+final2+arr.wav,Electric Guitar, +1,mix el.gtrs clean.wav,Electric Guitar, +1,mix el.gtrs arr.wav,Electric Guitar, +1,mix el.gtrs arr 3+4+8.wav,Electric Guitar, +1,mix el.gtrs arr 1+2.wav,Electric Guitar, +1,mix el.gtrs arp.wav,Electric Guitar, +1,mix el.gtrs 6+7+8+10.wav,Electric Guitar, +1,mix el.gtrs 3+4.wav,Electric Guitar, +1,mix el.gtrs (palm mute).wav,Electric Guitar, +1,mix el.gtr.wav,Electric Guitar, +1,mix el.gtr main 1+2+3+4+5.wav,Electric Guitar, +1,mix el.gtr fx.wav,Electric Guitar, +1,mix el.gtr fx 5+6.wav,Electric Guitar, +1,mix el.gtr arr 4+5.wav,Electric Guitar, +1,mix el.gtr arr (slide).wav,Electric Guitar, +1,mix el.gtr 7+8 (high).wav,Electric Guitar, +1,mix el.gtr 5+6+9+10 (low).wav,Electric Guitar, +1,mix el.gtr 3+4 (high).wav,Electric Guitar, +1,mix el.gtr 1+arr.wav,Electric Guitar, +1,mix el.gtr 1+2+3 (main).wav,Electric Guitar, +1,mix el.gtr 1+2 (low).wav,Electric Guitar, +1,mix el.gtr (tremolo).wav,Electric Guitar, +1,mix el.gtr (fx).wav,Electric Guitar, +1,mix el.drums1+2.wav,Other, +1,mix el piano+el piano outro.wav,Other, +1,mix eguitar2r+3r+4r.wav,Electric Guitar, +1,mix eguitar solo1+2+3.wav,Electric Guitar, +1,mix eguitar 2l+3l.wav,Electric Guitar, +1,mix eguit3+4.wav,Electric Guitar, +1,mix eguit1+2+5.wav,Electric Guitar, +1,mix eguit solo+3.wav,Electric Guitar, +1,mix eguit clean+fx guitar.wav,Electric Guitar, +1,mix eguit clean 1+2+3+4+5+6+7.wav,Electric Guitar, +1,mix eguit 6+7+11+12+14+15.wav,Electric Guitar, +1,mix eguit 4+5+8+13.wav,Electric Guitar, +1,mix eguit 1+2.wav,Electric Guitar, +1,mix eguit 1+2+9+10.wav,Electric Guitar, +1,mix eguit 1+2+3+4+5.wav,Electric Guitar, +1,mix egl1+l2.wav,Electric Guitar, +1,mix egchorus+crunch.wav,Electric Guitar, +1,mix eg_muted.wav,Electric Guitar, +1,mix eg9+10+11+12.wav,Electric Guitar, +1,mix eg8+9.wav,Electric Guitar, +1,mix eg8+9+10+11+12.wav,Electric Guitar, +1,mix eg6+7+8.wav,Electric Guitar, +1,mix eg6+4r.wav,Electric Guitar, +1,mix eg5+dist.wav,Electric Guitar, +1,mix eg5+7.wav,Electric Guitar, +1,mix eg4+7.wav,Electric Guitar, +1,mix eg4+6.wav,Electric Guitar, +1,mix eg4+5.wav,Electric Guitar, +1,mix eg4+5+6.wav,Electric Guitar, +1,mix eg3+ac gtr.wav,Electric Guitar, +1,mix eg3+5+7.wav,Electric Guitar, +1,mix eg3+4.wav,Electric Guitar, +1,mix eg2+3+8.wav,Electric Guitar, +1,mix eg1+8.wav,Electric Guitar, +1,mix eg1+7.wav,Electric Guitar, +1,mix eg1+5.wav,Electric Guitar, +1,mix eg1+3.wav,Electric Guitar, +1,mix eg1+2.wav,Electric Guitar, +1,mix eg1+2+synth guitar1.wav,Electric Guitar, +1,mix eg1+2+7.wav,Electric Guitar, +1,mix eg1+2+3+6.wav,Electric Guitar, +1,mix eg tremolo 5+6.wav,Electric Guitar, +1,mix eg tremolo 4+7.wav,Electric Guitar, +1,mix eg tremolo 1+2.wav,Electric Guitar, +1,mix eg trem+clean l +clean adds 3.wav,Electric Guitar, +1,mix eg solo+break.wav,Electric Guitar, +1,mix eg solo 2 + fx.wav,Electric Guitar, +1,mix eg riff+tonic.wav,Electric Guitar, +1,mix eg rhythm+3.wav,Electric Guitar, +1,mix eg r1+r2.wav,Electric Guitar, +1,mix eg pwr chords+eg end.wav,Electric Guitar, +1,mix eg lead1+2+rhythmic1+2+5+6.wav,Electric Guitar, +1,mix eg lead+eg 2.wav,Electric Guitar, +1,mix eg lead l+r.wav,Electric Guitar, +1,mix eg ldel+harmo.wav,Electric Guitar, +1,mix eg l+r+crucnh+rcrunch.wav,Electric Guitar, +1,mix eg l+r+arr.wav,Electric Guitar, +1,mix eg intro + solo + dist 2.wav,Electric Guitar, +1,mix eg disto l+r.wav,Electric Guitar, +1,mix eg dist9+10+11.wav,Electric Guitar, +1,mix eg dist 6+7+8.wav,Electric Guitar, +1,mix eg dist 2+5.wav,Electric Guitar, +1,mix eg dist 1+4+6.wav,Electric Guitar, +1,mix eg dist 1+2+3.wav,Electric Guitar, +1,mix eg clean2+3.wav,Electric Guitar, +1,mix eg clean.wav,Electric Guitar, +1,mix eg clean+tremolo+lead.wav,Electric Guitar, +1,mix eg clean 4+5+6.wav,Electric Guitar, +1,mix eg clean 2+3.wav,Electric Guitar, +1,mix eg chords+support for chorus.wav,Electric Guitar, +1,mix eg b2+c2.wav,Electric Guitar, +1,mix eg arrl+r.wav,Electric Guitar, +1,mix eg arr r 2+3.wav,Electric Guitar, +1,mix eg adds 1+2.wav,Electric Guitar, +1,mix eg a+c1+d.wav,Electric Guitar, +1,mix eg 6+7.wav,Electric Guitar, +1,mix eg 6 + 7 (fx).wav,Electric Guitar, +1,mix eg 5+7.wav,Electric Guitar, +1,mix eg 4+6.wav,Electric Guitar, +1,mix eg 2+3.wav,Electric Guitar, +1,mix eg 1+7.wav,Electric Guitar, +1,mix eg 1 + 8.wav,Electric Guitar, +1,mix eg 1 + 2.wav,Electric Guitar, +1,mix e.gtrs.wav,Electric Guitar, +1,mix e.gtr disto 1+2.wav,Electric Guitar, +1,mix e piano 1+2.wav,Other, +1,mix e guitar 3+4l.wav,Electric Guitar, +1,mix dulcimmer+mallet+bells.wav,Other, +1,mix drumss&fx.wav,Drums, +1,mix drums+ssfx.wav,Drums, +1,mix drums+percs.wav,Drums, +1,mix drums+percs+fx.wav,Drums, +1,mix drums+perc.wav,Drums, +1,mix drums+noise.wav,Drums, +1,mix drums+electronic drums.wav,Drums, +1,mix drums+drums outro.wav,Drums, +1,mix drums+claps.wav,Drums, +1,mix drums&shaker.wav,Drums, +1,mix drums + handclaps.wav,Drums, +1,mix drumkit & percs.wav,Drums, +1,mix dobros.wav,Dobro, +1,mix dobro 1+2.wav,Dobro, +1,mix distos egs.wav,Other, +1,mix disto gtrs.wav,Other, +1,mix disto gtrs 1+2.wav,Other, +1,mix disto eg 5+6+13.wav,Other, +1,mix digitalpiano+fm piano.wav,Other, +1,mix cln+chorslide gtr.wav,Other, +1,mix clean2c+3c.wav,Other, +1,mix clean+l+r.wav,Other, +1,mix clean eg 4+7+11.wav,Other, +1,mix clean 3 + 4 + 5.wav,Other, +1,mix clean 1 + 2.wav,Other, +1,mix clean + harmonics.wav,Other, +1,mix claps.wav,Other, +1,mix center eg.wav,Other, +1,mix cellos.wav,Other, +1,mix cello+strings.wav,Other, +1,mix celesta+vibraphone.wav,Other, +1,mix bvtravis scott+future.wav,Other, +1,mix bv+ld5.wav,Other, +1,mix bv+crowd+adls.wav,Other, +1,mix bv+bv2.wav,Other, +1,mix bv+bv fx.wav,Other, +1,mix bv+adelibs.wav,Other, +1,mix bv+addliibs.wav,Other, +1,mix bv males.wav,Other, +1,mix bv glorilla+bv megan thee stallion.wav,Other, +1,mix bv females.wav,Other, +1,mix bv female + vox pitch.wav,Other, +1,mix brvst+sax+tpt.wav,Other, +1,mix brass+trumpet.wav,Other, +1,mix brass+synth1.wav,Other, +1,mix brass+strings.wav,Other, +1,mix brass+pad+organ.wav,Other, +1,mix brass+flute.wav,Other, +1,mix bips + dist ok.wav,Other, +1,mix bells+synths.wav,Other, +1,mix bells+pluck synths+seq synths 1.wav,Other, +1,mix bass_synth 1+2.wav,Other, +1,mix bass1+2.wav,Other, +1,mix bass+synthbass.wav,Other, +1,mix bass+seq synths 2.wav,Other, +1,mix bass 1+2.wav,Other, +1,mix banjos.wav,Other, +1,mix banjo+r+mandolin+l.wav,Other, +1,mix banjo 1+2.wav,Other, +1,mix arr ags.wav,Other, +1,mix arp1+2.wav,Other, +1,mix arp synths.wav,Other, +1,mix arp synth1+2.wav,Other, +1,mix arp left eg.wav,Other, +1,mix all keyx.wav,Other, +1,mix all bv.wav,Other, +1,mix agl+r+larr.wav,Acoustic Guitar, +1,mix agl+ag2.wav,Acoustic Guitar, +1,mix ag4+5+12.wav,Acoustic Guitar, +1,mix ag3+4.wav,Acoustic Guitar, +1,mix ag2+3.wav,Acoustic Guitar, +1,mix ag1+2+3+4.wav,Acoustic Guitar, +1,mix ag+ag perc.wav,Acoustic Guitar, +1,mix ag steel 1+2.wav,Acoustic Guitar, +1,mix ag rhythmic1+2+3+4.wav,Acoustic Guitar, +1,mix ag 3+4.wav,Acoustic Guitar, +1,mix ag 1+4.wav,Acoustic Guitar, +1,mix ag 1+2.wav,Acoustic Guitar, +1,mix ag 1+2+3+4.wav,Acoustic Guitar, +1,mix acgtrs.wav,Acoustic Guitar, +1,mix acgtrs arp.wav,Acoustic Guitar, +1,mix accordeon 1+2+3.wav,Other, +1,mix acc gtrs.wav,Acoustic Guitar, +1,mix ac.gtrs arr.wav,Acoustic Guitar, +1,mix ac.gtrs 1+2.wav,Acoustic Guitar, +1,mix ac.gtrs 1+2+3+nylon.wav,Acoustic Guitar, +1,mix ac.gtr main+lead.wav,Acoustic Guitar, +1,mix ac.gtr arr l+r.wav,Acoustic Guitar, +1,mix ac l + r2.wav,Acoustic Guitar, +1,mix ac gtrs.wav,Acoustic Guitar, +1,mix ac gtr1+2.wav,Acoustic Guitar, +1,mix ac gtr 1+3.wav,Acoustic Guitar, +1,mix a.gtr left+right.wav,Acoustic Guitar, +1,mix a l+r.wav,Acoustic Guitar, +1,miucha.wav,Other, +1,misc synths.wav,Other, +1,misc keys.wav,Other, +1,mini.wav,Other, +1,mike.wav,Other, +1,mike trotter.wav,Other, +1,mike jones.wav,Other, +1,miguel-adlib.wav,Other, +1,mieyion.wav,Other, +1,midistrings.wav,Other, +1,middleeightsynth.wav,Other, +1,middle.wav,Other, +1,middle mix.wav,Other, +1,mick jagger.wav,Other, +1,michael trotter jr.wav,Other, +1,michael bivins.wav,Other, +1,miami lead.wav,Other, +1,metals.wav,Other, +1,metal piano.wav,Other, +1,merle haggard.wav,Other, +1,melody synth choruses + synth arp.wav,Other, +1,melodicperc.wav,Other, +1,melodic synth.wav,Other, +1,melo synth + synth.wav,Other, +1,mellotronstrings.wav,Other, +1,mellotrons+flute.wav,Other, +1,mellotronflutes.wav,Other, +1,mellotroncellos.wav,Other, +1,mellotronbrass.wav,Other, +1,mellotron+theremin.wav,Other, +1,mellotron violin violinfx.wav,Other, +1,mellotron strings 1234.wav,Other, +1,mellotron choir.wav,Other, +1,mellotron basoon.wav,Other, +1,mellotron 1 + 2 + strings.wav,Other, +1,mello synths.wav,Other, +1,melllotron.wav,Other, +1,melle mel.wav,Other, +1,megasynth.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox synth vocals.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox perc.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 5.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 4.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 3.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 2.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox guitar 1.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox e bass.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox drum.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox bv.wav,Other, +1,megan thee stallion cobra rock remix ft spiritbox bass.wav,Other, +1,megafat.wav,Other, +1,meek mill.wav,Other, +1,mc ren.wav,Other, +1,mc eiht.wav,Other, +1,mc bin laden.wav,Other, +1,matt.wav,Other, +1,matt sallee.wav,Other, +1,master gee.wav,Other, +1,mary lambert.wav,Other, +1,mary j blige.wav,Other, +1,marshmello.wav,Other, +1,maroon 5.wav,Other, +1,marina and the diamonds.wav,Other, +1,marina and the diamonds-adlib.wav,Other, +1,marianne lee stitt.wav,Other, +1,maria brink.wav,Other, +1,marca.wav,Other, +1,marc costanzo.wav,Other, +1,maracas.wav,Other, +1,mandoline 2 right.wav,Mandolin, +1,mandoline 1 left.wav,Mandolin, +1,mandolinas.wav,Mandolin, +1,mandolina-.wav,Mandolin, +1,mandolin_l.wav,Mandolin, +1,mandolin solo.wav,Mandolin, +1,mandolin 3.wav,Mandolin, +1,mandolin 2 right.wav,Mandolin, +1,mandolin 1.wav,Mandolin, +1,mandolin 1 left.wav,Mandolin, +1,mando 2 left.wav,Mandolin, +1,mando 1.wav,Mandolin, +1,malletsynth.wav,Other, +1,mallet synth.wav,Other, +1,male_bv.wav,Other, +1,male-bv.wav,Other, +1,male vocal.wav,Other, +1,male bv.wav,Other, +1,mako.wav,Other, +1,maindrums.wav,Other, +1,main_synth_12.wav,Other, +1,main synths.wav,Other, +1,main pad.wav,Other, +1,main organ.wav,Other, +1,main guits.wav,Other, +1,main guitar.wav,Other, +1,madonna.wav,Other, +1,madison beer.wav,Other, +1,mad.wav,Other, +1,mackenzie porter.wav,Other, +1,mack 10.wav,Other, +1,m1 piano.wav,Other, +1,m. shadows.wav,Other, +1,lyle lovett.wav,Other, +1,lvox.wav,Voice,Lead +1,lvdbl.wav,Voice,Lead +1,lv_rap.wav,Voice,Lead +1,lv_ok.wav,Voice,Lead +1,lv_chester.wav,Voice,Lead +1,lv12.wav,Voice,Lead +1,lv1+2.wav,Voice,Lead +1,lv-rap.wav,Voice,Lead +1,lv-fem.wav,Voice,Lead +1,lv-ad-lib.wav,Voice,Lead +1,lv-2.wav,Voice,Lead +1,lv-1.wav,Voice,Lead +1,lv-01.wav,Voice,Lead +1,lv vocoder.wav,Voice,Lead +1,lv soulja boy.wav,Voice,Lead +1,lv sexyy red.wav,Voice,Lead +1,lv scream.wav,Voice,Lead +1,lv sanz.wav,Voice,Lead +1,lv russ.wav,Voice,Lead +1,lv nas.wav,Voice,Lead +1,lv m.wav,Voice,Lead +1,lv latto.wav,Voice,Lead +1,lv ice spice.wav,Voice,Lead +1,lv glass animals.wav,Voice,Lead +1,lv future.wav,Voice,Lead +1,lv fixed.wav,Voice,Lead +1,lv duplicate.wav,Voice,Lead +1,lv double and adds.wav,Voice,Lead +1,lv dlay.wav,Voice,Lead +1,lv clean.wav,Voice,Lead +1,lv choir gangsta gangsta.wav,Voice,Lead +1,lv and lv2.wav,Voice,Lead +1,lv and ld scream.wav,Voice,Lead +1,lv and double and adds.wav,Voice,Lead +1,lv and adds and double.wav,Voice,Lead +1,lv african.wav,Voice,Lead +1,lv add.wav,Voice,Lead +1,lv ad-lib.wav,Voice,Lead +1,lv 1+2.wav,Voice,Lead +1,lv + db.wav,Voice,Lead +1,lv + ad lib.wav,Voice,Lead +1,luther vandross.wav,Other, +1,lupe fiasco.wav,Other, +1,luis fonsi.wav,Other, +1,ludacris ad libs.wav,Other, +1,lu kala.wav,Other, +1,lowsynth.wav,Other, +1,lowpads softpads pads sublow synthfx.wav,Other, +1,lowfat pad choir diva.wav,Other, +1,low synth.wav,Other, +1,low synth+2+3+4+5+6.wav,Other, +1,love will find a way yes string section.wav,Other, +1,love will find a way yes perc.wav,Other, +1,love will find a way yes harmonica.wav,Other, +1,love will find a way yes e guitar rhythm.wav,Other, +1,love will find a way yes e guitar lead.wav,Other, +1,love will find a way yes drums.wav,Other, +1,love will find a way yes bv.wav,Other, +1,love will find a way yes bass.wav,Other, +1,lost frequencies.wav,Other, +1,loretta lynn.wav,Other, +1,lord infamous.wav,Other, +1,lord huron.wav,Other, +1,loop2.wav,Other, +1,loop1.wav,Other, +1,loop vocal.wav,Other, +1,loop mellotron.wav,Other, +1,loop intro.wav,Other, +1,loop filters.wav,Other, +1,loop + percu.wav,Other, +1,logic-adlib.wav,Other, +1,lofivinyl_1.wav,Other, +1,lloyd banks.wav,Other, +1,ll cool j-adlib.wav,Other, +1,lisa lopes.wav,Other, +1,lisa hannigan.wav,Other, +1,lisa coleman.wav,Other, +1,linda ronstadt.wav,Other, +1,limp bizkit faith lv.wav,Other, +1,limp bizkit faith guitar 5.wav,Other, +1,limp bizkit faith guitar 4.wav,Other, +1,limp bizkit faith guitar 3.wav,Other, +1,limp bizkit faith guitar 2.wav,Other, +1,limp bizkit faith guitar 1.wav,Other, +1,limp bizkit faith fx scratch.wav,Other, +1,limp bizkit faith drum.wav,Other, +1,limp bizkit faith bass.wav,Other, +1,lily allen.wav,Other, +1,lil wyte.wav,Other, +1,lil will.wav,Other, +1,lil uzi vert.wav,Other, +1,lil troy.wav,Other, +1,lil romeo.wav,Other, +1,lil peep-adlib.wav,Other, +1,lil mo.wav,Other, +1,lil cease.wav,Other, +1,like piano.wav,Other, +1,like marimba 2.wav,Other, +1,like marimba 1.wav,Other, +1,like harp.wav,Other, +1,liam payne.wav,Other, +1,liam payne-adlib.wav,Other, +1,li saumet.wav,Other, +1,letfgtr 1.wav,Other, +1,let piano.wav,Other, +1,let perc.wav,Other, +1,let organ.wav,Other, +1,let organ lead.wav,Other, +1,let ld.wav,Other, +1,let e guitar lead.wav,Other, +1,let drums.wav,Other, +1,let bv.wav,Other, +1,let bass.wav,Other, +1,leshaun.wav,Other, +1,leshaun-adlib.wav,Other, +1,les claypool.wav,Other, +1,leon bridges.wav,Other, +1,lennox.wav,Other, +1,lennon stella.wav,Other, +1,leigh-anne pinnock.wav,Other, +1,leftorgan 1.wav,Other, +1,leftguitar 2.wav,Other, +1,leftgtr 8.wav,Other, +1,left_gtr 5.wav,Other, +1,left_gtr 1.wav,Other, +1,left6gtr 3.wav,Other, +1,left tremolo eg.wav,Other, +1,left theme ag.wav,Other, +1,left synthbrass.wav,Other, +1,left solo classic guitar.wav,Other, +1,left overdrive eg.wav,Other, +1,left mandolin 1.wav,Other, +1,left mandolin 1+2 mix.wav,Other, +1,left mando 1.wav,Other, +1,left guitar electro 1.wav,Other, +1,left guitar acoustic 1.wav,Other, +1,left guitar 1.wav,Other, +1,left gtr.wav,Other, +1,left gtr-arp.wav,Other, +1,left gtr 4.wav,Other, +1,left gtr 1+4 mix.wav,Other, +1,left gtr 2.wav,Other, +1,left eye.wav,Other, +1,left el piano 1.wav,Other, +1,left el gtr 2.wav,Other, +1,left eguit 2.wav,Other, +1,left eg1+2.wav,Other, +1,left eg 6.wav,Other, +1,left eg 1.wav,Other, +1,left crunch rhythmic eg.wav,Other, +1,left chorus eg.wav,Other, +1,left arr eg.wav,Other, +1,lee brice.wav,Other, +1,leadvocal.wav,Other, +1,leadorgan.wav,Other, +1,leadgt left.wav,Other, +1,leadgt 2 right.wav,Other, +1,leadgt 2 left.wav,Other, +1,lead_vocals-adlib.wav,Other, +1,lead_synth_2.wav,Other, +1,lead_solo.wav,Other, +1,lead_orig.wav,Other, +1,lead_melody.wav,Other, +1,lead_electric_guitar.wav,Other, +1,lead234 and bells.wav,Other, +1,lead.2.wav,Other, +1,lead-adlib.wav,Other, +1,lead(square).wav,Other, +1,lead(chiff).wav,Other, +1,lead vox-1.wav,Other, +1,lead vox only.wav,Other, +1,lead vox 1 rap.wav,Other, +1,lead vocal2 ad lib.wav,Other, +1,lead vocal-adlib.wav,Other, +1,lead vocal male.wav,Other, +1,lead vocal female.wav,Other, +1,lead vocal 3.wav,Other, +1,lead vocal 2.wav,Other, +1,lead vocal 2 ad libs.wav,Other, +1,lead vocal 12.wav,Other, +1,lead v ox.wav,Other, +1,lead theme.wav,Other, +1,lead synth filter.wav,Other, +1,lead synth 2.wav,Other, +1,lead synth 1.wav,Other, +1,lead sax.wav,Other, +1,lead reso.wav,Other, +1,lead overlap.wav,Other, +1,lead mid.wav,Other, +1,lead low.wav,Other, +1,lead high.wav,Other, +1,lead gyui.wav,Other, +1,lead guitar r.wav,Other, +1,lead guitar pixies style.wav,Other, +1,lead guitar l.wav,Other, +1,lead gtrs.wav,Other, +1,lead gtr+synth.wav,Other, +1,lead gtr (third).wav,Other, +1,lead electric guitar.wav,Other, +1,lead and rap.wav,Other, +1,lead acoustic guitar.wav,Other, +1,lead 1.wav,Other, +1,ldsynth.wav,Other, +1,ldmale.wav,Other, +1,ldgtrr.wav,Other, +1,ldgauch.wav,Other, +1,ldfemale.wav,Other, +1,lddoite.wav,Other, +1,ldacgtr.wav,Other, +1,ld12-adlib.wav,Voice,Lead +1,ld.wav.wav,Voice,Lead +1,ld-rp.wav,Voice,Lead +1,ld-rihanna.wav,Voice,Lead +1,ld-rap.wav,Voice,Lead +1,ld-joao gilberto.wav,Voice,Lead +1,ld-j. cole.wav,Voice,Lead +1,ld-drake.wav,Voice,Lead +1,ld-astrud gilberto.wav,Voice,Lead +1,ld-ad.wav,Voice,Lead +1,ld-ad-lib.wav,Voice,Lead +1,ld-1.wav.wav,Voice,Lead +1,ld-01.wav,Voice,Lead +1,ld+double.wav,Voice,Lead +1,ld+adds.wav,Voice,Lead +1,ld voc 4.wav,Voice,Lead +1,ld v2.wav,Voice,Lead +1,ld tyler the creator.wav,Voice,Lead +1,ld third.wav,Voice,Lead +1,ld talk.wav,Voice,Lead +1,ld root.wav,Voice,Lead +1,ld masc.wav,Voice,Lead +1,ld kehlani 2.wav,Voice,Lead +1,ld jerry.wav,Voice,Lead +1,ld fixed.wav,Voice,Lead +1,ld fe.wav,Voice,Lead +1,ld double.wav,Voice,Lead +1,ld double adds.wav,Voice,Lead +1,ld cardi b.wav,Voice,Lead +1,ld and dv.wav,Voice,Lead +1,ld and double and adds.wav,Voice,Lead +1,ld and bv2mix.wav,Voice,Lead +1,ld addlib.wav,Voice,Lead +1,ld ad libs.wav,Voice,Lead +1,ld 1234.wav,Voice,Lead +1,ld 123 and adds.wav,Voice,Lead +1,ld 1-adlib.wav,Voice,Lead +1,ld 1 + 2.wav,Voice,Lead +1,ld + adds.wav,Voice,Lead +1,layzie.wav,Other, +1,layer sine pad.wav,Other, +1,lauryn hill.wav,Other, +1,lauren alaina.wav,Other, +1,lauren alaina-adlib.wav,Other, +1,latto_ad.wav,Other, +1,laser.wav,Other, +1,lapsteelguitar.wav,Electric Guitar,Lap Steel +1,laps steel guitar.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar_right.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar_left.wav,Electric Guitar,Lap Steel +1,lap_steel_guitar.wav,Electric Guitar,Lap Steel +1,lap steele.wav,Electric Guitar,Lap Steel +1,lap steel guitar-noisegate.wav,Electric Guitar,Lap Steel +1,lap steel 1 + 2.wav,Electric Guitar,Lap Steel +1,lap steel 01.wav,Electric Guitar,Lap Steel +1,lany.wav,Other, +1,lana del rey.wav,Other, +1,lainey wilson.wav,Other, +1,la india.wav,Other, +1,l.wav,Other, +1,l+r.wav,Other, +1,l+r electric solo guit.wav,Other, +1,kylie minogue.wav,Other, +1,kyla.wav,Other, +1,ktlyn.wav,Other, +1,kristie.wav,Other, +1,krayzie.wav,Other, +1,kora arr.wav,Other, +1,koko taylor.wav,Other, +1,kodak black.wav,Other, +1,kirstie.wav,Other, +1,kim chae-won.wav,Other, +1,kiko el crazy.wav,Other, +1,kidd kidd.wav,Other, +1,kid laroi.wav,Other, +1,kid ink.wav,Other, +1,kick drum.wav,Other, +1,khocks.wav,Other, +1,kg.wav,Other, +1,keysrhodes.wav,Other, +1,keyshia cole.wav,Other, +1,keyshia cole-adlib.wav,Other, +1,keys_1.wav,Keyboard,Synth +1,keys+pluck.wav,Keyboard,Synth +1,keys warm.wav,Keyboard,Synth +1,keys strings.wav,Keyboard,Synth +1,keys mixmaster.wav,Keyboard,Synth +1,keys fx mixmaster.wav,Keyboard,Synth +1,keys bells.wav,Keyboard,Synth +1,keys arr.wav,Keyboard,Synth +1,keys arp.wav,Keyboard,Synth +1,keys + synth.wav,Keyboard,Synth +1,keyrhodes _02.wav,Keyboard,Synth +1,keyboard synths.wav,Keyboard,Synth +1,key_synth_1+2.wav,Keyboard,Synth +1,key_bass.wav,Keyboard,Synth +1,key3.wav,Keyboard,Synth +1,key2.wav,Keyboard,Synth +1,key1.wav,Keyboard,Synth +1,key-sample.wav,Keyboard,Synth +1,key+countin.wav,Keyboard,Synth +1,key synth 1.wav,Keyboard,Synth +1,key reference.wav,Keyboard,Synth +1,key melo.wav,Keyboard,Synth +1,key lead.wav,Keyboard,Synth +1,key harmonics.wav,Keyboard,Synth +1,key harmonics 2.wav,Keyboard,Synth +1,key delay.wav,Keyboard,Synth +1,key 3 organ.wav,Keyboard,Synth +1,key 2 bells.wav,Keyboard,Synth +1,key 1.wav,Keyboard,Synth +1,key 1 pads.wav,Keyboard,Synth +1,kevin ratajczak.wav,Other, +1,kerys.wav,Other, +1,kenny rogers.wav,Other, +1,kenny chesney.wav,Other, +1,kelly rowland-adlib.wav,Other, +1,keisha.wav,Other, +1,kehlani.wav,Other, +1,kazuha.wav,Other, +1,kazoo.wav,Other, +1,katy perry.wav,Other, +1,kate bush.wav,Other, +1,kastro.wav,Other, +1,kanye west bv.wav,Other, +1,kaine.wav,Other, +1,kadafi.wav,Other, +1,kacey musgraves.wav,Other, +1,k.wav,Other, +1,k-ci.wav,Other, +1,k naan.wav,Other, +1,justin timberlake-adlib.wav,Other, +1,justin bieber-adlib.wav,Other, +1,just be held casting crowns strings section.wav,Other, +1,just be held casting crowns sonar fx.wav,Other, +1,just be held casting crowns piano.wav,Other, +1,just be held casting crowns pad.wav,Other, +1,just be held casting crowns e guitar 3.wav,Other, +1,just be held casting crowns e guitar 2.wav,Other, +1,just be held casting crowns e guitar 1.wav,Other, +1,just be held casting crowns drums.wav,Other, +1,just be held casting crowns bv.wav,Other, +1,just be held casting crowns bass.wav,Other, +1,juno60.wav,Other, +1,juno-ep.wav,Other, +1,junior.wav,Other, +1,julio iglesias.wav,Other, +1,julio alberto fernandez.wav,Other, +1,juliette commagere.wav,Other, +1,julieta venegas.wav,Other, +1,juliet simms.wav,Other, +1,julia michaels-adlib.wav,Other, +1,juicy j.wav,Other, +1,jp8 unison saw.wav,Other, +1,jp8 squarehaed.wav,Other, +1,jp cooper.wav,Other, +1,jowel.wav,Other, +1,journey escape lv.wav,Other, +1,journey escape bv.wav,Other, +1,joss stone.wav,Other, +1,joss stone-adlib.wav,Other, +1,joseph simmons.wav,Other, +1,jordin sparks.wav,Other, +1,jon pardi.wav,Other, +1,jojo.wav,Other, +1,johnny cash.wav,Other, +1,johnny blue skies.wav,Other, +1,john.wav,Other, +1,john ryan.wav,Other, +1,john prine.wav,Other, +1,john mayer.wav,Other, +1,john legend-adlib.wav,Other, +1,john legend conversations in the dark strings.wav,Other, +1,john legend conversations in the dark piano.wav,Other, +1,john legend conversations in the dark organ.wav,Other, +1,john legend conversations in the dark guitar 3.wav,Other, +1,john legend conversations in the dark guitar 2.wav,Other, +1,john legend conversations in the dark guitar 1.wav,Other, +1,john legend conversations in the dark drum perc.wav,Other, +1,john legend conversations in the dark bv.wav,Other, +1,john legend conversations in the dark bass.wav,Other, +1,john legend conversations in the dark bass synth.wav,Other, +1,john legend conversations in the dark acc guitar.wav,Other, +1,john crawford.wav,Other, +1,johan olsen.wav,Other, +1,joe perc.wav,Other, +1,joe organ.wav,Other, +1,joe lv.wav,Other, +1,joe jonas.wav,Other, +1,joe guitar 4.wav,Other, +1,joe guitar 3.wav,Other, +1,joe guitar 2.wav,Other, +1,joe guitar 1.wav,Other, +1,joe drum.wav,Other, +1,joe bv.wav,Other, +1,joe bonamassa give me one reason wurlitzer.wav,Other, +1,joe bonamassa give me one reason organ.wav,Other, +1,joe bonamassa give me one reason guitar 3.wav,Other, +1,joe bonamassa give me one reason guitar 2.wav,Other, +1,joe bonamassa give me one reason guitar 1.wav,Other, +1,joe bonamassa give me one reason drum.wav,Other, +1,joe bonamassa give me one reason bass.wav,Other, +1,joe bass.wav,Other, +1,joe acc guitar.wav,Other, +1,joe acc guitar perc.wav,Other, +1,jin.wav,Other, +1,jimin.wav,Other, +1,jhene aiko.wav,Other, +1,jhay cortez.wav,Other, +1,jewell.wav,Other, +1,jessy wilson.wav,Other, +1,jessica domingo.wav,Other, +1,jess glynne.wav,Other, +1,jermaine dupri.wav,Other, +1,jennifer lopez-adlib.wav,Other, +1,jennifer hudson.wav,Other, +1,jelly roll.wav,Other, +1,jc chasez.wav,Other, +1,jb.wav,Other, +1,jazze pha.wav,Other, +1,jazze pha-adlib.wav,Other, +1,jazz bass.wav,Other, +1,jazmine sullivan.wav,Other, +1,jay-z part ii on the run synth 5.wav,Other, +1,jay-z part ii on the run synth 2.wav,Other, +1,jay-z part ii on the run synth 1.wav,Other, +1,jay-z part ii on the run piano.wav,Other, +1,jay-z part ii on the run perc.wav,Other, +1,jay-z part ii on the run flute.wav,Other, +1,jay-z part ii on the run drum.wav,Other, +1,jay-z part ii on the run bv.wav,Other, +1,jay-z part ii on the run bass.wav,Other, +1,jay tee.wav,Other, +1,jay rock.wav,Other, +1,jawharp.wav,Other, +1,jaw_harp.wav,Other, +1,jason derulo-adlib.wav,Other, +1,jasmine veillette.wav,Other, +1,janet jackson.wav,Other, +1,janelle monae.wav,Other, +1,jamie foxx.wav,Other, +1,jake scott.wav,Other, +1,jade thirlwall.wav,Other, +1,jade macrae.wav,Other, +1,jack harlow-adlib.wav,Other, +1,j.wav,Other, +1,j.i.d.wav,Other, +1,j-dog.wav,Other, +1,irish whstle.wav,Other, +1,iris dement.wav,Other, +1,iolins.wav,Other, +1,intropiano.wav,Other, +1,introkeys.wav,Other, +1,introgtr.wav,Other, +1,introfx.wav,Other, +1,introfx sub synth pluck strings.wav,Other, +1,intro-beat.wav,Other, +1,intro(click).wav,Other, +1,intro synth 01.wav,Other, +1,intro sample.wav,Other, +1,intro piano.wav,Other, +1,intro pad synth1 synthchoir.wav,Other, +1,intro keys.wav,Other, +1,intro eg.wav,Other, +1,intro count.wav,Other, +1,intro bass.wav,Other, +1,intro arp.wav,Other, +1,intro ag.wav,Other, +1,indrusrialfx.wav,Other, +1,india arie.wav,Other, +1,in this moment black wedding synth bass 2.wav,Other, +1,in this moment black wedding synth bass 1.wav,Other, +1,in this moment black wedding synth 5.wav,Other, +1,in this moment black wedding synth 4.wav,Other, +1,in this moment black wedding synth 3.wav,Other, +1,in this moment black wedding piano.wav,Other, +1,in this moment black wedding perc fx.wav,Other, +1,in this moment black wedding guitar.wav,Other, +1,in this moment black wedding drum.wav,Other, +1,in this moment black wedding bv.wav,Other, +1,in this moment black wedding bass.wav,Other, +1,ilovemakonnen.wav,Other, +1,ighgtr 6.wav,Other, +1,ice spice-adlib.wav,Other, +1,iann dior.wav,Other, +1,i and love and you the avett brothers synthpad.wav,Other, +1,i and love and you the avett brothers strings section.wav,Other, +1,i and love and you the avett brothers piano.wav,Other, +1,i and love and you the avett brothers perc.wav,Other, +1,i and love and you the avett brothers organ.wav,Other, +1,i and love and you the avett brothers ld.wav,Other, +1,i and love and you the avett brothers drums.wav,Other, +1,i and love and you the avett brothers bv.wav,Other, +1,i and love and you the avett brothers bass.wav,Other, +1,i and love and you (the avett brothers) padglass.wav,Other, +1,hyerin.wav,Other, +1,hyein.wav,Other, +1,hussein fatal.wav,Other, +1,huh yun-jin.wav,Other, +1,hozier.wav,Other, +1,howie dorough & nick carter.wav,Other, +1,horns+wind.wav,Other, +1,horns synth.wav,Other, +1,horns and fr horns.wav,Other, +1,horns 2.wav,Other, +1,horns 1.wav,Other, +1,horn-sample.wav,Other, +1,horn trombone strings.wav,Other, +1,horn section.wav,Other, +1,hopsin.wav,Other, +1,hooksynth.wav,Other, +1,hook n sling.wav,Other, +1,honky tonk piano.wav,Other, +1,hong eun-chae.wav,Other, +1,hold on yes synthvox.wav,Other, +1,hold on yes synthstrings.wav,Other, +1,hold on yes synthstrings 2.wav,Other, +1,hold on yes organ.wav,Other, +1,hold on yes e guitar lead.wav,Other, +1,hold on yes e guitar clean.wav,Other, +1,hold on yes e guitar 2.wav,Other, +1,hold on yes e guitar 1.wav,Other, +1,hold on yes drums.wav,Other, +1,hold on yes bv.wav,Other, +1,hold on yes bellkey.wav,Other, +1,hold on yes bass.wav,Other, +1,hittman.wav,Other, +1,hits+timpani.wav,Other, +1,hits orchestre.wav,Other, +1,hits orch.wav,Other, +1,hits 1.wav,Other, +1,hit synth.wav,Other, +1,hit orchestra.wav,Other, +1,hit fx.wav,Other, +1,hit 1.wav,Other, +1,hit 1 2.wav,Other, +1,highsynth.wav,Other, +1,high synth.wav,Other, +1,high pad.wav,Other, +1,hi synth.wav,Other, +1,hi q.wav,Other, +1,hi q beeps.wav,Other, +1,hh.wav,Other, +1,hh seq.wav,Other, +1,hey.wav,Other, +1,hey vox fx.wav,Other, +1,herbie hancock.wav,Other, +1,herb.wav,Other, +1,heavy guitar.wav,Other, +1,heartbeat.wav,Other, +1,harspichord.wav,Keyboard,Harpsichord +1,harsh_lead.wav,Other, +1,harpsychord.wav,Keyboard,Harpsichord +1,harpsicord_over_the_hills_and_far_away.wav,Keyboard,Harpsichord +1,harpsi.wav,Keyboard,Harpsichord +1,harpschicord.wav,Keyboard,Harpsichord +1,harps.wav,Other, +1,harpischord.wav,Keyboard,Harpsichord +1,harpis.wav,Keyboard,Harpsichord +1,harpi.wav,Keyboard,Harpsichord +1,harpe.wav,Other, +1,harp12.wav,Other, +1,harp+music box.wav,Other, +1,harp st.wav,Other, +1,harp 2.wav,Other, +1,harp 1.wav,Other, +1,harp + violin + strings staccato + strings.wav,Other, +1,harp + sitar.wav,Other, +1,harmony vocal.wav,Other, +1,harmony voc.wav,Other, +1,harmonio.wav,Other, +1,harmonika.wav,Other, +1,harmonies and adds.wav,Other, +1,harmonics eg.wav,Other, +1,harmonica-acordian.wav,Other, +1,harmon.wav,Other, +1,harm.wav,Other, +1,handclaps.wav,Other, +1,hand claps.wav,Other, +1,hammonds 1 and 2.wav,Keyboard,Hammond +1,hammond_organ_4.wav,Keyboard,Hammond +1,hammond_organ_3.wav,Keyboard,Hammond +1,hammond_organ_12.wav,Keyboard,Hammond +1,hammond_fuzz_organ.wav,Keyboard,Hammond +1,hammond+pad.wav,Keyboard,Hammond +1,hammond organ intro.wav,Keyboard,Hammond +1,hammond organ bass.wav,Keyboard,Hammond +1,hammond organ 2.wav,Keyboard,Hammond +1,hammond lead.wav,Keyboard,Hammond +1,hammond fx.wav,Keyboard,Hammond +1,hammond eg.wav,Keyboard,Hammond +1,hammond 12.wav,Keyboard,Hammond +1,hammond 1+2.wav,Keyboard,Hammond +1,hammond + bells.wav,Keyboard,Hammond +1,hammer.wav,Other, +1,hammd.wav,Other, +1,hamallet.wav,Other, +1,hall.wav,Other, +1,ha.wav,Other, +1,h.wav,Other, +1,h.e.r.-adlib.wav,Other, +1,h.a.w.k..wav,Other, +1,gza.wav,Other, +1,gutar 3.wav,Other, +1,gunshot.wav,Other, +1,gunna.wav,Other, +1,gun shots fx.wav,Other, +1,guitarsarr.wav,Electric Guitar, +1,guitars solo.wav,Electric Guitar, +1,guitars melodies.wav,Electric Guitar, +1,guitars fx.wav,Electric Guitar, +1,guitars clean.wav,Electric Guitar, +1,guitars 5 and 6 - distortion rhythm (stereo).wav,Electric Guitar, +1,guitars 2 3 and 4 - clean (stereo).wav,Electric Guitar, +1,guitarr.wav,Electric Guitar, +1,guitarperc.wav,Electric Guitar, +1,guitarlele 2.wav,Electric Guitar, +1,guitarlele 1.wav,Electric Guitar, +1,guitarleft2.wav,Electric Guitar, +1,guitarleft1.wav,Electric Guitar, +1,guitarleft.wav,Electric Guitar, +1,guitarl.wav,Electric Guitar, +1,guitarheavy.wav,Electric Guitar, +1,guitarfeedback.wav,Electric Guitar, +1,guitarenew.wav,Electric Guitar, +1,guitare_solo_the_cars_good_times_roll.wav,Electric Guitar, +1,guitare_solo_2_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_solo_1_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_electrique_over_the_hills_and_far_away.wav,Electric Guitar, +1,guitare_acoustique_2 left.wav,Acoustic Guitar, +1,guitare_acoustique_1 intro.wav,Acoustic Guitar, +1,guitare_3_the_cars_good_times_roll.wav,Electric Guitar, +1,guitare_3_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_2_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_2.wav,Electric Guitar, +1,guitare_2 left.wav,Electric Guitar, +1,guitare_1_stone_temple_pilots_dead_and_bloated.wav,Electric Guitar, +1,guitare_1.wav,Electric Guitar, +1,guitare_1 right.wav,Electric Guitar, +1,guitare.wav,Electric Guitar, +1,guitare-talkbox.wav,Electric Guitar, +1,guitare-jazz.wav,Electric Guitar, +1,guitare-fx.wav,Electric Guitar, +1,guitare solo.wav,Electric Guitar, +1,guitare distors.wav,Electric Guitar, +1,guitare 2.wav,Electric Guitar, +1,guitare 1.wav,Electric Guitar, +1,guitar_solo.wav,Electric Guitar, +1,guitar_rhytme.wav,Electric Guitar, +1,guitar_reverb.wav,Electric Guitar, +1,guitar_r.wav,Electric Guitar, +1,guitar_l.wav,Electric Guitar, +1,guitar_fx.wav,Electric Guitar, +1,guitar_dist.wav,Electric Guitar, +1,guitar_add.wav,Electric Guitar, +1,guitar_4.wav,Electric Guitar, +1,guitar_3 right.wav,Electric Guitar, +1,guitar_2 left.wav,Electric Guitar, +1,guitar_03.wav,Electric Guitar, +1,guitar_02.wav,Electric Guitar, +1,guitar_01.wav,Electric Guitar, +1,guitar5.wav,Electric Guitar, +1,guitar4.wav,Electric Guitar, +1,guitar4 tremolo.wav,Electric Guitar, +1,guitar2 muted left.wav,Electric Guitar, +1,guitar-tremolo.wav,Electric Guitar, +1,guitar-lead.wav,Electric Guitar, +1,guitar-fxed.wav,Electric Guitar, +1,guitar-fx.wav,Electric Guitar, +1,guitar-fuzz.wav,Electric Guitar, +1,guitar-electro.wav,Electric Guitar, +1,guitar-and-synth-reverse.wav,Electric Guitar, +1,guitar-4.wav,Electric Guitar, +1,guitar-1-2.wav,Electric Guitar, +1,guitar-1-1.wav,Electric Guitar, +1,guitar-1 muted.wav,Electric Guitar, +1,guitar synth.wav,Electric Guitar, +1,guitar sinth 12 intro.wav,Electric Guitar, +1,guitar right.wav,Electric Guitar, +1,guitar riff_ok.wav,Electric Guitar, +1,guitar riff arpeggios chord.wav,Electric Guitar, +1,guitar rhythm.wav,Electric Guitar, +1,guitar rhythm 2 disto.wav,Electric Guitar, +1,guitar rhythm 1 disto.wav,Electric Guitar, +1,guitar reverse.wav,Electric Guitar, +1,guitar plucked_ok.wav,Electric Guitar, +1,guitar pad.wav,Electric Guitar, +1,guitar melo.wav,Electric Guitar, +1,guitar melo 2.wav,Electric Guitar, +1,guitar hits.wav,Electric Guitar, +1,guitar hit_ok.wav,Electric Guitar, +1,guitar harmonic.wav,Electric Guitar, +1,guitar filter.wav,Electric Guitar, +1,guitar feedback.wav,Electric Guitar, +1,guitar ensemble.wav,Electric Guitar, +1,guitar ensemble - crunch.wav,Electric Guitar, +1,guitar electro 3.wav,Electric Guitar, +1,guitar electric.wav,Electric Guitar, +1,guitar ebow + noises.wav,Electric Guitar, +1,guitar dist.wav,Electric Guitar, +1,guitar arp.wav,Electric Guitar, +1,guitar adds.wav,Electric Guitar, +1,guitar acc.wav,Other, +1,guitar 7.wav,Electric Guitar, +1,guitar 6 end.wav,Electric Guitar, +1,guitar 5 theme.wav,Electric Guitar, +1,guitar 5 solo.wav,Electric Guitar, +1,guitar 5 right.wav,Electric Guitar, +1,guitar 5 left.wav,Electric Guitar, +1,guitar 4 plus.wav,Electric Guitar, +1,guitar 4 fx.wav,Electric Guitar, +1,guitar 3 solo.wav,Electric Guitar, +1,guitar 3 riff.wav,Electric Guitar, +1,guitar 3 r.wav,Electric Guitar, +1,guitar 3 fx.wav,Electric Guitar, +1,guitar 3 arr.wav,Electric Guitar, +1,guitar 2 l.wav,Electric Guitar, +1,guitar 2 intro.wav,Electric Guitar, +1,guitar 2 fuzz.wav,Electric Guitar, +1,guitar 2 end.wav,Electric Guitar, +1,guitar 2 disto.wav,Electric Guitar, +1,guitar 1 intro.wav,Electric Guitar, +1,guitar 1 fx.wav,Electric Guitar, +1,guitar 1 clean.wav,Electric Guitar, +1,guitar 1 - lead.wav,Electric Guitar, +1,guitar 1 + 3.wav,Electric Guitar, +1,guitar 02.wav,Electric Guitar, +1,guitar 01.wav,Electric Guitar, +1,guit_solo_2 left.wav,Electric Guitar, +1,guit_solo_1 right.wav,Electric Guitar, +1,guit_solo.wav,Electric Guitar, +1,guit_room.wav,Electric Guitar, +1,guit_3 4.wav,Electric Guitar, +1,guit_1 2.wav,Electric Guitar, +1,guit4gauch.wav,Electric Guitar, +1,guit sample.wav,Electric Guitar, +1,guit rhyhm rere.wav,Electric Guitar, +1,guit disto.wav,Electric Guitar, +1,guit disto l + r.wav,Electric Guitar, +1,guit delay + drone + solo.wav,Electric Guitar, +1,guit chorus ld + perc.wav,Electric Guitar, +1,guit arrgt.wav,Electric Guitar, +1,guit arrgt 2.wav,Electric Guitar, +1,guit 6 + 7.wav,Electric Guitar, +1,guit 3.wav,Electric Guitar, +1,guit 3 + 4.wav,Electric Guitar, +1,guit 245.wav,Electric Guitar, +1,guit 2 + 6 + 7.wav,Electric Guitar, +1,guit 2 + 3.wav,Electric Guitar, +1,guit 1 left.wav,Electric Guitar, +1,guit 1 + 2 +5.wav,Electric Guitar, +1,guit 1 + 2 + 3.wav,Electric Guitar, +1,guit + guit 3.wav,Electric Guitar, +1,guide_vocale.wav,Other, +1,guide_vocal_the_cars_good_times_roll.wav,Other, +1,guide_vocal_stone_temple_pilots_dead_and_bloated.wav,Other, +1,guide_vocal_over_the_hills_and_far_away.wav,Other, +1,guide_vocal.wav,Other, +1,guiar 1.wav,Other, +1,gtrwah.wav,Electric Guitar, +1,gtrstac.wav,Electric Guitar, +1,gtrsolo2.wav,Electric Guitar, +1,gtrslead.wav,Electric Guitar, +1,gtrsbridgeleft.wav,Electric Guitar, +1,gtrs-.wav,Electric Guitar, +1,gtrs ld.wav,Electric Guitar, +1,gtrs disto stereo.wav,Electric Guitar, +1,gtrs arr.wav,Electric Guitar, +1,gtrs 3.wav,Electric Guitar, +1,gtrs 1.wav,Electric Guitar, +1,gtrs 1 muted right.wav,Electric Guitar, +1,gtrrythm.wav,Electric Guitar, +1,gtrpluck.wav,Electric Guitar, +1,gtropen.wav,Electric Guitar, +1,gtrmix6&7.wav,Electric Guitar, +1,gtrmix5&8.wav,Electric Guitar, +1,gtrlead.wav,Electric Guitar, +1,gtrelec3.wav,Electric Guitar, +1,gtrelec2.wav,Electric Guitar, +1,gtrelec2 right.wav,Electric Guitar, +1,gtrelec1.wav,Electric Guitar, +1,gtrelec1 left.wav,Electric Guitar, +1,gtrdisto.wav,Electric Guitar, +1,gtrdist.wav,Electric Guitar, +1,gtrcrunch.wav,Electric Guitar, +1,gtrcln.wav,Electric Guitar, +1,gtrclean.wav,Electric Guitar, +1,gtrc.wav,Electric Guitar, +1,gtrbasedisto.wav,Electric Guitar, +1,gtrbase.wav,Electric Guitar, +1,gtrb.wav,Electric Guitar, +1,gtrarr.wav,Electric Guitar, +1,gtracousticopen.wav,Acoustic Guitar, +1,gtracousticarp.wav,Acoustic Guitar, +1,gtra.wav,Electric Guitar, +1,gtr_elec.wav,Electric Guitar, +1,gtr_arp.wav,Electric Guitar, +1,gtr_acst.wav,Electric Guitar, +1,gtr8.wav,Electric Guitar, +1,gtr7solo.wav,Electric Guitar, +1,gtr6triggered.wav,Electric Guitar, +1,gtr6solo.wav,Electric Guitar, +1,gtr5 right.wav,Electric Guitar, +1,gtr5 end.wav,Electric Guitar, +1,gtr4solointro.wav,Electric Guitar, +1,gtr4 right.wav,Electric Guitar, +1,gtr3 right.wav,Electric Guitar, +1,gtr3 harmo.wav,Electric Guitar, +1,gtr2right.wav,Electric Guitar, +1,gtr2hits2.wav,Electric Guitar, +1,gtr2disto.wav,Electric Guitar, +1,gtr2cleanright.wav,Electric Guitar, +1,gtr2+4.wav,Electric Guitar, +1,gtr2+3.wav,Electric Guitar, +1,gtr2 left.wav,Electric Guitar, +1,gtr2 clean right.wav,Electric Guitar, +1,gtr1center.wav,Electric Guitar, +1,gtr1ac.wav,Electric Guitar, +1,gtr1+2mix.wav,Electric Guitar, +1,gtr1+2.wav,Electric Guitar, +1,gtr1 right.wav,Electric Guitar, +1,gtr1 left.wav,Electric Guitar, +1,gtr1 clean left.wav,Electric Guitar, +1,gtr-staccatto.wav,Electric Guitar, +1,gtr-slide2.wav,Electric Guitar, +1,gtr-slide1.wav,Electric Guitar, +1,gtr-slide.wav,Electric Guitar, +1,gtr-rythm.wav,Electric Guitar, +1,gtr-rtm right.wav,Electric Guitar, +1,gtr-piano sample fx.wav,Electric Guitar, +1,gtr-melo.wav,Electric Guitar, +1,gtr-lick.wav,Electric Guitar, +1,gtr-lead1.wav,Electric Guitar, +1,gtr-lead.wav,Electric Guitar, +1,gtr-fuzzr.wav,Electric Guitar, +1,gtr-fuzzl.wav,Electric Guitar, +1,gtr-fuzzc.wav,Electric Guitar, +1,gtr-ebow.wav,Electric Guitar, +1,gtr-clean2.wav,Electric Guitar, +1,gtr-arp.wav,Electric Guitar, +1,gtr weird effects.wav,Electric Guitar, +1,gtr trem.wav,Electric Guitar, +1,gtr synth 3.wav,Electric Guitar, +1,gtr synth 1.wav,Electric Guitar, +1,gtr swell 12.wav,Electric Guitar, +1,gtr solo r ch.wav,Electric Guitar, +1,gtr solo part c.wav,Electric Guitar, +1,gtr solo l ch.wav,Electric Guitar, +1,gtr solo 5 (tierce).wav,Electric Guitar, +1,gtr rhythm.wav,Electric Guitar, +1,gtr rhyt.wav,Electric Guitar, +1,gtr rhy.wav,Electric Guitar, +1,gtr rhy 2 left.wav,Electric Guitar, +1,gtr rhy 1 right.wav,Electric Guitar, +1,gtr nylon.wav,Acoustic Guitar, +1,gtr nylon strum.wav,Acoustic Guitar, +1,gtr nylon ritmica.wav,Acoustic Guitar, +1,gtr nylon lead.wav,Acoustic Guitar, +1,gtr nylon arreglos.wav,Acoustic Guitar, +1,gtr muted.wav,Electric Guitar, +1,gtr mute.wav,Electric Guitar, +1,gtr mixmaster.wav,Electric Guitar, +1,gtr melody.wav,Electric Guitar, +1,gtr lead 4.wav,Electric Guitar, +1,gtr lead 3.wav,Electric Guitar, +1,gtr lead 2.wav,Electric Guitar, +1,gtr lead 1.wav,Electric Guitar, +1,gtr ld3.wav,Electric Guitar, +1,gtr ld2.wav,Electric Guitar, +1,gtr lap.wav,Electric Guitar, +1,gtr intro.wav,Electric Guitar, +1,gtr harm.wav,Electric Guitar, +1,gtr gr5.wav,Electric Guitar, +1,gtr gr4.wav,Electric Guitar, +1,gtr gr3.wav,Electric Guitar, +1,gtr gr2.wav,Electric Guitar, +1,gtr gr1.wav,Electric Guitar, +1,gtr glide.wav,Electric Guitar, +1,gtr fx intro.wav,Electric Guitar, +1,gtr fx 3.wav,Electric Guitar, +1,gtr fx 2.wav,Electric Guitar, +1,gtr fx 1.wav,Electric Guitar, +1,gtr funk.wav,Electric Guitar, +1,gtr esp.wav,Electric Guitar, +1,gtr esp 3+4.wav,Electric Guitar, +1,gtr esp 2.wav,Electric Guitar, +1,gtr el 5 right.wav,Electric Guitar, +1,gtr el 4.wav,Electric Guitar, +1,gtr el 4 right.wav,Electric Guitar, +1,gtr el 4 left.wav,Electric Guitar, +1,gtr el 3.wav,Electric Guitar, +1,gtr el 2 muted.wav,Electric Guitar, +1,gtr el 2 end.wav,Electric Guitar, +1,gtr el 1.wav,Electric Guitar, +1,gtr el 1 muted.wav,Electric Guitar, +1,gtr distor.wav,Electric Guitar, +1,gtr dist 4.wav,Electric Guitar, +1,gtr dist 2+3.wav,Electric Guitar, +1,gtr dist 1.wav,Electric Guitar, +1,gtr clean delay.wav,Electric Guitar, +1,gtr clean and disto.wav,Electric Guitar, +1,gtr clav.wav,Electric Guitar, +1,gtr center.wav,Electric Guitar, +1,gtr arr crunch.wav,Electric Guitar, +1,gtr arr clean.wav,Electric Guitar, +1,gtr add.wav,Electric Guitar, +1,gtr ac strum.wav,Acoustic Guitar, +1,gtr ac strum open.wav,Acoustic Guitar, +1,gtr ac 7.wav,Acoustic Guitar, +1,gtr ac 3 left.wav,Acoustic Guitar, +1,gtr ac 2 right.wav,Acoustic Guitar, +1,gtr ac 2 right end.wav,Acoustic Guitar, +1,gtr ac 2 left.wav,Acoustic Guitar, +1,gtr ac 2 end.wav,Acoustic Guitar, +1,gtr ac 1-.wav,Acoustic Guitar, +1,gtr ac 1 left.wav,Acoustic Guitar, +1,gtr ac 1 intro.wav,Acoustic Guitar, +1,gtr 9 left.wav,Electric Guitar, +1,gtr 8centre.wav,Electric Guitar, +1,gtr 8 fx.wav,Electric Guitar, +1,gtr 7droite.wav,Electric Guitar, +1,gtr 7+8.wav,Electric Guitar, +1,gtr 7 left.wav,Electric Guitar, +1,gtr 7 fx.wav,Electric Guitar, +1,gtr 7 + 9.wav,Electric Guitar, +1,gtr 6gauche.wav,Electric Guitar, +1,gtr 5droi.wav,Electric Guitar, +1,gtr 5+6.wav,Electric Guitar, +1,gtr 5 arp.wav,Electric Guitar, +1,gtr 4droite.wav,Electric Guitar, +1,gtr 4driote.wav,Electric Guitar, +1,gtr 4center.wav,Electric Guitar, +1,gtr 4-.wav,Electric Guitar, +1,gtr 4 muted.wav,Electric Guitar, +1,gtr 4 fx.wav,Electric Guitar, +1,gtr 4 clean.wav,Electric Guitar, +1,gtr 4 + 5 + 8.wav,Electric Guitar, +1,gtr 3droite.wav,Electric Guitar, +1,gtr 3and4.wav,Electric Guitar, +1,gtr 3-.wav,Electric Guitar, +1,gtr 3+6.wav,Electric Guitar, +1,gtr 3 intro.wav,Electric Guitar, +1,gtr 3 chorus.wav,Electric Guitar, +1,gtr 3 + 6.wav,Electric Guitar, +1,gtr 2right.wav,Electric Guitar, +1,gtr 2gauche.wav,Electric Guitar, +1,gtr 2enter.wav,Electric Guitar, +1,gtr 2droite.wav,Electric Guitar, +1,gtr 2centre.wav,Electric Guitar, +1,gtr 2-noisegate.wav,Electric Guitar, +1,gtr 2-.wav,Electric Guitar, +1,gtr 2+4.wav,Electric Guitar, +1,gtr 2+3+4.wav,Electric Guitar, +1,gtr 2 wha.wav,Electric Guitar, +1,gtr 2 slide.wav,Electric Guitar, +1,gtr 2 muted right+5.wav,Electric Guitar, +1,gtr 2 intro.wav,Electric Guitar, +1,gtr 2 intro right.wav,Electric Guitar, +1,gtr 2 fx.wav,Electric Guitar, +1,gtr 2 chorus.wav,Electric Guitar, +1,gtr 2 + 8.wav,Electric Guitar, +1,gtr 2 + 3.wav,Electric Guitar, +1,gtr 2 (muted).wav,Electric Guitar, +1,gtr 1left.wav,Electric Guitar, +1,gtr 1g.wav,Electric Guitar, +1,gtr 1dr.wav,Electric Guitar, +1,gtr 12.wav,Electric Guitar, +1,gtr 12 cuerdas 2.wav,Electric Guitar, +1,gtr 12 cuerdas 1.wav,Electric Guitar, +1,gtr 10.wav,Electric Guitar, +1,gtr 1-.wav,Electric Guitar, +1,gtr 1+7.wav,Electric Guitar, +1,gtr 1 muted.wav,Electric Guitar, +1,gtr 1 intro.wav,Electric Guitar, +1,gtr 1 fx.wav,Electric Guitar, +1,gtr 1 clean.wav,Electric Guitar, +1,gtr 1 centre.wav,Electric Guitar, +1,gtr 1 5.wav,Electric Guitar, +1,gtr 1 + 4.wav,Electric Guitar, +1,gtr wah.wav,Electric Guitar, +1,gtel.wav,Electric Guitar, +1,gtac.wav,Electric Guitar, +1,gt_3.wav,Electric Guitar, +1,gt_2.wav,Electric Guitar, +1,gt_1.wav,Electric Guitar, +1,gt2.wav,Electric Guitar, +1,gt1.wav,Electric Guitar, +1,gt sitar.wav,Electric Guitar, +1,gt rit.wav,Electric Guitar, +1,gt r.wav,Electric Guitar, +1,gt melo.wav,Electric Guitar, +1,gt lead.wav,Electric Guitar, +1,gt lead c.wav,Electric Guitar, +1,gt l cm.wav,Electric Guitar, +1,gt harm.wav,Electric Guitar, +1,gt dist l.wav,Electric Guitar, +1,gt chorus.wav,Electric Guitar, +1,gt chords.wav,Electric Guitar, +1,gt axe.wav,Electric Guitar, +1,gt arr.wav,Electric Guitar, +1,gt ac.wav,Acoustic Guitar, +1,gt ac + gt e.wav,Acoustic Guitar, +1,gt 3.wav,Electric Guitar, +1,gt 2 right.wav,Electric Guitar, +1,gt 1 left.wav,Electric Guitar, +1,grt2.wav,Electric Guitar, +1,grt1.wav,Electric Guitar, +1,grt 2.wav,Electric Guitar, +1,group.wav,Other, +1,groove.wav,Other, +1,grelots.wav,Other, +1,gregory porter.wav,Other, +1,greg nice.wav,Other, +1,grateful dead shakedown street rhodes.wav,Keyboard,Rhodes +1,grateful dead shakedown street perc.wav,Percussion, +1,grateful dead shakedown street lv.wav,Voice,Lead +1,grateful dead shakedown street hamm.wav,Other, +1,grateful dead shakedown street guitar 3.wav,Electric Guitar,Electric 3 +1,grateful dead shakedown street guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead shakedown street guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead shakedown street drum.wav,Drums, +1,grateful dead shakedown street clavi.wav,Keyboard,Clavinet +1,grateful dead shakedown street bv.wav,Voice,Backing +1,grateful dead shakedown street bass.wav,Bass Guitar, +1,grateful dead i know you rider live in paris piano.wav,Piano, +1,grateful dead i know you rider live in paris ld.wav,Voice,Lead +1,grateful dead i know you rider live in paris e guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead i know you rider live in paris e guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead i know you rider live in paris drums.wav,Drums, +1,grateful dead i know you rider live in paris bv.wav,Voice,Backing +1,grateful dead i know you rider live in paris bass.wav,Bass Guitar, +1,grateful dead althea rhodes.wav,Keyboard,Rhodes +1,grateful dead althea perc.wav,Percussion, +1,grateful dead althea organ.wav,Keyboard,Organ +1,grateful dead althea lv.wav,Voice,Lead +1,grateful dead althea guitar 2.wav,Electric Guitar,Electric 2 +1,grateful dead althea guitar 1.wav,Electric Guitar,Electric 1 +1,grateful dead althea drum.wav,Drums, +1,grateful dead althea clavi.wav,Keyboard,Clavinet +1,grateful dead althea bass.wav,Bass Guitar, +1,granpiano.wav,Piano, +1,graham russell.wav,Other, +1,gorillaz.wav,Other, +1,gojira silvera synth vocal.wav,Other, +1,gojira silvera lv.wav,Other, +1,gojira silvera guitar 4.wav,Other, +1,gojira silvera guitar 3.wav,Other, +1,gojira silvera guitar 2.wav,Other, +1,gojira silvera guitar 1.wav,Other, +1,gojira silvera fx.wav,Other, +1,gojira silvera drum.wav,Other, +1,gojira silvera bv.wav,Other, +1,gojira silvera bass.wav,Other, +1,gloken.wav,Other, +1,glockflute.wav,Other, +1,glock and tububells.wav,Other, +1,gliss.wav,Other, +1,glideravesynth.wav,Other, +1,glide synth.wav,Other, +1,glass.wav,Other, +1,glad sample.wav,Other, +1,giveon.wav,Other, +1,giut.wav,Other, +1,giorgia.wav,Other, +1,ghostsynth.wav,Other, +1,ghostface killah.wav,Other, +1,getting in tune the who piano.wav,Other, +1,getting in tune the who ld.wav,Other, +1,getting in tune the who e guitar.wav,Other, +1,getting in tune the who drums.wav,Other, +1,getting in tune the who bv.wav,Other, +1,getting in tune the who bass.wav,Other, +1,getting in tune the who a guitar.wav,Other, +1,george harrison.wav,Other, +1,george ezra paradise piano.wav,Other, +1,george ezra paradise perc.wav,Other, +1,gavin james.wav,Other, +1,gaucheguit.wav,Other, +1,gauchegtr 1.wav,Other, +1,gated bass.wav,Other, +1,gate rhodes.wav,Other, +1,gangsta dresta.wav,Other, +1,gang bg vocals.wav,Other, +1,gamelan.wav,Other, +1,galantis.wav,Other, +1,gaga.wav,Other, +1,g fx.wav,Computer,FX +1,g crunch.wav,Computer,FX +1,fxx scratchs.wav,Computer,FX +1,fxwoodwinds.wav,Computer,FX +1,fxs synt2 3 5.wav,Computer,FX +1,fxs seagulls.wav,Computer,FX +1,fxs scratch.wav,Computer,FX +1,fxs reverse and scream.wav,Computer,FX +1,fxs pad sbells.wav,Computer,FX +1,fxs bassdrop.wav,Computer,FX +1,fxs and drop.wav,Computer,FX +1,fxnoise.wav,Computer,FX +1,fxgtr.wav,Computer,FX +1,fxed-percussion.wav,Computer,FX +1,fx2 sample bass.wav,Computer,FX +1,fx-noise.wav,Computer,FX +1,fx+whistle.wav,Computer,FX +1,fx+reverse cymbal+noise.wav,Computer,FX +1,fx+noise+synthfx.wav,Computer,FX +1,fx wooosh.wav,Computer,FX +1,fx winds.wav,Computer,FX +1,fx wind.wav,Computer,FX +1,fx vox.wav,Computer,FX +1,fx voice.wav,Computer,FX +1,fx vocals.wav,Computer,FX +1,fx vinyls.wav,Computer,FX +1,fx synthfal.wav,Computer,FX +1,fx synth 1.wav,Computer,FX +1,fx subs.wav,Computer,FX +1,fx scrath.wav,Computer,FX +1,fx sample.wav,Computer,FX +1,fx rverse.wav,Computer,FX +1,fx pitch.wav,Computer,FX +1,fx percussion.wav,Computer,FX +1,fx panther.wav,Computer,FX +1,fx pad choir voxsynth.wav,Computer,FX +1,fx orgasm.wav,Computer,FX +1,fx noises 12 and sub.wav,Computer,FX +1,fx noise voicesynth3.wav,Computer,FX +1,fx night.wav,Computer,FX +1,fx motor.wav,Computer,FX +1,fx mix.wav,Computer,FX +1,fx intro wave beach.wav,Computer,FX +1,fx guitars.wav,Computer,FX +1,fx gtrs.wav,Computer,FX +1,fx glasses.wav,Computer,FX +1,fx flange and trance.wav,Computer,FX +1,fx cutoffsynth.wav,Computer,FX +1,fx comp squarelead.wav,Computer,FX +1,fx car.wav,Computer,FX +1,fx birds+ocean.wav,Computer,FX +1,fx background.wav,Computer,FX +1,fx and vynil.wav,Computer,FX +1,fx and vocfx.wav,Computer,FX +1,fx and telephone.wav,Computer,FX +1,fx and synthfx.wav,Computer,FX +1,fx and strings.wav,Computer,FX +1,fx and scratching.wav,Computer,FX +1,fx and riser.wav,Computer,FX +1,fx and pitch.wav,Computer,FX +1,fx and noise.wav,Computer,FX +1,fx and laser.wav,Computer,FX +1,fx and kik hit.wav,Computer,FX +1,fx and gliss.wav,Computer,FX +1,fx and bips.wav,Computer,FX +1,fx and beep9.wav,Computer,FX +1,fx ambient crowd.wav,Computer,FX +1,fx amb.wav,Computer,FX +1,fx 3.wav,Computer,FX +1,fx 12.wav,Computer,FX +1,fx 1 scratch.wav,Computer,FX +1,fx + tape noise.wav,Computer,FX +1,fx & scratches.wav,Computer,FX +1,fuzz.wav,Other, +1,fuzz guitar.wav,Other, +1,futuristic.wav,Other, +1,fuse odg.wav,Other, +1,funky.wav,Other, +1,funky gtrr.wav,Other, +1,funkgtr.wav,Other, +1,funk loop.wav,Other, +1,funk lead.wav,Other, +1,fundisha.wav,Other, +1,fun.wav,Other, +1,frenchhorn.wav,Other, +1,french_horns.wav,Other, +1,french horns and flute.wav,Other, +1,french horn (vst).wav,Other, +1,fred schneider.wav,Other, +1,frank zappa and joe.wav,Other, +1,frank ocean.wav,Other, +1,frank ocean-adlib.wav,Other, +1,franck ocean.wav,Other, +1,fr horn 3.wav,Other, +1,fr horn 2.wav,Other, +1,fr horn 1.wav,Other, +1,foule stade.wav,Other, +1,fmsynth.wav,Other, +1,fm.wav,Other, +1,fm synthbrass.wav,Other, +1,fm rhodes.wav,Other, +1,fm power perk.wav,Other, +1,fm piano.wav,Other, +1,fm clav.wav,Other, +1,fm bell.wav,Other, +1,flutesynth.wav,Flute, +1,flutes andvibes.wav,Flute, +1,flute transverse.wav,Flute, +1,flute solo.wav,Flute, +1,flute real.wav,Flute, +1,flute lo _01-01.wav,Flute, +1,flute 3.wav,Flute, +1,flute 2 right.wav,Flute, +1,flute 1.wav,Flute, +1,flute 1 left.wav,Flute, +1,flute 02.wav,Flute, +1,flute 01.wav,Flute, +1,fluguel horn.wav,Other, +1,florida georgia line.wav,Other, +1,fleurie.wav,Other, +1,flange.wav,Other, +1,five finger death punch.wav,Other, +1,finger snaps.wav,Other, +1,finger cymbals.wav,Other, +1,final claps.wav,Other, +1,filtersynth.wav,Other, +1,filters.wav,Other, +1,filterbass.wav,Other, +1,filter.wav,Other, +1,filter vox.wav,Other, +1,filter passage.wav,Other, +1,filter bits.wav,Other, +1,filter bass.wav,Other, +1,fills1+2mix.wav,Other, +1,fiddles.wav,Violin,Fiddle +1,fiddle 3.wav,Violin,Fiddle +1,fiddle 3 right.wav,Violin,Fiddle +1,fiddle 2-noisegate.wav,Violin,Fiddle +1,fiddle 1-noisegate.wav,Violin,Fiddle +1,fergie+refrains.wav,Other, +1,females vox.wav,Other, +1,female_bv.wav,Other, +1,female-bv.wav,Other, +1,female-adlib.wav,Other, +1,female ld 2.wav,Other, +1,female ld 1.wav,Other, +1,female bv.wav,Other, +1,feid.wav,Other, +1,feedback pad.wav,Other, +1,feedback fx.wav,Other, +1,fatman scoop.wav,Other, +1,fatman scoop-adlib.wav,Other, +1,fatbass.wav,Other, +1,fat.wav,Other, +1,fat pat.wav,Other, +1,farfisapad.wav,Other, +1,farfisaorgan3.wav,Other, +1,farfisaorgan2.wav,Other, +1,farfisaorgan.wav,Other, +1,farfisachoir.wav,Other, +1,fantasy and synth 1.wav,Other, +1,fall.wav,Other, +1,fall out boy.wav,Other, +1,faithless.wav,Other, +1,faith hill.wav,Other, +1,fade synths.wav,Other, +1,fabolous.wav,Other, +1,f.wav,Other, +1,extra.wav,Other, +1,extra snare.wav,Other, +1,exs.wav,Other, +1,even perc.wav,Other, +1,even moog.wav,Other, +1,even ld.wav,Other, +1,even e guitar lead 2.wav,Other, +1,even e guitar lead 1.wav,Other, +1,even e guitar 4.wav,Other, +1,even e guitar 3.wav,Other, +1,even e guitar 2.wav,Other, +1,even e guitar 1.wav,Other, +1,even drums.wav,Other, +1,even bv.wav,Other, +1,even bass.wav,Other, +1,even ambient.wav,Other, +1,eve.wav,Other, +1,eve jihan cooper.wav,Other, +1,eva simons.wav,Other, +1,eufonium.wav,Other, +1,ethno.wav,Other, +1,ethno vox sample.wav,Other, +1,ethinc voice.wav,Other, +1,esperant.wav,Other, +1,esp.wav,Other, +1,esp gtr12.wav,Other, +1,esp gtr 1 + 2 + ac gtr 3.wav,Other, +1,esp bass.wav,Other, +1,es2 dist.wav,Other, +1,erykah badu.wav,Other, +1,ernest.wav,Other, +1,eric vanlerberghe.wav,Other, +1,eric nally.wav,Other, +1,epianosynth.wav,Keyboard,Electric Piano +1,epianopluck.wav,Keyboard,Electric Piano +1,epiano3.wav,Keyboard,Electric Piano +1,epiano2.wav,Keyboard,Electric Piano +1,epiano1 left.wav,Keyboard,Electric Piano +1,epchorus.wav,Keyboard,Electric Piano +1,ep2.wav,Keyboard,Electric Piano +1,ep1.wav,Keyboard,Electric Piano +1,ep+ep2.wav,Keyboard,Electric Piano +1,ep right.wav,Keyboard,Electric Piano +1,ep pad.wav,Keyboard,Electric Piano +1,ep organ synth.wav,Keyboard,Electric Piano +1,ep left.wav,Keyboard,Electric Piano +1,ep arr and rhodes.wav,Keyboard,Electric Piano +1,ep adds.wav,Keyboard,Electric Piano +1,ep 2.wav,Keyboard,Electric Piano +1,ep 2 left.wav,Keyboard,Electric Piano +1,ep 1 + 2.wav,Keyboard,Electric Piano +1,ep 1 + 2 + 3.wav,Keyboard,Electric Piano +1,ep + synth rhodes + harpi.wav,Keyboard,Electric Piano +1,ep + synth pad.wav,Keyboard,Electric Piano +1,ep + pad + fx.wav,Keyboard,Electric Piano +1,ep + ep arp.wav,Keyboard,Electric Piano +1,ep + clavinet + hammond.wav,Keyboard,Electric Piano +1,envsynth.wav,Other, +1,enrique iglesias-adlib.wav,Other, +1,english horn.wav,Other, +1,endinglowbass.wav,Other, +1,ending.wav,Other, +1,ending synth.wav,Other, +1,eminem-adlib.wav,Other, +1,emily warren.wav,Other, +1,emily armstrong.wav,Other, +1,elton john.wav,Other, +1,elpianorhodeswahwah.wav,Keyboard,Electric Piano +1,elpiano_rhodes.wav,Keyboard,Electric Piano +1,ellie goulding-adlib.wav,Other, +1,elle king.wav,Other, +1,ella langley.wav,Other, +1,elguitsolo.wav,Electric Guitar, +1,elguitdisto.wav,Electric Guitar, +1,elguitarr.wav,Electric Guitar, +1,elguitarcleanmono.wav,Electric Guitar, +1,elguitar_solo.wav,Electric Guitar, +1,elguitar2.wav,Electric Guitar, +1,elguitar1.wav,Electric Guitar, +1,elguit dirty.wav,Electric Guitar, +1,elgtr5r.wav,Electric Guitar, +1,elgtr5+6.wav,Electric Guitar, +1,elgtr4cfx.wav,Electric Guitar, +1,elgtr3l.wav,Electric Guitar, +1,elgtr10+11.wav,Electric Guitar, +1,elgtr1+2+3+4+9.wav,Electric Guitar, +1,elgtr1 right.wav,Electric Guitar, +1,elgtr-notdups.wav,Electric Guitar, +1,elgtr solo.wav,Electric Guitar, +1,elgtr main.wav,Electric Guitar, +1,elgtr lead end 1+2+3+4.wav,Electric Guitar, +1,elgtr disto.wav,Electric Guitar, +1,elgtr dist.wav,Electric Guitar, +1,elgtr clean.wav,Electric Guitar, +1,elgtr arr.wav,Electric Guitar, +1,elgtr arr 2.wav,Electric Guitar, +1,elgtr arr 1.wav,Electric Guitar, +1,elgtr 2.wav,Electric Guitar, +1,elgtr 1.wav,Electric Guitar, +1,eletric_guitar_2.wav,Electric Guitar, +1,eletric_guitar_1.wav,Electric Guitar, +1,eletric_guitar.wav,Electric Guitar, +1,elena rose.wav,Other, +1,elegtrsolo.wav,Electric Guitar, +1,elegtrs1.wav,Electric Guitar, +1,elegtrfx.wav,Electric Guitar, +1,elegtr1 clean.wav,Electric Guitar, +1,elegtr 2.wav,Electric Guitar, +1,elegtr 1.wav,Electric Guitar, +1,electronic drumkit.wav,Other, +1,electro-piano.wav,Other, +1,electro-piano-pad.wav,Other, +1,electro acoustic gtr6.wav,Other, +1,electrique solo.wav,Other, +1,electrique rythmique.wav,Other, +1,electrique r.wav,Other, +1,electrique melodique.wav,Other, +1,electrique l.wav,Other, +1,electrique disto.wav,Other, +1,electrique claire gauche.wav,Other, +1,electrique claire droite.wav,Other, +1,electrique claire centre.wav,Other, +1,electricguitar2.wav,Electric Guitar, +1,electric_solo_guitar_2.wav,Electric Guitar, +1,electric_solo_guitar_1.wav,Electric Guitar, +1,electric_slide_guitar.wav,Electric Guitar, +1,electric_rhythm_guitars.wav,Electric Guitar, +1,electric_rhythm_guitar_right_2.wav,Electric Guitar, +1,electric_rhythm_guitar_right_1.wav,Electric Guitar, +1,electric_rhythm_guitar_palm_muted.wav,Electric Guitar, +1,electric_rhythm_guitar_intro.wav,Electric Guitar, +1,electric_rhythm_guitar_distortion_2.wav,Electric Guitar, +1,electric_rhythm_guitar_distortion_1.wav,Electric Guitar, +1,electric_rhythm_guitar_crunch_right.wav,Electric Guitar, +1,electric_rhythm_guitar_crunch_left.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_center.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_2.wav,Electric Guitar, +1,electric_rhythm_guitar_clean_1.wav,Electric Guitar, +1,electric_rhythm_crunch_guitars.wav,Electric Guitar, +1,electric_rhodes_piano.wav,Other, +1,electric_piano_wurlitzer.wav,Other, +1,electric_piano_rhodes_2.wav,Other, +1,electric_piano_rhodes_2 left.wav,Other, +1,electric_lead_guitar_right.wav,Electric Guitar, +1,electric_lead_guitar_low.wav,Electric Guitar, +1,electric_lead_guitar_center.wav,Electric Guitar, +1,electric_lead_guitar_2 right.wav,Electric Guitar, +1,electric_lead_guitar_1 left.wav,Electric Guitar, +1,electric_hammond_organ.wav,Other, +1,electric_guitar_tremolo_right.wav,Electric Guitar, +1,electric_guitar_tremolo_final.wav,Electric Guitar, +1,electric_guitar_tremolo.wav,Electric Guitar, +1,electric_guitar_solo_higain.wav,Electric Guitar, +1,electric_guitar_solo_crunch.wav,Electric Guitar, +1,electric_guitar_ryhthm_fuzz.wav,Electric Guitar, +1,electric_guitar_ryhthm_clean_octave.wav,Electric Guitar, +1,electric_guitar_ryhthm_clean.wav,Electric Guitar, +1,electric_guitar_rhythm_prechorus_arrangement_2+mix.wav,Electric Guitar, +1,electric_guitar_rhythm_prechorus_arrangement+final.wav,Electric Guitar, +1,electric_guitar_rhythm_overdrive.wav,Electric Guitar, +1,electric_guitar_rhythm_final.wav,Electric Guitar, +1,electric_guitar_rhythm_distortion.wav,Electric Guitar, +1,electric_guitar_rhythm_dist.wav,Electric Guitar, +1,electric_guitar_rhythm_crunch.wav,Electric Guitar, +1,electric_guitar_rhythm_2.wav,Electric Guitar, +1,electric_guitar_rhythm_1.wav,Electric Guitar, +1,electric_guitar_rhythm+mix.wav,Electric Guitar, +1,electric_guitar_rhythm right.wav,Electric Guitar, +1,electric_guitar_rhythm left.wav,Electric Guitar, +1,electric_guitar_rhythm center.wav,Electric Guitar, +1,electric_guitar_prechorus_rhythm_octave+overdrive.wav,Electric Guitar, +1,electric_guitar_prechorus_rhythm_high+mid+mix.wav,Electric Guitar, +1,electric_guitar_pad.wav,Electric Guitar, +1,electric_guitar_main.wav,Electric Guitar, +1,electric_guitar_lead_adds_2.wav,Electric Guitar, +1,electric_guitar_lead_adds_1.wav,Electric Guitar, +1,electric_guitar_lead_2.wav,Electric Guitar, +1,electric_guitar_lead_1.wav,Electric Guitar, +1,electric_guitar_harmonics.wav,Electric Guitar, +1,electric_guitar_fx_intro.wav,Electric Guitar, +1,electric_guitar_fuzz_right.wav,Electric Guitar, +1,electric_guitar_fuzz_center_3.wav,Electric Guitar, +1,electric_guitar_fuzz_center_2.wav,Electric Guitar, +1,electric_guitar_fuzz_center_1.wav,Electric Guitar, +1,electric_guitar_final_adds.wav,Electric Guitar, +1,electric_guitar_distortion_1.wav,Electric Guitar, +1,electric_guitar_distortion.wav,Electric Guitar, +1,electric_guitar_disto_left.wav,Electric Guitar, +1,electric_guitar_disto.wav,Electric Guitar, +1,electric_guitar_crunch_right.wav,Electric Guitar, +1,electric_guitar_crunch_left.wav,Electric Guitar, +1,electric_guitar_crunch_center.wav,Electric Guitar, +1,electric_guitar_crunch.wav,Electric Guitar, +1,electric_guitar_cruch_right.wav,Electric Guitar, +1,electric_guitar_clean_arrangement.wav,Electric Guitar, +1,electric_guitar_clean_1+prechorus rhythm.wav,Electric Guitar, +1,electric_guitar_chunch_2.wav,Electric Guitar, +1,electric_guitar_chunch_1.wav,Electric Guitar, +1,electric_guitar_center_overdrive.wav,Electric Guitar, +1,electric_guitar_arr.wav,Electric Guitar, +1,electric_guitar_adds_2.wav,Electric Guitar, +1,electric_guitar_adds_1.wav,Electric Guitar, +1,electric_guitar_adds.wav,Electric Guitar, +1,electric_guitar_add.wav,Electric Guitar, +1,electric_fx_guitar.wav,Other, +1,electric_drums.wav,Other, +1,electric_distorted_guitar.wav,Electric Guitar, +1,electric_crunch_guitar.wav,Electric Guitar, +1,electric_clean_guitar_right.wav,Electric Guitar, +1,electric_clean_guitar_arr_2.wav,Electric Guitar, +1,electric_clean_guitar_arr_1.wav,Electric Guitar, +1,electric_clean_guitar_2.wav,Electric Guitar, +1,electric_clean_guitar_1.wav,Electric Guitar, +1,electric_arrangement_lap_steel_2.wav,Electric Guitar, +1,electric_arrangement_lap_steel_1.wav,Electric Guitar, +1,electric_arrangement_guitar_right_1.wav,Electric Guitar, +1,electric_arrangement_guitar_overdrive.wav,Electric Guitar, +1,electric_arrangement_guitar_harmonic.wav,Electric Guitar, +1,electric_arrangement_guitar_flanger.wav,Electric Guitar, +1,electric_arrangement_guitar_clean_2.wav,Electric Guitar, +1,electric_arrangement_guitar_clean_1.wav,Electric Guitar, +1,electric_arrangement_guitar_center.wav,Electric Guitar, +1,electric_arrangement_guitar_456_final.wav,Electric Guitar, +1,electric_arrangement_guitar_3_clean.wav,Electric Guitar, +1,electric_arrangement_guitar_2_intro.wav,Electric Guitar, +1,electric_arrangement_guitar_2_clean.wav,Electric Guitar, +1,electric_arrangement_guitar_1_intro.wav,Electric Guitar, +1,electric_arrangement_guitar_1_clean.wav,Electric Guitar, +1,electric_arrange_guitar.wav,Electric Guitar, +1,electric.wav,Electric Guitar, +1,electric solo guitar.wav,Electric Guitar, +1,electric rhythm guitar.wav,Electric Guitar, +1,electric rhythm gtr.wav,Electric Guitar, +1,electric piano&celesta.wav,Other, +1,electric piano 2.wav,Other, +1,electric piano 2 right.wav,Other, +1,electric guitars 2 arpeggio.wav,Electric Guitar, +1,electric guitars 1 melodic.wav,Electric Guitar, +1,electric guitars - rhythm.wav,Electric Guitar, +1,electric guitar5.wav,Electric Guitar, +1,electric guitar4.wav,Electric Guitar, +1,electric guitar1.wav,Electric Guitar, +1,electric guitar(tremolo).wav,Electric Guitar, +1,electric guitar(rythm).wav,Electric Guitar, +1,electric guitar(mute).wav,Electric Guitar, +1,electric guitar right.wav,Electric Guitar, +1,electric guitar rhythm.wav,Electric Guitar, +1,electric guitar overdrive 2.wav,Electric Guitar, +1,electric guitar overdrive 1.wav,Electric Guitar, +1,electric guitar noise fx.wav,Electric Guitar, +1,electric guitar mute.wav,Electric Guitar, +1,electric guitar main.wav,Electric Guitar, +1,electric guitar left.wav,Electric Guitar, +1,electric guitar lead1+arr.wav,Electric Guitar, +1,electric guitar lead.wav,Electric Guitar, +1,electric guitar insert.wav,Electric Guitar, +1,electric guitar harmonics.wav,Electric Guitar, +1,electric guitar ghythmm.wav,Electric Guitar, +1,electric guitar flanger.wav,Electric Guitar, +1,electric guitar clean+sitar.wav,Electric Guitar, +1,electric guitar 7.wav,Electric Guitar, +1,electric guitar 5 left.wav,Electric Guitar, +1,electric guitar 4 fixed.wav,Electric Guitar, +1,electric guitar 4 chorus.wav,Electric Guitar, +1,electric guitar 3 right.wav,Electric Guitar, +1,electric guitar 3 right end.wav,Electric Guitar, +1,electric guitar 3 fixed.wav,Electric Guitar, +1,electric guitar 3 distorted.wav,Electric Guitar, +1,electric guitar 3 - funky.wav,Electric Guitar, +1,electric guitar 2 solo.wav,Electric Guitar, +1,electric guitar 2 right.wav,Electric Guitar, +1,electric guitar 2 lead.wav,Electric Guitar, +1,electric guitar 2 fixed.wav,Electric Guitar, +1,electric guitar 1+2+3+4+6.wav,Electric Guitar, +1,electric guitar 1 right.wav,Electric Guitar, +1,electric guitar 1 muted.wav,Electric Guitar, +1,electric guitar 1 fixed.wav,Electric Guitar, +1,electric guitar - reverbey.wav,Electric Guitar, +1,electric guitar - muted.wav,Electric Guitar, +1,electric gtrs.wav,Electric Guitar, +1,electric gtr 2.wav,Electric Guitar, +1,electric gt.wav,Electric Guitar, +1,electric grand.wav,Other, +1,electo_guitar_fuzz.wav,Electric Guitar, +1,electo_guitar.wav,Electric Guitar, +1,elect gtr 4 disto rythm.wav,Electric Guitar, +1,elect gtr 3 arr.wav,Electric Guitar, +1,elect gtr 2 arr.wav,Electric Guitar, +1,elect gtr 1.wav,Electric Guitar, +1,elect gtr 1 muted.wav,Electric Guitar, +1,elecrhythmgtr.wav,Electric Guitar, +1,elecpickrhythm.wav,Electric Guitar, +1,elecpiano.wav,Other, +1,eleckeys.wav,Other, +1,elecgtr right.wav,Electric Guitar, +1,elecgt.wav,Electric Guitar, +1,elecg2.wav,Electric Guitar, +1,elecg1.wav,Electric Guitar, +1,elec-piano.wav,Other, +1,elec-piano-lead.wav,Other, +1,elec perc.wav,Other, +1,elec guitar 2.wav,Electric Guitar, +1,elec guitar 1 right.wav,Electric Guitar, +1,elec guit solo 2.wav,Electric Guitar, +1,elec guit solo 2 ok.wav,Electric Guitar, +1,elec gtr solo.wav,Electric Guitar, +1,elec gt 6.wav,Electric Guitar, +1,elec gt 5.wav,Electric Guitar, +1,elec gt 4.wav,Electric Guitar, +1,elec gt 3.wav,Electric Guitar, +1,elec drums.wav,Other, +1,elec and lead.wav,Electric Guitar, +1,elec 3 tremolo.wav,Electric Guitar, +1,elec 2 rythm.wav,Electric Guitar, +1,elec 2 left.wav,Electric Guitar, +1,elec 1 right.wav,Electric Guitar, +1,elec 1 arr.wav,Electric Guitar, +1,eldrums.wav,Other, +1,elctric_guitar_treble.wav,Electric Guitar, +1,elctric_guitar_crunch.wav,Electric Guitar, +1,elctric_guitar_clean.wav,Electric Guitar, +1,elctric_guitar_arr.wav,Electric Guitar, +1,elbow swell.wav,Other, +1,el.toms.wav,Other, +1,el.piano.wav,Other, +1,el.gtrs.wav,Electric Guitar, +1,el.gtr solo 3.wav,Electric Guitar, +1,el.gtr solo 2.wav,Electric Guitar, +1,el.gtr solo 1.wav,Electric Guitar, +1,el.gtr slide.wav,Electric Guitar, +1,el.gtr riff.wav,Electric Guitar, +1,el.gtr palm muted right.wav,Electric Guitar, +1,el.gtr palm mute.wav,Electric Guitar, +1,el.gtr lead.wav,Electric Guitar, +1,el.gtr lead fx.wav,Electric Guitar, +1,el.gtr lead 3.wav,Electric Guitar, +1,el.gtr lead 2.wav,Electric Guitar, +1,el.gtr lead 1.wav,Electric Guitar, +1,el.gtr lead (right).wav,Electric Guitar, +1,el.gtr lead (left).wav,Electric Guitar, +1,el.gtr crunch.wav,Electric Guitar, +1,el.gtr clean2.wav,Electric Guitar, +1,el.gtr clean rhythm+tremolo.wav,Electric Guitar, +1,el.gtr arr palm mute.wav,Electric Guitar, +1,el.gtr arr lead.wav,Electric Guitar, +1,el.gtr arr lead r.wav,Electric Guitar, +1,el.gtr arr l.wav,Electric Guitar, +1,el.gtr arr disto.wav,Electric Guitar, +1,el.gtr arr 4.wav,Electric Guitar, +1,el.gtr arr 2.wav,Electric Guitar, +1,el.gtr arr 1.wav,Electric Guitar, +1,el.gtr arr 1 (delay).wav,Electric Guitar, +1,el.gtr add 3.wav,Electric Guitar, +1,el.gtr add 2.wav,Electric Guitar, +1,el.gtr add 1.wav,Electric Guitar, +1,el.gtr 9 disto.wav,Electric Guitar, +1,el.gtr 7+8 (palm mute).wav,Electric Guitar, +1,el.gtr 3+4+5.wav,Electric Guitar, +1,el.gtr 2+6.wav,Electric Guitar, +1,el.gtr 03.wav,Electric Guitar, +1,el.gtr 02.wav,Electric Guitar, +1,el.gtr 01.wav,Electric Guitar, +1,el.gtr (right).wav,Electric Guitar, +1,el.gtr (palm mute).wav,Electric Guitar, +1,el.gtr (left).wav,Electric Guitar, +1,el.gtr (disto).wav,Electric Guitar, +1,el rhythm gtr lr.wav,Electric Guitar, +1,el pianodroite.wav,Other, +1,el piano1+2mix.wav,Other, +1,el piano+organ.wav,Other, +1,el key.wav,Other, +1,el guitars.wav,Electric Guitar, +1,el guitars 3.wav,Electric Guitar, +1,el guitars 2.wav,Electric Guitar, +1,el guitars 1.wav,Electric Guitar, +1,el guitar slide.wav,Electric Guitar, +1,el guitar right.wav,Electric Guitar, +1,el guitar r.wav,Electric Guitar, +1,el guitar overdrive.wav,Electric Guitar, +1,el guitar overdrive left.wav,Electric Guitar, +1,el guitar ovdr.wav,Electric Guitar, +1,el guitar od2.wav,Electric Guitar, +1,el guitar od1.wav,Electric Guitar, +1,el guitar muted.wav,Electric Guitar, +1,el guitar left.wav,Electric Guitar, +1,el guitar lead add.wav,Electric Guitar, +1,el guitar l.wav,Electric Guitar, +1,el guitar fx.wav,Electric Guitar, +1,el guitar disto left.wav,Electric Guitar, +1,el guitar chorus.wav,Electric Guitar, +1,el guitar center.wav,Electric Guitar, +1,el guitar arr.wav,Electric Guitar, +1,el guitar 4.wav,Electric Guitar, +1,el guitar 2 right.wav,Electric Guitar, +1,el guitar 1 left.wav,Electric Guitar, +1,el guitar 03.wav,Electric Guitar, +1,el guitar 02.wav,Electric Guitar, +1,el guitar 01 muted.wav,Electric Guitar, +1,el guit clean.wav,Electric Guitar, +1,el gtrs.wav,Electric Guitar, +1,el gtr5+7.wav,Electric Guitar, +1,el gtr4.wav,Electric Guitar, +1,el gtr4+6.wav,Electric Guitar, +1,el gtr3 left.wav,Electric Guitar, +1,el gtr25.wav,Electric Guitar, +1,el gtr2+3.wav,Electric Guitar, +1,el gtr2 right.wav,Electric Guitar, +1,el gtr13.wav,Electric Guitar, +1,el gtr lead.wav,Electric Guitar, +1,el gtr intro.wav,Electric Guitar, +1,el gtr fx.wav,Electric Guitar, +1,el gtr crunch.wav,Electric Guitar, +1,el gtr add.wav,Electric Guitar, +1,el gtr 4 r end.wav,Electric Guitar, +1,el gtr 4 + 6.wav,Electric Guitar, +1,el gtr 3 right.wav,Electric Guitar, +1,el gtr 3 l end.wav,Electric Guitar, +1,el gtr 3 + 5.wav,Electric Guitar, +1,el gtr 2 r.wav,Electric Guitar, +1,el gtr 2 left.wav,Electric Guitar, +1,el gtr 2 end.wav,Electric Guitar, +1,el gtr 1 l.wav,Electric Guitar, +1,el gtr 1 + 3 + 5.wav,Electric Guitar, +1,el gtr 1 + 2.wav,Electric Guitar, +1,el bass.wav,Other, +1,egwha.wav,Electric Guitar, +1,egverse.wav,Electric Guitar, +1,eguitd + eguit2.wav,Electric Guitar, +1,eguitarlead2.wav,Electric Guitar, +1,eguitarlead1.wav,Electric Guitar, +1,eguitardistrhythm.wav,Electric Guitar, +1,eguitarcleanrhythm.wav,Electric Guitar, +1,eguitar solo r.wav,Electric Guitar, +1,eguitar solo l.wav,Electric Guitar, +1,eguitar solo 1.wav,Electric Guitar, +1,eguitar solo 1 c.wav,Electric Guitar, +1,eguitar slide 05.wav,Electric Guitar, +1,eguitar slide 04.wav,Electric Guitar, +1,eguitar slide 03.wav,Electric Guitar, +1,eguitar slide 02.wav,Electric Guitar, +1,eguitar slide 01.wav,Electric Guitar, +1,eguitar rythm.wav,Electric Guitar, +1,eguitar rythm dist 2 l+r.wav,Electric Guitar, +1,eguitar rythm dist 2 c+3 c+c.wav,Electric Guitar, +1,eguitar rythm dist 1 l+r.wav,Electric Guitar, +1,eguitar rythm dist 02 r.wav,Electric Guitar, +1,eguitar rythm dist 01 l.wav,Electric Guitar, +1,eguitar rythm arr 78 lr end.wav,Electric Guitar, +1,eguitar rythm arr 56 lr.wav,Electric Guitar, +1,eguitar rythm arr 04.wav,Electric Guitar, +1,eguitar rythm arr 03.wav,Electric Guitar, +1,eguitar rythm arr 02.wav,Electric Guitar, +1,eguitar rythm arr 01 main lead.wav,Electric Guitar, +1,eguitar rythm 02.wav,Electric Guitar, +1,eguitar rythm 01.wav,Electric Guitar, +1,eguitar rhythmic.wav,Electric Guitar, +1,eguitar mute r.wav,Electric Guitar, +1,eguitar fx filter.wav,Electric Guitar, +1,eguitar fuzz.wav,Electric Guitar, +1,eguitar disto solo l.wav,Electric Guitar, +1,eguitar disto solo c.wav,Electric Guitar, +1,eguitar disto left.wav,Electric Guitar, +1,eguitar disto disto.wav,Electric Guitar, +1,eguitar disto 2.wav,Electric Guitar, +1,eguitar disto 1r.wav,Electric Guitar, +1,eguitar disto 1l.wav,Electric Guitar, +1,eguitar disto 1c.wav,Electric Guitar, +1,eguitar disto 1.wav,Electric Guitar, +1,eguitar clean l+r.wav,Electric Guitar, +1,eguitar clean c3.wav,Electric Guitar, +1,eguitar clean c2.wav,Electric Guitar, +1,eguitar clean c1.wav,Electric Guitar, +1,eguitar arregement clean 02.wav,Electric Guitar, +1,eguitar arregement clean 01.wav,Electric Guitar, +1,eguitar arrangement 1+2.wav,Electric Guitar, +1,eguitar arr dist.wav,Electric Guitar, +1,eguitar arr 02.wav,Electric Guitar, +1,eguitar arr 01.wav,Electric Guitar, +1,eguitar arp.wav,Electric Guitar, +1,eguitar 03.wav,Electric Guitar, +1,eguitar 02.wav,Electric Guitar, +1,eguitar 01.wav,Electric Guitar, +1,eguit9.wav,Electric Guitar, +1,eguit4 right.wav,Electric Guitar, +1,eguit3 left.wav,Electric Guitar, +1,eguit2 right.wav,Electric Guitar, +1,eguit2 left.wav,Electric Guitar, +1,eguit10.wav,Electric Guitar, +1,eguit1 right.wav,Electric Guitar, +1,eguit1 left.wav,Electric Guitar, +1,eguit1 (wah wah).wav,Electric Guitar, +1,eguit steve vai 2.wav,Electric Guitar, +1,eguit steve vai 1.wav,Electric Guitar, +1,eguit solos 5.wav,Electric Guitar, +1,eguit solos 4.wav,Electric Guitar, +1,eguit solos 3.wav,Electric Guitar, +1,eguit satriani.wav,Electric Guitar, +1,eguit satriani 2.wav,Electric Guitar, +1,eguit rhytmic.wav,Electric Guitar, +1,eguit rhytmic 3.wav,Electric Guitar, +1,eguit r.wav,Electric Guitar, +1,eguit left.wav,Electric Guitar, +1,eguit l.wav,Electric Guitar, +1,eguit intro.wav,Electric Guitar, +1,eguit fx.wav,Electric Guitar, +1,eguit fuzz.wav,Electric Guitar, +1,eguit feedback fx.wav,Electric Guitar, +1,eguit d st.wav,Electric Guitar, +1,eguit clean 2.wav,Electric Guitar, +1,eguit clean 1.wav,Electric Guitar, +1,eguit chorus.wav,Electric Guitar, +1,eguit center.wav,Electric Guitar, +1,eguit c.wav,Electric Guitar, +1,eguit base.wav,Electric Guitar, +1,eguit auto pan.wav,Electric Guitar, +1,eguit 9.wav,Electric Guitar, +1,eguit 8.wav,Electric Guitar, +1,eguit 5 ambiance.wav,Electric Guitar, +1,eguit 3 right.wav,Electric Guitar, +1,eguit 2 delay.wav,Electric Guitar, +1,eguit 2 chorus.wav,Electric Guitar, +1,eguit 1 disto.wav,Electric Guitar, +1,eguit + eguit1.wav,Electric Guitar, +1,eguit (right).wav,Electric Guitar, +1,eguit (muted).wav,Electric Guitar, +1,eguit (left).wav,Electric Guitar, +1,eguit (feft).wav,Electric Guitar, +1,egui solos.wav,Electric Guitar, +1,egtrslides.wav,Electric Guitar, +1,egtr4 clean right.wav,Electric Guitar, +1,egtr4 (delay).wav,Electric Guitar, +1,egtr3 right.wav,Electric Guitar, +1,egtr3 left.wav,Electric Guitar, +1,egtr3 delay.wav,Electric Guitar, +1,egtr2+6 (palm muted).wav,Electric Guitar, +1,egtr1+3.wav,Electric Guitar, +1,egtr1 muted.wav,Electric Guitar, +1,egtr fx.wav,Electric Guitar, +1,egt 4.wav,Electric Guitar, +1,egsolo2.wav,Electric Guitar, +1,egsolo right.wav,Electric Guitar, +1,egsolo + disto2.wav,Electric Guitar, +1,egslidesolo.wav,Electric Guitar, +1,egslide+egtreble.wav,Electric Guitar, +1,egsdisto.wav,Electric Guitar, +1,egscrunch.wav,Electric Guitar, +1,egrotary.wav,Electric Guitar, +1,egriffs.wav,Electric Guitar, +1,egriff.wav,Electric Guitar, +1,egrhythm.wav,Electric Guitar, +1,egreverse.wav,Electric Guitar, +1,egr.wav,Electric Guitar, +1,egplucked.wav,Electric Guitar, +1,egoctave.wav,Electric Guitar, +1,egmute2 left.wav,Electric Guitar, +1,egmute+wah.wav,Electric Guitar, +1,eglick.wav,Electric Guitar, +1,eglead+arr.wav,Electric Guitar, +1,eglc.wav,Electric Guitar, +1,eghamonics.wav,Electric Guitar, +1,egdistortion2.wav,Electric Guitar, +1,egdistorted.wav,Electric Guitar, +1,egdisto_treble.wav,Electric Guitar, +1,egcleanplucked r.wav,Electric Guitar, +1,egcleanhigh.wav,Electric Guitar, +1,egclean_treble.wav,Electric Guitar, +1,egclean3.wav,Electric Guitar, +1,egclean2 right.wav,Electric Guitar, +1,egclean l.wav,Electric Guitar, +1,egchorus4.wav,Electric Guitar, +1,egchorus3 left.wav,Electric Guitar, +1,egchorus1 right.wav,Electric Guitar, +1,egchords.wav,Electric Guitar, +1,egatmo2.wav,Electric Guitar, +1,egarr.wav,Electric Guitar, +1,egambient.wav,Electric Guitar, +1,eg_wha.wav,Electric Guitar, +1,eg_tremolo.wav,Electric Guitar, +1,eg_trebleclean.wav,Electric Guitar, +1,eg_talkbox.wav,Electric Guitar, +1,eg_rwha.wav,Electric Guitar, +1,eg_rslide.wav,Electric Guitar, +1,eg_raddcrunch.wav,Electric Guitar, +1,eg_r2.wav,Electric Guitar, +1,eg_r(wha).wav,Electric Guitar, +1,eg_r(harmo).wav,Electric Guitar, +1,eg_r(clean).wav,Electric Guitar, +1,eg_lwha.wav,Electric Guitar, +1,eg_laddcrunch.wav,Electric Guitar, +1,eg_l_rlead.wav,Electric Guitar, +1,eg_l2clean.wav,Electric Guitar, +1,eg_l2.wav,Electric Guitar, +1,eg_l+r.wav,Electric Guitar, +1,eg_l(wha).wav,Electric Guitar, +1,eg_l(rotary).wav,Electric Guitar, +1,eg_l(clean).wav,Electric Guitar, +1,eg_1.wav,Electric Guitar, +1,eg_(solo).wav,Electric Guitar, +1,eg9.wav,Electric Guitar, +1,eg8.wav,Electric Guitar, +1,eg7 left.wav,Electric Guitar, +1,eg6 solos.wav,Electric Guitar, +1,eg5 melo.wav,Electric Guitar, +1,eg5 left.wav,Electric Guitar, +1,eg5 c.wav,Electric Guitar, +1,eg4 right.wav,Electric Guitar, +1,eg4 r.wav,Electric Guitar, +1,eg4 melo.wav,Electric Guitar, +1,eg4 c solo.wav,Electric Guitar, +1,eg3lead.wav,Electric Guitar, +1,eg3 l.wav,Electric Guitar, +1,eg3 intro effect right.wav,Electric Guitar, +1,eg3 c clean.wav,Electric Guitar, +1,eg2disto.wav,Electric Guitar, +1,eg2+3.wav,Electric Guitar, +1,eg2 r.wav,Electric Guitar, +1,eg2 muted.wav,Electric Guitar, +1,eg2 left.wav,Electric Guitar, +1,eg2 l base 1.wav,Electric Guitar, +1,eg2 intro effect left.wav,Electric Guitar, +1,eg2 + eg6.wav,Electric Guitar, +1,eg10.wav,Electric Guitar, +1,eg1+adds.wav,Electric Guitar, +1,eg1+2.wav,Electric Guitar, +1,eg1 intro effect.wav,Electric Guitar, +1,eg1 clean.wav,Electric Guitar, +1,eg1 c.wav,Electric Guitar, +1,eg1 c base 2.wav,Electric Guitar, +1,eg1 c base 1.wav,Electric Guitar, +1,eg1 c arreglo.wav,Electric Guitar, +1,eg1 bright.wav,Electric Guitar, +1,eg02.wav,Electric Guitar, +1,eg01.wav,Electric Guitar, +1,eg-.wav,Electric Guitar, +1,eg+treble.wav,Electric Guitar, +1,eg(whammy).wav,Electric Guitar, +1,eg(temolo).wav,Electric Guitar, +1,eg(solo) 2.wav,Electric Guitar, +1,eg(solo) 1.wav,Electric Guitar, +1,eg(slide).wav,Electric Guitar, +1,eg(rotary).wav,Electric Guitar, +1,eg(rhy).wav,Electric Guitar, +1,eg(perc).wav,Electric Guitar, +1,eg(lead)add.wav,Electric Guitar, +1,eg(lead)).wav,Electric Guitar, +1,eg(lead) 1.wav,Electric Guitar, +1,eg(lead) 1 left.wav,Electric Guitar, +1,eg(filter).wav,Electric Guitar, +1,eg(drive).wav,Electric Guitar, +1,eg(disto)_r.wav,Electric Guitar, +1,eg(disto)_l.wav,Electric Guitar, +1,eg(clean)_2.wav,Electric Guitar, +1,eg(baritone).wav,Electric Guitar, +1,eg(addsolo).wav,Electric Guitar, +1,eg wha.wav,Electric Guitar, +1,eg wah-wah.wav,Electric Guitar, +1,eg wah wah.wav,Electric Guitar, +1,eg vynil.wav,Electric Guitar, +1,eg trs cocotte.wav,Electric Guitar, +1,eg trem + fx.wav,Electric Guitar, +1,eg theme.wav,Electric Guitar, +1,eg synth.wav,Electric Guitar, +1,eg strum.wav,Electric Guitar, +1,eg solos.wav,Electric Guitar, +1,eg solo 3.wav,Electric Guitar, +1,eg solo 1+2.wav,Electric Guitar, +1,eg solo 1 + 2.wav,Electric Guitar, +1,eg slide solo.wav,Electric Guitar, +1,eg slide + fx + 11 + 4 + clean + 14 + 3.wav,Electric Guitar, +1,eg slade.wav,Electric Guitar, +1,eg rythm 02.wav,Electric Guitar, +1,eg rythm 01.wav,Electric Guitar, +1,eg riff 1 + 2.wav,Electric Guitar, +1,eg rhythmic.wav,Electric Guitar, +1,eg rhythmic 04.wav,Electric Guitar, +1,eg rhythmic 02.wav,Electric Guitar, +1,eg rhythmic 01.wav,Electric Guitar, +1,eg rhythm l + r.wav,Electric Guitar, +1,eg rhythm + adds.wav,Electric Guitar, +1,eg reverse l + r.wav,Electric Guitar, +1,eg reverb.wav,Electric Guitar, +1,eg r 2 fx.wav,Electric Guitar, +1,eg powerchords.wav,Electric Guitar, +1,eg pick theme.wav,Electric Guitar, +1,eg phaser 1 + 2.wav,Electric Guitar, +1,eg pedal.wav,Electric Guitar, +1,eg overdub.wav,Electric Guitar, +1,eg od 01.wav,Electric Guitar, +1,eg muted + solo.wav,Electric Guitar, +1,eg mute + chords 1.wav,Electric Guitar, +1,eg mix chorus 1 + 2.wav,Electric Guitar, +1,eg melody.wav,Electric Guitar, +1,eg main rhythms.wav,Electric Guitar, +1,eg main 1+eg stereo.wav,Electric Guitar, +1,eg licks.wav,Electric Guitar, +1,eg leads.wav,Electric Guitar, +1,eg lead l + r.wav,Electric Guitar, +1,eg lead 2 right.wav,Electric Guitar, +1,eg lead 1 left.wav,Electric Guitar, +1,eg lead 03.wav,Electric Guitar, +1,eg lead 03 end.wav,Electric Guitar, +1,eg l arr.wav,Electric Guitar, +1,eg l + r.wav,Electric Guitar, +1,eg intro + verses.wav,Electric Guitar, +1,eg harmonics.wav,Electric Guitar, +1,eg fx ambiance.wav,Electric Guitar, +1,eg fx + atmo + mute.wav,Electric Guitar, +1,eg fuzz.wav,Electric Guitar, +1,eg fuzz right.wav,Electric Guitar, +1,eg fuzz left.wav,Electric Guitar, +1,eg flanger.wav,Electric Guitar, +1,eg fb.wav,Electric Guitar, +1,eg est.wav,Electric Guitar, +1,eg end right + solo left.wav,Electric Guitar, +1,eg end left + harm.wav,Electric Guitar, +1,eg eg.wav,Electric Guitar, +1,eg dly.wav,Electric Guitar, +1,eg dist low.wav,Electric Guitar, +1,eg dist base.wav,Electric Guitar, +1,eg dist arr.wav,Electric Guitar, +1,eg dist adds.wav,Electric Guitar, +1,eg dist adds 2.wav,Electric Guitar, +1,eg dist adds 1.wav,Electric Guitar, +1,eg dist 4+5.wav,Electric Guitar, +1,eg dist 2.wav,Electric Guitar, +1,eg dist 1.wav,Electric Guitar, +1,eg dist 1+2+3.wav,Electric Guitar, +1,eg dist 1 + 2.wav,Electric Guitar, +1,eg dist 09 solo.wav,Electric Guitar, +1,eg dist 04+05.wav,Electric Guitar, +1,eg dist 04 solo.wav,Electric Guitar, +1,eg dist 03 right.wav,Electric Guitar, +1,eg dist 03 arr.wav,Electric Guitar, +1,eg dist 03 (right).wav,Electric Guitar, +1,eg dist 02 (left).wav,Electric Guitar, +1,eg dist 01+02+03.wav,Electric Guitar, +1,eg dist 01 right.wav,Electric Guitar, +1,eg dist 01 left.wav,Electric Guitar, +1,eg dis rhythm 2.wav,Electric Guitar, +1,eg dis rhythm 1.wav,Electric Guitar, +1,eg dis c.wav,Electric Guitar, +1,eg dis arr.wav,Electric Guitar, +1,eg dis 2.wav,Electric Guitar, +1,eg delay.wav,Electric Guitar, +1,eg delay fx 1+2.wav,Electric Guitar, +1,eg d.wav,Electric Guitar, +1,eg d right.wav,Electric Guitar, +1,eg crunch r.wav,Electric Guitar, +1,eg crunch left.wav,Electric Guitar, +1,eg crunch l.wav,Electric Guitar, +1,eg crunch l+r.wav,Electric Guitar, +1,eg crunch guitar + reverse guit center + rhythm 2.wav,Electric Guitar, +1,eg crunch arr.wav,Electric Guitar, +1,eg crunch 02 end.wav,Electric Guitar, +1,eg crunch + solo.wav,Electric Guitar, +1,eg crunch + l.wav,Electric Guitar, +1,eg crunch + ctr.wav,Electric Guitar, +1,eg crazy.wav,Electric Guitar, +1,eg clean right + left + delay right + fx left.wav,Electric Guitar, +1,eg clean right + add 3.wav,Electric Guitar, +1,eg clean rhythm left + clean rhythm right.wav,Electric Guitar, +1,eg clean l+r.wav,Electric Guitar, +1,eg clean intro.wav,Electric Guitar, +1,eg clean delay l+r.wav,Electric Guitar, +1,eg clean chorus.wav,Electric Guitar, +1,eg clean center + rhythm center.wav,Electric Guitar, +1,eg clean 4 + 5.wav,Electric Guitar, +1,eg clean 2+3+4.wav,Electric Guitar, +1,eg clean 2 l+r.wav,Electric Guitar, +1,eg clean 10.wav,Electric Guitar, +1,eg clean 1+2.wav,Electric Guitar, +1,eg clean 1 l+r.wav,Electric Guitar, +1,eg clean 1 + 2.wav,Electric Guitar, +1,eg clean 09.wav,Electric Guitar, +1,eg clean 09+dist 06.wav,Electric Guitar, +1,eg clean 08.wav,Electric Guitar, +1,eg clean 07.wav,Electric Guitar, +1,eg clean 07+08.wav,Electric Guitar, +1,eg clean 05.wav,Electric Guitar, +1,eg clean 04.wav,Electric Guitar, +1,eg clean 04+05.wav,Electric Guitar, +1,eg clean 03+06.wav,Electric Guitar, +1,eg clean 02 intro.wav,Electric Guitar, +1,eg clean 01+02.wav,Electric Guitar, +1,eg clean 01 left.wav,Electric Guitar, +1,eg clean + theme.wav,Electric Guitar, +1,eg cl 2.wav,Electric Guitar, +1,eg cl 1.wav,Electric Guitar, +1,eg chorus 2.wav,Electric Guitar, +1,eg chorus 1.wav,Electric Guitar, +1,eg chords 2.wav,Electric Guitar, +1,eg chord.wav,Electric Guitar, +1,eg cho.wav,Electric Guitar, +1,eg center.wav,Electric Guitar, +1,eg c fuzz.wav,Electric Guitar, +1,eg c 2.wav,Electric Guitar, +1,eg base.wav,Electric Guitar, +1,eg b 1.wav,Electric Guitar, +1,eg arrangement.wav,Electric Guitar, +1,eg arrangement 03.wav,Electric Guitar, +1,eg arr 4.wav,Electric Guitar, +1,eg arr 2 right.wav,Electric Guitar, +1,eg arr 12.wav,Electric Guitar, +1,eg arr 02.wav,Electric Guitar, +1,eg arr 01.wav,Electric Guitar, +1,eg arp.wav,Electric Guitar, +1,eg ambient chords.wav,Electric Guitar, +1,eg adds r.wav,Electric Guitar, +1,eg adds l.wav,Electric Guitar, +1,eg adds glitch.wav,Electric Guitar, +1,eg adds 2 l.wav,Electric Guitar, +1,eg adds 1 r.wav,Electric Guitar, +1,eg addlib.wav,Electric Guitar, +1,eg add.wav,Electric Guitar, +1,eg add ab.wav,Electric Guitar, +1,eg add 2.wav,Electric Guitar, +1,eg add 1.wav,Electric Guitar, +1,eg add 1 + arr l.wav,Electric Guitar, +1,eg add + arr 4.wav,Electric Guitar, +1,eg 9 right.wav,Electric Guitar, +1,eg 8+9+11+12+13.wav,Electric Guitar, +1,eg 8 left.wav,Electric Guitar, +1,eg 8 - 9.wav,Electric Guitar, +1,eg 8 + 9 + 10.wav,Electric Guitar, +1,eg 7+14+15.wav,Electric Guitar, +1,eg 7 reverb.wav,Electric Guitar, +1,eg 7 left.wav,Electric Guitar, +1,eg 6 right.wav,Electric Guitar, +1,eg 6 muted.wav,Electric Guitar, +1,eg 6 left.wav,Electric Guitar, +1,eg 6 end.wav,Electric Guitar, +1,eg 6 arr.wav,Electric Guitar, +1,eg 6 + 8.wav,Electric Guitar, +1,eg 567.wav,Electric Guitar, +1,eg 5+6.wav,Electric Guitar, +1,eg 5+6+8+9+10.wav,Electric Guitar, +1,eg 5+6+7.wav,Electric Guitar, +1,eg 5 center.wav,Electric Guitar, +1,eg 5 add arp.wav,Electric Guitar, +1,eg 5 + 9 + 10 + 11.wav,Electric Guitar, +1,eg 5 + 8.wav,Electric Guitar, +1,eg 5 + 8 disto + solo.wav,Electric Guitar, +1,eg 5 + 6 + 7.wav,Electric Guitar, +1,eg 5 (chords).wav,Electric Guitar, +1,eg 46.wav,Electric Guitar, +1,eg 4+9.wav,Electric Guitar, +1,eg 4+7.wav,Electric Guitar, +1,eg 4+5.wav,Electric Guitar, +1,eg 4 l+r.wav,Electric Guitar, +1,eg 4 + solo.wav,Electric Guitar, +1,eg 4 + 7 (clean right).wav,Electric Guitar, +1,eg 3+8+11+14.wav,Electric Guitar, +1,eg 3+4.wav,Electric Guitar, +1,eg 3+10.wav,Electric Guitar, +1,eg 3 solos.wav,Electric Guitar, +1,eg 3 right end.wav,Electric Guitar, +1,eg 3 muted right.wav,Electric Guitar, +1,eg 3 left rythm.wav,Electric Guitar, +1,eg 3 l.wav,Electric Guitar, +1,eg 3 arr.wav,Electric Guitar, +1,eg 3 + 5 + 8.wav,Electric Guitar, +1,eg 3 + 4 + 7.wav,Electric Guitar, +1,eg 3 + 10 + 11.wav,Electric Guitar, +1,eg 3 (r).wav,Electric Guitar, +1,eg 2lead.wav,Electric Guitar, +1,eg 2+wahwah.wav,Electric Guitar, +1,eg 2+5.wav,Electric Guitar, +1,eg 2 whawha.wav,Electric Guitar, +1,eg 2 r.wav,Electric Guitar, +1,eg 2 muted.wav,Electric Guitar, +1,eg 2 muted right.wav,Electric Guitar, +1,eg 2 muted left.wav,Electric Guitar, +1,eg 2 left end.wav,Electric Guitar, +1,eg 2 l.wav,Electric Guitar, +1,eg 2 intro.wav,Electric Guitar, +1,eg 2 intro r.wav,Electric Guitar, +1,eg 2 disto + eg lead 1 + eg lead 2.wav,Electric Guitar, +1,eg 2 dis.wav,Electric Guitar, +1,eg 2 delay right.wav,Electric Guitar, +1,eg 2 delay end.wav,Electric Guitar, +1,eg 2 background.wav,Electric Guitar, +1,eg 2 + 6 + 7 + 8.wav,Electric Guitar, +1,eg 2 + 3 + 4 + 9.wav,Electric Guitar, +1,eg 2 (l).wav,Electric Guitar, +1,eg 13.wav,Electric Guitar, +1,eg 12+13+15.wav,Electric Guitar, +1,eg 12 + 13.wav,Electric Guitar, +1,eg 10.wav,Electric Guitar, +1,eg 1+2+6.wav,Electric Guitar, +1,eg 1+2+6+7+10.wav,Electric Guitar, +1,eg 1+2 lr.wav,Electric Guitar, +1,eg 1 tremolo.wav,Electric Guitar, +1,eg 1 r.wav,Electric Guitar, +1,eg 1 muted left.wav,Electric Guitar, +1,eg 1 left phaser.wav,Electric Guitar, +1,eg 1 l.wav,Electric Guitar, +1,eg 1 intro.wav,Electric Guitar, +1,eg 1 fx.wav,Electric Guitar, +1,eg 1 end.wav,Electric Guitar, +1,eg 1 + eg 3fx.wav,Electric Guitar, +1,eg 1 + 5 +10.wav,Electric Guitar, +1,eg 1 + 4.wav,Electric Guitar, +1,eg 1 + 2 muted.wav,Electric Guitar, +1,eg 1 + 2 + slide.wav,Electric Guitar, +1,eg 1 + 2 + 5.wav,Electric Guitar, +1,eg 1 + 2 (theme).wav,Electric Guitar, +1,eg 08.wav,Electric Guitar, +1,eg 07.wav,Electric Guitar, +1,eg 06+03.wav,Electric Guitar, +1,eg 04 solo.wav,Electric Guitar, +1,eg 04 left+right.wav,Electric Guitar, +1,eg 03 right.wav,Electric Guitar, +1,eg 03 left.wav,Electric Guitar, +1,eg 03 intro.wav,Electric Guitar, +1,eg 02 muted.wav,Electric Guitar, +1,eg 01 left.wav,Electric Guitar, +1,eg 01 left+right.wav,Electric Guitar, +1,eg 01 crunch.wav,Electric Guitar, +1,eg 01 ambiance.wav,Electric Guitar, +1,eg (palm mute) 2.wav,Electric Guitar, +1,eg (palm mute) 1.wav,Electric Guitar, +1,efxgt.wav,Other, +1,efx_perc.wav,Other, +1,efx(rain).wav,Other, +1,efx(crowd).wav,Other, +1,efx intro.wav,Other, +1,efx drop.wav,Other, +1,efx birds.wav,Other, +1,effet synthe.wav,Other, +1,effectguitar 3.wav,Other, +1,effectgtr 3.wav,Other, +1,effect.wav,Other, +1,edrums and shak.wav,Other, +1,edroite.wav,Other, +1,ed fletcher.wav,Other, +1,e.wav,Other, +1,e.piano.wav,Other, +1,e.gtr.wav,Other, +1,e.d.i. mean.wav,Other, +1,e-git lead.wav,Other, +1,e-drums.wav,Other, +1,e-drums&percs.wav,Other, +1,e-40-adlib.wav,Other, +1,e piano-1.wav,Other, +1,e piano solo.wav,Other, +1,e piano arr.wav,Other, +1,e keys 2.wav,Other, +1,e guitars.wav,Electric Guitar, +1,e guitar solo 2.wav,Electric Guitar, +1,e guitar solo 1.wav,Electric Guitar, +1,e guitar solo 1 r.wav,Electric Guitar, +1,e guitar solo 1 l.wav,Electric Guitar, +1,e guitar right.wav,Electric Guitar, +1,e guitar rhytmic.wav,Electric Guitar, +1,e guitar rhytmic disto 3.wav,Electric Guitar, +1,e guitar rhytmic disto 2.wav,Electric Guitar, +1,e guitar rhytmic disto 1.wav,Electric Guitar, +1,e guitar rhytmic crunch.wav,Electric Guitar, +1,e guitar open.wav,Electric Guitar, +1,e guitar muted.wav,Electric Guitar, +1,e guitar left.wav,Electric Guitar, +1,e guitar fx.wav,Electric Guitar, +1,e guitar fuzz.wav,Electric Guitar, +1,e guitar disto 3 r.wav,Electric Guitar, +1,e guitar disto 3 l.wav,Electric Guitar, +1,e guitar disto 2 r.wav,Electric Guitar, +1,e guitar disto 2 l.wav,Electric Guitar, +1,e guitar disto 1 r.wav,Electric Guitar, +1,e guitar disto 1 l.wav,Electric Guitar, +1,e guitar clean.wav,Electric Guitar, +1,e guitar c.wav,Electric Guitar, +1,e guitar arragement clean 2.wav,Electric Guitar, +1,e guitar arragement 3.wav,Electric Guitar, +1,e guitar 6.wav,Electric Guitar, +1,e guitar 5.wav,Electric Guitar, +1,e guitar 4r.wav,Electric Guitar, +1,e guitar 4 chords.wav,Electric Guitar, +1,e guitar 3 r.wav,Electric Guitar, +1,e guitar 3 l.wav,Electric Guitar, +1,e guitar 2 muted.wav,Electric Guitar, +1,e guitar 2 l.wav,Electric Guitar, +1,e guitar 2 c.wav,Electric Guitar, +1,e guitar 1 r.wav,Electric Guitar, +1,e guitar 04.wav,Electric Guitar, +1,e guitar 03 c.wav,Electric Guitar, +1,e guitar 02 r.wav,Electric Guitar, +1,e guitar 01 l.wav,Electric Guitar, +1,e guit 3.wav,Electric Guitar, +1,e guit 2.wav,Electric Guitar, +1,e guit 1.wav,Electric Guitar, +1,e gtr2.wav,Electric Guitar, +1,e gtr clean.wav,Electric Guitar, +1,e gtr 3.wav,Electric Guitar, +1,e gtr 2 right.wav,Electric Guitar, +1,e gtr 1 left.wav,Electric Guitar, +1,dx piano.wav,Other, +1,dwele.wav,Other, +1,dv2.wav,Other, +1,dv and adds.wav,Other, +1,dustin lynch.wav,Other, +1,dums.wav,Other, +1,dukcimer.wav,Other, +1,ducked basses.wav,Other, +1,dubstep.wav,Other, +1,dub synth.wav,Other, +1,dub synth-new-full.wav,Other, +1,dub bass.wav,Other, +1,drumsperc.wav,Drums, +1,drumsbass.wav,Drums, +1,drums_ok.wav,Drums, +1,drums_electric.wav,Drums, +1,drums2.wav,Drums, +1,drums1+2.wav,Drums, +1,drums.cm.wav,Drums, +1,drums-toms.wav,Drums, +1,drums+tambourinemix.wav,Drums, +1,drums+perc.wav,Drums, +1,drums+fx street.wav,Drums, +1,drums+edrums.wav,Drums, +1,drums+claps.wav,Drums, +1,drums(el.kit).wav,Drums, +1,drums(ac.kit).wav,Drums, +1,drums without clap.wav,Drums, +1,drums percs fx.wav,Drums, +1,drums perc.wav,Drums, +1,drums mixmaster.wav,Drums, +1,drums loop.wav,Drums, +1,drums loop+percs+fx.wav,Drums, +1,drums kick.wav,Drums, +1,drums electronic.wav,Drums, +1,drums elec mixmaster.wav,Drums, +1,drums eb 140bpm.wav,Drums, +1,drums and toms.wav,Drums, +1,drums and tambourine.wav,Drums, +1,drums and percs.wav,Drums, +1,drums and perc.wav,Drums, +1,drums and loop end.wav,Drums, +1,drums and eurodance.wav,Drums, +1,drums and cymb.wav,Drums, +1,drums 102bpm.wav,Drums, +1,drums 1 + 2.wav,Drums, +1,drums (loop).wav,Drums, +1,drums & percs.wav,Drums, +1,drum&perc.wav,Drums, +1,drum set 2 left.wav,Drums, +1,drum set 1 right.wav,Drums, +1,drum kit 2.wav,Drums, +1,drum kit 1.wav,Drums, +1,drum and dradds.wav,Drums, +1,drum (loop).wav,Drums, +1,drop_synth.wav,Other, +1,droiteguitar.wav,Other, +1,drivegt 2.wav,Other, +1,drive by.wav,Other, +1,drievgt 3.wav,Other, +1,drievgt 2.wav,Other, +1,drel.wav,Other, +1,dre synth.wav,Other, +1,drama_synth_1.wav,Other, +1,dragonball_s_synth_leads.wav,Other, +1,dragonball_s_orch_strings.wav,Other, +1,dragonball_s_orch_percussion_timpanis.wav,Other, +1,dragonball_s_orch_percussion_edit.wav,Other, +1,dragonball_s_orch_harp.wav,Other, +1,dragonball_s_lv.wav,Other, +1,dragonball_s_guitars_rhythm.wav,Other, +1,dragonball_s_guitars_lead.wav,Other, +1,dragonball_s_guitar_dub_02.wav,Other, +1,dragonball_s_guitar_dub_01.wav,Other, +1,dragonball_s_drums.wav,Other, +1,dragonball_s_bv.wav,Other, +1,dragonball_s_bass.wav,Other, +1,dr. dre-adlib.wav,Other, +1,dove cameron.wav,Other, +1,doubleblass.wav,Other, +1,doublebass pizzicato.wav,Other, +1,dobro slide.wav,Other, +1,dnce.wav,Other, +1,dnce-adlib.wav,Other, +1,dnb bass.wav,Other, +1,dmx.wav,Other, +1,dmc.wav,Other, +1,dlygtr.wav,Other, +1,djembe.wav,Other, +1,dj.wav,Other, +1,dj trick + woosh + moog.wav,Other, +1,dj khalid.wav,Other, +1,dj kay gee.wav,Other, +1,dj kane.wav,Other, +1,dj fx.wav,Other, +1,dj ez.wav,Other, +1,dizzee rascal.wav,Other, +1,distosynth.wav,Other, +1,distortion gtr.wav,Electric Guitar, +1,distortedguitar.wav,Electric Guitar, +1,distorted guitar.wav,Electric Guitar, +1,distorsion guitar solo.wav,Electric Guitar, +1,distoguitar 4.wav,Electric Guitar, +1,distoguitar 1.wav,Electric Guitar, +1,distogtrs1.wav,Electric Guitar, +1,distogtr23 lr.wav,Electric Guitar, +1,distogtr2.wav,Electric Guitar, +1,distogtr.wav,Electric Guitar, +1,distoelguitarstereolow.wav,Electric Guitar, +1,distoelguitarstereohigh.wav,Electric Guitar, +1,distobass and sinebass.wav,Electric Guitar, +1,disto.wav,Electric Guitar, +1,disto solo eg.wav,Electric Guitar, +1,disto right gtr 4.wav,Electric Guitar, +1,disto right gtr 2.wav,Electric Guitar, +1,disto right eg.wav,Electric Guitar, +1,disto mono center eg.wav,Electric Guitar, +1,disto left gtr 3.wav,Electric Guitar, +1,disto left gtr 1.wav,Electric Guitar, +1,disto left eg.wav,Electric Guitar, +1,disto guitar.wav,Electric Guitar, +1,disto guit.wav,Electric Guitar, +1,disto gtrs.wav,Electric Guitar, +1,disto gtr2.wav,Electric Guitar, +1,disto eg2.wav,Electric Guitar, +1,disto ass lead.wav,Electric Guitar, +1,distleadguitar.wav,Electric Guitar, +1,distguitardelay.wav,Electric Guitar, +1,distguitar.wav,Electric Guitar, +1,distgtrs.wav,Electric Guitar, +1,dist_guitars.wav,Electric Guitar, +1,dist. guitar.wav,Electric Guitar, +1,dist guitar.wav,Electric Guitar, +1,dis right.wav,Electric Guitar, +1,dirty hypersaw resosub wooble.wav,Electric Guitar, +1,dirty guits.wav,Electric Guitar, +1,dinco d.wav,Other, +1,digital_piano.wav,Other, +1,digital.wav,Other, +1,digital-piano.wav,Other, +1,digital comp.wav,Other, +1,digeridoo.wav,Other, +1,dig piano.wav,Other, +1,dierks bentley.wav,Other, +1,didg.wav,Other, +1,diamante.wav,Other, +1,di_guitar.wav,Other, +1,dgtr 1.wav,Other, +1,dgauche.wav,Other, +1,devin dawson.wav,Other, +1,deuce.wav,Other, +1,delaysynth.wav,Other, +1,delayguitar.wav,Other, +1,delay guit.wav,Other, +1,del the funky homosapien.wav,Other, +1,def.wav,Other, +1,decompte.wav,Other, +1,decks.wav,Other, +1,decay.wav,Other, +1,dblbass.wav,Other, +1,daw.wav,Other, +1,david guetta.wav,Other, +1,david gilmour.wav,Other, +1,david bowie.wav,Other, +1,david archuleta.wav,Other, +1,dave matthews.wav,Other, +1,dave hollister.wav,Other, +1,dave haywood.wav,Other, +1,darryl mcdaniels.wav,Other, +1,daron malakian.wav,Other, +1,dark strings.wav,Other, +1,darell.wav,Other, +1,danny worsnop.wav,Other, +1,danny worsnop-adlib.wav,Other, +1,danny boy.wav,Other, +1,daniel caesar-adlib.wav,Other, +1,dance groove.wav,Other, +1,dance basic.wav,Other, +1,dan.wav,Other, +1,dan reynolds.wav,Other, +1,dan caplen.wav,Other, +1,damon albarn.wav,Other, +1,damon albarn-adlib.wav,Other, +1,damien rice.wav,Other, +1,daddy yankee.wav,Other, +1,dacus.wav,Other, +1,da kurlzz.wav,Other, +1,d50.wav,Other, +1,d50 staccato heaven.wav,Other, +1,d.o.e..wav,Other, +1,d-roc.wav,Other, +1,cymbs.wav,Other, +1,cymbalum.wav,Other, +1,cymbal.wav,Other, +1,curtis harding.wav,Other, +1,cuivres.wav,Other, +1,cuica.wav,Other, +1,cuatro.wav,Other, +1,cuatro-.wav,Other, +1,crystal rhodes.wav,Other, +1,crush decay.wav,Other, +1,crunchy black.wav,Other, +1,crunchgtr.wav,Other, +1,crunchgt.wav,Other, +1,crunch wahwah eg.wav,Other, +1,crunch strumming eg.wav,Other, +1,crunch right eg.wav,Other, +1,crunch arpeggio eg.wav,Other, +1,crunch left eg.wav,Other, +1,crowd voices.wav,Other, +1,cris pad.wav,Other, +1,crickets.wav,Other, +1,crescendo.wav,Other, +1,crash.wav,Other, +1,crack.wav,Other, +1,cp rhodes.wav,Other, +1,cp piano.wav,Other, +1,cp 80.wav,Other, +1,courtney laplante.wav,Other, +1,countoff.wav,Other, +1,counting crows.wav,Other, +1,counter gtr.wav,Other, +1,countdown.wav,Other, +1,count_&_fx.wav,Other, +1,corona.wav,Other, +1,conway twitty.wav,Other, +1,contrebasse.wav,Other, +1,compusaw.wav,Other, +1,colter wall.wav,Other, +1,collective soul - shine - lv.wav,Other, +1,collective soul - shine - guitar 3.wav,Other, +1,collective soul - shine - guitar 2.wav,Other, +1,collective soul - shine - guitar 1.wav,Other, +1,collective soul - shine - drum.wav,Other, +1,collective soul - shine - bv.wav,Other, +1,collective soul - shine - bass.wav,Other, +1,collective soul - shine - acc guitar.wav,Other, +1,coldplay.wav,Other, +1,cody wise.wav,Other, +1,cody chesnutt.wav,Other, +1,cloud_shimmer.wav,Other, +1,clock.wav,Other, +1,cloches.wav,Other, +1,clngtrs.wav,Other, +1,clicks.wav,Other, +1,click2.wav,Other, +1,clic.wav,Other, +1,cleanguitardelay.wav,Electric Guitar, +1,cleanguitar 3.wav,Electric Guitar, +1,cleanguitar 2.wav,Electric Guitar, +1,cleangtr.wav,Electric Guitar, +1,cleangt left.wav,Electric Guitar, +1,cleangt 3.wav,Electric Guitar, +1,cleangt 2 right.wav,Electric Guitar, +1,clean wahwha eg.wav,Electric Guitar, +1,clean right eggtr 2.wav,Electric Guitar, +1,clean right eg.wav,Electric Guitar, +1,clean mute.wav,Electric Guitar, +1,clean left eg.wav,Electric Guitar, +1,clean left eg.wav,Electric Guitar, +1,clean guitars.wav,Electric Guitar, +1,clean guitar 2.wav,Electric Guitar, +1,clean guit.wav,Electric Guitar, +1,clean guit delay.wav,Electric Guitar, +1,clean gtrs.wav,Electric Guitar, +1,clean gtr1.wav,Electric Guitar, +1,clean gtr 2.wav,Electric Guitar, +1,clean gtr 1.wav,Electric Guitar, +1,clean gt.wav,Electric Guitar, +1,clean gt 2.wav,Electric Guitar, +1,clean funk eg.wav,Electric Guitar, +1,clean electric gtr.wav,Electric Guitar, +1,clean e.guitar.wav,Electric Guitar, +1,clean center eg.wav,Electric Guitar, +1,clean arr eg.wav,Electric Guitar, +1,clean arp right eg.wav,Electric Guitar, +1,clavinets.wav,Keyboard,Clavinet +1,clavinet+glock.wav,Keyboard,Clavinet +1,clavinet synth.wav,Keyboard,Clavinet +1,clavinet ep.wav,Keyboard,Clavinet +1,clavinet 1.wav,Keyboard,Clavinet +1,clavinet 1 left.wav,Keyboard,Clavinet +1,clavier and lead.wav,Keyboard,Clavinet +1,clavi piano.wav,Keyboard,Clavinet +1,claves.wav,Keyboard,Clavinet +1,clav synths.wav,Keyboard,Clavinet +1,clav synth.wav,Keyboard,Clavinet +1,classical solo guitar right.wav,Other, +1,classical solo guitar left.wav,Other, +1,classical rhythm guitarwav.wav,Other, +1,classic guitar.wav,Other, +1,clarnet.wav,Other, +1,clarinet 2.wav,Other, +1,clarinet 1.wav,Other, +1,claps-01.wav,Other,Claps +1,claps+sfx.wav,Other,Claps +1,claps+rise.wav,Other,Claps +1,claps and snaps.wav,Other,Claps +1,claps & hats.wav,Other,Claps +1,clapp.wav,Other,Claps +1,clap fx.wav,Other,Claps +1,clap crowd.wav,Other,Claps +1,cl.wav,Other, +1,city girls.wav,Other, +1,cindy wilson.wav,Other, +1,cicus.wav,Other, +1,chuggtrdelay.wav,Other, +1,chrome.wav,Other, +1,chrom perc+bells.wav,Other, +1,chris stapleton.wav,Other, +1,chris martin.wav,Other, +1,chris brown-adlib.wav,Other, +1,chorusldguitar.wav,Other, +1,choruslayersynth.wav,Other, +1,chorusgtr+filtered.wav,Other, +1,chorusdistguitar.wav,Other, +1,chorusacoustic2.wav,Other, +1,chorusacoustic.wav,Other, +1,chorus guitar.wav,Other, +1,chorld.wav,Other, +1,chordsynth.wav,Other, +1,chord synth.wav,Other, +1,choirsynth.wav,Other, +1,choir_strings_synth.wav,Other, +1,choir vst.wav,Other, +1,choir synth.wav,Other, +1,choir synth mixmaster.wav,Other, +1,choir pad 12.wav,Other, +1,choir bv.wav,Other, +1,choir ahhs.wav,Other, +1,choeurs_the_cars_good_times_roll.wav,Other, +1,choeurs_stone_temple_pilots_dead_and_bloated.wav,Other, +1,chiquis rivera.wav,Other, +1,chior.wav,Other, +1,chimes timbales.wav,Other, +1,chilli.wav,Other, +1,child_voice.wav,Other, +1,chicago sufjan stevens wurlitzer right.wav,Other, +1,chicago sufjan stevens wurlitzer 2 left.wav,Other, +1,chicago sufjan stevens vibraphone.wav,Other, +1,chicago sufjan stevens trumpet.wav,Other, +1,chicago sufjan stevens strings section.wav,Other, +1,chicago sufjan stevens rhodes.wav,Other, +1,chicago sufjan stevens perc.wav,Other, +1,chicago sufjan stevens ld.wav,Other, +1,chicago sufjan stevens drums.wav,Other, +1,chicago sufjan stevens bv.wav,Other, +1,chicago sufjan stevens bass.wav,Other, +1,chicago sufjan stevens a guitar 2.wav,Other, +1,chicago sufjan stevens a guitar 1.wav,Other, +1,cher lloyd.wav,Other, +1,chencho corleone.wav,Other, +1,cheesey synth.wav,Other, +1,chat vox crowd.wav,Other, +1,charlie chaplin sample.wav,Other, +1,charlie brown.wav,Other, +1,charli xcx.wav,Other, +1,charlez aznavour.wav,Other, +1,chantolina.wav,Other, +1,chant.wav,Other, +1,centergtr 6.wav,Electric Guitar, +1,centergtr 5.wav,Electric Guitar, +1,centergtr 4.wav,Electric Guitar, +1,centergtr 2.wav,Electric Guitar, +1,centergtr 1.wav,Electric Guitar, +1,center gtr 5.wav,Electric Guitar, +1,center gtr 3.wav,Electric Guitar, +1,center gtr 1.wav,Electric Guitar, +1,center gtr 3.wav,Electric Guitar, +1,center clean rhythmic eg.wav,Electric Guitar, +1,cello lead.wav,Cello, +1,cello 02.wav,Cello, +1,cello 01.wav,Cello, +1,celli.wav,Cello, +1,celine dion.wav,Other, +1,celine dion-adlib.wav,Other, +1,celesta_1.wav,Other, +1,cav.wav,Other, +1,casting synth 3.wav,Other, +1,casting synth 2.wav,Other, +1,casting synth 1.wav,Other, +1,casting strings.wav,Other, +1,casting piano.wav,Other, +1,casting lv.wav,Other, +1,casting guitar 3.wav,Other, +1,casting guitar 2.wav,Other, +1,casting guitar 1.wav,Other, +1,casting drum.wav,Other, +1,casting crowns.wav,Other, +1,casting crowns-adlib.wav,Other, +1,casting bv.wav,Other, +1,casting brass.wav,Other, +1,casting bass.wav,Other, +1,casting acc guitar.wav,Other, +1,castaznets.wav,Other, +1,castanets.wav,Other, +1,cassadee pope.wav,Other, +1,casper.wav,Other, +1,carter beauford.wav,Other, +1,carly pearce.wav,Other, +1,carlprit.wav,Other, +1,carlos vives.wav,Other, +1,cardi b bv.wav,Other, +1,car fx_synth.wav,Other, +1,calvin harris.wav,Other, +1,calliope.wav,Other, +1,cajon flamenco.wav,Other, +1,cabasa.wav,Other, +1,c.wav,Other, +1,c gtr.wav,Other, +1,bvs speak and fx.wav,Voice,Backing +1,bvs female.wav,Voice,Backing +1,bvs and fx bvs.wav,Voice,Backing +1,bvs and adds.wav,Voice,Backing +1,bvox only-1.wav,Voice,Backing +1,bvox ok.wav,Voice,Backing +1,bvnew.wav,Voice,Backing +1,bvmix.wav,Voice,Backing +1,bvgr.wav,Voice,Backing +1,bv_weeknd.wav,Voice,Backing +1,bv_rap.wav,Voice,Backing +1,bv_ok.wav,Voice,Backing +1,bv_male.wav,Voice,Backing +1,bv_male mix.wav,Voice,Backing +1,bv_male 3.wav,Voice,Backing +1,bv_male 2.wav,Voice,Backing +1,bv_male 1.wav,Voice,Backing +1,bv_madonna.wav,Voice,Backing +1,bv_fem.wav,Voice,Backing +1,bv_fame.wav,Voice,Backing +1,bv_chorus.wav,Voice,Backing +1,bv_chester.wav,Voice,Backing +1,bv_anglais.wav,Voice,Backing +1,bv_2.wav,Voice,Backing +1,bv4.wav,Voice,Backing +1,bv2+3mix.wav,Voice,Backing +1,bv2 fx watchawant.wav,Voice,Backing +1,bv1 spoken oxy cotton.wav,Voice,Backing +1,bv.2.wav,Voice,Backing +1,bv..wav,Voice,Backing +1,bv-voc1+2+3mix.wav,Voice,Backing +1,bv-talkbox.wav,Voice,Backing +1,bv-male.wav,Voice,Backing +1,bv-m.a.a.d city.wav,Voice,Backing +1,bv-lyrics.wav,Voice,Backing +1,bv-girls.wav,Voice,Backing +1,bv-gimme&ahhs.wav,Voice,Backing +1,bv-boys.wav,Voice,Backing +1,bv-adds2.wav,Voice,Backing +1,bv-adds1.wav,Voice,Backing +1,bv-3.wav,Voice,Backing +1,bv-2+3mix.wav,Voice,Backing +1,bv-1 right.wav,Voice,Backing +1,bv+voc1.wav,Voice,Backing +1,bv+voc1+2bmix.wav,Voice,Backing +1,bv+voc1+1b+2bmix.wav,Voice,Backing +1,bv+ldbouble.wav,Voice,Backing +1,bv+breath.wav,Voice,Backing +1,bv+add.wav,Voice,Backing +1,bv(vocoder).wav,Voice,Backing +1,bv(solo).wav,Voice,Backing +1,bv(scream).wav,Voice,Backing +1,bv will.wav,Voice,Backing +1,bv vox.wav,Voice,Backing +1,bv vocoder.wav,Voice,Backing +1,bv stereo.wav,Voice,Backing +1,bv rap.wav,Voice,Backing +1,bv philippine.wav,Voice,Backing +1,bv ok.wav,Voice,Backing +1,bv oh.wav,Voice,Backing +1,bv nicky.wav,Voice,Backing +1,bv mix.wav,Voice,Backing +1,bv kristie 1+2.wav,Voice,Backing +1,bv intro.wav,Voice,Backing +1,bv him.wav,Voice,Backing +1,bv gospel.wav,Voice,Backing +1,bv fx.wav,Voice,Backing +1,bv fem + male.wav,Voice,Backing +1,bv eb 140bpm.wav,Voice,Backing +1,bv dv adds.wav,Voice,Backing +1,bv choir.wav,Voice,Backing +1,bv bob.wav,Voice,Backing +1,bv bass.wav,Voice,Backing +1,bv and speach.wav,Voice,Backing +1,bv and scream.wav,Voice,Backing +1,bv and sampler.wav,Voice,Backing +1,bv and da kurlzz.wav,Voice,Backing +1,bv and crowd.wav,Voice,Backing +1,bv and bv scream.wav,Voice,Backing +1,bv adds and wistling.wav,Voice,Backing +1,bv add.wav,Voice,Backing +1,bv 5.wav,Voice,Backing +1,bv 4.wav,Voice,Backing +1,bv 3.wav,Voice,Backing +1,bv 3 fx.wav,Voice,Backing +1,bv 2 r.wav,Voice,Backing +1,bv 2 megan.wav,Voice,Backing +1,bv 1+2.wav,Voice,Backing +1,bv 1 renee.wav,Voice,Backing +1,bv 1 light it up.wav,Voice,Backing +1,bv 1 l.wav,Voice,Backing +1,bv + whistle.wav,Voice,Backing +1,bv + breathing.wav,Voice,Backing +1,bv (3).wav,Voice,Backing +1,burna boy.wav,Other, +1,bun b.wav,Other, +1,bugle.wav,Other, +1,buena vista social club.wav,Other, +1,buddy guy.wav,Other, +1,bts.wav,Other, +1,bryson tiller.wav,Other, +1,brush kit.wav,Other, +1,brittni jessie.wav,Other, +1,bright synth.wav,Other, +1,bright square synth.wav,Other, +1,bright pad.wav,Other, +1,bright fuzz.wav,Other, +1,bridgers.wav,Other, +1,bridgeacoustic.wav,Other, +1,bridge synth.wav,Other, +1,brian burkheiser.wav,Other, +1,brenda russell.wav,Other, +1,brenda lee.wav,Other, +1,breland.wav,Other, +1,breaking benjamin.wav,Other, +1,brasssynth.wav,Other,Brass +1,brasshit.wav,Other,Brass +1,brasses ensemble.wav,Other,Brass +1,brass_sect.wav,Other,Brass +1,brass2 left.wav,Other,Brass +1,brass-stabs.wav,Other,Brass +1,brass,Other,Brass +1,brass+flute.wav,Other,Brass +1,brass v3.wav,Other,Brass +1,brass synths.wav,Other,Brass +1,brass strings.wav,Other,Brass +1,brass strings wind.wav,Other,Brass +1,brass solo.wav,Other,Brass +1,brass ensemble.wav,Other,Brass +1,brass end.wav,Other,Brass +1,brass emsemble.wav,Other,Brass +1,brass arr.wav,Other,Brass +1,brass and trumpet.wav,Other,Brass +1,brass 2.wav,Other,Brass +1,brass 1.wav,Other,Brass +1,brass + woodwind.wav,Other,Brass +1,brass + trombone.wav,Other,Brass +1,brases.wav,Other, +1,bras vst.wav,Other, +1,boyz ii men.wav,Other, +1,bowl.wav,Other, +1,bounce.wav,Other, +1,both pads.wav,Other, +1,boop synth.wav,Other, +1,boomfx.wav,Other, +1,boomers.wav,Other, +1,boom bass drop.wav,Other, +1,bono.wav,Other, +1,bongo.wav,Other, +1,bones.wav,Other, +1,boef.wav,Other, +1,bobby valentino.wav,Other, +1,blurgrass banjo.wav,Other, +1,blueface.wav,Other, +1,blow.wav,Other, +1,blip_synth.wav,Other, +1,blip synth.wav,Other, +1,bling bling.wav,Other, +1,blake shelton-adlib.wav,Other, +1,black eyed peas.wav,Other, +1,bkq.wav,Other, +1,bkgnds2lyrics.wav,Other, +1,bkgnds1ahhs.wav,Other, +1,bkgnds1+2mix.wav,Other, +1,bkgnds and voc 1b.wav,Other, +1,bkgnds 3.wav,Other, +1,bkgnds 2 bass.wav,Other, +1,bkgnds 123.wav,Other, +1,bkgnds 1+2.wav,Other, +1,bkgnds 1 bass.wav,Other, +1,bkgnds 1 2.wav,Other, +1,bit crush.wav,Other, +1,bit chrush synth.wav,Other, +1,birds.wav,Other, +1,billy strings.wav,Other, +1,billy ray cyrus.wav,Other, +1,billy ray cyrus-adlib.wav,Other, +1,bill champlin.wav,Other, +1,big trance.wav,Other, +1,big skye.wav,Other, +1,big sean-adlib.wav,Other, +1,big hawk.wav,Other, +1,big bank hank.wav,Other, +1,bgv maluma.wav,Other, +1,bgv becky.wav,Other, +1,bg vocals 12.wav,Other, +1,bg vocal 1.wav,Other, +1,bg knocc out.wav,Other, +1,bg female.wav,Other, +1,bg 4.wav,Other, +1,bg 3effect.wav,Other, +1,bg 2.wav,Other, +1,beyonce-adlib.wav,Other, +1,berimbau.wav,Other, +1,benson boone.wav,Other, +1,bender.wav,Other, +1,bend synth.wav,Other, +1,ben shapiro.wav,Other, +1,ben bruce.wav,Other, +1,belltree.wav,Other, +1,bellsynth.wav,Keyboard,Synth Bells +1,bellssynth and vibes.wav,Keyboard,Synth Bells +1,bells with fx.wav,Keyboard,Synth Bells +1,bells synth.wav,Keyboard,Synth Bells +1,bells and synthbells.wav,Keyboard,Synth Bells +1,bells and key.wav,Keyboard,Synth Bells +1,bells 2.wav,Keyboard,Synth Bells +1,bell_tuned.wav,Keyboard,Synth Bells +1,bell_synth.wav,Keyboard,Synth Bells +1,bell synths+harp synth.wav,Keyboard,Synth Bells +1,bell pad.wav,Keyboard,Synth Bells +1,bell fx.wav,Keyboard,Synth Bells +1,bell and keys.wav,Keyboard,Synth Bells +1,bell and arr.wav,Keyboard,Synth Bells +1,beep synth.wav,Other, +1,beenie man.wav,Other, +1,bee.wav,Other, +1,bebe rexha.wav,Other, +1,beautilful precount.wav,Other, +1,beats piano.wav,Other, +1,beats drums.wav,Other, +1,beats bass.wav,Other, +1,beatbox perc.wav,Other, +1,beat box 1 + 2.wav,Other, +1,beat box + synth2.wav,Other, +1,bea miller.wav,Other, +1,bd sub + claps.wav,Other, +1,bbox.wav,Other, +1,bazzi.wav,Other, +1,bazzi-adlib.wav,Other, +1,batterie_the_cars_good_times_roll.wav,Other, +1,batterie_stone_temple_pilots_dead_and_bloated.wav,Other, +1,batterie_over_the_hills_and_far_away.wav,Other, +1,baterie.wav,Other, +1,bata.wav,Other, +1,bassslap.wav,Bass Guitar, +1,bassoons.wav,Other, +1,bassgtr.wav,Bass Guitar, +1,bassfx2.wav,Bass Guitar, +1,bassfx.wav,Other, +1,basses.wav,Bass Guitar, +1,basse_the_cars_good_times_roll.wav,Bass Guitar, +1,basse_stone_temple_pilots_dead_and_bloated.wav,Bass Guitar, +1,basse_over_the_hills_and_far_away.wav,Bass Guitar, +1,basse synth.wav,Other, +1,basse synth soft.wav,Other, +1,basse electrique.wav,Bass Guitar, +1,basse crunch.wav,Bass Guitar, +1,bassboom.wav,Other, +1,bass_sub.wav,Other, +1,bass_pad.wav,Other, +1,bass_gliss.wav,Bass Guitar, +1,bass_bus.wav,Other, +1,bass_attack.wav,Bass Guitar, +1,bass_as_kick_function.wav,Other, +1,bass_arrangement.wav,Bass Guitar, +1,bass_add.wav,Bass Guitar, +1,bass1 synth4.wav,Other, +1,bass.wav.wav,Bass Guitar, +1,bass-sample.wav,Bass Guitar, +1,bass-gtr.wav,Bass Guitar, +1,bass-2.wav,Bass Guitar, +1,bass-02.wav,Bass Guitar, +1,bass+synthbass.wav,Bass Guitar, +1,bass+low pad.wav,Bass Guitar, +1,bass(synth).wav,Bass Guitar, +1,bass(solo).wav,Bass Guitar, +1,bass(lead).wav,Bass Guitar, +1,bass(arp).wav,Bass Guitar, +1,bass vox.wav,Other, +1,bass vocal.wav,Other, +1,bass upright.wav,Other, +1,bass taurus pedal.wav,Bass Guitar, +1,bass synths.wav,Other, +1,bass synth_ok.wav,Other, +1,bass synth and sub bass.wav,Other, +1,bass sub.wav,Other, +1,bass slide.wav,Bass Guitar, +1,bass slap + bass.wav,Bass Guitar, +1,bass sample.wav,Bass Guitar, +1,bass organ.wav,Other, +1,bass ok.wav,Other, +1,bass mixmaster.wav,Bass Guitar, +1,bass keys.wav,Other, +1,bass intro.wav,Bass Guitar, +1,bass gtr.wav,Bass Guitar, +1,bass growl.wav,Bass Guitar, +1,bass fx.wav,Bass Guitar, +1,bass funk and slide.wav,Bass Guitar, +1,bass fretless.wav,Bass Guitar, +1,bass ells.wav,Bass Guitar, +1,bass el_ok.wav,Bass Guitar, +1,bass eb 140bpm.wav,Bass Guitar, +1,bass drum.wav,Other, +1,bass drop.wav,Bass Guitar, +1,bass clean 02.wav,Bass Guitar, +1,bass clean 01.wav,Bass Guitar, +1,bass bus.wav,Bass Guitar, +1,bass brass.wav,Other, +1,bass bell.wav,Other, +1,bass arp.wav,Other, +1,bass and sub.wav,Bass Guitar, +1,bass and fx.wav,Bass Guitar, +1,bass and double.wav,Bass Guitar, +1,bass _01.wav,Bass Guitar, +1,bass 3.wav,Bass Guitar, +1,bass 2 right.wav,Bass Guitar, +1,bass 2 disto.wav,Bass Guitar, +1,bass 1+2+4.wav,Bass Guitar, +1,bass 1 and solo.wav,Bass Guitar, +1,bass + synth bass.wav,Other, +1,bass + synth 3.wav,Other, +1,bass (loop).wav,Other, +1,basoon.wav,Other, +1,basic synth 2.wav,Other, +1,barry manilow looks like we made it synth.wav,Other, +1,barry manilow looks like we made it strings.wav,Other, +1,barry manilow looks like we made it piano.wav,Other, +1,barry manilow looks like we made it lv.wav,Other, +1,barry manilow looks like we made it horns.wav,Other, +1,barry manilow looks like we made it harp.wav,Other, +1,barry manilow looks like we made it guitar 2.wav,Other, +1,barry manilow looks like we made it guitar 1.wav,Other, +1,barry manilow looks like we made it flugel 2.wav,Other, +1,barry manilow looks like we made it flugel 1.wav,Other, +1,barry manilow looks like we made it drum.wav,Other, +1,barry manilow looks like we made it bv.wav,Other, +1,barry manilow looks like we made it bass.wav,Other, +1,bark fx.wav,Other, +1,baritonesax.wav,Saxophone,Baritone +1,baritone saxophone.wav,Saxophone,Baritone +1,bari.wav,Saxophone,Baritone +1,bar.wav,Other, +1,banjos.wav,Banjo, +1,banjomandolinbouzouki.wav,Banjo, +1,banjo extra.wav,Banjo, +1,banjo 2.wav,Banjo, +1,banjo 1.wav,Banjo, +1,bang.wav,Other, +1,bakermat.wav,Other, +1,baker.wav,Other, +1,bajo.wav,Other, +1,bad wolves.wav,Other, +1,bad bunny-adlib.wav,Other, +1,backwardsgtr.wav,Other, +1,backstreet xilophone.wav,Other, +1,backstreet synth 2.wav,Other, +1,backstreet synth 1.wav,Other, +1,backstreet piano.wav,Other, +1,backstreet perc.wav,Other, +1,backstreet drum.wav,Other, +1,backstreet bv.wav,Other, +1,backstreet bass.wav,Other, +1,backstreet acc guitar 2.wav,Other, +1,backstreet acc guitar 1.wav,Other, +1,backing vox.wav,Other, +1,backing vocals (male).wav,Other, +1,backing vocals (female).wav,Other, +1,backin_vocals.wav,Other, +1,background.wav,Other, +1,babyfx.wav,Other, +1,baby ranks.wav,Other, +1,baa.wav,Other, +1,b.v. (talking).wav,Other, +1,b.b. king-adlib.wav,Other, +1,b vox.wav,Other, +1,b vox only fx.wav,Other, +1,b vox onl.wav,Other, +1,b vox only.wav,Other, +1,ayliva.wav,Other, +1,axl rose.wav,Other, +1,avi kaplan.wav,Other, +1,audio fxs.wav,Other, +1,atmoguitar2.wav,Other, +1,atmo + lead.wav,Other, +1,atmo + pad.wav,Other, +1,astrid s.wav,Other, +1,ashanti.wav,Other, +1,arrow benjamin.wav,Other, +1,arrange_guitars.wav,Other, +1,arrange_electric_guitar_3.wav,Other, +1,arr synth.wav,Other, +1,arr gt.wav,Other, +1,arr eg trs delay.wav,Other, +1,arr eg 4.wav,Other, +1,arr disto guits.wav,Other, +1,arr crunch eg.wav,Other, +1,arr analog strings.wav,Other, +1,arps lr.wav,Other, +1,arppegiator.wav,Keyboard,Synth Arpeggios +1,arpfx and cr-78 loop.wav,Keyboard,Synth Arpeggios +1,arpegio_lead_synth.wav,Keyboard,Synth Arpeggios +1,arpegio.wav,Keyboard,Synth Arpeggios +1,arpegiator.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth4.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth3.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth2.wav,Keyboard,Synth Arpeggios +1,arpeggiosynth1.wav,Keyboard,Synth Arpeggios +1,arpeggiators.wav,Keyboard,Synth Arpeggios +1,arpeggiator synth 2.wav,Keyboard,Synth Arpeggios +1,arpeggiator synth 1.wav,Keyboard,Synth Arpeggios +1,arpeggiator 4.wav,Keyboard,Synth Arpeggios +1,arpeggiator 3.wav,Keyboard,Synth Arpeggios +1,arpeggiatedsynth.wav,Keyboard,Synth Arpeggios +1,arpeges.wav,Keyboard,Synth Arpeggios +1,arpeg.wav,Keyboard,Synth Arpeggios +1,arpacougt.wav,Keyboard,Synth Arpeggios +1,arp pluck.wav,Keyboard,Synth Arpeggios +1,arp mix.wav,Keyboard,Synth Arpeggios +1,arp gtr.wav,Other, +1,arp bass.wav,Other, +1,arp bass synth.wav,Other, +1,arp and synth1.wav,Other, +1,armonica.wav,Other, +1,armonic sinth intro.wav,Other, +1,arm.wav,Other, +1,ariana grande-adlib.wav,Other, +1,arco bass.wav,Other, +1,apocalyptica not strong enough violin 2.wav,Other, +1,apocalyptica not strong enough violin 1.wav,Other, +1,apocalyptica not strong enough synth 1.wav,Other, +1,apocalyptica not strong enough strings.wav,Other, +1,apocalyptica not strong enough string 2.wav,Other, +1,apocalyptica not strong enough perc.wav,Other, +1,apocalyptica not strong enough lv.wav,Other, +1,apocalyptica not strong enough guitar 3.wav,Other, +1,apocalyptica not strong enough guitar 2.wav,Other, +1,apocalyptica not strong enough guitar 1.wav,Other, +1,apocalyptica not strong enough drum.wav,Other, +1,apocalyptica not strong enough bv.wav,Other, +1,apocalyptica not strong enough bass.wav,Other, +1,apocalyptica i dot care bass.wav,Other, +1,apocalyptica i dont care violin.wav,Other, +1,apocalyptica i dont care strings.wav,Other, +1,apocalyptica i dont care piano.wav,Other, +1,apocalyptica i dont care perc.wav,Other, +1,apocalyptica i dont care lv.wav,Other, +1,apocalyptica i dont care guitar 2.wav,Other, +1,apocalyptica i dont care guitar 1.wav,Other, +1,apocalyptica i dont care drum.wav,Other, +1,apocalyptica i dont care cello 4.wav,Other, +1,apocalyptica i dont care cello 3.wav,Other, +1,apocalyptica i dont care cello 2.wav,Other, +1,apocalyptica i dont care cello 1.wav,Other, +1,apocalyptica i dont care bv.wav,Other, +1,aple.de.ap.wav,Other, +1,apaheart_s_synth_03.wav,Other, +1,apaheart_s_synth_02.wav,Other, +1,apaheart_s_synth_01.wav,Other, +1,apaheart_s_perc_&_fx.wav,Other, +1,apaheart_s_lv.wav,Other, +1,apaheart_s_guitar.wav,Other, +1,apaheart_s_drums.wav,Other, +1,apaheart_s_bv.wav,Other, +1,apaheart_s_bass_01.wav,Other, +1,apache 207.wav,Other, +1,anthony hamilton.wav,Other, +1,anthony hamilton-adlib.wav,Other, +1,annoying synth voice.wav,Other, +1,annoying backing vocal.wav,Other, +1,anne-marie-adlib.wav,Other, +1,anna wise.wav,Other, +1,ann peebles.wav,Other, +1,andy partridge.wav,Other, +1,andrew taggart-adlib.wav,Other, +1,analogleadsynth.wav,Other, +1,analog synth.wav,Other, +1,analog drums.wav,Other, +1,analog bass.wav,Other, +1,anaconda.wav,Other, +1,amythyst kiah.wav,Other, +1,amy grant.wav,Other, +1,amorfoda piano.wav,Other, +1,amorfoda ld.wav,Other, +1,amorfoda fx.wav,Other, +1,amorfoda bv.wav,Other, +1,amil.wav,Other, +1,ambtalk.wav,Other, +1,ambientsynth.wav,Other, +1,ambient sfx.wav,Other, +1,ambience.wav,Other, +1,ambience-fx.wav,Other, +1,ambience v2.wav,Other, +1,ambiantgtr + fx.wav,Other, +1,ambiance.wav,Other, +1,ambiance pads fx.wav,Other, +1,ambi stack.wav,Other, +1,amb.wav,Other, +1,amb pads.wav,Other, +1,alto saxophone.wav,Other, +1,altmclaran.wav,Other, +1,allison ponthier.wav,Other, +1,allison krauss.wav,Other, +1,all pads.wav,Other, +1,all lv.wav,Other, +1,all keys.wav,Other, +1,all keys and synths.wav,Other, +1,all fxs.wav,Other, +1,all drums.wav,Other, +1,all bvs and adds.wav,Other, +1,all brass.wav,Other, +1,all bgv.wav,Other, +1,alicia keys-adlib.wav,Other, +1,alice in chains rotten apple synth pad.wav,Other, +1,alice in chains rotten apple lv.wav,Other, +1,alice in chains rotten apple guitar 4.wav,Other, +1,alice in chains rotten apple guitar 3.wav,Other, +1,alice in chains rotten apple guitar 2.wav,Other, +1,alice in chains rotten apple guitar 1.wav,Other, +1,alice in chains rotten apple drum.wav,Other, +1,alice in chains rotten apple bv.wav,Other, +1,alice in chains rotten apple bass.wav,Other, +1,alice in chains rotten apple acc guitar.wav,Other, +1,ali tamposi.wav,Other, +1,alexa goddard.wav,Other, +1,alex clare.wav,Other, +1,alessiacara.wav,Other, +1,alessia cara.wav,Other, +1,alejandro sanz cuando nadie me ve violin 3.wav,Other, +1,alejandro sanz cuando nadie me ve violin 2.wav,Other, +1,alejandro sanz cuando nadie me ve violin 1.wav,Other, +1,alejandro sanz cuando nadie me ve synth pad.wav,Other, +1,alejandro sanz cuando nadie me ve strings.wav,Other, +1,alejandro sanz cuando nadie me ve perc.wav,Other, +1,alejandro sanz cuando nadie me ve nylon guitar.wav,Other, +1,alejandro sanz cuando nadie me ve lv.wav,Other, +1,alejandro sanz cuando nadie me ve e piano 2.wav,Other, +1,alejandro sanz cuando nadie me ve e piano 1.wav,Other, +1,alejandro sanz cuando nadie me ve drum.wav,Other, +1,alejandro sanz cuando nadie me ve bass.wav,Other, +1,alejandro sanz cuando nadie me ve acc guitar 1.wav,Other, +1,alejandro fernandez.wav,Other, +1,alejandro fernandez no vihuela.wav,Other, +1,alejandro fernandez no tp 2.wav,Other, +1,alejandro fernandez no tp 1.wav,Other, +1,alejandro fernandez no strings.wav,Other, +1,alejandro fernandez no piano.wav,Other, +1,alejandro fernandez no perc.wav,Other, +1,alejandro fernandez no metalophone.wav,Other, +1,alejandro fernandez no lv.wav,Other, +1,alejandro fernandez no drum.wav,Other, +1,alejandro fernandez no brasses.wav,Other, +1,alejandro fernandez no bass.wav,Other, +1,alecbenjamin.wav,Other, +1,alecbenjamin-adlib.wav,Other, +1,alarm fx.wav,Other, +1,alan walker.wav,Other, +1,al green.wav,Other, +1,akkr.wav,Other, +1,akkl.wav,Other, +1,aj mclean & brian littrell.wav,Other, +1,air supply - lost in love - synth vocals.wav,Other, +1,air supply - lost in love - synth brass.wav,Other, +1,air supply - lost in love - synth 3.wav,Other, +1,air supply - lost in love - synth 1.wav,Other, +1,air supply - lost in love - piano.wav,Other, +1,air supply - lost in love - organ.wav,Other, +1,air supply - lost in love - harp.wav,Other, +1,air supply - lost in love - drum.wav,Other, +1,air supply - lost in love - bv.wav,Other, +1,air supply - lost in love - bass.wav,Other, +1,air supply - lost in love - acc guitar.wav,Other, +1,air pad + pad + warm + choir + flute 1 + 2.wav,Other, +1,ahh synth.wav,Other, +1,aguitars.wav,Acoustic Guitar, +1,aguitar.wav,Acoustic Guitar, +1,agtr 4 + 5 + 6.wav,Acoustic Guitar, +1,agtr 1 + 2 + 3.wav,Acoustic Guitar, +1,agt 4.wav,Acoustic Guitar, +1,agt 3.wav,Acoustic Guitar, +1,agslide.wav,Acoustic Guitar, +1,ags.wav,Acoustic Guitar, +1,agny.wav,Acoustic Guitar, +1,agmute2.wav,Acoustic Guitar, +1,agmelody.wav,Acoustic Guitar, +1,aglead.wav,Acoustic Guitar, +1,aggtr.wav,Acoustic Guitar, +1,agfx.wav,Acoustic Guitar, +1,agdrums.wav,Acoustic Guitar, +1,agdistortion2.wav,Acoustic Guitar, +1,agdistortion.wav,Acoustic Guitar, +1,agchords.wav,Acoustic Guitar, +1,ag_r(low).wav,Acoustic Guitar, +1,ag_r(12str).wav,Acoustic Guitar, +1,ag_r 2.wav,Acoustic Guitar, +1,ag_nylon.wav,Acoustic Guitar, +1,ag_l2.wav,Acoustic Guitar, +1,ag_l(low).wav,Acoustic Guitar, +1,ag_l(di).wav,Acoustic Guitar, +1,ag_l(12str).wav,Acoustic Guitar, +1,ag4.wav,Acoustic Guitar, +1,ag12strings.wav,Acoustic Guitar, +1,ag12str.wav,Acoustic Guitar, +1,ag1 left.wav,Acoustic Guitar, +1,ag(perc).wav,Acoustic Guitar, +1,ag twelve strings.wav,Acoustic Guitar, +1,ag trem.wav,Acoustic Guitar, +1,ag stereo.wav,Acoustic Guitar, +1,ag steel.wav,Acoustic Guitar, +1,ag rythm r (piezo).wav,Acoustic Guitar, +1,ag rythm r (mic).wav,Acoustic Guitar, +1,ag rythm l (piezo).wav,Acoustic Guitar, +1,ag rythm l (piezo) 2.wav,Acoustic Guitar, +1,ag rythm l (mic).wav,Acoustic Guitar, +1,ag rhythmic.wav,Acoustic Guitar, +1,ag rhythmic 3.wav,Acoustic Guitar, +1,ag rhythmic 2.wav,Acoustic Guitar, +1,ag rhythmic 1.wav,Acoustic Guitar, +1,ag rhythm.wav,Acoustic Guitar, +1,ag nylon mix.wav,Acoustic Guitar, +1,ag nylon main+fxs.wav,Acoustic Guitar, +1,ag n.wav,Acoustic Guitar, +1,ag n-notdups.wav,Acoustic Guitar, +1,ag muted.wav,Acoustic Guitar, +1,ag mute.wav,Acoustic Guitar, +1,ag left.wav,Acoustic Guitar, +1,ag left + right.wav,Acoustic Guitar, +1,ag ld.wav,Acoustic Guitar, +1,ag l r.wav,Acoustic Guitar, +1,ag gtr.wav,Acoustic Guitar, +1,ag center.wav,Acoustic Guitar, +1,ag arregements.wav,Acoustic Guitar, +1,ag arr 2 left.wav,Acoustic Guitar, +1,ag arr 1 right.wav,Acoustic Guitar, +1,ag arp.wav,Acoustic Guitar, +1,ag 6.wav,Acoustic Guitar, +1,ag 5.wav,Acoustic Guitar, +1,ag 5 right.wav,Acoustic Guitar, +1,ag 5 + 6.wav,Acoustic Guitar, +1,ag 4 muted.wav,Acoustic Guitar, +1,ag 3 mute.wav,Acoustic Guitar, +1,ag 3 fx.wav,Acoustic Guitar, +1,ag 3 end.wav,Acoustic Guitar, +1,ag 3 end right.wav,Acoustic Guitar, +1,ag 3 + 4.wav,Acoustic Guitar, +1,ag 2+spanish guitar.wav,Acoustic Guitar, +1,ag 2 right end.wav,Acoustic Guitar, +1,ag 2 arr.wav,Acoustic Guitar, +1,ag 2 + filter.wav,Acoustic Guitar, +1,ag 2 + 3 + 4 + 5.wav,Acoustic Guitar, +1,ag 13.wav,Acoustic Guitar, +1,ag 12 str.wav,Acoustic Guitar, +1,ag 12 str left.wav,Acoustic Guitar, +1,ag 12 lr.wav,Acoustic Guitar, +1,ag 1+2.wav,Acoustic Guitar, +1,ag 1+2+3.wav,Acoustic Guitar, +1,ag 1 muted.wav,Acoustic Guitar, +1,ag 1 2.wav,Acoustic Guitar, +1,ag 1 + 3.wav,Acoustic Guitar, +1,ag 1 + 2 + 3.wav,Acoustic Guitar, +1,ag 1 + 2 + 3 + 4.wav,Acoustic Guitar, +1,ag 02 r.wav,Acoustic Guitar, +1,ag 02 muted.wav,Acoustic Guitar, +1,ag 02 left.wav,Acoustic Guitar, +1,ag 01 right.wav,Acoustic Guitar, +1,ag 01 left+right 1+2.wav,Acoustic Guitar, +1,ag 01 l.wav,Acoustic Guitar, +1,ag 2 + eg.wav,Acoustic Guitar, +1,adeleye omotayo.wav,Other, +1,adele.wav,Other, +1,addsynthgt.wav,Other, +1,addsynth.wav,Other, +1,adds vocs.wav,Other, +1,adds voc mixmaster.wav,Other, +1,adds uhh.wav,Other, +1,adds synth.wav,Other, +1,adds 1+2.wav,Other, +1,addpad.wav,Other, +1,addlib.wav,Other, +1,additional-synth.wav,Other, +1,additional-instruments.wav,Other, +1,addgt_r.wav,Other, +1,addgt_l.wav,Other, +1,adddrivegt_r.wav,Other, +1,adddrivegt_l.wav,Other, +1,adddrivegt.wav,Other, +1,addclean.wav,Other, +1,addacougt.wav,Other, +1,add_synth.wav,Other, +1,add_nylongt.wav,Other, +1,add2 + solo.wav,Other, +1,add vox fx.wav,Other, +1,add synth.wav,Other, +1,add guitar.wav,Other, +1,add guitar feedback.wav,Other, +1,add fx.wav,Other, +1,adblib voc 2.wav,Other, +1,adam levine.wav,Other, +1,adam levine-adlib.wav,Other, +1,ad_lib.wav,Other, +1,ad-lib.wav,Other, +1,ad lib vocals.wav,Other, +1,ad lib vocal.wav,Other, +1,acst-gtr-notdups.wav,Acoustic Guitar, +1,acoustique.wav,Acoustic Guitar, +1,acoustique r.wav,Acoustic Guitar, +1,acoustique l.wav,Acoustic Guitar, +1,acoustique centre.wav,Acoustic Guitar, +1,acousticgtrr.wav,Acoustic Guitar, +1,acousticgtrc.wav,Acoustic Guitar, +1,acousticgtr r.wav,Acoustic Guitar, +1,acousticgtr l.wav,Acoustic Guitar, +1,acoustic_steel_guitar_2.wav,Acoustic Guitar, +1,acoustic_steel_guitar_1.wav,Acoustic Guitar, +1,acoustic_steel_guitar.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_steel_left.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_steel.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_2.wav,Acoustic Guitar, +1,acoustic_rhythm_guitar_1.wav,Acoustic Guitar, +1,acoustic_lead_guitar_steel.wav,Acoustic Guitar, +1,acoustic_guitar_tremolo.wav,Acoustic Guitar, +1,acoustic_guitar_treble.wav,Acoustic Guitar, +1,acoustic_guitar_steel_rhythm_right.wav,Acoustic Guitar, +1,acoustic_guitar_steel_rhythm_left.wav,Acoustic Guitar, +1,acoustic_guitar_steel_center+right.wav,Acoustic Guitar, +1,acoustic_guitar_steel_arrangement lr.wav,Acoustic Guitar, +1,acoustic_guitar_steel_adds.wav,Acoustic Guitar, +1,acoustic_guitar_steel_5.wav,Acoustic Guitar, +1,acoustic_guitar_steel_2.wav,Acoustic Guitar, +1,acoustic_guitar_steel_1.wav,Acoustic Guitar, +1,acoustic_guitar_steel-notdup.wav,Acoustic Guitar, +1,acoustic_guitar_perc.wav,Acoustic Guitar, +1,acoustic_guitar_low.wav,Acoustic Guitar, +1,acoustic_guitar_lead.wav,Acoustic Guitar, +1,acoustic_guitar_arr.wav,Acoustic Guitar, +1,acoustic_guitar_2.wav,Acoustic Guitar, +1,acoustic_guitar_1.wav,Acoustic Guitar, +1,acoustic rhythm.wav,Acoustic Guitar, +1,acoustic nylon guitar.wav,Acoustic Guitar, +1,acoustic line.wav,Acoustic Guitar, +1,acoustic guitarstrumming.wav,Acoustic Guitar, +1,acoustic guitars rhythm.wav,Acoustic Guitar, +1,acoustic guitars bass notes.wav,Acoustic Guitar, +1,acoustic guitars 3 & 4 - rhythm.wav,Acoustic Guitar, +1,acoustic guitars 2.wav,Acoustic Guitar, +1,acoustic guitars 1.wav,Acoustic Guitar, +1,acoustic guitars 1 & 2 - lead.wav,Acoustic Guitar, +1,acoustic guitars - rhythm.wav,Acoustic Guitar, +1,acoustic guitarright.wav,Acoustic Guitar, +1,acoustic guitarleft.wav,Acoustic Guitar, +1,acoustic guitar(strumming) right.wav,Acoustic Guitar, +1,acoustic guitar r.wav,Acoustic Guitar, +1,acoustic guitar mute.wav,Acoustic Guitar, +1,acoustic guitar left.wav,Acoustic Guitar, +1,acoustic guitar lead.wav,Acoustic Guitar, +1,acoustic guitar l.wav,Acoustic Guitar, +1,acoustic guitar arpp.wav,Acoustic Guitar, +1,acoustic guitar 2 - r.wav,Acoustic Guitar, +1,acoustic guitar 1 - l.wav,Acoustic Guitar, +1,acoustic guitar - lead.wav,Acoustic Guitar, +1,acoustic guit.wav,Acoustic Guitar, +1,acoustic gtr fx.wav,Acoustic Guitar, +1,acoustic gtr - all.wav,Acoustic Guitar, +1,acoustic gt.wav,Acoustic Guitar, +1,acoustic fx.wav,Other, +1,acoustic drums.wav,Other, +1,acoustic drum.wav,Other, +1,acoustic drum kit.wav,Other, +1,acoustic arpeg.wav,Other, +1,acoust-guitar-solo.wav,Other, +1,acoust-guitar-percussion.wav,Other, +1,acoust-guitar-fx.wav,Other, +1,acoust-guitar-1.wav,Other, +1,acouleadgt.wav,Other, +1,acouguitr.wav,Other, +1,acouguitl.wav,Other, +1,acordion.wav,Other, +1,acordeons.wav,Other, +1,acordeon-.wav,Other, +1,acmute.wav,Other, +1,acmain.wav,Other, +1,acid.wav,Other, +1,acid attack.wav,Other, +1,acguitsolo.wav,Acoustic Guitar, +1,acguits.wav,Acoustic Guitar, +1,acguitright.wav,Acoustic Guitar, +1,acguitrhythm.wav,Acoustic Guitar, +1,acguitarrhythm.wav,Acoustic Guitar, +1,acguitarlead.wav,Acoustic Guitar, +1,acguit1et2.wav,Acoustic Guitar, +1,acgtrs2.wav,Acoustic Guitar, +1,acgtrs1.wav,Acoustic Guitar, +1,acgtrs1+2.wav,Acoustic Guitar, +1,acgtr_solo.wav,Acoustic Guitar, +1,acgtr3.wav,Acoustic Guitar, +1,acgtr2r.wav,Acoustic Guitar, +1,acgtr2 right.wav,Acoustic Guitar, +1,acgtr1l.wav,Acoustic Guitar, +1,acgtr1 left.wav,Acoustic Guitar, +1,acgtr03.wav,Acoustic Guitar, +1,acgtr02.wav,Acoustic Guitar, +1,acgtr01.wav,Acoustic Guitar, +1,acgtr r.wav,Acoustic Guitar, +1,acgtr main.wav,Acoustic Guitar, +1,acgtr main 12 strings.wav,Acoustic Guitar, +1,acgtr l.wav,Acoustic Guitar, +1,acgtleft.wav,Acoustic Guitar, +1,accoustic_guitar_steel.wav,Other, +1,accoridon.wav,Accordion, +1,accordion fx.wav,Accordion, +1,accordion and pads.wav,Accordion, +1,accord.wav,Accordion, +1,acc guitar muted.wav,Acoustic Guitar, +1,acc guitar fx.wav,Acoustic Guitar, +1,acc guitar 2 right.wav,Acoustic Guitar, +1,acc guitar 1 left.wav,Acoustic Guitar, +1,acc gtr 3.wav,Acoustic Guitar, +1,acc gtr 2 right.wav,Acoustic Guitar, +1,ac_guitar.wav,Acoustic Guitar, +1,ac_guitar 2.wav,Acoustic Guitar, +1,ac_guitar 1.wav,Acoustic Guitar, +1,ac_fade_out.wav,Acoustic Guitar, +1,ac_6_cordes_right.wav,Acoustic Guitar, +1,ac_2.wav,Acoustic Guitar, +1,ac_12_cordes_left.wav,Acoustic Guitar, +1,ac_1.wav,Acoustic Guitar, +1,ac.wav,Acoustic Guitar, +1,ac.gtrs rhythm.wav,Acoustic Guitar, +1,ac.gtr solo.wav,Acoustic Guitar, +1,ac.gtr rhythm.wav,Acoustic Guitar, +1,ac.gtr r.wav,Acoustic Guitar, +1,ac.gtr l.wav,Acoustic Guitar, +1,ac.gtr 1.wav,Acoustic Guitar, +1,ac rhythmic 2.wav,Acoustic Guitar, +1,ac rhythmic 1.wav,Acoustic Guitar, +1,ac l + r.wav,Acoustic Guitar, +1,ac guitare.wav,Acoustic Guitar, +1,ac guitar vst.wav,Acoustic Guitar, +1,ac guitar rhytmic l&r.wav,Acoustic Guitar, +1,ac guitar rhytmic 2.wav,Acoustic Guitar, +1,ac guitar rhytmic 1.wav,Acoustic Guitar, +1,ac guitar rhitmic 2.wav,Acoustic Guitar, +1,ac guitar rhitmic 1.wav,Acoustic Guitar, +1,ac guitar jerry.wav,Acoustic Guitar, +1,ac guitar bob.wav,Acoustic Guitar, +1,ac guitar arragement.wav,Acoustic Guitar, +1,ac guitar 4.wav,Acoustic Guitar, +1,ac guitar 3.wav,Acoustic Guitar, +1,ac guitar 03.wav,Acoustic Guitar, +1,ac guitar 02.wav,Acoustic Guitar, +1,ac guitar 01.wav,Acoustic Guitar, +1,ac guit bright.wav,Acoustic Guitar, +1,ac guit add.wav,Acoustic Guitar, +1,ac guit 1 + 3 right.wav,Acoustic Guitar, +1,ac guit 1 + 2.wav,Acoustic Guitar, +1,ac gtr1+classic gtr.wav,Acoustic Guitar, +1,ac gtr 6.wav,Acoustic Guitar, +1,ac gtr 5.wav,Acoustic Guitar, +1,ac gtr 4.wav,Acoustic Guitar, +1,ac gtr 3 right.wav,Acoustic Guitar, +1,ac gtr 3 left.wav,Acoustic Guitar, +1,ac gtr 12.wav,Acoustic Guitar, +1,ac gtr 1 left.wav,Acoustic Guitar, +1,ac gt r.wav,Acoustic Guitar, +1,ac gt l.wav,Acoustic Guitar, +1,ac gt arp melo.wav,Acoustic Guitar, +1,ac gt 3.wav,Acoustic Guitar, +1,ac gt 2.wav,Acoustic Guitar, +1,ac gt 1.wav,Acoustic Guitar, +1,ac git.wav,Acoustic Guitar, +1,ac git lead.wav,Acoustic Guitar, +1,ac 4.wav,Acoustic Guitar, +1,ac 3.wav,Acoustic Guitar, +1,ac 2.wav,Acoustic Guitar, +1,ac 1.wav,Acoustic Guitar, +1,abraxas.wav,Other, +1,aaron neville.wav,Other, +1,aaa samples.wav,Other, +1,a.gtr.wav,Acoustic Guitar, +1,a.b. quintanilla.wav,Other, +1,a nylon guit 2.wav,Acoustic Guitar, +1,a nylon guit 1.wav,Acoustic Guitar, +1,a guitar st.wav,Acoustic Guitar, +1,a guitar r.wav,Acoustic Guitar, +1,a guitar l.wav,Acoustic Guitar, +1,a guitar 2 right.wav,Acoustic Guitar, +1,a guitar 2 eb 140bpm.wav,Acoustic Guitar, +1,a guitar 1 left.wav,Acoustic Guitar, +1,a guitar 1 eb 140bpm.wav,Acoustic Guitar, +1,a great big world.wav,Other, +1,a day to remember.wav,Other, +1,a day to remember all signs point to lauderdale strings.wav,Other, +1,a day to remember all signs point to lauderdale precount.wav,Other, +1,a day to remember all signs point to lauderdale perc.wav,Other, +1,a day to remember all signs point to lauderdale lv.wav,Other, +1,a day to remember all signs point to lauderdale guitar 3.wav,Other, +1,a day to remember all signs point to lauderdale guitar 2.wav,Other, +1,a day to remember all signs point to lauderdale guitar 1.wav,Other, +1,a day to remember all signs point to lauderdale drum.wav,Other, +1,a day to remember all signs point to lauderdale bv.wav,Other, +1,a day to remember all signs point to lauderdale bass.wav,Other, +1,a day to remember all signs point to lauderdale acordeon.wav,Other, +1,_voix.wav,Other, +1,_piano.wav,Other, +1,_pad.wav,Other, +1,_bv.wav,Other, +1,_arr clean eg.wav,Other, +1,9200 lead vocal.wav,Other, +1,9100 backing vocals.wav,Other, +1,9 synth pad.wav,Other, +1,808 sub bass.wav,Other, +1,8 eg solo.wav,Other, +1,7 eg b right.wav,Other, +1,6-str.wav,Other, +1,6 eg a left.wav,Other, +1,5th piano.wav,Other, +1,50 cent-adlib.wav,Other, +1,5 ag.wav,Other, +1,4530 synth choir.wav,Other, +1,4520 synth strings.wav,Other, +1,4510 synth pad.wav,Other, +1,4 bass.wav,Other, +1,3300 electric guitar fx.wav,Other, +1,3200 electric guitar.wav,Other, +1,3100 acoustic guitar.wav,Other, +1,3 fx.wav,Other, +1,2pac-adlib.wav,Other, +1,2d.wav,Other, +1,28_bv.wav,Other, +1,27_lv.wav,Other, +1,24kgoldn.wav,Other, +1,24kgoldn-adlib.wav,Other, +1,24_bv.wav,Other, +1,2200 electric bass.wav,Other, +1,21_ld 1+2.wav,Other, +1,2 timbal.wav,Other, +1,2 chainz lead.wav,Other, +1,19_strings.wav,Other, +1,19_bv.wav,Other, +1,1999 synth 2.wav,Other, +1,1999 precount.wav,Other, +1,1999 perc.wav,Other, +1,1999 guitar 3.wav,Other, +1,1999 guitar 2.wav,Other, +1,1999 guitar 1.wav,Other, +1,1999 fx synth.wav,Other, +1,1999 drum.wav,Other, +1,1999 bv.wav,Other, +1,1999 bass.wav,Other, +1,1999 bass synth.wav,Other, +1,17_vox pads.wav,Other, +1,17_lv.wav,Other, +1,17_bv.wav,Other, +1,16_flute.wav,Other, +1,15_synth.wav,Other, +1,15_saxos vst.wav,Other, +1,15_lv.wav,Other, +1,15_dance synth.wav,Other, +1,15_bv2.wav,Other, +1,15 bv.wav,Other, +1,14_synths str.wav,Other, +1,14_sax solos.wav,Other, +1,14_ep.wav,Other, +1,14_eg4 r.wav,Other, +1,14_bv1.wav,Other, +1,13_vocal adds.wav,Other, +1,13_synth melo.wav,Other, +1,13_pulsar synths.wav,Other, +1,13_lv adds.wav,Other, +1,13_eg3 l.wav,Other, +1,13 lead vocal.wav,Other, +1,12_synth saw.wav,Other, +1,12_synth lead.wav,Other, +1,12_synth brasses.wav,Other, +1,12_pads.wav,Other, +1,12_gtr fx amp.wav,Other, +1,12_ep.wav,Other, +1,12_eg3.wav,Other, +1,12_eg2.wav,Other, +1,12_cordes_2_over_the_hills_and_far_away.wav,Other, +1,12_cordes_1 right.wav,Other, +1,1200_mix loop+percs.wav,Other, +1,12-str.wav,Other, +1,12 strings.wav,Other, +1,12 organ.wav,Other, +1,12 lead vocal.wav,Other, +1,12 choir female.wav,Other, +1,12 backing vocals.wav,Other, +1,11_violin.wav,Other, +1,11_synth flute.wav,Other, +1,11_synth bell.wav,Other, +1,11_strings.wav,Other, +1,11_space piano.wav,Other, +1,11_plucked arp.wav,Other, +1,11_pads.wav,Other, +1,11_mallet.wav,Other, +1,11_lv.wav,Other, +1,11_low pad.wav,Other, +1,11_ld.wav,Other, +1,11_egfx.wav,Other, +1,11_eg3 r.wav,Other, +1,11_eg1 solo.wav,Other, +1,11_bv.wav,Other, +1,11_belly arp.wav,Other, +1,11_ac piano.wav,Other, +1,1110 acoustic drums.wav,Other, +1,11 synth voice.wav,Other, +1,11 piano.wav,Other, +1,11 choir male.wav,Other, +1,11 backing vocals.wav,Other, +1,10_vocal pads.wav,Other, +1,10_synth choir.wav,Other, +1,10_synth 80s.wav,Other, +1,10_sax.wav,Other, +1,10_saw2.wav,Other, +1,10_pads.wav,Other, +1,10_ld.wav,Other, +1,10_hammond.wav,Other, +1,10_eg6r.wav,Other, +1,10_eg5 r.wav,Other, +1,10_eg3 r.wav,Other, +1,10_eg3 l.wav,Other, +1,10_eg1.wav,Other, +1,10_eg r.wav,Other, +1,10_eg l.wav,Other, +1,10_bv.wav,Other, +1,1-adlib.wav,Other, +1,1 drums.wav,Other, +1,0percussion.wav,Other, +1,0drums.wav,Other, +1,09_violas intro.wav,Other, +1,09_synths.wav,Other, +1,09_synth bells.wav,Other, +1,09_synth bell.wav,Other, +1,09_organ.wav,Other, +1,09_lv.wav,Other, +1,09_hammond.wav,Other, +1,09_gtr rev.wav,Other, +1,09_end pad.wav,Other, +1,09_eg5l.wav,Other, +1,09_eg4 right.wav,Other, +1,09_eg r.wav,Other, +1,09_eg l.wav,Other, +1,09_eg adds c.wav,Other, +1,09_choir.wav,Other, +1,09_brasses.wav,Other, +1,09_bells.wav,Other, +1,09 synth lead.wav,Other, +1,09 strings.wav,Other, +1,09 harp.wav,Other, +1,09 hammond.wav,Other, +1,09 choir.wav,Other, +1,08_solo hammond.wav,Other, +1,08_seq saw.wav,Other, +1,08_rhodes.wav,Other, +1,08_mallets.wav,Other, +1,08_hi synth.wav,Other, +1,08_ep mk.wav,Other, +1,08_eg4r.wav,Other, +1,08_eg3 arp r.wav,Other, +1,08_eg2.wav,Other, +1,08_eg2 l.wav,Other, +1,08_eg1 l.wav,Other, +1,08_eg intro.wav,Other, +1,08_eg funky.wav,Other, +1,08_clavi r.wav,Other, +1,08_brasses.wav,Other, +1,08_ac gtr r.wav,Other, +1,08 tubular bells.wav,Other, +1,08 synth voice.wav,Other, +1,08 synth bass.wav,Other, +1,08 pipe organ.wav,Other, +1,08 choir.wav,Other, +1,08 brass.wav,Other, +1,08 banjo.wav,Other, +1,07_xylophone.wav,Other, +1,07_saw uni keys.wav,Other, +1,07_polysynth l.wav,Other, +1,07_marimba.wav,Other, +1,07_hammond low.wav,Other, +1,07_eg3l.wav,Other, +1,07_eg3 r.wav,Other, +1,07_eg2 melo.wav,Other, +1,07_eg2 l.wav,Other, +1,07_eg1.wav,Other, +1,07_eg1 r.wav,Other, +1,07_eg crunch r.wav,Other, +1,07_clavi c.wav,Other, +1,07_bass 3.wav,Other, +1,070 shake.wav,Other, +1,07 synths.wav,Other, +1,07 synth pad.wav,Other, +1,07 synth lead.wav,Other, +1,07 sfx.wav,Other, +1,07 piano.wav,Other, +1,07 organ.wav,Other, +1,07 hammond.wav,Other, +1,07 el guitar vox.wav,Other, +1,06_synth bass.wav,Other, +1,06_hammond no filt.wav,Other, +1,06_gtr synth.wav,Other, +1,06_eg2r.wav,Other, +1,06_eg2 r.wav,Other, +1,06_eg2 l.wav,Other, +1,06_eg1 left.wav,Other, +1,06_eg solo.wav,Other, +1,06_eg disto.wav,Other, +1,06_eg clean c.wav,Other, +1,06_clavi l.wav,Other, +1,06_bass.wav,Other, +1,06_ac gtr2.wav,Other, +1,06_ac gtr.wav,Other, +1,06 synths.wav,Other, +1,06 synth bass.wav,Other, +1,06 piano.wav,Other, +1,06 lead guitar r.wav,Other, +1,06 lead guitar 2.wav,Other, +1,06 hammond.wav,Other, +1,06 el guitar fender.wav,Other, +1,06 e piano.wav,Other, +1,06 backing vocals.wav,Other, +1,05_plucked square.wav,Other, +1,05_piano r.wav,Other, +1,05_hammond filt.wav,Other, +1,05_eg1l.wav,Other, +1,05_eg1 l.wav,Other, +1,05_eg.wav,Other, +1,05_eg solo.wav,Other, +1,05_eg rhy.wav,Other, +1,05_eg r.wav,Other, +1,05_eg l.wav,Other, +1,05_ac gtr1.wav,Other, +1,05_ac gtr.wav,Other, +1,05_ac gtr l.wav,Other, +1,05 synths.wav,Other, +1,05 lead guitar.wav,Other, +1,05 lead guitar l.wav,Other, +1,05 lead guitar 1.wav,Other, +1,05 hi gain guitar.wav,Other, +1,05 electric guitar.wav,Other, +1,05 el guitar marshall.wav,Other, +1,04_slap bass.wav,Other, +1,04_sfx.wav,Other, +1,04_eg1 l.wav,Other, +1,04_eg l.wav,Other, +1,04_bass 2.wav,Other, +1,04 rhythm guitar.wav,Other, +1,04 rhythm guitar r.wav,Other, +1,04 rhythm guitar 2.wav,Other, +1,04 rhodes.wav,Other, +1,04 lead guitars.wav,Other, +1,04 electric guitar.wav,Other, +1,03_bass 1.wav,Other, +1,03_ac bass.wav,Other, +1,03 timpani.wav,Other, +1,03 synth.wav,Other, +1,03 sfx.wav,Other, +1,03 rhythm guitar l.wav,Other, +1,03 rhythm guitar 1.wav,Other, +1,03 percussion.wav,Other, +1,03 electric guitar.wav,Other, +1,02_percu.wav,Other, +1,02 electronic drums.wav,Other, +1,02 clap.wav,Other, +1,02 bass guitar.wav,Other, +1,01_drums.wav,Other, +1,01 acoustic drums.wav,Other, \ No newline at end of file diff --git a/ruby/db/migrate/20250120000000_jam_track_import_tency.rb b/ruby/db/migrate/20250120000000_jam_track_import_tency.rb new file mode 100644 index 000000000..df7755bb5 --- /dev/null +++ b/ruby/db/migrate/20250120000000_jam_track_import_tency.rb @@ -0,0 +1,34 @@ +class AddNumResultsSeen < ActiveRecord::Migration + def self.up + execute("ALTER TABLE public.jam_tracks ADD COLUMN original_artist_slug VARCHAR UNIQUE;") + execute("ALTER TABLE public.jam_tracks ADD COLUMN name_slug VARCHAR;") + execute("ALTER TABLE public.jam_tracks ADD COLUMN origin_s3_path VARCHAR UNIQUE;") + execute("ALTER TABLE public.jam_tracks ADD COLUMN origin_s3_bucket VARCHAR;") + execute("ALTER TABLE public.jam_tracks ADD COLUMN s3_audio_dir VARCHAR;") + + ALTER TABLE public.jam_tracks ADD COLUMN original_artist_slug VARCHAR UNIQUE; + ALTER TABLE public.jam_tracks ADD COLUMN name_slug VARCHAR; + ALTER TABLE public.jam_tracks ADD COLUMN origin_s3_path VARCHAR UNIQUE; + ALTER TABLE public.jam_tracks ADD COLUMN origin_s3_bucket VARCHAR; + ALTER TABLE public.jam_tracks ADD COLUMN s3_audio_dir VARCHAR; + + # just for prod/staging only + GRANT UPDATE on jam_tracks to lambda; + GRANT INSERT on jam_tracks to lambda; + GRANT UPDATE on jam_track_tracks to lambda; + GRANT INSERT on jam_track_tracks to lambda; + GRANT UPDATE on jam_track_files to lambda; + GRANT INSERT on jam_track_files to lambda; + GRANT UPDATE on genres_jam_tracks to lambda; + GRANT INSERT on genres_jam_tracks to lambda; + + end + + def self.down + execute("ALTER TABLE public.jam_tracks DROP COLUMN original_artist_slug;") + execute("ALTER TABLE public.jam_tracks DROP COLUMN name_slug;") + execute("ALTER TABLE public.jam_tracks DROP COLUMN origin_s3_path;") + execute("ALTER TABLE public.jam_tracks DROP COLUMN origin_s3_bucket;") + execute("ALTER TABLE public.jam_tracks DROP COLUMN s3_audio_dir;") + end +end diff --git a/web/app/views/api_jam_tracks/show.rabl b/web/app/views/api_jam_tracks/show.rabl index 19eb2c0c8..6c0a47b86 100644 --- a/web/app/views/api_jam_tracks/show.rabl +++ b/web/app/views/api_jam_tracks/show.rabl @@ -1,6 +1,6 @@ object @jam_track -attributes :id, :name, :description, :recording_type, :original_artist, :songwriter, :publisher, :sales_region, :price, :version, :duration, :year, :plan_code, :allow_free, :download_price, :upgrade_price, :slug +attributes :id, :name, :description, :recording_type, :original_artist, :songwriter, :publisher, :sales_region, :price, :version, :duration, :year, :plan_code, :allow_free, :download_price, :upgrade_price,:slug, :original_artist_slug, :name_slug node :genres do |item| item.genres.select(:description).map(&:description) @@ -32,4 +32,4 @@ child(:jam_track_tracks => :tracks) { child(:licensor => :licensor) { attributes :id, :name -} \ No newline at end of file +} diff --git a/web/app/views/api_jam_tracks/show_artist.rabl b/web/app/views/api_jam_tracks/show_artist.rabl index 68839c3f3..d1efa7973 100644 --- a/web/app/views/api_jam_tracks/show_artist.rabl +++ b/web/app/views/api_jam_tracks/show_artist.rabl @@ -1,3 +1,3 @@ object @artist -attributes :original_artist, :song_count \ No newline at end of file +attributes :original_artist, :song_count, :original_artist_slug \ No newline at end of file diff --git a/web/app/views/api_jam_tracks/show_for_client.rabl b/web/app/views/api_jam_tracks/show_for_client.rabl index 76a986d31..fd9113ae1 100644 --- a/web/app/views/api_jam_tracks/show_for_client.rabl +++ b/web/app/views/api_jam_tracks/show_for_client.rabl @@ -1,6 +1,6 @@ object @jam_track -attributes :id, :name, :description, :initial_play_silence, :original_artist, :version, :year, :duration, :allow_free +attributes :id, :name, :description, :initial_play_silence, :original_artist, :version, :year, :duration, :allow_free, :original_artist_slug, :name_slug child(:genres) { attributes :id, :description diff --git a/web/app/views/api_jam_tracks/show_for_mobile.rabl b/web/app/views/api_jam_tracks/show_for_mobile.rabl index dc68d2539..29ab6771b 100644 --- a/web/app/views/api_jam_tracks/show_for_mobile.rabl +++ b/web/app/views/api_jam_tracks/show_for_mobile.rabl @@ -1,6 +1,6 @@ object @jam_track -attributes :id, :name, :original_artist, :year, :genre_name, :can_download +attributes :id, :name, :original_artist, :year, :genre_name, :can_download, :original_artist_slug, :name_slug node :purchased_at do |jt| Time.parse(jt.purchased_at).to_i rescue Time.now.to_i