diff --git a/README.md b/README.md index 4bbc43f..5057d1f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ Code repository for the O'Reilly publication ["Building Machine Learning Pipelines"](http://www.buildingmlpipelines.com) by Hannes Hapke & Catherine Nelson +## Update + +* The example code has been updated to work with TFX 1.4.0, TensorFlow 2.6.1, and Apache Beam 2.33.0. A GCP Vertex example (training and serving) was added. + ## Set up the demo project Download the initial dataset. From the root of this repository, execute @@ -63,7 +67,9 @@ Chapter 14. Code for training a differentially private version of the demo proje The code was written and tested for version 0.22. +- As of 11/23/21, the examples have been updated to support TFX 1.4.0, TensorFlow 2.6.1, and Apache Beam 2.33.0. A GCP Vertex example (training and serving) was added. + - As of 9/22/20, the interactive pipeline runs on TFX version 0.24.0rc1. Due to tiny TFX bugs, the pipelines currently don't work on the releases 0.23 and 0.24-rc0. Github issues have been filed with the TFX team specifically for the book pipelines ([Issue 2500](https://github.com/tensorflow/tfx/issues/2500#issuecomment-695363847)). We will update the repository once the issue is resolved. -- As of 9/14/20, TFX only supports Python 3.8 with version >0.24.0rc0. +- As of 9/14/20, TFX only supports Python 3.8 with version >0.24.0rc0. diff --git a/chapters/data_ingestion/convert_data_to_tfrecords.py b/chapters/data_ingestion/convert_data_to_tfrecords.py index 81cc096..493f723 100644 --- a/chapters/data_ingestion/convert_data_to_tfrecords.py +++ b/chapters/data_ingestion/convert_data_to_tfrecords.py @@ -8,13 +8,7 @@ def _bytes_feature(value): - return tf.train.Feature( - bytes_list=tf.train.BytesList(value=[value.encode()]) - ) - - -def _float_feature(value): - return tf.train.Feature(float_list=tf.train.FloatList(value=[value])) + return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value.encode()])) def _int64_feature(value): @@ -26,12 +20,13 @@ def clean_rows(row): row["zip_code"] = "99999" return row + def convert_zipcode_to_int(zipcode): if isinstance(zipcode, str) and "XX" in zipcode: zipcode = zipcode.replace("XX", "00") int_zipcode = int(zipcode) return int_zipcode - + original_data_file = "../../data/consumer_complaints_with_narrative.csv" tfrecords_filename = "consumer-complaints.tfrecords" @@ -53,9 +48,7 @@ def convert_zipcode_to_int(zipcode): "company": _bytes_feature(row["company"]), "company_response": _bytes_feature(row["company_response"]), "timely_response": _bytes_feature(row["timely_response"]), - "consumer_disputed": _bytes_feature( - row["consumer_disputed"] - ), + "consumer_disputed": _bytes_feature(row["consumer_disputed"]), } ) ) diff --git a/chapters/data_validation/data_validation.ipynb b/chapters/data_validation/data_validation.ipynb index c8e36e4..796627b 100644 --- a/chapters/data_validation/data_validation.ipynb +++ b/chapters/data_validation/data_validation.ipynb @@ -1,153 +1,19763 @@ { - "nbformat": 4, - "nbformat_minor": 0, - "metadata": { - "kernelspec": { - "display_name": "Python 3.7.5 64-bit", - "language": "python", - "name": "python_defaultSpec_1599144816174" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.5-final" - }, - "colab": { - "name": "data_validation.ipynb", - "provenance": [] - } - }, "cells": [ { "cell_type": "code", + "execution_count": 2, "metadata": { - "tags": [], - "id": "WTyMoirudEtB", - "colab_type": "code", "colab": {}, - "outputId": "4ed6b8da-8b3e-403e-e835-8e4fcd061a89" + "colab_type": "code", + "id": "WTyMoirudEtB", + "outputId": "4ed6b8da-8b3e-403e-e835-8e4fcd061a89", + "tags": [] }, - "source": [ - "import tensorflow_data_validation as tfdv\n", - "\n", - "stats = tfdv.generate_statistics_from_csv(\n", - " data_location='../../data/consumer_complaints_with_narrative.csv',\n", - " delimiter=',')" - ], - "execution_count": null, "outputs": [ { + "name": "stderr", "output_type": "stream", "text": [ "WARNING:apache_beam.runners.interactive.interactive_environment:Dependencies required for Interactive Beam PCollection visualization are not available, please use: `pip install apache-beam[interactive]` to install necessary dependencies to enable all data visualization features.\n" - ], - "name": "stderr" + ] }, { - "output_type": "display_data", "data": { - "application/javascript": [ - "\n", - " if (typeof window.interactive_beam_jquery == 'undefined') {\n", - " var jqueryScript = document.createElement('script');\n", - " jqueryScript.src = 'https://code.jquery.com/jquery-3.4.1.slim.min.js';\n", - " jqueryScript.type = 'text/javascript';\n", - " jqueryScript.onload = function() {\n", - " var datatableScript = document.createElement('script');\n", - " datatableScript.src = 'https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js';\n", - " datatableScript.type = 'text/javascript';\n", - " datatableScript.onload = function() {\n", - " window.interactive_beam_jquery = jQuery.noConflict(true);\n", - " window.interactive_beam_jquery(document).ready(function($){\n", - " \n", - " });\n", - " }\n", - " document.head.appendChild(datatableScript);\n", - " };\n", - " document.head.appendChild(jqueryScript);\n", - " } else {\n", - " window.interactive_beam_jquery(document).ready(function($){\n", - " \n", - " });\n", - " }" - ] + "application/javascript": "\n if (typeof window.interactive_beam_jquery == 'undefined') {\n var jqueryScript = document.createElement('script');\n jqueryScript.src = 'https://code.jquery.com/jquery-3.4.1.slim.min.js';\n jqueryScript.type = 'text/javascript';\n jqueryScript.onload = function() {\n var datatableScript = document.createElement('script');\n datatableScript.src = 'https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js';\n datatableScript.type = 'text/javascript';\n datatableScript.onload = function() {\n window.interactive_beam_jquery = jQuery.noConflict(true);\n window.interactive_beam_jquery(document).ready(function($){\n \n });\n }\n document.head.appendChild(datatableScript);\n };\n document.head.appendChild(jqueryScript);\n } else {\n window.interactive_beam_jquery(document).ready(function($){\n \n });\n }" }, - "metadata": { - "tags": [] - } + "metadata": {}, + "output_type": "display_data" }, { - "output_type": "display_data", - "data": { - "application/javascript": [ - "\n", - " var import_html = () => {\n", - " ['https://raw.githubusercontent.com/PAIR-code/facets/1.0.0/facets-dist/facets-jupyter.html'].forEach(href => {\n", - " var link = document.createElement('link');\n", - " link.rel = 'import'\n", - " link.href = href;\n", - " document.head.appendChild(link);\n", - " });\n", - " }\n", - " if ('import' in document.createElement('link')) {\n", - " import_html();\n", - " } else {\n", - " var webcomponentScript = document.createElement('script');\n", - " webcomponentScript.src = 'https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.3.3/webcomponents-lite.js';\n", - " webcomponentScript.type = 'text/javascript';\n", - " webcomponentScript.onload = function(){\n", - " import_html();\n", - " };\n", - " document.head.appendChild(webcomponentScript);\n", - " }" - ] - }, - "metadata": { - "tags": [] - } + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:root:Make sure that locally built Python SDK docker image has Python 3.8 interpreter.\n", + "WARNING:apache_beam.io.tfrecordio:Couldn't find python-snappy so the implementation of _TFRecordUtil._masked_crc32c is not as fast as it could be.\n" + ] }, { + "name": "stdout", "output_type": "stream", "text": [ - "WARNING:apache_beam.io.tfrecordio:Couldn't find python-snappy so the implementation of _TFRecordUtil._masked_crc32c is not as fast as it could be.\n", - "WARNING:tensorflow:From /usr/local/lib/python3.7/site-packages/tensorflow_data_validation/utils/stats_util.py:229: tf_record_iterator (from tensorflow.python.lib.io.tf_record) is deprecated and will be removed in a future version.\n", + "WARNING:tensorflow:From /Users/hannes/.pyenv/versions/3.8.12/envs/tensorflow-2.6/lib/python3.8/site-packages/tensorflow_data_validation/utils/stats_util.py:247: tf_record_iterator (from tensorflow.python.lib.io.tf_record) is deprecated and will be removed in a future version.\n", "Instructions for updating:\n", "Use eager execution and: \n", - "`tf.data.TFRecordDataset(path)`\n", - "WARNING:tensorflow:From /usr/local/lib/python3.7/site-packages/tensorflow_data_validation/utils/stats_util.py:229: tf_record_iterator (from tensorflow.python.lib.io.tf_record) is deprecated and will be removed in a future version.\n", + "`tf.data.TFRecordDataset(path)`\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:tensorflow:From /Users/hannes/.pyenv/versions/3.8.12/envs/tensorflow-2.6/lib/python3.8/site-packages/tensorflow_data_validation/utils/stats_util.py:247: tf_record_iterator (from tensorflow.python.lib.io.tf_record) is deprecated and will be removed in a future version.\n", "Instructions for updating:\n", "Use eager execution and: \n", "`tf.data.TFRecordDataset(path)`\n" - ], - "name": "stderr" + ] } + ], + "source": [ + "import tensorflow_data_validation as tfdv\n", + "\n", + "stats = tfdv.generate_statistics_from_csv(\n", + " data_location='../../data/consumer_complaints_with_narrative.csv',\n", + " delimiter=',')" ] }, { "cell_type": "code", + "execution_count": 3, "metadata": { - "id": "hcrnDWJgdEtF", - "colab_type": "code", "colab": {}, + "colab_type": "code", + "id": "hcrnDWJgdEtF", "outputId": "79434ac7-c12a-4b1b-e6d2-97cea0944a7b" }, - "source": [ - "stats" - ], - "execution_count": null, "outputs": [ { - "output_type": "execute_result", "data": { "text/plain": [ - "gh_rank: 816\n", + "datasets {\n", + " num_examples: 66799\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 66799\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 66799\n", + " }\n", + " unique: 11\n", + " top_values {\n", + " value: \"Debt collection\"\n", + " frequency: 17552.0\n", + " }\n", + " top_values {\n", + " value: \"Mortgage\"\n", + " frequency: 14917.0\n", + " }\n", + " top_values {\n", + " value: \"Credit reporting\"\n", + " frequency: 12525.0\n", + " }\n", + " top_values {\n", + " value: \"Credit card\"\n", + " frequency: 7927.0\n", + " }\n", + " top_values {\n", + " value: \"Bank account or service\"\n", + " frequency: 5710.0\n", + " }\n", + " top_values {\n", + " value: \"Consumer Loan\"\n", + " frequency: 3677.0\n", + " }\n", + " top_values {\n", + " value: \"Student loan\"\n", + " frequency: 2128.0\n", + " }\n", + " top_values {\n", + " value: \"Prepaid card\"\n", + " frequency: 861.0\n", + " }\n", + " top_values {\n", + " value: \"Payday loan\"\n", + " frequency: 726.0\n", + " }\n", + " top_values {\n", + " value: \"Money transfers\"\n", + " frequency: 666.0\n", + " }\n", + " top_values {\n", + " value: \"Other financial service\"\n", + " frequency: 110.0\n", + " }\n", + " avg_length: 13.558856010437012\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"Debt collection\"\n", + " sample_count: 17552.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"Mortgage\"\n", + " sample_count: 14917.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"Credit reporting\"\n", + " sample_count: 12525.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"Credit card\"\n", + " sample_count: 7927.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"Bank account or service\"\n", + " sample_count: 5710.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"Consumer Loan\"\n", + " sample_count: 3677.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"Student loan\"\n", + " sample_count: 2128.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"Prepaid card\"\n", + " sample_count: 861.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"Payday loan\"\n", + " sample_count: 726.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"Money transfers\"\n", + " sample_count: 666.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"Other financial service\"\n", + " sample_count: 110.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"product\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 46347\n", + " num_missing: 20452\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 4634.7\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 46347\n", + " }\n", + " unique: 45\n", + " top_values {\n", + " value: \"Conventional fixed mortgage\"\n", + " frequency: 6638.0\n", + " }\n", + " top_values {\n", + " value: \"Other (i.e. phone, health club, etc.)\"\n", + " frequency: 5253.0\n", + " }\n", + " top_values {\n", + " value: \"Checking account\"\n", + " frequency: 3819.0\n", + " }\n", + " top_values {\n", + " value: \"I do not know\"\n", + " frequency: 3795.0\n", + " }\n", + " top_values {\n", + " value: \"Credit card\"\n", + " frequency: 3517.0\n", + " }\n", + " top_values {\n", + " value: \"FHA mortgage\"\n", + " frequency: 2776.0\n", + " }\n", + " top_values {\n", + " value: \"Medical\"\n", + " frequency: 2725.0\n", + " }\n", + " top_values {\n", + " value: \"Non-federal student loan\"\n", + " frequency: 2456.0\n", + " }\n", + " top_values {\n", + " value: \"Conventional adjustable mortgage (ARM)\"\n", + " frequency: 2378.0\n", + " }\n", + " top_values {\n", + " value: \"Vehicle loan\"\n", + " frequency: 2064.0\n", + " }\n", + " top_values {\n", + " value: \"Payday loan\"\n", + " frequency: 1658.0\n", + " }\n", + " top_values {\n", + " value: \"Other mortgage\"\n", + " frequency: 1410.0\n", + " }\n", + " top_values {\n", + " value: \"Other bank product/service\"\n", + " frequency: 1353.0\n", + " }\n", + " top_values {\n", + " value: \"Installment loan\"\n", + " frequency: 1182.0\n", + " }\n", + " top_values {\n", + " value: \"Home equity loan or line of credit\"\n", + " frequency: 947.0\n", + " }\n", + " top_values {\n", + " value: \"VA mortgage\"\n", + " frequency: 639.0\n", + " }\n", + " top_values {\n", + " value: \"General purpose card\"\n", + " frequency: 439.0\n", + " }\n", + " top_values {\n", + " value: \"Auto\"\n", + " frequency: 399.0\n", + " }\n", + " top_values {\n", + " value: \"Domestic (US) money transfer\"\n", + " frequency: 379.0\n", + " }\n", + " top_values {\n", + " value: \"Mortgage\"\n", + " frequency: 366.0\n", + " }\n", + " avg_length: 20.37217140197754\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"Conventional fixed mortgage\"\n", + " sample_count: 6638.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"Other (i.e. phone, health club, etc.)\"\n", + " sample_count: 5253.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"Checking account\"\n", + " sample_count: 3819.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"I do not know\"\n", + " sample_count: 3795.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"Credit card\"\n", + " sample_count: 3517.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"FHA mortgage\"\n", + " sample_count: 2776.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"Medical\"\n", + " sample_count: 2725.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"Non-federal student loan\"\n", + " sample_count: 2456.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"Conventional adjustable mortgage (ARM)\"\n", + " sample_count: 2378.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"Vehicle loan\"\n", + " sample_count: 2064.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"Payday loan\"\n", + " sample_count: 1658.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"Other mortgage\"\n", + " sample_count: 1410.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"Other bank product/service\"\n", + " sample_count: 1353.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"Installment loan\"\n", + " sample_count: 1182.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"Home equity loan or line of credit\"\n", + " sample_count: 947.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"VA mortgage\"\n", + " sample_count: 639.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"General purpose card\"\n", + " sample_count: 439.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"Auto\"\n", + " sample_count: 399.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"Domestic (US) money transfer\"\n", + " sample_count: 379.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"Mortgage\"\n", + " sample_count: 366.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"Savings account\"\n", + " sample_count: 363.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"Vehicle lease\"\n", + " sample_count: 322.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"International money transfer\"\n", + " sample_count: 287.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"Federal student loan\"\n", + " sample_count: 237.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"Payroll card\"\n", + " sample_count: 160.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"Reverse mortgage\"\n", + " sample_count: 129.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"(CD) Certificate of deposit\"\n", + " sample_count: 120.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"Title loan\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"ID prepaid card\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"Gift or merchant card\"\n", + " sample_count: 63.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"Cashing a check without an account\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"Mobile wallet\"\n", + " sample_count: 48.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"Government benefit payment card\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"Debt settlement\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"Other special purpose card\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"Check cashing\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"Transit card\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"Personal line of credit\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"Money order\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"Credit repair\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"Pawn loan\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"Traveler\\303\\242\\302\\200\\302\\231s/Cashier\\303\\242\\302\\200\\302\\231s checks\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"Foreign currency exchange\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"Refund anticipation check\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"Electronic Benefit Transfer / EBT card\"\n", + " sample_count: 1.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"sub_product\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 66799\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 66799\n", + " }\n", + " unique: 90\n", + " top_values {\n", + " value: \"Incorrect information on credit report\"\n", + " frequency: 8351.0\n", + " }\n", + " top_values {\n", + " value: \"Cont\\'d attempts collect debt not owed\"\n", + " frequency: 7520.0\n", + " }\n", + " top_values {\n", + " value: \"Loan servicing, payments, escrow account\"\n", + " frequency: 6553.0\n", + " }\n", + " top_values {\n", + " value: \"Loan modification,collection,foreclosure\"\n", + " frequency: 5162.0\n", + " }\n", + " top_values {\n", + " value: \"Disclosure verification of debt\"\n", + " frequency: 2912.0\n", + " }\n", + " top_values {\n", + " value: \"Communication tactics\"\n", + " frequency: 2759.0\n", + " }\n", + " top_values {\n", + " value: \"Account opening, closing, or management\"\n", + " frequency: 2228.0\n", + " }\n", + " top_values {\n", + " value: \"Credit reporting company\\'s investigation\"\n", + " frequency: 1990.0\n", + " }\n", + " top_values {\n", + " value: \"Managing the loan or lease\"\n", + " frequency: 1650.0\n", + " }\n", + " top_values {\n", + " value: \"False statements or representation\"\n", + " frequency: 1647.0\n", + " }\n", + " top_values {\n", + " value: \"Application, originator, mortgage broker\"\n", + " frequency: 1616.0\n", + " }\n", + " top_values {\n", + " value: \"Deposits and withdrawals\"\n", + " frequency: 1401.0\n", + " }\n", + " top_values {\n", + " value: \"Taking/threatening an illegal action\"\n", + " frequency: 1397.0\n", + " }\n", + " top_values {\n", + " value: \"Dealing with my lender or servicer\"\n", + " frequency: 1357.0\n", + " }\n", + " top_values {\n", + " value: \"Improper contact or sharing of info\"\n", + " frequency: 1317.0\n", + " }\n", + " top_values {\n", + " value: \"Billing disputes\"\n", + " frequency: 1222.0\n", + " }\n", + " top_values {\n", + " value: \"Unable to get credit report/credit score\"\n", + " frequency: 1032.0\n", + " }\n", + " top_values {\n", + " value: \"Settlement process and costs\"\n", + " frequency: 1017.0\n", + " }\n", + " top_values {\n", + " value: \"Problems when you are unable to pay\"\n", + " frequency: 1006.0\n", + " }\n", + " top_values {\n", + " value: \"Problems caused by my funds being low\"\n", + " frequency: 918.0\n", + " }\n", + " avg_length: 33.267547607421875\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"Incorrect information on credit report\"\n", + " sample_count: 8351.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"Cont\\'d attempts collect debt not owed\"\n", + " sample_count: 7520.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"Loan servicing, payments, escrow account\"\n", + " sample_count: 6553.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"Loan modification,collection,foreclosure\"\n", + " sample_count: 5162.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"Disclosure verification of debt\"\n", + " sample_count: 2912.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"Communication tactics\"\n", + " sample_count: 2759.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"Account opening, closing, or management\"\n", + " sample_count: 2228.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"Credit reporting company\\'s investigation\"\n", + " sample_count: 1990.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"Managing the loan or lease\"\n", + " sample_count: 1650.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"False statements or representation\"\n", + " sample_count: 1647.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"Application, originator, mortgage broker\"\n", + " sample_count: 1616.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"Deposits and withdrawals\"\n", + " sample_count: 1401.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"Taking/threatening an illegal action\"\n", + " sample_count: 1397.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"Dealing with my lender or servicer\"\n", + " sample_count: 1357.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"Improper contact or sharing of info\"\n", + " sample_count: 1317.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"Billing disputes\"\n", + " sample_count: 1222.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"Unable to get credit report/credit score\"\n", + " sample_count: 1032.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"Settlement process and costs\"\n", + " sample_count: 1017.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"Problems when you are unable to pay\"\n", + " sample_count: 1006.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"Problems caused by my funds being low\"\n", + " sample_count: 918.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"Other\"\n", + " sample_count: 828.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"Identity theft / Fraud / Embezzlement\"\n", + " sample_count: 717.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"Can\\'t repay my loan\"\n", + " sample_count: 700.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"Improper use of my credit report\"\n", + " sample_count: 688.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"Using a debit or ATM card\"\n", + " sample_count: 619.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"Closing/Cancelling account\"\n", + " sample_count: 618.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"Taking out the loan or lease\"\n", + " sample_count: 608.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"Credit decision / Underwriting\"\n", + " sample_count: 569.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"Making/receiving payments, sending money\"\n", + " sample_count: 544.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"Credit monitoring or identity protection\"\n", + " sample_count: 464.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"Fraud or scam\"\n", + " sample_count: 463.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"Customer service / Customer relations\"\n", + " sample_count: 416.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"Delinquent account\"\n", + " sample_count: 404.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"Advertising and marketing\"\n", + " sample_count: 388.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"APR or interest rate\"\n", + " sample_count: 381.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"Late fee\"\n", + " sample_count: 357.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"Charged fees or interest I didn\\'t expect\"\n", + " sample_count: 332.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"Shopping for a loan or lease\"\n", + " sample_count: 303.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"Billing statement\"\n", + " sample_count: 300.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"Unauthorized transactions/trans. issues\"\n", + " sample_count: 298.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"Rewards\"\n", + " sample_count: 286.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"Credit card protection / Debt protection\"\n", + " sample_count: 263.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"Managing, opening, or closing account\"\n", + " sample_count: 261.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"Transaction issue\"\n", + " sample_count: 250.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"Credit determination\"\n", + " sample_count: 247.0\n", + " }\n", + " buckets {\n", + " low_rank: 45\n", + " high_rank: 45\n", + " label: \"Other fee\"\n", + " sample_count: 220.0\n", + " }\n", + " buckets {\n", + " low_rank: 46\n", + " high_rank: 46\n", + " label: \"Payoff process\"\n", + " sample_count: 218.0\n", + " }\n", + " buckets {\n", + " low_rank: 47\n", + " high_rank: 47\n", + " label: \"Credit line increase/decrease\"\n", + " sample_count: 207.0\n", + " }\n", + " buckets {\n", + " low_rank: 48\n", + " high_rank: 48\n", + " label: \"Other transaction issues\"\n", + " sample_count: 194.0\n", + " }\n", + " buckets {\n", + " low_rank: 49\n", + " high_rank: 49\n", + " label: \"Unsolicited issuance of credit card\"\n", + " sample_count: 178.0\n", + " }\n", + " buckets {\n", + " low_rank: 50\n", + " high_rank: 50\n", + " label: \"Can\\'t contact lender\"\n", + " sample_count: 162.0\n", + " }\n", + " buckets {\n", + " low_rank: 51\n", + " high_rank: 51\n", + " label: \"Balance transfer\"\n", + " sample_count: 114.0\n", + " }\n", + " buckets {\n", + " low_rank: 52\n", + " high_rank: 52\n", + " label: \"Money was not available when promised\"\n", + " sample_count: 113.0\n", + " }\n", + " buckets {\n", + " low_rank: 53\n", + " high_rank: 53\n", + " label: \"Received a loan I didn\\'t apply for\"\n", + " sample_count: 88.0\n", + " }\n", + " buckets {\n", + " low_rank: 54\n", + " high_rank: 54\n", + " label: \"Can\\'t stop charges to bank account\"\n", + " sample_count: 73.0\n", + " }\n", + " buckets {\n", + " low_rank: 55\n", + " high_rank: 55\n", + " label: \"Getting a loan\"\n", + " sample_count: 71.0\n", + " }\n", + " buckets {\n", + " low_rank: 56\n", + " high_rank: 56\n", + " label: \"Adding money\"\n", + " sample_count: 65.0\n", + " }\n", + " buckets {\n", + " low_rank: 57\n", + " high_rank: 57\n", + " label: \"Payment to acct not credited\"\n", + " sample_count: 64.0\n", + " }\n", + " buckets {\n", + " low_rank: 58\n", + " high_rank: 58\n", + " label: \"Other service issues\"\n", + " sample_count: 58.0\n", + " }\n", + " buckets {\n", + " low_rank: 59\n", + " high_rank: 59\n", + " label: \"Privacy\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 60\n", + " high_rank: 60\n", + " label: \"Bankruptcy\"\n", + " sample_count: 50.0\n", + " }\n", + " buckets {\n", + " low_rank: 61\n", + " high_rank: 61\n", + " label: \"Applied for loan/did not receive money\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 62\n", + " high_rank: 62\n", + " label: \"Charged bank acct wrong day or amt\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 63\n", + " high_rank: 63\n", + " label: \"Sale of account\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 64\n", + " high_rank: 64\n", + " label: \"Fees\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 65\n", + " high_rank: 65\n", + " label: \"Application processing delay\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 66\n", + " high_rank: 66\n", + " label: \"Wrong amount charged or received\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 67\n", + " high_rank: 67\n", + " label: \"Forbearance / Workout plans\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 68\n", + " high_rank: 68\n", + " label: \"Arbitration\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 69\n", + " high_rank: 69\n", + " label: \"Incorrect/missing disclosures or info\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 70\n", + " high_rank: 70\n", + " label: \"Customer service/Customer relations\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 71\n", + " high_rank: 71\n", + " label: \"Balance transfer fee\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 72\n", + " high_rank: 72\n", + " label: \"Excessive fees\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 73\n", + " high_rank: 73\n", + " label: \"Cash advance fee\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 74\n", + " high_rank: 74\n", + " label: \"Overlimit fee\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 75\n", + " high_rank: 75\n", + " label: \"Convenience checks\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 76\n", + " high_rank: 76\n", + " label: \"Cash advance\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 77\n", + " high_rank: 77\n", + " label: \"Unexpected/Other fees\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 78\n", + " high_rank: 78\n", + " label: \"Advertising, marketing or disclosures\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 79\n", + " high_rank: 79\n", + " label: \"Lender repossessed or sold the vehicle\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 80\n", + " high_rank: 80\n", + " label: \"Overdraft, savings or rewards features\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 81\n", + " high_rank: 81\n", + " label: \"Account terms and changes\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 82\n", + " high_rank: 82\n", + " label: \"Managing the line of credit\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 83\n", + " high_rank: 83\n", + " label: \"Lost or stolen check\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 84\n", + " high_rank: 84\n", + " label: \"Disclosures\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 85\n", + " high_rank: 85\n", + " label: \"Shopping for a line of credit\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 86\n", + " high_rank: 86\n", + " label: \"Lost or stolen money order\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 87\n", + " high_rank: 87\n", + " label: \"Lender sold the property\"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 88\n", + " high_rank: 88\n", + " label: \"Lender damaged or destroyed vehicle\"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 89\n", + " high_rank: 89\n", + " label: \"Incorrect exchange rate\"\n", + " sample_count: 1.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"issue\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 32931\n", + " num_missing: 33868\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 3293.1\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 32931\n", + " }\n", + " unique: 64\n", + " top_values {\n", + " value: \"Debt is not mine\"\n", + " frequency: 4558.0\n", + " }\n", + " top_values {\n", + " value: \"Information is not mine\"\n", + " frequency: 2660.0\n", + " }\n", + " top_values {\n", + " value: \"Account status\"\n", + " frequency: 2255.0\n", + " }\n", + " top_values {\n", + " value: \"Debt was paid\"\n", + " frequency: 1960.0\n", + " }\n", + " top_values {\n", + " value: \"Not given enough info to verify debt\"\n", + " frequency: 1645.0\n", + " }\n", + " top_values {\n", + " value: \"Frequent or repeated calls\"\n", + " frequency: 1576.0\n", + " }\n", + " top_values {\n", + " value: \"Attempted to collect wrong amount\"\n", + " frequency: 1197.0\n", + " }\n", + " top_values {\n", + " value: \"Account terms\"\n", + " frequency: 1161.0\n", + " }\n", + " top_values {\n", + " value: \"Right to dispute notice not received\"\n", + " frequency: 1021.0\n", + " }\n", + " top_values {\n", + " value: \"Public record\"\n", + " frequency: 1021.0\n", + " }\n", + " top_values {\n", + " value: \"No notice of investigation status/result\"\n", + " frequency: 788.0\n", + " }\n", + " top_values {\n", + " value: \"Debt resulted from identity theft\"\n", + " frequency: 706.0\n", + " }\n", + " top_values {\n", + " value: \"Personal information\"\n", + " frequency: 699.0\n", + " }\n", + " top_values {\n", + " value: \"Problem with statement of dispute\"\n", + " frequency: 681.0\n", + " }\n", + " top_values {\n", + " value: \"Talked to a third party about my debt\"\n", + " frequency: 656.0\n", + " }\n", + " top_values {\n", + " value: \"Report improperly shared by CRC\"\n", + " frequency: 639.0\n", + " }\n", + " top_values {\n", + " value: \"Threatened to take legal action\"\n", + " frequency: 594.0\n", + " }\n", + " top_values {\n", + " value: \"Problem getting my free annual report\"\n", + " frequency: 584.0\n", + " }\n", + " top_values {\n", + " value: \"Reinserted previously deleted info\"\n", + " frequency: 555.0\n", + " }\n", + " top_values {\n", + " value: \"Threatened to sue on too old debt\"\n", + " frequency: 463.0\n", + " }\n", + " avg_length: 26.14791488647461\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"Debt is not mine\"\n", + " sample_count: 4558.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"Information is not mine\"\n", + " sample_count: 2660.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"Account status\"\n", + " sample_count: 2255.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"Debt was paid\"\n", + " sample_count: 1960.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"Not given enough info to verify debt\"\n", + " sample_count: 1645.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"Frequent or repeated calls\"\n", + " sample_count: 1576.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"Attempted to collect wrong amount\"\n", + " sample_count: 1197.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"Account terms\"\n", + " sample_count: 1161.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"Right to dispute notice not received\"\n", + " sample_count: 1021.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"Public record\"\n", + " sample_count: 1021.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"No notice of investigation status/result\"\n", + " sample_count: 788.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"Debt resulted from identity theft\"\n", + " sample_count: 706.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"Personal information\"\n", + " sample_count: 699.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"Problem with statement of dispute\"\n", + " sample_count: 681.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"Talked to a third party about my debt\"\n", + " sample_count: 656.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"Report improperly shared by CRC\"\n", + " sample_count: 639.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"Threatened to take legal action\"\n", + " sample_count: 594.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"Problem getting my free annual report\"\n", + " sample_count: 584.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"Reinserted previously deleted info\"\n", + " sample_count: 555.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"Threatened to sue on too old debt\"\n", + " sample_count: 463.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"Problem getting report or credit score\"\n", + " sample_count: 448.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"Trouble with how payments are handled\"\n", + " sample_count: 418.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"Threatened arrest/jail if do not pay\"\n", + " sample_count: 368.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"Contacted me after I asked not to\"\n", + " sample_count: 339.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"Investigation took too long\"\n", + " sample_count: 319.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"Debt was discharged in bankruptcy\"\n", + " sample_count: 296.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"Can\\'t decrease my monthly payments\"\n", + " sample_count: 295.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"Contacted employer after asked not to\"\n", + " sample_count: 290.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"Charged fees or interest I didn\\'t expect\"\n", + " sample_count: 281.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"Used obscene/profane/abusive language\"\n", + " sample_count: 278.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"Can\\'t get flexible payment options\"\n", + " sample_count: 266.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"Received bad information about my loan\"\n", + " sample_count: 252.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"Not disclosed as an attempt to collect\"\n", + " sample_count: 246.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"Having problems with customer service\"\n", + " sample_count: 222.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"Sued w/o proper notification of suit\"\n", + " sample_count: 221.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"Don\\'t agree with fees charged\"\n", + " sample_count: 204.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"Inadequate help over the phone\"\n", + " sample_count: 202.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"Impersonated an attorney or official\"\n", + " sample_count: 201.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"Called after sent written cease of comm\"\n", + " sample_count: 195.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"Indicated committed crime not paying\"\n", + " sample_count: 178.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"Seized/Attempted to seize property\"\n", + " sample_count: 163.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"Keep getting calls about my loan\"\n", + " sample_count: 162.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"Billing dispute\"\n", + " sample_count: 161.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"Can\\'t contact lender\"\n", + " sample_count: 152.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"Can\\'t temporarily postpone payments\"\n", + " sample_count: 139.0\n", + " }\n", + " buckets {\n", + " low_rank: 45\n", + " high_rank: 45\n", + " label: \"Problem with fraud alerts\"\n", + " sample_count: 129.0\n", + " }\n", + " buckets {\n", + " low_rank: 46\n", + " high_rank: 46\n", + " label: \"Attempted to/Collected exempt funds\"\n", + " sample_count: 119.0\n", + " }\n", + " buckets {\n", + " low_rank: 47\n", + " high_rank: 47\n", + " label: \"Called outside of 8am-9pm\"\n", + " sample_count: 116.0\n", + " }\n", + " buckets {\n", + " low_rank: 48\n", + " high_rank: 48\n", + " label: \"Need information about my balance/terms\"\n", + " sample_count: 99.0\n", + " }\n", + " buckets {\n", + " low_rank: 49\n", + " high_rank: 49\n", + " label: \"Received a loan I didn\\'t apply for\"\n", + " sample_count: 86.0\n", + " }\n", + " buckets {\n", + " low_rank: 50\n", + " high_rank: 50\n", + " label: \"Account terms and changes\"\n", + " sample_count: 77.0\n", + " }\n", + " buckets {\n", + " low_rank: 51\n", + " high_rank: 51\n", + " label: \"Indicated shouldn\\'t respond to lawsuit\"\n", + " sample_count: 71.0\n", + " }\n", + " buckets {\n", + " low_rank: 52\n", + " high_rank: 52\n", + " label: \"Can\\'t stop charges to bank account\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 53\n", + " high_rank: 53\n", + " label: \"Problem cancelling or closing account\"\n", + " sample_count: 68.0\n", + " }\n", + " buckets {\n", + " low_rank: 54\n", + " high_rank: 54\n", + " label: \"Sued where didn\\'t live/sign for debt\"\n", + " sample_count: 63.0\n", + " }\n", + " buckets {\n", + " low_rank: 55\n", + " high_rank: 55\n", + " label: \"Payment to acct not credited\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 56\n", + " high_rank: 56\n", + " label: \"Can\\'t qualify for a loan\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 57\n", + " high_rank: 57\n", + " label: \"Charged bank acct wrong day or amt\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 58\n", + " high_rank: 58\n", + " label: \"Applied for loan/did not receive money\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 59\n", + " high_rank: 59\n", + " label: \"Contacted me instead of my attorney\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 60\n", + " high_rank: 60\n", + " label: \"Receiving unwanted marketing/advertising\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 61\n", + " high_rank: 61\n", + " label: \"Report shared with employer w/o consent\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 62\n", + " high_rank: 62\n", + " label: \"Qualify for a better loan than offered\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 63\n", + " high_rank: 63\n", + " label: \"Received marketing offer after opted out\"\n", + " sample_count: 21.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"sub_issue\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 66799\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 66799\n", + " }\n", + " unique: 65639\n", + " top_values {\n", + " value: \"This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! THIS IS NOT MY DEBT! I WANT THIS ACCOUNT REMOVED FROM MY CREDIT REPORT AND THIS COMPANY TO STOP CONTACTING ME IMMEDIATELY! \"\n", + " frequency: 37.0\n", + " }\n", + " top_values {\n", + " value: \"I have been a victim of Identity Theft. I have been trying to work with the Credit Reporting Agency but they are refusing to honor my valid identity theft case thus these incorrect/fraudulent items are still on my credit report and they must be removed immediately but they are do not belong to me. I have provided all of the proof to show that I was a victim of Identity Theft and that to the best of my knowledge these fraudulent accounts do not belong to me. Please take immediate action on my behalf so I can have these items removed, deleted and permanently blocked from my credit report, so that I can get back on track to a normal life. Regards \"\n", + " frequency: 27.0\n", + " }\n", + " top_values {\n", + " value: \"I have sent several requests to Experian requesting an investigation of my accounts. It has been months and I still have not received a response to my concerns. The only thing I have received is some automated rejection letter stating that they wo n\\'t do anything to help me ( please see attached ). This has to be a violation of my rights. I feel like I \\'ve already wasted so much time just trying to get Experian to look at the errors on my credit report and I \\'m so frustrated that Experian is intentionally not responding to my inquiries. I need to have this issue resolved immediately. There are many things I need to do with my life and they all involve my credit. But I am not able to move forward all because of this credit bureau! \"\n", + " frequency: 26.0\n", + " }\n", + " top_values {\n", + " value: \"This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! THIS IS NOT MY DEBT! \"\n", + " frequency: 24.0\n", + " }\n", + " top_values {\n", + " value: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Transunion. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " frequency: 14.0\n", + " }\n", + " top_values {\n", + " value: \"This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! \"\n", + " frequency: 14.0\n", + " }\n", + " top_values {\n", + " value: \"I am filing this complaint because I think what Experian is doing to me is wrong, unethical and may be against the law. A letter was mailed to Experian on or around [ XXXX/XXXX/15 ]. I clearly stated my concerns to them regarding inaccurate, questionable or unverifiable information listed on my credit report. I also provided a clear copy of my ID, proof of my social security number and a proof of my current mailing address. On [ XXXX/XXXX/15 ] I received a notice from Experian stating the following : \\'\\' We received a suspicious request in the mail regarding your personal credit report and determined that it was not sent by you. Suspicious requests are reviewed by Experian security personnel who work regularly with law enforcement officials and regulatory agencies to identify fraudulent and deceptive correspondence purporting to originate from consumers. In an effort to safeguard your personal credit information from fraud, we will not be initiating any disputes based on the suspicious correspondence. Experian will apply this same policy to any future suspicious requests that we receive regarding your personal credit information, but we will not send additional notices to you of suspicious correspondence. If you believe that information in your personal credit report is inaccurate or incomplete, please visit our website at experian.com/validate dispute or call us at XXXX ( XXXX ) XXXX to speak directly to an Experian consumer assistance representative. \\\" However, an Experian confirmation number was not even provided on this notice. I can not imagine what could have possibly been \\\" suspicious \\'\\' about my correspondence to Experian. I should not have to spend endless hours on phone calling the credit bureau back and forth attempting to resolve the issues on my credit report! I am filing this complaint because Experian will not respond to any letters that I am sending in. I \\'m sure this could be a violation of my rights and Experian should not be deliberately disregarding my concerns! \"\n", + " frequency: 14.0\n", + " }\n", + " top_values {\n", + " value: \"In XXXX, I requested my free annual credit report. After viewing my credit report, I noticed over XXXX credit/loan inquiries on my account that was not authorized by me. I contacted each company and was told that there was not any account open under my information. I explained that I have a hard inquiry on my credit report and need it removed as soon as possible so that I could apply for a home. I was told that the inquiries would be removed from my credit report. As of XXXX/XXXX/XXXX, none of the inquiries have been removed dating back to XXXX. I had a initial fraud alert placed on my report on XXXX XXXX, so if any credit reports are being pulled with my information, I was to be contacted by the company before any action was taken place. I just want the inquiries to be removed so that my scores and credit is not being impacted any longer. I would like to purchase a house, but until all of the inquires are removed I will not be approved with XXXX inquires on my credit report. \"\n", + " frequency: 12.0\n", + " }\n", + " top_values {\n", + " value: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Experian. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " frequency: 11.0\n", + " }\n", + " top_values {\n", + " value: \"I have been a victim of Identity Theft, and I am trying to dispute inaccurate items on my credit report. \"\n", + " frequency: 10.0\n", + " }\n", + " top_values {\n", + " value: \"I am responding to a letter I received from Experian regarding a request made on my credit file. Based on my understanding of the letter, it looks like Experian is refusing to complete my request because they do n\\'t think I am smart enough to write a dispute letter. I would like Experian to know that I did in-fact send them a letter disputing information on my credit report. I also give Experian my full written consent to continue with the investigation of my accounts per the dispute letter I wrote to them. I researched a dispute letter online and just used that to complete my dispute. So I guess it is possible that I may have missed something. I would very much appreciate Experian providing me with an explanation of my rights specifically pertaining to how I am allowed to dispute information on my credit report. I would also like to know what made my letter \\\" suspicious \\'\\' and why Experian thinks I did not write my letter to them. Did I say something in my letter that was inappropriate? I would like Experian to let me know if I am allowed to re-write my letter, and if so, would Experian be so kind as to provide me with an example of a letter that would be acceptable to them? I do not have the money to be represented by an attorney or any other agency. I work all day and can not afford to take time off work to dispute my accounts. Would completing a dispute over the phone provide me with the same benefits as the letter? And if the results would be the same, why not just accept my letter? \"\n", + " frequency: 9.0\n", + " }\n", + " top_values {\n", + " value: \"I am requesting that EXPERIAN immediately delete the address listed on my credit file as reported and previously listed on the EXPERIAN Credit File as : XXXX XXXX XXXX XXXX XXXX WA XXXX. Address indentification number : XXXX, Geographical code : XXXX \"\n", + " frequency: 9.0\n", + " }\n", + " top_values {\n", + " value: \"I am not familiar with this company and do not understand why they are on my credit. These inquires effect my credit in a negative way. I would like them to be removed. \"\n", + " frequency: 9.0\n", + " }\n", + " top_values {\n", + " value: \"I would like this collection to be removed from my XXXX credit report was reported as collection debt without my knowledge. \"\n", + " frequency: 8.0\n", + " }\n", + " top_values {\n", + " value: \"Company did not respond to letter of inquiry concerning improper credit reporting notification. \"\n", + " frequency: 8.0\n", + " }\n", + " top_values {\n", + " value: \"this not my account \"\n", + " frequency: 7.0\n", + " }\n", + " top_values {\n", + " value: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Equifax. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " frequency: 7.0\n", + " }\n", + " top_values {\n", + " value: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX XXXX on or about XX/XX/XXXX on Experian. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " frequency: 7.0\n", + " }\n", + " top_values {\n", + " value: \"This is a formal complaint against TRANSUNIONAccording to my credit report, XXXX is currently reporting to TRANSUNION that I applied for credit with XXXX on XXXX/XXXX/2014 I did not grant TRANSUNION authorization to provide access to my credit report to XXXX ; or share my credit report with XXXX. The Fair Credit Reporting Act requires that a creditor be able to verify the written authorization of the consumer giving the creditor permission to review their credit. If you can provide a copy of a credit application authorizing the disclosure of my credit files with my signature, I will accept the inquiry. If a signed authorization can not be found please remove the inquiry. The presence of this inquiry is adversely affecting my credit report. Time is of the essence so I would greatly appreciate a response from you immediately. Please mail me the copy of a signed application or a letter indicating your intention to delete the inquiry. \"\n", + " frequency: 7.0\n", + " }\n", + " top_values {\n", + " value: \"This is a formal complaint against TRANSUNIONAccording to my credit report, XXXX XXXX is currently reporting to TRANSUNION that I applied for credit with XXXX XXXX on XXXX/XXXX/2015 I did not grant TRANSUNION authorization to provide access to my credit report to XXXX XXXX ; or share my credit report with XXXX XXXX. The Fair Credit Reporting Act requires that a creditor be able to verify the written authorization of the consumer giving the creditor permission to review their credit. If you can provide a copy of a credit application authorizing the disclosure of my credit files with my signature, I will accept the inquiry. If a signed authorization can not be found please remove the inquiry. The presence of this inquiry is adversely affecting my credit report. Time is of the essence so I would greatly appreciate a response from you immediately. Please mail me the copy of a signed application or a letter indicating your intention to delete the inquiry. \"\n", + " frequency: 7.0\n", + " }\n", + " avg_length: 1039.571533203125\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! THIS IS NOT MY DEBT! I WANT THIS ACCOUNT REMOVED FROM MY CREDIT REPORT AND THIS COMPANY TO STOP CONTACTING ME IMMEDIATELY! \"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"I have been a victim of Identity Theft. I have been trying to work with the Credit Reporting Agency but they are refusing to honor my valid identity theft case thus these incorrect/fraudulent items are still on my credit report and they must be removed immediately but they are do not belong to me. I have provided all of the proof to show that I was a victim of Identity Theft and that to the best of my knowledge these fraudulent accounts do not belong to me. Please take immediate action on my behalf so I can have these items removed, deleted and permanently blocked from my credit report, so that I can get back on track to a normal life. Regards \"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"I have sent several requests to Experian requesting an investigation of my accounts. It has been months and I still have not received a response to my concerns. The only thing I have received is some automated rejection letter stating that they wo n\\'t do anything to help me ( please see attached ). This has to be a violation of my rights. I feel like I \\'ve already wasted so much time just trying to get Experian to look at the errors on my credit report and I \\'m so frustrated that Experian is intentionally not responding to my inquiries. I need to have this issue resolved immediately. There are many things I need to do with my life and they all involve my credit. But I am not able to move forward all because of this credit bureau! \"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! THIS IS NOT MY DEBT! \"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Transunion. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! \"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"I am filing this complaint because I think what Experian is doing to me is wrong, unethical and may be against the law. A letter was mailed to Experian on or around [ XXXX/XXXX/15 ]. I clearly stated my concerns to them regarding inaccurate, questionable or unverifiable information listed on my credit report. I also provided a clear copy of my ID, proof of my social security number and a proof of my current mailing address. On [ XXXX/XXXX/15 ] I received a notice from Experian stating the following : \\'\\' We received a suspicious request in the mail regarding your personal credit report and determined that it was not sent by you. Suspicious requests are reviewed by Experian security personnel who work regularly with law enforcement officials and regulatory agencies to identify fraudulent and deceptive correspondence purporting to originate from consumers. In an effort to safeguard your personal credit information from fraud, we will not be initiating any disputes based on the suspicious correspondence. Experian will apply this same policy to any future suspicious requests that we receive regarding your personal credit information, but we will not send additional notices to you of suspicious correspondence. If you believe that information in your personal credit report is inaccurate or incomplete, please visit our website at experian.com/validate dispute or call us at XXXX ( XXXX ) XXXX to speak directly to an Experian consumer assistance representative. \\\" However, an Experian confirmation number was not even provided on this notice. I can not imagine what could have possibly been \\\" suspicious \\'\\' about my correspondence to Experian. I should not have to spend endless hours on phone calling the credit bureau back and forth attempting to resolve the issues on my credit report! I am filing this complaint because Experian will not respond to any letters that I am sending in. I \\'m sure this could be a violation of my rights and Experian should not be deliberately disregarding my concerns! \"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"In XXXX, I requested my free annual credit report. After viewing my credit report, I noticed over XXXX credit/loan inquiries on my account that was not authorized by me. I contacted each company and was told that there was not any account open under my information. I explained that I have a hard inquiry on my credit report and need it removed as soon as possible so that I could apply for a home. I was told that the inquiries would be removed from my credit report. As of XXXX/XXXX/XXXX, none of the inquiries have been removed dating back to XXXX. I had a initial fraud alert placed on my report on XXXX XXXX, so if any credit reports are being pulled with my information, I was to be contacted by the company before any action was taken place. I just want the inquiries to be removed so that my scores and credit is not being impacted any longer. I would like to purchase a house, but until all of the inquires are removed I will not be approved with XXXX inquires on my credit report. \"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Experian. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"I have been a victim of Identity Theft, and I am trying to dispute inaccurate items on my credit report. \"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"I am responding to a letter I received from Experian regarding a request made on my credit file. Based on my understanding of the letter, it looks like Experian is refusing to complete my request because they do n\\'t think I am smart enough to write a dispute letter. I would like Experian to know that I did in-fact send them a letter disputing information on my credit report. I also give Experian my full written consent to continue with the investigation of my accounts per the dispute letter I wrote to them. I researched a dispute letter online and just used that to complete my dispute. So I guess it is possible that I may have missed something. I would very much appreciate Experian providing me with an explanation of my rights specifically pertaining to how I am allowed to dispute information on my credit report. I would also like to know what made my letter \\\" suspicious \\'\\' and why Experian thinks I did not write my letter to them. Did I say something in my letter that was inappropriate? I would like Experian to let me know if I am allowed to re-write my letter, and if so, would Experian be so kind as to provide me with an example of a letter that would be acceptable to them? I do not have the money to be represented by an attorney or any other agency. I work all day and can not afford to take time off work to dispute my accounts. Would completing a dispute over the phone provide me with the same benefits as the letter? And if the results would be the same, why not just accept my letter? \"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"I am requesting that EXPERIAN immediately delete the address listed on my credit file as reported and previously listed on the EXPERIAN Credit File as : XXXX XXXX XXXX XXXX XXXX WA XXXX. Address indentification number : XXXX, Geographical code : XXXX \"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"I am not familiar with this company and do not understand why they are on my credit. These inquires effect my credit in a negative way. I would like them to be removed. \"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"I would like this collection to be removed from my XXXX credit report was reported as collection debt without my knowledge. \"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"Company did not respond to letter of inquiry concerning improper credit reporting notification. \"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"this not my account \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Equifax. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX XXXX on or about XX/XX/XXXX on Experian. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"This is a formal complaint against TRANSUNIONAccording to my credit report, XXXX is currently reporting to TRANSUNION that I applied for credit with XXXX on XXXX/XXXX/2014 I did not grant TRANSUNION authorization to provide access to my credit report to XXXX ; or share my credit report with XXXX. The Fair Credit Reporting Act requires that a creditor be able to verify the written authorization of the consumer giving the creditor permission to review their credit. If you can provide a copy of a credit application authorizing the disclosure of my credit files with my signature, I will accept the inquiry. If a signed authorization can not be found please remove the inquiry. The presence of this inquiry is adversely affecting my credit report. Time is of the essence so I would greatly appreciate a response from you immediately. Please mail me the copy of a signed application or a letter indicating your intention to delete the inquiry. \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"This is a formal complaint against TRANSUNIONAccording to my credit report, XXXX XXXX is currently reporting to TRANSUNION that I applied for credit with XXXX XXXX on XXXX/XXXX/2015 I did not grant TRANSUNION authorization to provide access to my credit report to XXXX XXXX ; or share my credit report with XXXX XXXX. The Fair Credit Reporting Act requires that a creditor be able to verify the written authorization of the consumer giving the creditor permission to review their credit. If you can provide a copy of a credit application authorizing the disclosure of my credit files with my signature, I will accept the inquiry. If a signed authorization can not be found please remove the inquiry. The presence of this inquiry is adversely affecting my credit report. Time is of the essence so I would greatly appreciate a response from you immediately. Please mail me the copy of a signed application or a letter indicating your intention to delete the inquiry. \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"TO WHOM IT MAY CONCERN-THIS ACCOUNTIS REPORTING AS OPEN AND PAST DUE THAT WAS INCLUDED IN MY CHAPTER XXXX CASE # XXXX. I HAVE MADE MANY ATTEMPTS TO THE COLLECTIONS AGENCIES TO CORRECT THIS INFORMATION WITH NO SUCCESS. THESE ACCOUNTS HAVE ALSO BEEN SOLD TO NEW COLLECTION AGENCIES THAT ARE REPORTING THESE ACCOUNTS AS NEW ACCOUNTS, WHICH I UNDERSTAND TO BE ILLEGAL PRACTICES AND HINDERING BY ABILITY IN REHABILITATING MY CREDIT AND MY PROTECTION UNDER THE CHAPTER XXXX BANKRUPTCY LAWS. ATTACHED YOU WILL FIND A COPY OF MY CREDIT REPORT AND CHAPETER XXXX PAY SCHEDULE OF CREDITORS \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"I am responding to a letter I received from Experian regarding a suspicious request made on my credit file. Based on my understanding of the letter, it looks like Experian is refusing to complete my request because they believe the letter I wrote them was not sent by me. I would like Experian to know that I did in-fact send them a letter disputing information on my credit report. I also give Experian my expressed and written consent to continue with the investigation of my accounts per the dispute letter I wrote to them. Since I have not experienced this situation before, I would very much appreciate Experian providing me with an explanation of my rights specifically pertaining to how I am allowed to dispute information on my credit report. I would also like to know specifically what made my letter \\\" suspicious \\'\\' and why Experian thinks I did not write my letter to them. Did I say something in my letter that they think I am not smart enough to write myself? I have reviewed Experian \\'s website to determine what steps I am required to take to dispute my accounts and thought I had followed all instructions : I sent in a copy of my ID, proof of my social security number and proof of my address. I would be very grateful for a step by step explanation from Experian detailing the specific information I may have missed from their website. I would like Experian to let me know if I am allowed to re-write my letter, and if so, would Experian be so kind as to provide me with an example of a letter that would be acceptable to them? I am just a regular person and do not have the money to be represented by an attorney or any other agency. I work all day and can not afford to take time off work to dispute my accounts. So I would like Experian to tell me if completing a dispute over the phone would provide me with the same outcome as a letter? And if the results would be the same, why is Experian choosing to not accept my letter and my humble request for an investigation of my accounts? \"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"This debt was created as a result of identity theft ... ... and this account has been reported on my credit with attempts to collect as this debt is fraudulent i have filed police and ftc reports regarding this matter \"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"My spouse and I have sent the credit bureaus multiple dispute letters certified with documentation supporting our claims and they have completely disregarded our concerns. There is a debt and some late payments reporting inaccurately and we are trying everything in our power to get it rectified. Hoping this process will make them take us seriously. \"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"I never received any communication from this company that my account will be send to collection without my knowledge. Do n\\'t even know this company. \"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"A few months ago I requested my credit report from Experian. I got back this letter from them telling me that they received something that looked like fraud. I did n\\'t get a chance to call them right away and I honestly thought it was some kind of mistake so I just went online and got my report from some website instead. I ended up filing some disputes because there was incorrect and incomplete information on my credit report. So I prepared a nice letter and sent it with a copy of my driver \\'s license, proof of my social security number and proof of my mailing address so that Experian would be able to verify my identity. It has been at least XXXX months since I mailed my letter and I have n\\'t heard back. When I try calling their XXXX number they want a report number before I speak with an agent and since I do n\\'t have XXXX I ca n\\'t speak to anyone. I thought that the credit companies had to respond back to me within XXXX days otherwise they are supposed to remove things from my credit report?! Well it \\'s been way more than XXXX days and all of the stuff I disputed is still there. I know I can go online and buy a credit monitoring service and try to dispute things online but I thought that Experian is supposed to help me for free! I \\'m at the point where I \\'m done wasting time and need to get this fixed immediately. \"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"A few months ago I ended up filing some disputes because there was incorrect and incomplete information on my credit report. So I prepared a nice letter and sent it with a copy of my driver \\'s license, proof of my social security number and proof of my mailing address so that Experian would be able to verify my identity. It has been at least 2 months since I mailed my letter and I have n\\'t heard back. When I try calling their XXXX number they want a report number before I speak with an agent and since I do n\\'t have XXXX I ca n\\'t speak to anyone. I thought that the credit companies had to respond back to me within 30 days otherwise they are supposed to remove things from my credit report?! Well it \\'s been way more than 30 days and all of the stuff I disputed is still there. I know I can go online and buy a credit monitoring service and try to dispute things online but I thought that Experian is supposed to help me for free! I \\'m at the point where I \\'m done wasting time and need to get this fixed immediately. \"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX XXXX XXXX on or about XX/XX/XXXX on Experian. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"While I was XXXX I was protected by the Soldiers and Sailors Civil Relief Act. I was unfairly charged massive late fees and compound interest during this time that was illegal for them to do so. I had contacted all of my creditors and sent them a copy of my orders because they are required by law to reduce interest rate to 6 %. Since then the debt from those credit cards has been sold and I can not get this issue resolved. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"Pulled credit report without permission. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"Pulled credit report without permission \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"On at least XXXX previous occasions, I request Scottrade cease and desist communicating with me via email and other methods of communication, citing State Unsolicited Email Law, and Federal Debt Collection Practices, yet Scottrade has failed to acknowledge these email and has sent me another email, in violation of numerous State and Federal statutes. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"I was advised by the Internal Revenue Service that my social security number and other confidential information were compromised. Sometime in XXXX to XXXX my personal details were stolen and have been used up to XXXX XXXX when a security alert had been placed on my credit files. These fraudulent accounts range from medical ; utility accounts and credit card accounts and must be deleted from my history. I forward the details of these accounts in question and a copy of the Identity Theft Affidavit and I have had no response from both the credit bureaus and the creditor/collections agent. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"I recently pulled my credit report and discovered that this company has reported that I owe them several debts to my knowledge I received not prior notification that I owed them any debt. My rights under the FDCPA have been violated as I was not granted the right of validation \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"I received my degree from University XXXX XXXX, applied for Federal Loans and worked full time. My wife was a stay at home mom and the University sold me on Private Loans that they said worked like Federal loans to supplement my income. I ended up with over XXXX in Private Loans the school should have never presented and an economy that will never return to pay them off. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"I never received any communication from this company that my account will be send to collection without my knowledge. Do n\\'t even know this company and find out get bad review with XXXX. \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"I am filing this complaint because I think what Experian is doing to me is wrong, unethical and may be against the law. A letter was mailed to Experian on or around XXXX/XXXX/15. I clearly stated my concerns to them regarding inaccurate, questionable or unverifiable information listed on my credit report. I also provided a clear copy of my ID, proof of my social security number and a proof of my current mailing address. On XXXX/XXXX/15 I received a notice from Experian stating the following : \\'\\' We received a suspicious request in the mail regarding your personal credit report and determined that it was not sent by you. Suspicious requests are reviewed by Experian security personnel who work regularly with law enforcement officials and regulatory agencies to identify fraudulent and deceptive correspondence purporting to originate from consumers. In an effort to safeguard your personal credit information from fraud, we will not be initiating any disputes based on the suspicious correspondence. Experian will apply this same policy to any future suspicious requests that we receive regarding your personal credit information, but we will not send additional notices to you of suspicious correspondence. If you believe that information in your personal credit report is inaccurate or incomplete, please visit our website at experian.com/validate dispute or call us at XXXX ( XXXX ) XXXX to speak directly to an Experian consumer assistance representative. \\\" However, an Experian confirmation number was not even provided on this notice. I can not imagine what could have possibly been \\\" suspicious \\'\\' about my correspondence to Experian. I should not have to spend endless hours on phone calling the credit bureau back and forth attempting to resolve the issues on my credit report! I am filing this complaint because Experian will not respond to any letters that I am sending in. I \\'m sure this could be a violation of my rights and Experian should not be deliberately disregarding my concerns! \"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"my identity was stolen and accounts were fraudulently opened since people have been trying to collect on debts that do not belong to me that need to be removed \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"i recently pulled my credit report and discovered that this company has placed this item on my credit report. I was never notified that I owed them a debt and therefore my rights under the FDCPA were violated. I was not allowed to request validation \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XXXX/XXXX/2014 on TRANSUNION credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XX/XX/XXXX on EXPERIAN credit file. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section XXXX ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"Trans Union is not responding to my requests to investigate and remove accounts from my credit report that do not belong to me. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"This debt was more than 7 years old the company continues to contact and harass me. I do n\\'t owe this company anything. The debt that I had was through another company, I have asked them several times to stop contacting me but they still continue. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"They are reporting old address on my credit file that were never mine. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"There is a collection account on my credit for {$290.00} for service I never used. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 45\n", + " high_rank: 45\n", + " label: \"THIS IS NOT MY DEBT! I WANT THIS ACCOUNT REMOVED FROM MY CREDIT REPORT AND THIS COMPANY TO STOP CONTACTING ME IMMEDIATELY! This company continues to report on my credit report after I sent them a letter telling them that this account was not mine and I have no idea what it is or who it belongs to! I asked for proof of a signed contract, I asked for a license to collect in my state, I asked for copies of all information referenced for this debt and still to date, I have not received anything but harassment from this company! \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 46\n", + " high_rank: 46\n", + " label: \"In 2013, Scottrade Bank illegally offset my Scottrade bank account when conspiring with their affiliates Scottrade Brokerage and as a result violated numerous provisions of California FINANCIAL CODE SECTION 1400-1411. I have requested Scottrade Bank provide me information about how to file an arbitration case against Scottrade Bank and clarification over the arbitration procedures, potential conflicts, and problems, however, Scottrade Bank has not responded. I would like Scottrade Bank to provide me with a copy of the original arbitration contract and full instructions on how to file arbitration against Scottrade Bank. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 47\n", + " high_rank: 47\n", + " label: \"I recently ordered my credit files and found this account on my credit reports. I have never had any account with this institution and do not know of any account ever opened with them. My personal details where compromised in 2012 when my wallet was lost and included ; credit cards ; social security card and driving license but was found and mailed to me.. Please verify this account and the information used to open this account My credit files report an address that is not known to me and there have been attempts to open accounts from an address. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 48\n", + " high_rank: 48\n", + " label: \"I recently checked my credit and discovered that this company is reporting that I owe them a debt. To my knowledge I do n\\'t recall this company ever providing me with a service nor do I remember me agreeing to pay them for said services. I never received any communication from this company prior to them placing it on my credit report. My rights under the FDCPA have been violated \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 49\n", + " high_rank: 49\n", + " label: \"I have made over XXXX attempts to have the credit bureaus conduct an investigation to remove a couple of fraudulent accounts from my credit report. We have sent over FTC Affidavits and supporting documents and still the accounts are list on my credit reports. I \\'m not sure why they \\'re allowed to get away with this. Their suppose to maintain accuracy on consumers credit reports. Hoping this will get some closure soon. I \\'m attaching the Documents. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 50\n", + " high_rank: 50\n", + " label: \"I have made over 6 attempts to have the credit bureaus conduct an investigation to remove a couple of fraudulent accounts from my credit report. We have sent over FTC Affidavits and supporting documents and still the accounts are list on my credit reports. I \\'m not sure why they \\'re allowed to get away with this. Their suppose to maintain accuracy on consumers credit reports. Hoping this will get some closure soon. I \\'m attaching the Documents. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 51\n", + " high_rank: 51\n", + " label: \"I have disputed this information as being fraudulent and not mine, or opened by me. They have disregarded some of my disputed and then some they have said the accounts were verified which could not be because the credit grantor could not provide me with proof the accounts were opened by me. I have been dealing with this issue for over a year now and I \\'m at the point to where I need to hire an attorney to get this resolved if this dispute is n\\'t settled this time. If that is the case I will be suing the credit reporting agency and the original credit grantor on file for each account in dispute. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 52\n", + " high_rank: 52\n", + " label: \"I have been a victim of identity theft and I have been trying to dispute inaccurate items on my credit report. \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 53\n", + " high_rank: 53\n", + " label: \"I am filing this complaint because I think what Experian is doing to me is wrong, unethical and may be against the law. A letter was mailed to Experian on or around [ XXXX/XXXX/15 ]. I clearly stated my concerns to them regarding inaccurate, questionable or unverifiable information listed on my credit report. I also provided a clear copy of my ID, proof of my social security number and a proof of my current mailing address. On [ XXXX/XXXX/15 ] I received a notice from Experian stating the following : \\'\\' We received a suspicious request in the mail regarding your personal credit report and determined that it was not sent by you. Suspicious requests are reviewed by Experian security personnel who work regularly with law enforcement officials and regulatory agencies to identify fraudulent and deceptive correspondence purporting to originate from consumers. In an effort to safeguard your personal credit information from fraud, we will not be initiating any disputes based on the suspicious correspondence. Experian will apply this same policy to any future suspicious requests that we receive regarding your personal credit information, but we will not send additional notices to you of suspicious correspondence. If you believe that information in your personal credit report is inaccurate or incomplete, please visit our website at experian.com/validate dispute or call us at XXXX XXXX XXXX XXXX XXXX to speak directly to an Experian consumer assistance representative. \\\" However, an Experian confirmation number was not even provided on this notice. I can not imagine what could have possibly been \\\" suspicious \\'\\' about my correspondence to Experian. I should not have to spend endless hours on phone calling the credit bureau back and forth attempting to resolve the issues on my credit report! I am filing this complaint because Experian will not respond to any letters that I am sending in. I \\'m sure this could be a violation of my rights and Experian should not be deliberately disregarding my concerns! \"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 54\n", + " high_rank: 54\n", + " label: \"this acct is fraudulent and when initially submitting information was not totally complete this was a case of identity theft and needs to be removed from your records and my file asap \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 55\n", + " high_rank: 55\n", + " label: \"this acct is fraudulent and is a result from identity theft and the company is reporting this to the credit bureaus as well as has an open acct that needs to be closed with their company. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 56\n", + " high_rank: 56\n", + " label: \"they try to sell me more XXXX and services to make money did not correct information in file all XXXX credit Bareau. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 57\n", + " high_rank: 57\n", + " label: \"not able to get free credit report. after being denied credit. have to send photo copies of identity, and address. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 58\n", + " high_rank: 58\n", + " label: \"item \\'s on my credit file was deleted. ( XXXX credit card with a balance of {$580.00} ) because this information reported was false. also info on a XXXX privet student loan with a balance of XXXX and XXXX XXXX privet student loan with a balance of XXXX the information being reported on these accounts are completely false and does not comply with the fair credit reporting act 15 USC 1681 et seq \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 59\n", + " high_rank: 59\n", + " label: \"bankruptcy public record and some information that is not belong to me \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 60\n", + " high_rank: 60\n", + " label: \"all credit agencies reporting incorrect data, never had any \\\" Public Records/ TAX LIENS \\'\\' not mines, same infor on file 2 times ; violates FCRA with re-appearance of infor on file \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 61\n", + " high_rank: 61\n", + " label: \"acct closed with XXXX balance due and still showing under my XXXX credits bureaus was also included under chapter XXXX bankruptcy. please removed this acct. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 62\n", + " high_rank: 62\n", + " label: \"XXXX is listing wrong information on my credit report. XXXX sent me a \\\" statement balance. \\'\\' The statement balance is wrong because the payments that I have made have not reduced the balance on the loans. In addition, what XXXX is reporting to my credit report does not correlate with the statement balance I received from XXXX. The statement balance I received from XXXX which shows a discrepancy to what they are reporting to my credit report is attached to this complaint and is a flagrant violation of the Fair Credit Reporting Act. The statement balance I received from XXXX is at least {$13000.00} less than what XXXX is reporting on my credit report and is a flagrant violation of the Fair Credit Reporting Act. XXXX is illegally reporting a higher balance than what they provided as a statement balance to further damage my credit rating in flagrant violation of the Fair Credit Reporting Act. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 63\n", + " high_rank: 63\n", + " label: \"XXXX is listed on my credit report as a collections account. The account needs to be deleted from my credit report immediately. XXXX is flagrantly listing wrong information on my credit report that does not include any payments made, nor the correct balance, nor any dates of payments. The information that is listed by XXXX on my Credit report is wrong. The accounts need to be deleted from my credit report as they contain wrong information in flagrant violation of the Fair Credit Reporting Act. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 64\n", + " high_rank: 64\n", + " label: \"XXXX is currently reporting a balance of XXXX on my credit reports. I received XXXX different notice of collection from XXXX different agencies. XXXX sold the account so they need to report a {$0.00} and also tell me who the debt ACTUALLY belongs too. I have attached documentation from each CA and my report still has the balance. They are reporting inaccurate information.. False or misleading representation of debt amount is illegal as well as unfair. If this is not resolved then I risk having XXXX different companies reporting the SAME debt ... the XXXX companies are : XXXX, XXXX XXXX and XXXX XXXX ... These practices are not fair. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 65\n", + " high_rank: 65\n", + " label: \"XXXX has recently authorized a credit pull without my approval and the negative mark is on my credit report. On XXXX XXXX, 2015 I asked a question and never received a response. Yet, before answering my question, pulled my credit. Please see information attached below. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 66\n", + " high_rank: 66\n", + " label: \"XXXX cancelled my debt and issued me a XXXX on XXXX XXXX, 2010, just after I began a debt settlement plan. Since then, they have added interest and fees to the original amount due and are continuing to report the total amount as past due to the credit reporting bureaus, even though I was issued a XXXX and paid tax on the cancelled debt over 5 years ago. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 67\n", + " high_rank: 67\n", + " label: \"XXXX account XXXX does not belong to me \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 68\n", + " high_rank: 68\n", + " label: \"XXXX XXXX is an account that has been closed. It was sold and re aged to XXXX XXXX. I never had a contract or account with them. I asked them to remove the matter or supply legal proof saying I owe them but they will not. I do n\\'t accept company letterhead saying I owe you. XXXX XXXX also sold this account to XXXX a collection agency which sewed me. I had to pay XXXX dollars to a lawyer!. I won my lawsuit. They did n\\'t have no proof I owe them and they took XXXX off the report. XXXX XXXX still would n\\'t removed it. They are performing illegal acts against me and towards my credit which has stopped me from obtaining new credit because of this delinquent account. I would appreciate help with this matter. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 69\n", + " high_rank: 69\n", + " label: \"XXXX XXXX foreclosed on our property XXXX XXXX, XXXX, the credit report shows the foreclosure occurred in XXXX. We have documentation to prove the date of the sheriff sale. We were told to vacate the property XXXX XXXX, XXXX. We are trying to clean up our credit rating. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 70\n", + " high_rank: 70\n", + " label: \"XXXX XXXX XXXX can get away with identity theft to alter documents and sell that loan with the altered documents \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 71\n", + " high_rank: 71\n", + " label: \"XXXX XXXX XXXX XXXX XXXX is reporting wrong information to my credit report. XXXX XXXX XXXX XXXX XXXX needs to delete the wrong information on my credit report. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 72\n", + " high_rank: 72\n", + " label: \"XXXX XXXX XXXX XXXX XXXX # XXXX XXXX VA XXXX Every time i ask t have my address changed I get a fraud alert. Please change my address and remove the Fraud alerts from my profile. Please review my credit score it is incorrect. Thanks XXXX XXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 73\n", + " high_rank: 73\n", + " label: \"While perusing my credit report, I noticed several items I did n\\'t recognized. A address I did n\\'t recognize and a collections bill from XXXX and XXXX I did n\\'t incur. Please advise. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 74\n", + " high_rank: 74\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XXXX/XXXX/2015 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 75\n", + " high_rank: 75\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX XXXX on or about XXXX/XXXX/2014 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 76\n", + " high_rank: 76\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX XXXX XXXX on or about XXXX/XXXX/2015 on EXPERIAN credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 77\n", + " high_rank: 77\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX XXXX XXXX on or about XXXX/XXXX/2015 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 78\n", + " high_rank: 78\n", + " label: \"When my son moved out, the post office also forwarded mail in my maiden name and reported his apartment address ( XXXX ) on my credit report, but I never lived there and still live/own my house on XXXX XXXX XXXX Attached are current utility bills. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 79\n", + " high_rank: 79\n", + " label: \"When I finally locate the on-line credit dispute electronic form it will not honor the completed electronic dispute log-in page. This is a clearly intentional!! The CFPB should interrupt this website and advise customers to go directly to the paper process as the website is not functional & gt ; But you already know this!! if some consumers are successful then it is a lottery thing. What are you doing about the credit agencies deliberate switch and bait marketing scheme whereby they clutter their website with much marketing/sales propaganda what are you doing about the credit agencies deliberate switch and bait marketing scheme whereby they clutter their website with much marketing/sales propagandahave several try and confirm what I believe is be the case = independent evaluationXXXX XXXX cell XXXX XXXXXXXXXXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 80\n", + " high_rank: 80\n", + " label: \"We settled a dispute with a local hospital on XXXX XXXX, 2013. By reaching the settlement, we agreed to withdraw our legal complaints against the hospital, and the hospital agreed to accept an amount smaller than originally billed. It was stated in the settlement letter that by offering and accepting the settlement, both parties agree to release each other of any and all claims related to this account. The issue is, with this settlement, we have withdrawn our claims against the hospital, yet, they still have a negative statement on our credit report? Why? If the law allows them to continue to post this adverse statement on our credit report, even with this settlement, then at least, they can include a more clear statement in the Status section, such as, \\\" Account settled on XXXX XXXX, 2013. Both parties agree to release each other from all claims relating to this account \\'\\'. This statement is more representative of the true status of this account, instead of the current description in our credit report, which carries the connotation that somehow, we still owe them money. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 81\n", + " high_rank: 81\n", + " label: \"This is not my account. I never had a XXXX XXXX XXXX credit card to date. I especially have never had any credit card with a limit of {$17.00}, XXXX. This must be a case of mistaken identity. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 82\n", + " high_rank: 82\n", + " label: \"This is my XXXX time sending each credit reporting agency a notarized Identity Theft Affidavit. The affidavit contains all information required to block the fraudulent accounts, per FCRA 605B. *** I have also requested that if they decline to block and/or remove the information that I am provided a copy of all evidence used in their decision. *** \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 83\n", + " high_rank: 83\n", + " label: \"This information on my credit is not accurate and it not mine I do n\\'t owe any Medical bill in 2013 for the amount XXXX $ Please take it out of my credit ASAP \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 84\n", + " high_rank: 84\n", + " label: \"This debt was from my identity being stolen I didnt open any account that resulted in this collection i have completed a police report which can be verified with the XXXX police @ XXXX report # XXXX and i have a notarized identity theft affidavit from ftc please remove this off of my credit and close my file ASAP \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 85\n", + " high_rank: 85\n", + " label: \"This debt is not known to me. I recently requested my Free Credit reports to access my credit history before I applied for my XXXX mortgage which I have been diligently addressing my credit so that i would be in a good position when ready so I request full validation from the crediting company. This request is for more than just a simple statement without detail. Rather, I must requisition a careful documentation, including statements, contracts, copies of checks, and any other pertinent information. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 86\n", + " high_rank: 86\n", + " label: \"This debt is not known to me. I recently requested my Free Credit reports to access my credit history before I applied for my XXXX mortgage which I have been diligently addressing my credit so that I would be in a good position when ready so I request full validation from the crediting company. This request is for more than just a simple statement without detail. Rather, I must requisition a careful documentation, including statements, contracts, copies of checks, and any other pertinent information. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 87\n", + " high_rank: 87\n", + " label: \"This account was closed on XXXX/XXXX/13 want to be removed from my credit. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 88\n", + " high_rank: 88\n", + " label: \"They leave me message \\'s concerning my primary residence, which is not true, they also state they are suing me, which i have never received anything in the mail. they also left a message stating i cant communicate properly, and if I have attorney have him call because he probably can. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 89\n", + " high_rank: 89\n", + " label: \"They credit bureaus refusing to send me a free copy of my credit report and score which I \\'m untitled to under the fair reporting act the reason why is because they have insufficient information on my credit report that they do not want me to see or dispute as ruining my life liberty and freedom it \\'s affecting me.and causing me hardship \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 90\n", + " high_rank: 90\n", + " label: \"There is an account XXXX a collection account. I \\'ve never had an individual XXXX account. XXXX has never validated this debt. I \\'ve never seen the original credit application. I have a XXXX account however it \\'s joint with my wife and its current. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 91\n", + " high_rank: 91\n", + " label: \"There is a collection from XXXX XXXX stating a creditor by XXXX sent me to collections. I do not know anything about this XXXX nor have i ever been to the state that is being listed. I believe my identity has been stolen and i want this collection removed and to not come back. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 92\n", + " high_rank: 92\n", + " label: \"There has been a recurring charge of {$280.00}, listed as collections, on all XXXX credit bureau reports. I have written the collection agency and the primary source, but neither have provided any documentation or respond to my requests. It is for a medical bill, but I have paid all my medical bills to this company. I believe they have mixed up my name with someone else from what they tell me. They never respond to my letters, they just renew dates on the credit bureau reports. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 93\n", + " high_rank: 93\n", + " label: \"There are a couple medical debts listed which I do not owe. This information was confirmed with the actual collection agencies them self. The items still appear to be listed on my credit file and with balances. What happen to \\\" Credit Bureaus offer relief to consumers with medical debt \\'\\' For example, existing medical debt defaults that finally get paid -- whether by the insurer or the patient -- will be deleted. The accounts in question areXXXX XXXX # XXXX, XXXX XXXX # XXXX, XXXX XXXX # XXXX, XXXX XXXX XXXX # XXXX, XXXX XXXX, XXXX XXXX # XXXX and XXXX XXXX which is not a medical debt but a violation as I do not owe this. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 94\n", + " high_rank: 94\n", + " label: \"There are XXXX state liens on my credit file. They are not my state liens. They are associated with another person at a different address with my name apparently. After telling this to the bureau over and over again, they have refused to remove it. I even contacted the courts and they stated that they do not communicate and verify information on state liens to the credit bureaus. And XXXX courthouse do not have anything with my complete SSN and address on file. So, I need to know how do the credit bureaus verify, especially if it is not through the main source. And, who gave them permission to do so, if that is what they did. it is obvious that they have the incorrect information. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 95\n", + " high_rank: 95\n", + " label: \"The website stopped responding and now I can not get my credit reports. The site says I already got them which is not the case. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 96\n", + " high_rank: 96\n", + " label: \"The website locked up before I could view my report. When I tried to return to the page, it said I \\'d already gotten my yearly report when, in fact, I had n\\'t had the chance to view it at all. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 97\n", + " high_rank: 97\n", + " label: \"The response is fraudulent because I XXXX XXXX legally own the property at XXXX XXXX XXXX XXXX XXXX XXXX, MA, XXXX and I do not have any mortgage on this property and neither does my father XXXX XXXX, The only signed mortgage notes are registered at the registry of deeds XXXX from XXXX that has been discharged and the other from XXXX a division of XXXX and no payment has been made on neither of them for over six years which is well passed the statue of limitations for the state of MA, as confirmed with the Federal Trade Commission. XXXX and Ocwen Loan Servicing LLC does not have any signed supporting documents such as notes registered at the registry of deeds, because of this XXXX and Ocwen Loan Servicing are breaking the law by denying me my Human and Constitutional Rights and also committing bank fraud. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 98\n", + " high_rank: 98\n", + " label: \"The credit bureau will not perform a proper investigation nor will they delete inaccurate personal information from my credit reports after all documentation has been sent to them. The courts verified with me via the phone that the liens and the judgments are not verified with the credit bureaus. According to the Fair Credit Reporting Act Section 611 part B subsection iii, they are supposed to verify with the source of the information which they are providing me but apparently that is not what is going on. I asked for the following : 1. Did you speak directly to any agent of the company that was reporting the information to confirm the accuracy of what you are reporting? 2 Please explain to me what your representatives uncovered to lead them to believe that you are reporting this item as it legally should be reported? 3. What certified documents were reviewed to conclude your investigation? 4. Please provide a complete copy of all of the information that was transmitted to the data furnisher as part of the investigation. 5. What did it cost your company to obtain the documents needed to complete your investigation? 6. Please provide proof of your timely procurement of certified documents. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 99\n", + " high_rank: 99\n", + " label: \"The credit bureau did not perform a proper investigation of the public record that is on my file. I contacted the courthouse, and they advised me that they do not verify directly with the credit bureaus and that they do not have a file on me at my name and address and entire SSN number. So, I need to know how did they verify the inaccurate bankruptcy that is on my file? If it is through a third party, then that is in violation of the FCRA. I need for them to verify this with the courthouse. Furthermore, I asked them to perform another reinvestigation of the items on my credit report in accordance to the FCRA, Section 611, part B, subsection ( iii ). Please see the attached letter. They never sent me information that was required. This letter was sent to them certified. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 100\n", + " high_rank: 100\n", + " label: \"The bill was paid to receive new services through same XXXX utility systems so why they have not reported that it is resolved I do n\\'t know! I currently have service with them now! \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 101\n", + " high_rank: 101\n", + " label: \"The balance on my XXXX XXXX account ( XXXX ) goes from XXXX to {$49000.00} to XXXX to {$49000.00} several times over the past six months. It was XXXX in XX/XX/XXXX, had the balance in XX/XX/XXXX ... then XXXX on XX/XX/XXXX and again has a balance on XX/XX/XXXX. I have attached documents showing that this balance has been paid and the mortgage cancelled. I have also attached documents showing this progression of errors from XX/XX/XXXX until now. This fluctuation error is costing me thousands of dollars in interest rates due to the major changes in score from one month to the next. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 102\n", + " high_rank: 102\n", + " label: \"The agency does not have my balance and limit accurate on my credit cards through XXXX XXXX XXXX XXXX XXXX is $ XXXX and balance is below $ XXXX XXXX XXXX XXXX balance is {$9300.00} NOT $ XXXXThe inaccurate limit is causing my ratios to be high when they are really not. Disputed but still not updated. The agency MUST report inaccurate information correct? I feel no one even read my dispute or even my request. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 103\n", + " high_rank: 103\n", + " label: \"The account XXXX do not belong to me. This account was removed from my credit file XXXX/XXXX/2014. I do not understand why it has appeared again. This inaccurate information must be removed immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 104\n", + " high_rank: 104\n", + " label: \"Someone is beginning to use my identity. They have requested a credit card under my name from XXXX which was denied. Was hacked into XXXX of my credit cards with XXXX XXXX. So far no problems. I suspect who is doing it, but none of the XXXX agencies are doing anything to help \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 105\n", + " high_rank: 105\n", + " label: \"Someone else \\'s address, misspelled my old address and someone else apply for cell phone account. This cause my hard inquiries to increase, need to be removed. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 106\n", + " high_rank: 106\n", + " label: \"Several times I disputed this account with nothing updated. My auto loan with XXXX is being paid as agreed. I have attached payment history and my account is current. Please help assist me. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 107\n", + " high_rank: 107\n", + " label: \"SYNCB shows a charged off account. I have disputed several times and sent letters asking where they came up with the original amount, how they got to this amount and proof I agreed to this. It shows {$0.00} due yet still reports negatively on my credit reports. Because of the aforementioned violations, I am requesting immediate deletion of this account from my credit reports. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 108\n", + " high_rank: 108\n", + " label: \"Over XXXX towns and goverment on my documents and home contents and also using computers and deniged me credit and loans and keep my stuff messed up and also with scams and land developments ect.. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 109\n", + " high_rank: 109\n", + " label: \"On XXXX XXXX, 2015 I disputed an unauthorized inquiry on my report. I was unsuccessful in receiving a response from XXXX XXXX XXXX after not receiving a response, I sent my letter of concern to the XXXX credit bureaus addressing my concern. XXXX XXXX XXXX responded after the 30 day time frame only to ask to send additional information I have already provided. See information attached and remove this from my credit report. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 110\n", + " high_rank: 110\n", + " label: \"On XXXX 2015 I was shopping for a car and have several hard inquiries on my credit report. The shopping was done in two days and I have XXXX hard inquires on my credit report which are affecting it negatively. On XXXX 2015 I was shopping for a personal loan and have XXXX hard inquiries on my credit report. The shopping was done in 1 day and I have XXXX hard inquries on my credit report which are affecting it negatively. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 111\n", + " high_rank: 111\n", + " label: \"On XXXX 2011 my wife and I sold our Florida apartment through a short sale with the XXXX. Although this was clearly a short sale, this transaction was reported to the credit bureaus by this Bank ( XXXX ) as a foreclosures. I \\'m still paying the note to the bank for the difference of the sale price and the original mortgage note amount due. Ever since then my credit has been compromised and ruined because of this false reporting by this bank. Every time the need for a loan or any other credit check is needed on my behalf this foreclosure pops up scaring lenders away. This has been appalling, has been a disaster and continues to be a disaster. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 112\n", + " high_rank: 112\n", + " label: \"My problem is that credit reporting is used by companies to gouge consumers when they first request a service. In my case a service provider that has a monopoly in my city. I have been do business with this company for over ten years when I first went through them I had a co-signer so this was not an issue. But even though I have been a loyal customer with an account in the black through this entire period. A representative of this company called me and informed that because I have no credit history as reported by one of these credit checking services ; meaning I have never taken out a line of credit nor do I have a mortgage type payment exc .... I also do n\\'t have bad credit meaning I have never filed for bankruptcy or let any of those credit lines I never had go in to the red to many times. This representative used the words \\\" we do n\\'t count the history you have had with our business, because we use credit checks \\'\\'. So you see my issue is not how the report was used, even though I feel that only industries that report on your credit history should be able to utilize it. My issue is that by this process being a thing it is destroying the customer to service provider relationship. How am I supposed to build loyalty with the companies I do business with if they want to charge me XXXX % of my monthly income just because I do n\\'t have a credit card? Disregard any bubbles that I selected in the first portion. you do n\\'t get to choose what issues people have with the service you provide. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 113\n", + " high_rank: 113\n", + " label: \"My name is XXXX XXXX. I have been a victim of Identity Theft. I have been trying to work with the Credit Reporting Agency but they are refusing to honor my valid identity theft case thus these incorrect/fraudulent items are still on my credit report and they must be removed immediately but they are do not belong to me. I have provided all of the proof to show that I was a victim of Identity Theft and that to the best of my knowledge these fraudulent accounts do not belong to me. Please take immediate action on my behalf so I can have these items removed, deleted and permanently blocked from my credit report, so that I can get back on track to a normal life. RegardsXXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 114\n", + " high_rank: 114\n", + " label: \"My issue is i donot understand why my credit score is going down when i am paying my bills on time and have not tried to get credit from anyone. I called the credit bureaus to fine out why my scores was decreasing and i was told they could not tell me why. What she did tell me was i needed to have more credit cards. I could not close because of this. No inquiies have been made on my behalf. I am paying my bills on time or ahead of time. This is why i want to file a complaint on them. I see no reason why my scores should be as low as they are. I am trying to get this issue resolved so i can cloe on my home. Time is of essence. I am still paying my bills on time or before they are due. How could my scre drop so much in a month when there is no miss payments on anything. It is amazing how no one can tell you anything. Am i suppose to be homeless because of others not doing thier jobs correctly. I need to know how do you calculate my score if i donot pay my bill and many points is taken away but only XXXX or XXXX points is given when they are paid ontime or before time. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 115\n", + " high_rank: 115\n", + " label: \"My identity was stolen and accounts were opened as a result this account is reporting on my credit report and with your company is fraudulent and you continue to report. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 116\n", + " high_rank: 116\n", + " label: \"My Credit Report issued by any and all credit agencies included a list of all businesses who have check my credit and ordered a copy of my Credit Report. There were a total of XXXX businesses in the list during the year 2014 alone. None of the businesses had my permission to obtain my Credit Report. They acted illegally in obtaining my Credit Report. During said time, I was shopping for better insurance on my home and car on the internet. I was also shopping for a refinancing of my home mortgage with a small amount of \\\" cash out \\'\\' of my equity to pay enormous medical bills not covered by my health Insurance. Neither of these reasons should affect my Credit Rating, but they do, for reasons I am not aware of. All of the companies in the list should and must be eliminated from my Credit Report. Their need for information on my Credit Report is purely speculative in nature, and prejudicial as any negative statement on my Credit Report. They have usurped their need to my demand for privacy. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 117\n", + " high_rank: 117\n", + " label: \"Judgement showing on my credit report was never recorded and was paid to the original credit before filed. I have disputed 3 times through bureaus and they keep verifying it but the record is wrong. The judgement was never filed and should be completely removed from my credit report. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 118\n", + " high_rank: 118\n", + " label: \"It \\'s not that there is incorrect information on my report, it \\'s that there is very important information that is missing and should be included on my report. I sent all XXXX reporting agencies complete copies of my XXXX XXXX home mortgages and also an equity loan on the XXXX house, all paid off. I was told by them that they will not accept documents of proof from me and that they only will put on a report what the mortgage companies themselves send to them to report. I can not have these past mortgage companies report to them my good credit with these loans, because the mortgage companies no longer exist. So I \\'m asking if somehow this can be rectified because as a consumer I have every right to have all my good credit history absolutely on my report and right now it is not on there. It is not fair that my credit is judged without these items on there, so I \\'m hoping that somehow this can be solved. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 119\n", + " high_rank: 119\n", + " label: \"In XXXX of 2012 my identification mainly my social security card and Florida ID card was lost or stolen from my handbag and a sequence of accounts were open and checks cashed in my name. As soon as this was realized, I filed a police report ( see attached ). This account is unknown and was not opened by me. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 120\n", + " high_rank: 120\n", + " label: \"In XXXX 2009 my personal information was compromised when my car was broken into and my handbag stolen. Since XXXX 2009 a series of accounts have been opened using my personal information this has caused my once great credit to plummet to zero. Over the past 18 months I have had creditors collections agents harass me for balance owed to accounts that I know nothing about and my credit is non-existent and my hopes of purchasing a home is in jeopardy because of I am a victim of Identity theft. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 121\n", + " high_rank: 121\n", + " label: \"I wrote the credit bureaus and explained the late pays were incorrect. They did not change them. Attached are bank statement copies for each month reporting late for XXXX showing I paid on time. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 122\n", + " high_rank: 122\n", + " label: \"I was never formally notified about a store credit card account past due and it went 90 days before I found out what had occured. I then called the credit reporting agencies for guidance and they advised me to work it out with the creditor. I called and explained my situation several times and the last time we spoke they said they were looking into it. The next communication I received was a cancellation of my credit card due to non payment, in the middle of my dispute. I then tried to get resolution and find a way to get my account reopened but all they would keep telling me was to try to open a new account. No help at all. I was going to speak to a lawyer but thought I could work it out on my own. It was never resolved and I am still very upset. I later found out this was all caused by a {$6.00} credit card charge that I was unaware of because I was not receiving any statements!! I have boycotted the store ever since. I would like to get the credit card account reopened ( because of the long credit history I had with it ). And also, have the derogatory account status reversed. Thank you. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 123\n", + " high_rank: 123\n", + " label: \"I was a victim of identity theft several years ago. I have police reports, etc. I filed to put fraud alerts on my credit report and I disputed the information with the agencies. They have failed to supply me with any supporting documentation of the validity of the accounts and they have failed to remove them. There are in fact accounts that I had from 15 years ago that they are still reporting even though they are violating the FCRA, and the florida statue of limitations. I have not been able to obtain credit until a year ago and it was a very minute amount of credit. The credit reporting companies have ruined my life and my ability to even buy a home, and because of their violations I have been forced to file for bankruptcy which will now stay on my credit report for 10 years. They are not even accurately reporting the bankruptcy information properly. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 124\n", + " high_rank: 124\n", + " label: \"I was a Co-Signer on a car loan for a family member. The debt has beenpaid and it is still being reported on my credit file XXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 125\n", + " high_rank: 125\n", + " label: \"I understand I \\'m entitled to a free XXXX credit report when I am a victim of fraud, which I have been. However, there is no one to talk to at the XXXX credit bureaus and no way that I have seen online to order a XXXX free report. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 126\n", + " high_rank: 126\n", + " label: \"I sent all XXXX Bureaus a copy of my XXXX XXXX with instruction to pull all credit off my bureau ... My XXXX XXXX stated that I had NO debtors ... .The Bureaus acted like they did n\\'t know what I was referring to, and still did nothing. I also sent your CEO the same inforamtion that I sent the Bureaus ... Certified mail! \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 127\n", + " high_rank: 127\n", + " label: \"I recently pulled my credit report and discovered that this company has placed this item on my credit report without notifying me of the debt which I am afforded under article XXXX of the FDCPA \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 128\n", + " high_rank: 128\n", + " label: \"I recently checked my credit report and discovered that this company reported that I owe them but I have never received prior notice that I owed them. My right to validation was not afforded to me under the FDCPA before they reported it to the CRA \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 129\n", + " high_rank: 129\n", + " label: \"I recently checked my credit report and discovered that this company has reported that I owe them a debt. To my knowledge this company has never sent me a letter informing me that I owe them anything. I was not afforded my rights under the FDCPA to validation \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 130\n", + " high_rank: 130\n", + " label: \"I recently applied for a home lease and the realtor pulled my credit report. The realtor claimed I had XXXX judgements of which I had never seen before on my credit report. This her basic quote, \\\" She has XXXX judgements on her record XXXX for {$910.00} in XXXX 2013 and XXXX for {$890.00} XXXX 2013 .... \\'\\' This causes concern for a few reasons that are important to my credit history accuracy, and further implications are of serious concern. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 131\n", + " high_rank: 131\n", + " label: \"I received a TPD discharge on student loans. XXXX has notified all Credit Reporting Agencies. XXXX loan holders are still stating that I have made late payments, these are supposed to be removed from my credit report after TPD discharge. In addition, the discharges are reported as transferred over to a new agency, which is a negative report. I cant find out from Credit Reporting Agencies or XXXX if it is an error in the way XXXX reports to the reporting agencies or how the agencies are documenting. Either way, a TPD discharge should not drag my credit down, it should improve. It has been over six months with no resolution Thanks \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 132\n", + " high_rank: 132\n", + " label: \"I paid off my credit card in XXXX of this year, at which time my balance online was {$0.00}. I then received a new card in the mail a few months later. When I activated the card, I was told I had an overdue balance. Apparently, when I paid the card off, the billing cycle had not closed and {$16.00} of interest hit the account. I was never notified that the balance was overdue. When I called to complain and resolve this issue, I was told all customers who are overdue receive courtesy calls. When I asked the agent to give me the date and time of said call, he said placed me on hold to look it up and found a call was never placed. I have had numerous agents tell me I have a \\\" good case \\'\\' in getting the delinquencies removed, yet it was denied at least 3 times. The interest amount that caused me to be reported as delinquent to all XXXX credit bureaus has since been refunded to me, yet the bank will not correct my payment history to remove the one late payment this interest caused. I have been told I was notified by email, but I do not have said emails from XXXX XXXX XXXX. I told the agent it may be due to the recent XXXX government hack, as I just received a letter confirming that all of my information was stolen in early summer. Soon after trying to fight the discrepancy, I received a letter from XXXX XXXX XXXX that they had dropped my credit line from {$3500.00} to {$500.00}, further damaging my credit as now it looks like my credit usage is much worse due to the lower limit. The letter cited \\\" recent delinquencies \\'\\' and \\\" insufficient credit history \\'\\' as the reason they dropped the limit on my card. I have been a customer with them on this line of credit for almost 10 years and I have NEVER been late before. My credit limit has been {$3500.00} for almost 5-8 years now, based on much weaker credit and income that I held 5-8 years ago. I feel that they are trying to irritate me into closing my account because it has a very low grandfathered interest rate from when it was opened. My credit score has dropped significantly since all of this and I have lost countless hours on hold with XXXX XXXX XXXX trying to get the issue resolved. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 133\n", + " high_rank: 133\n", + " label: \"I opened a Scottrade Bank account a while ago. Scottrade Bank closed the account without providing a proper explanation. I have requested an explanation from Scottrade but every time I call them they say they will only speak to customers and since my account is closed I am not a customer. I would warn others of this behavior, if you have any dispute with Scottrade, I would advise that you withdrawal all of your funds before brining it to the attention of Scottrade as it is likely Scottrade will place your money in limbo and not allow you access to it. Now Scottrade wo n\\'t even respond to my complaints. If this is how a business treats customers, well, I will happily take my money elsewhere. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 134\n", + " high_rank: 134\n", + " label: \"I initiated a credit dispute with the XXXX credit reporting agencies on late payment remarks that are inaccurate. Also I did contact the creditors and they ran in investigation and sent me letters stating that I was not late. I have sent this to the credit bureaus and they refuse to do their jobs. I \\'m just trying to get this rectified so I can purchase a new home for my family. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 135\n", + " high_rank: 135\n", + " label: \"I have some accounts that are not mine that are reporting these are fraudulent accounts the accounts are XXXX XXXX XXXX XXXX XXXX XXXX XXXX i have filed a police report XXXX pd report number XXXX Officer \\'s name XXXX badge # XXXX i have also filed a notarized ftc id theft affidavit these accounts have yet to be rmoved as they are a result of id theft \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 136\n", + " high_rank: 136\n", + " label: \"I have several accounts that are not mine that are still reporting on my credit file I have sent copies of my police report and a \\\" notarized \\'\\' ftc id theft affidavit I have added a supplemental report from the police department outlining more specific the accounts involved \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 137\n", + " high_rank: 137\n", + " label: \"I have several accounts that are listed with this company that is a result of my identity being stolen and are fraudulent I have submitted an ftc report # XXXX and a police report detailing the identity theft and some of the fraudulent accounts that are listed. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 138\n", + " high_rank: 138\n", + " label: \"I have sent numerous debt validation notices and never received a response back from the creditor. As per the Fair Debt Collection Practice Act ( FDCPA ), a credit is supposed to response and no attempt to collect until they have responded. However, this creditor has not responded and is still attempting to collect, which is in violation of the FDCPA. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 139\n", + " high_rank: 139\n", + " label: \"I have never own a Credit card from the XXXX and it appeared on my credit report as collections balance to XXXX. As I have obtained a mortgage for my retirement home in Oregon, lender asked me to pay the full balance in order to get the loan closing because the credit reporting agency has been refusing to remove the error off my credit report! I paid the full amount of someone else \\'s financial misdeed. My husband and I are on a fixed income please help us to get our money back. Than you \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 140\n", + " high_rank: 140\n", + " label: \"I have never been In Kansas, Oklahoma ; I was born in XX/XX/XXXX, not XX/XX/XXXX, I have never had any business name \\\" XXXX \\'\\'. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 141\n", + " high_rank: 141\n", + " label: \"I have incorrect information in my credit reports as well as information that has been previously deleted and has now been reinserted using slightly different information. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 142\n", + " high_rank: 142\n", + " label: \"I have had my bank of america credit card ending in XXXX for year and have never been late. Bank of america sent me a letter on XXXX/XXXX/2015 that they are closing my personal account due to an issue with my business account. This has hurt me tremendously as my credit score has suffered due to this matter. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 143\n", + " high_rank: 143\n", + " label: \"I have disputed with all XXXX credit bureau the information XXXX XXXX XXXX is reporting on my mortgage XXXX. The account was not included in a bankruptcy per the attached amendment. Payments were made continuous from XX/XX/XXXX to XX/XX/XXXX, account was paid in full and satisfied as agreed as of XX/XX/XXXX. XXXX XXXX XXXX has refused to change and credit reporting agencies are not defending the reporting. Need to report both good and bad actions on an account. Reporting agencies are not showing the good payments and paid in full account. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 144\n", + " high_rank: 144\n", + " label: \"I have disputed this through all XXXX credit agencies. I had a XXXX credit card. It was paid off and settled. XXXX still sold the debt to XXXX XXXX and they are still trying to collect on me since XX/XX/XXXX from XXXX and Since XX/XX/XXXX for XXXX XXXX. The account balances are completely different and the debt was paid off to XXXX before ever going to collection. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 145\n", + " high_rank: 145\n", + " label: \"I have disputed this problem with the XXXX major credit bureaus and they have not compliedI have a Bankruuptcy Case # XXXX and it was dismissed but the XXXX major credit bureaus will not remove this item from my report. I am seeking the assistance from the CFPB to help with this matter. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 146\n", + " high_rank: 146\n", + " label: \"I have disputed this information as being fraudulent and not mine, or opened by me. They have disregarded some of my disputed and then some they have said the accounts were verified which could not be because the credit grantor could not provide me with proof the accounts were opened by me. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 147\n", + " high_rank: 147\n", + " label: \"I have come to the conclusion that the credit bureaus are violating my rights under section 1681 and that they have received the following : NOTICE OF PENDING LITIGATION SEEKING RELIEF AND MONETARY DAMAGES UNDER FCRA SECTION 616 & SECTION 617. I had previously sent my XXXX and XXXX rounds to the bureaus with no resolution, and round XXXX on XXXX/XXXX/15 and round XXXX on XX/XX/XXXX. I receive the same response each time saying \\\" verified \\'\\', and yet section 609 ( c ) states that I am allowed disclosure of the documentation used to \\\" verify \\'\\' the accounts. They refuse to provide the documents as well as their method of verification ; the results they send state that I can request such and then they deny this. The accounts I am disputing do NOT belong to me. In addition, there are multiple addresses on my file that do not belong to me ; therefore, I am positive they belong to someone who has used my information in one way or another. I have attempted to contact each creditor and have not resolved with them either. I am going to have to resort to suing the credit bureaus. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 148\n", + " high_rank: 148\n", + " label: \"I have been trying to receive my credit report and credit score for the past two years and all I receive is statements saying I am not the person or incorrect information. I have been denied my report from all XXXX credit bureaus and am confused on why.I have had my drivers license suspended and other issues I have reported and everyone does n\\'t believe I am me. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 149\n", + " high_rank: 149\n", + " label: \"I have been a victim of Identity Theft. I have been trying to work with the Credit Reporting Agency but they are refusing to honor my valid identity theft case thus these incorrect/fraudulent items are still on my credit report and they must be removed immediately but they are do not belong to me. I have provided all of the proof to show that I was a victim of Identity Theft and that to the best of my knowledge these fraudulent accounts do not belong to me. Please take immediate action on my behalf so I can have these items removed, deleted and permanently blocked from my credit report, so that I can get back on track to a normal life. Now these creditors that were showing on my credit report they were removed but now they are trying to pursue for collections activities. These accounts were opened without my authorization and ALL COLLECTIONS ACCOUNTS must be removed immediately! \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 150\n", + " high_rank: 150\n", + " label: \"I have asked to have addresses removed from my credit report because I have never lived there and I just had a background check and found that the addresses are still on my report \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 151\n", + " high_rank: 151\n", + " label: \"I have an account that is fraudulent that have been listed with your agency and have been listed with various credit reporting agencies with this false information. ... that needs to be removed i have gone through alot of trouble to get this taken care of I have filed a police report and a ftc id theft affidavit ... \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 152\n", + " high_rank: 152\n", + " label: \"I have an account on my credit who I do n\\'t know which company this debt collection his. I want this to be removed from my credit. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 153\n", + " high_rank: 153\n", + " label: \"I have allot of inquires on my credit report because i was shopping for an auto loan i feel they need to be lumped together but they never where and its impacting me in a negative way. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 154\n", + " high_rank: 154\n", + " label: \"I have a number of accounts that do not belong to me these accounts were opened fraudulently using my stolen idenity their was an address which was also fraudulently used and that is XXXX XXXX XXXX XXXX XXXX, NC XXXX and these accounts XXXX XXXX XXXX XXXX and these others XXXX XXXX XXXX. XXXX and XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 155\n", + " high_rank: 155\n", + " label: \"I have I submitted XXXX letters to the credit reporting agency asking for verification of account and how the verification as obtained. All letters were sent certified. I am questioning FCRA 611 nd FCRA 609 process. To date I have not received any reply to by letters sent certified on XXXX XXXX 2015 and XXXX XXXX 2015 certified. The Credit reporting agency has refused to reply and provided proper documentation for the records I listed in the correspondence and remove the items since not reply was provided. All copies of the letters and certified mail receipts are attached. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 156\n", + " high_rank: 156\n", + " label: \"I had XXXX credit card accounts with XXXX banks for which the debt was forgiven and I was issued XXXX forms. Cancellation of debt. I then, when ahead and reported both accounts on my personal income taxes for XX/XX/XXXX and XX/XX/XXXX, and paid accordingly to the IRS. The account has been written off and taxes have been paid on the amount forgiven, XXXX bank has been given the tax write off but they are still reporting a full balance for both account on my credit report. It should be reported a zero balance as the debt has been cancelled/forgiven, the have already taken the tax write off from the IRS and now they still want me to pay in order to report a zero balance to the credit bureaus. This would be double dipping for XXXX bank, getting the tax write off and then still collecting the cancelled amount on both accounts. Partial account numbers are : XXXX and XXXX, full account numbers are reflected in the attachment. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 157\n", + " high_rank: 157\n", + " label: \"I had XXXX XXXX XXXX as my provider. I wanted to change my plan, so I brought the account current and when I update my plan I was quoted {$180.00} a month. The XXXX bill I received they charged me over {$240.00}. I called and let them know that that is not what I was quoted. They said they would fix it. I received the next bill and I was overcharged again. I called and they stated that they would again fix the issue. I told them that I planned to terminate my service and that we needed to settle the dispute. I send them a history of my payments, I did so with no response. I then discontinued my account with them. They contacted me and told me it was a remaining balance. I sent in again my payment history and they said again, they would contact me with an update. It has now been reported on my credit report. I disputed the charges and they were removed. I checked back later and they are back on my credit report. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 158\n", + " high_rank: 158\n", + " label: \"I filed bankruptcy XX/XX/XXXX and several debts that were discharged now show they were \\\" charged off \\'\\' after the bankruptcy. My disputes for each account to the XXXX XXXX XXXX XXXX credit reporting agencies as well as attempts to resolve directly with the creditors have failed. Each agency and creditor refuse to correct the information and cite that it is \\\" accurate \\'\\'. These accounts were not charged off prior to my bankruptcy. They began reporting a charge off after my bankruptcy. This results in each of the accounts being identified as derogatory with a charge off after my bankruptcy. This is a significant factor for lenders who review my credit report because they see accounts \\\" charged off \\'\\' after bankruptcy which is misleading as to my credit worthiness. It is my understanding that the creditors may charge off an account after bankruptcy for their internal accounting purpose, but reporting a charge off after bankruptcy is a violation of credit reporting and bankruptcy statutes. I have sent correspondence multiple times, return receipt requested, with specific information that should be corrected. It remains in error and at this point they refuse to further investigate despite my repeated attempts. The credit agencies and creditors have also ignored my requests to provide their methods of verification after my disputes under the FCRA, Section 611 ( a ) ( 6 ) and ( 7 ) ; it is my position that neither are unable to provide a method of verification because they are unable to do so. I have repeated the process of dispute when these charge off were reported after bankruptcy for each creditor that is reporting a charge off. Some are not only reporting a charge off after bankruptcy, they changed payment history to reflect a charge off prior to bankruptcy which is untrue. Prior credit reports show that the accounts were not charge off prior to bankruptcy. The credits retroactively changed payment history to charge off after bankruptcy. The creditors who are engaging in these actions XXXX. For example, all of these creditors are reporting that the account was charged off in XX/XX/XXXX -- -after bankruptcy. XXXX specifically retroactively entered charge offs prior to bankruptcy when accounts were not in charge off status. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 159\n", + " high_rank: 159\n", + " label: \"I do n\\'t owe any money to XXXX for XXXX {$.00} this information is not accrete please take this out from my Credit Score ASAP Thanks \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 160\n", + " high_rank: 160\n", + " label: \"I disputed several medical collections in my credit file with all XXXX CRA \\'s. Once the investigation was completed and \\\" verified \\'\\' I contacted the CA directly. To make a long story short, there was an issue with my particular insurance company so the accounts would be removed from my credit file. I sent in a copy of an email that I received from the CA to the CRA \\'s. They verified that they did receive the email. I was told that was not enough for them to remove the accounts ( the email had the senders ( CA Supervisor ) contact information, phone, email and fax number. All they had to do was call them. Once I received the actual deletion letters from the CA \\'s, I sent in the copy \\'s to the CRA \\'s ( all on company letterhead ). I called and verified that they did receive the letters. Still the accounts are in my credit file. I am trying to get a mortgage. Since sending the request to deleted the interest rates have increased and who knows whether the rates will increase again by the time they remove theses items. I informed the reps of this. I do n\\'t understand why, if you have letters from the creditor saying delete the accounts, why it \\'s taking nearly a month to get them removed? I am still waiting ... ... \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 161\n", + " high_rank: 161\n", + " label: \"I called the XXXX XXXX Bank and I told them someone open fraud account under my name. I also told them that I have fraud alert on my name company called me. The presonnal that I was speaking to told me that they do n\\'t call. I think that was their fault and i think should be deleted completed. ( that is not me ) Also i have others inquiries under my nameXXXX XXXX XXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 162\n", + " high_rank: 162\n", + " label: \"I believe this collection company does not have my proper information and therefore can not collect upon this disputed debt. I have disputed several times and sent letters asking where they came up with the original amount, how they got to this amount and proof I agreed to this. They can not verify nor validate this account. Because of the aforementioned violations, I am requesting immediate deletion of this account from my credit reports. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 163\n", + " high_rank: 163\n", + " label: \"I believe this collection company does not have my proper information and therefore can not collect upon this disputed debt. I have disputed several times and sent letters asking where they came up with the original amount, how they got to this amount and proof I agreed to this. It shows {$0.00} due yet still reports negatively on my credit reports. They can not verify nor validate this account. Because of the aforementioned violations, I am requesting immediate deletion of this account from my credit reports. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 164\n", + " high_rank: 164\n", + " label: \"I am writing to dispute an address on my record. I have never lived at this address:XXXX XXXX XXXX XXXX XXXX, MA XXXX. I have written to the XXXX credit reporting companies in the past to remove this address, as I have never lived there, but it still remains on my record. I am writing to request its removal once again. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 165\n", + " high_rank: 165\n", + " label: \"I am requesting validation of a judgement recorded on my report under the company name of ; XXXX XXXX. The judgement was filed with XXXX XXXX XXXX, XXXX XXXX XXXX XXXX, Tx XXXX. I have recently had my credit report investigated for a removal of a judgment that did not belong to me. The FTC outlines the contents of the letter that you should receive : How much you oweWho you oweStatement giving you 30 days to dispute the debtStatement that, if you dispute the debt in the given 30 day time frame, the collector will mail you the verification of the debt or a copy of the judgement against youStatement that the collector will provide the name and address of the original creditor ( if different from the current creditor ) if you write a request for that within 30 daysNote : If you dispute the debt within 30 days, the debt collector must cease attempts to collect until they \\'ve mailed you verification of the debt or a copy of the judgement to you. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 166\n", + " high_rank: 166\n", + " label: \"I am applying for a home mortgage and all XXXX credit entities show an outstanding bill for XXXX ... I have never had an XXXX account. It does not belong to me and needs to be removed. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 167\n", + " high_rank: 167\n", + " label: \"I AM PROVIDING A COPY OF THE NECESSARY DOCUMENTS REQUIRED FOR A IDENTITY THEFT REPORT PURSUANT TO THE FCRA 605B. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 168\n", + " high_rank: 168\n", + " label: \"I \\'ve worked hard for decades to maintain an outstanding credit rating that \\'s ranged right around XXXX. I take my credit report extremely seriously and always consider the impact on my score when making decisions that may have an adverse impact to my credit score, and ultimately my financial well-being. In XXXX of 2015 I obtained new employment which involved selling my home and moving my family. This move incurred over $ XXXX in moving expenses, all of which were reimbursed by my new employer once we were able to provide receipts evidencing the expenses incurred. In other words, the funds for my travel and relocation expenses initially came out of my savings and then were reimbursed by my new employer after the move. Given the safety, security and support that XXXX XXXX offers, my wife and I used our XXXX card to fund the upfront travel and relocation costs. Unfortunately, we did not realize what a detrimental impact that doing so would have on my credit scores. My score which was XXXX immediately dropped to XXXX ( XXXX point drop and below the XXXX A-Rating threshold for obtaining the best mortgage rates ). The drastic drop, I \\'m told, is due to the fact that XXXX does not report a credit limit but rather reports the lifetime max that has been borrowed as the limit. In this particular case, $ XXXX was my lifetime max and thus it appears I \\'ve maxed out my card. For this reason, my credit score has plummeted and now effectively puts me in a position where I face paying XXXX of dollars more per year on a mortgage because I no longer qualify for the best mortgage rates. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 169\n", + " high_rank: 169\n", + " label: \"From XXXX XXXX XXXX XXXX XXXX # XXXX XXXX VA XXXX 1. The credit Bureau will not correct my address I have sent over XXXX letters to have my address corrected and still it has not been done. All I GET IS VERIFIED AND THEY OPEN A FRAUD ALERT JUST TO CHANGE AN ADDRESS. THIS IS NOT THE PROCESS. 2. I have sent over XXXX letters to all the inquire COMPANIES on my credit report to have them REMOVED and get no reply from the creditors. All I get from the credit bureaus is VERIFIED AND THEY OPEN A FRAUAD ALERT. I have informed the credit bureaus.. I get no reply and they ignore me and open a fraud alert. 3. By court order the bankruptcy and all accounts in the bankruptcy are to be removed from my report IN the state of VA because the credit companies did not do a good job at investigating the inaccurate info on the bankruptcy and READ them. They opened a fraud alert. 4. The answers for anything is open a fraud alert not do the work of removing inaccurate info. 5. This is what needs to be done 6. a. remove all fraud alters 7. b. remove ALL inquires I have not applied for credit DO N\\'T SAY VERIFIED!!!!!! 8. c. remove bankruptcy per the order and all accounts in bankruptcy from my credit report 9. Change my address!!!!!! \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 170\n", + " high_rank: 170\n", + " label: \"For the last XXXX years since i graduated XXXX, i have not been able to receive a copy of my free annual credit report, or my credit score. I have not taken out any mortgage loans, but i have reason to believe someone has taken XXXX out in my name. The information i input into the system is not matching up with what the credit bureau has, even though my information is accurate. This leads me to believe there has been some fraud going on. I need to be able to look at my credit report to see what is on it. I am XXXX and can not get a credit card. I do n\\'t want this to happen to any one else. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 171\n", + " high_rank: 171\n", + " label: \"FAILED TO VALIDATE DEBT INQUIRY IN DIRECT VIOLATION OF FCRA \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 172\n", + " high_rank: 172\n", + " label: \"Experian is not responding to my requests to investigate and remove accounts from my credit report that do not belong to me. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 173\n", + " high_rank: 173\n", + " label: \"Disputed several accounts with credit bureaus over 60 days ago, still have yet to receive XXXX letter from them. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 174\n", + " high_rank: 174\n", + " label: \"Debt collector indicates that the account in question was paid timely until the debt was purchased from the original creditor by the collector Which is not the case. According to the fair credit act the debt may only be reported for 7 years after the 1st delinquency which would \\'ve occurred prior to the purchase. If the collector can not prove otherwise then the item should be removed from the credit file. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 175\n", + " high_rank: 175\n", + " label: \"Dear CFPB, I have received a response from XXXX concerning XXXX inquiries on my credit file. As per their response, XXXX XXXX, 2015, there should be only XXXX inquiries as per their records show. The CRA \\'s are reporting false information that is hurting my creditworthiness. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 176\n", + " high_rank: 176\n", + " label: \"Dear CFPB, I first want to thank you for all that you do to protect the interests of consumers. It was past time that a government agency was needed for this purpose. That said, I will provide you with the details of my complaint : XXXX misrepresented the status of the account to me and assured me on many occasions that the balance was not owed. I closed my XXXX account on XXXX XXXX, 2014 and was assured that the account was paid in full. I have never been delinquent on an account. I was told that I needed to return the router and that a box would be sent by the company so I could mail the router. I received a bill for about {$150.00} a few months later and called to question why I had received it. Again, I was assured by XXXX representatives that I did not owe the amount and that I simply needed to return the router once I received the box to return it in. I received the box in XXXX and returned the router and again questioned the bills and XXXX told me the return of the router would fix the balance. The next letter I received was from a collection agency. I decided to pay the balance with the assurance from XXXX representatives that my credit would not be impacted, seeking to have the balance returned once I found out whether it was owed. I applied for student loan refinancing and was turned away due to this single outstanding delinquent account. Please remove this from my credit report and tell me ( 1 ) how long I have to wait before it is removed, ( 2 ) how I can remove it from other reports or request the same and ( 3 ) how I can hold XXXX accountable for what they have done to me. Best Regards, XXXX XXXX XXXX \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 177\n", + " high_rank: 177\n", + " label: \"An account XXXX # XXXX that the XXXX has been over 7-8 years is still listed on my personal credit file. Please remove as there is a statute of limitations. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 178\n", + " high_rank: 178\n", + " label: \"Although I have filed bankruptcy and this was discharged in XXXX 2014, I am still battling with the credit agencies and creditors to reflect accuracy - this inhibits the ability to move forward and gain a credit history ; which was the ultimate goal of going to this extreme. I am simply trying to face forward and establish some positivity out of a horrendous situation. However, it has been months and they seem to discredit my claim. This is why I turn to this portal and request some assistance they may take a little more seriously ... thank you. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 179\n", + " high_rank: 179\n", + " label: \"All my student loan has been paid and charged off. i call department of education and the confirmed it. the even went and check the national student loan database and my account was clear but my credit report show multiple student loan thru multiple collection agency those informations are not true and needs to be removed from my credit report \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 180\n", + " high_rank: 180\n", + " label: \"All XXXX Credit Bureaus are reporting Credit Accounts discharged in bankruptcy in XXXX of 2010 as derogatory credit. I have contacted the Creditors and they refuse to stop reporting the credit account as adverse/derogatory as well. This is a violation of the Federal Bankruptcy reporting laws and is negatively affecting my ability to obtain credit. It is also a false/fraudulent reporting of the status of my credit since the bankruptcy closure. The outsourced phone rooms handling the \\'collections operations \\' and credit bureau reporting do NOT understand US Bankruptcy law. The \\\" Creditors \\'\\' blame the \\\" Credit Reporting Bureaus \\'\\'. Neither entity can nor will accept responsibility for the fraudulent/false reports nor will they correct the reports. I have perfect credit since my bankruptcy and wish to increase my scores. They are making it impossible. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 181\n", + " high_rank: 181\n", + " label: \"Additional document to support disputes found on case numbers : XXXX ; XXXX ; XXXX. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 182\n", + " high_rank: 182\n", + " label: \"A few months ago I requested my credit report from Experian. I got back this letter from them telling me that they received something that looked like fraud. I did n\\'t get a chance to call them right away and I honestly thought it was some kind of mistake so I just went online and got my report from some website instead. I ended up filing some disputes because there was incorrect and incomplete information on my credit report. So I prepared a nice letter and sent it with a copy of my driver \\'s license, proof of my social security number and proof of my mailing address so that Experian would be able to verify my identity. It has been at least 2 months since I mailed my letter and I have n\\'t heard back. When I try calling their XXXX number they want a report number before I speak with an agent and since I do n\\'t have one I ca n\\'t speak to anyone. I thought that the credit companies had to respond back to me within 30 days otherwise they are supposed to remove things from my credit report?! Well it \\'s been way more than 30 days and all of the stuff I disputed is still there. I know I can go online and buy a credit monitoring service and try to dispute things online but I thought that Experian is supposed to help me for free! I \\'m at the point where I \\'m done wasting time and need to get this fixed immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 183\n", + " high_rank: 183\n", + " label: \"A few months ago I requested my credit report from Experian. I got back this letter from them telling me that they received something that looked like fraud. I did n\\'t get a chance to call them right away and I honestly thought it was some kind of mistake so I just went online and got my report from some website instead. I ended up filing some disputes because there was incorrect and incomplete information on my credit report. So I prepared a nice letter and sent it with a copy of my driver \\'s license, proof of my social security number and proof of my mailing address so that Experian would be able to verify my identity. It has been at least 2 months since I mailed my letter and I have n\\'t heard back. When I try calling their XXXX number they want a report number before I speak with an agent and since I do n\\'t have XXXX I ca n\\'t speak to anyone. I thought that the credit companies had to respond back to me within 30 days otherwise they are supposed to remove things from my credit report?! Well it \\'s been way more than 30 days and all of the stuff I disputed is still there. I know I can go online and buy a credit monitoring service and try to dispute things online but I thought that Experian is supposed to help me for free! I \\'m at the point where I \\'m done wasting time and need to get this fixed immediately. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 184\n", + " high_rank: 184\n", + " label: \"A XXXX card account was opened fraudulently in my name and I have been disputing this account for more than 3 years since I found out about it. The credit reporting agencies are not persistent in assisting me get this account removed. The company states that I opened because the info used to open it matches my location and description at the time it was opened, however the handwriting does not match and the area where the purchases were made is no where near the location I was residing. I just want my name removed from this company \\'s files and for my reports to reflect as such. \"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 185\n", + " high_rank: 185\n", + " label: \"this has been an account from this company that is being reported but was a result from identity theft my identity was stolen and used to establish this account butr yet they still have this account as mine when i have sent information that it is not mine police report affidavit with a denial of any benefit i just dont know what to do at this point but this needs to be deleted from my credit file immediately and closed in all of their offices \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 186\n", + " high_rank: 186\n", + " label: \"this collection agency keeps reporting that I received services from there practice. I have never had any medical treatment from this provider while not being insured. I \\'ve always been covered under the florida medicaid office .There have always been a block on all XXXX of my credit filed due to identity theft. I \\'ve disputed these fee with the collection agency and a few of the bills have been deleted but this company keep reporting medical bills for services that I never received. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 187\n", + " high_rank: 187\n", + " label: \"they have kept dispute ongoing for more tan 14 months \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 188\n", + " high_rank: 188\n", + " label: \"these people started calling me on XXXX/XXXX/2015 about an illegal usury interest rate account, that they purchased from XXXX XXXX. XXXX XXXX does not have a license to make these type of transactions in the state of California ... ..I advised them that I will not pay {$900.00} in interest on a six month account and requested their license number..they have not provided it to me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 189\n", + " high_rank: 189\n", + " label: \"there is information on my file that either is unverified, inaccurate or I have no knowledge about and the credit bureaus are either not processing my disputes or they are not doing their job correctly. I have not received any documentation in the mail that either verifies or validates any of these that i am disputing and I just am not sure what to do right now. I asked for documentation, was denied it and all of these come back as verified but nothing is being verified at all! Who did they call? What was the date? Who did they speak with? What documentation was used? What was the method of verification? I already made a complaint with the Attorney General because this is absolutely absurd. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 190\n", + " high_rank: 190\n", + " label: \"there is a debt collection agency that continue to send me information on an account I never had after asking them for information that shows this lender info they stated that I will have to call the company myself after searching for the lender and also looking up reviews from this company, there is no way to reach the company that says I owed them money for a credit card I never had, I feel that if this is truly a debt I caused I should have the info. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 191\n", + " high_rank: 191\n", + " label: \"the website XXXX is NOT maintaining their \\\" contact us \\'\\' form/email communication online. i tried to submit the following email to them and kept getting an error message : I forgot the date I last used XXXX, I reapplied, and it directed me to each individual credit agency website, they each turned me down and said*you have received a report in the last 12 months* you are not eligible yet. after the XXXX agency declined my free report, i was directed back to XXXX which said *thank you, please save the date and come back in 12 months* etc., my question is : WHEN AM I ELIGIBLE AGAIN?? i did not receive the reports today and did this attempt RE-SET my eligibility for ANOTHER 12 months??!!?? thanks. ( I signed my name here ) ****ps. I tried to submit this contact form 3 times while I was logged in, and it gave me an error message each time, then it logged me out and said to log back in. **what is the federal agency that regulates this company, where do I send a complaint? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 192\n", + " high_rank: 192\n", + " label: \"the debt collector called my fellow employees at my workplace and shared personal information about me.they told other other employees about a {$12000.00} debt that was supposedly owed from 2001.they were harassing me as well after i told them to stop calling me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 193\n", + " high_rank: 193\n", + " label: \"the Hippa law as been violated as my medical information has been made public to my credit report agencies. This is a violation of my privacy.INCLUDED IN BANKRUPTCY \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 194\n", + " high_rank: 194\n", + " label: \"the Credit Reporting Agencies are showing a judgement for treatment at hospital. I have NEVER been treated at XXXX \\'s XXXX XXXX ( Hospital ) and I provided them with evidence to proving that the debt does not belong to me. I pay my bills on time and have good credit other than this judgement. I need the CFBP to assist me to get this off my credit, it \\'s a terrible that the Credit Reporting Agency are allowed to report information that WRONG. They should not be allowed to have such a terrible impact on Responsible Consumer lives. I am relying on the CFBP to assist me to get this resolved. Thank you in advance for your assistance. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 195\n", + " high_rank: 195\n", + " label: \"still after years of recorded payment with former employee, my wages were garnished in the amount of @ XXXX XXXX dollars collected/represented by an attorney who I believe did not report my garnish wages. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 196\n", + " high_rank: 196\n", + " label: \"someone used my stolen identity information and created several accounts including this one from getting services and things that i was not apart of yet the information that was stolen was used this account is fraudulent and from id theft and needs to be taken off asap \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 197\n", + " high_rank: 197\n", + " label: \"please refer to case # XXXX for a brief history and enclosed documentation \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 198\n", + " high_rank: 198\n", + " label: \"my wallet was stolen along time ago and now im receiving a letter stating I owe a banking institution this is not me \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 199\n", + " high_rank: 199\n", + " label: \"my property was lost on XXXX and someone found my driver license and my social security card and other information, my credit card and they charged my credit card. I had send the police report to all three credit they do n\\'t nothing about it. however, I fake this opportunity to address to you in order to get this resolve. thank you \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 200\n", + " high_rank: 200\n", + " label: \"keeps calling my job and harassing me at work on a debt that is over 15 years old \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 201\n", + " high_rank: 201\n", + " label: \"i went to get an auto loan and when they ran my social security number it came back as deceased. i have all called all XXXX credit agencies and no one can seem to give me an answer \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 202\n", + " high_rank: 202\n", + " label: \"i was contacted from XXXX who left a message stating that they were a process server which would attempt XXXX last time to serve me at my residence ( which I no longer live at ) and also at my place of employment and that if I was unable to be served would report to my county court. If I had any questions to call the debtor at XXXX and give the ref #. I called and was transferred to several people before I got to XXXX XXXX whose direct phone number is XXXX and offered me a settlement amount of {$450.00} as a onetime payment by the end of the month on a balance of {$610.00} or he could divide the payment into XXXX equal payments for a total of {$610.00}. I asked XXXX how did I know that once the money was paid they would not proceed since It was already supposed to be turned over to the county. He claimed that he checked a national database where there had been no filing to the county court to place a judgement and that as long as payment info ( debit, credi card or prepaid credit card ) was placed on file he could stop legal proceedings and the entire {$450.00} had to be paid by XXXX/XXXX/15. I advised XXXX I would not make any settlement without being provided with something in writing. so I was emailed a letter stating that the balance due was {$1200.00} with a settlement offer of {$450.00}. Not the initial {$610.00} that he stated multiple times over the phone. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 203\n", + " high_rank: 203\n", + " label: \"i reported this account as fraud to continental finance back on XXXX 2015 as fraud and they sold this fraud account to united debt holding and this account shows on my credit reporting file as charged off and it should not, i have disputed this numerous times as fraud \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 204\n", + " high_rank: 204\n", + " label: \"i paid XXXX long time ago and the collection is still on my credit file the collection agency is refusing to remove the collection XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 205\n", + " high_rank: 205\n", + " label: \"i made a settlement XX/XX/XXXX. Now XX/XX/XXXX I am being offered yet another settlement on an already paid debt. Its been 12 years and now im expected to have receipt on hand. I have GOOD credit. There is no negative on my credit report for many years. I have maintained a good credit rating for many years and do n\\'t owe any monies to this collection agency or its affiliates. thank you for your time. with respect, \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 206\n", + " high_rank: 206\n", + " label: \"i have not had any communications to collect on this debt and it is negatively affecting my credit score. I have no idea how to contact this agency and get this credit card paid. I have the means to pay and its not a large sum but I want it of my credit report nd I cant do that if I do n\\'t know where to send a payment to. its ridiculous that an agency can just collect an account without any notification to the person whose name it is in. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 207\n", + " high_rank: 207\n", + " label: \"hunter Warfield is refusing to abide by the fcra. they are using bully tactics to prevent me from purchasing a home. I requested a variation of debt from them and I never received it. after I finally found what and who they were collecting for I was dumb founded that a year after the origination of debt I would be hit on my credit. now the significance of this being that make it seem to a lender that this is a fresh debt when it \\'s more than a year old. this a violation of the fcra as well. after speaking to a customer advocate she explained that thy would ensure I could make no purchase of a home or car unless I paid them. I have expressed willing to pay once it was an agreed on amount. the verification of debt must contain invoices. I have seen no such thing. now, it \\'s only right that hunter Warfield remove this from my credit file since they have no way of back dating the actual occurrence. I have a right to refuse establish my credit after I have hard times. this company is reporting this at this time to keep me from doing so \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 208\n", + " high_rank: 208\n", + " label: \"here is a Judgement that I have been disputing for the past two years. It was placed on all XXXX Credit Reporting Agencies and they state that they have investigated and it is mine. A judgement that is for a XXXX XXXX for {$2500.00} with a listed address of : XXXX XXXX XXXX XXXX, NJ XXXX. I have been trying to get this address off of my report since they put this on stating the facts that I have never ever ever lived there. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 209\n", + " high_rank: 209\n", + " label: \"have been a victim of identity theft, this company has continued to report to credit and collect on a fraudulent debt. I have disputed with this company 3 times, they now deem my disputes as \\\" frivolous \\'\\' and refuse to accept any documentation on my behalf. I have disputed these accounts over and over again with XXXX. I had my ID stolen at age XXXX, my social security cards, and my ids. They opened numerous insurance accounts, medical, apartments, auto loans, and credit cards, all defaulted on. These debts do not meet FCRA or FCDPA standards. Attaching police reports, and original as well as updated. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 210\n", + " high_rank: 210\n", + " label: \"first all of the major credit reporting agencies are reporting wrong information on my reports. they are incorrectly reporting wrong personal information, wrong account information, and credit inquiries I never applied. I have disputed all of these items, have sent all required information such as driver \\'s license, social security card and utility bills. a day or XXXX later I receive the same email asking for the same identical information. I faxed the same over and over. the fax confirmation tells me the fax went through \\\" ok \\'\\'. I have not been able to get my credit reports for the last XXXX years because they either ask for information that I have no idea about, or they tell me I am not eligible to receive my free annual report. I had to file for bankruptcy due to i.d theft, at which time they finally let me get a free credit report. I had a fraud alert on all of my bureaus prior to the I d theft, but yet someone was able to obtain fraudulent credit in my name and I was never notified. I asked the bureaus back then about this and their response was we did n\\'t have the correct number to call you. if this was the case then credit should have never been granted. these credit reporting agencies are nothing more than a criminal element govern by finance companies. these credit reporting agencies should be investigated and penalized for violating people \\'s rights to contract as per the \\\" fair credit reporting act \\'\\' \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 211\n", + " high_rank: 211\n", + " label: \"dynamic recovery solutions keeps calling me about a debt that I know longer owe. I wrote them a letter to ask the to stop all communications about the debt but the continue to call me even more. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 212\n", + " high_rank: 212\n", + " label: \"debt is not from original creditor and is several years old. i received no notification, mail or phone, until served on XXXX/XXXX/15, stating i have 20 days to respond. papers served were dated XXXX/XXXX/15. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 213\n", + " high_rank: 213\n", + " label: \"credit history has hit because of wrong attempt to collect debt which is not mine. please help to remove this from credit history. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 214\n", + " high_rank: 214\n", + " label: \"an amount on my credit report which is not in my name nor have I had a history with this company \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 215\n", + " high_rank: 215\n", + " label: \"account was paid off on XXXX/XXXX/15. Confirmation # XXXX. Need to delete this from my all XXXX of the credit reports. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 216\n", + " high_rank: 216\n", + " label: \"Your Credit ReportYour credit report contains information from lenders that have extended you credit. This can include your home mortgage loan, department store charge cards, bank charge cards, auto loan, and more. It also includes your payment history and shows when you \\'ve paid on time or been late. Please check your report below and look for accounts you do n\\'t recognize, strange addresses and recent credit inquiries to make sure all information is accurate. If there \\'s an inaccuracy, look to the Quick Facts section on the right and see how to file a dispute. More OptionsHelpUpdate My ReportTerms and Conditions - Privacy Policy - About Us - Contact Us - \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 217\n", + " high_rank: 217\n", + " label: \"XXXXXXXXXXXX debt is not known to me. I recently requested my Free Credit reports to access my credit history before I applied for my XXXX mortgage which I have been diligently addressing my credit so that i would be in a good position when ready so I request full validation from the crediting company. This request is for more than just a simple statement without detail. Rather, I must requisition a careful documentation, including statements, contracts, copies of checks, and any other pertinent information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 218\n", + " high_rank: 218\n", + " label: \"XXXX offered a insurance plan to insure your debt if you became to sick/lost of job or unable to pay. I was charged a monthly fee for several years. when I became ill and was unable to pay my debt, I applied for the coverage ( 6 times ) they kept saying that they lost the paperwork. A class action law suite was enacted by other members having the same problem. it turns out that they never intended to insure the debts and pocked the money between themselves. \\\" XXXX XXXX & XXXX XXXX v. XXXX XXXX, XXXX and XXXX XXXX XXXX XXXX class action. ( letter enclosed ) You will see that they settled and a cash settlement was awarded to each of us. this debt should have been cleared but it was sold to a third party who calls and sent letters o collection, also they reported this debt to all three credit reporting agencies, causing me to have a lower credit score and denied credit. their name is \\\" XXXX XXXX XXXX. XXXX XXXX XXXX, XXXX XXXX phone # XXXX. I have spoken to them on several times and they stated that their boss would not let them look into this matter. what legal action can take to resolve this matter \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 219\n", + " high_rank: 219\n", + " label: \"XXXX mixed up my account with another XXXX XXXX living in XXXX who was seeking debt relief. They turned my account over to collections XXXX. My credit card account with XXXX was among the accounts that was entered into the debt settlement agreement with XXXX XXXX XXXX XXXX. The last XXXX digits of his Social Security number is XXXX and my last XXXX digits are XXXX. After numerous attempts to have XXXX take care of this, I finally filed a complaint with the Consumer Protection Bureau. XXXX responded to the complaint last week. I am attaching my letter to the Consumer Protection Bureau along with XXXX letter to me. They have indicated in their letter they have requested the credit reporting agencies to delete any delinquencies related to this issue. I want to be sure this is being taken care of as this has been going on for XXXX months and I need my credit restored ASAP. This has created an undue hardship on me and my family. My daughter is in need of a loan and needs me as a cosigner. I need to do this for her as soon as possible. Also I was not able to take advantage of a sales promotion on a car due to my credit score now being in the XXXX as opposed to the XXXX where it was at before this incident. Please let me know this matter has been taken care of and my credit has been restored. My daughter is in need of this loan. This has been going on for XXXX months now. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 220\n", + " high_rank: 220\n", + " label: \"XXXX lists both Northeast Credit and Collect ( NCC ) and Commonwealth Financial Systems ( CFS ) as holders of an alleged collection account. XXXX still shows NCC as holder. ( see attached ). I have requested, in writing, verification of debt and have not received my dated signature for this debt. I have received a BLANK form letter for collection which is not verifiable validation of the debt, see attached. This alleged debt is dated for origination in XXXX of 2009. Per statutes, such debts, alleged or otherwise, are no longer collectable. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 221\n", + " high_rank: 221\n", + " label: \"XXXX is reporting to XXXX and Experian as current 120 and 180 days delq for an account that was charged off in XX/XX/2009 for both of us- XXXX and XXXX XXXX . XXXX XXXX has already removed the derogatory item all together. XXXX is dropping our credit scores by XXXX points based on these consistent lates for years. We demand they fix their reporting right away. We have complete XXXX rounds of dispute letters to both XXXX and Experian and have attempted several CFPB complaints and to date we still have not received any assistance or resolution. We demand CFPB steps in and gets this fixed right away. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 222\n", + " high_rank: 222\n", + " label: \"XXXX is reporting a loan that charged off back in XXXX as 120 days late as of XXXX. That is wrong. If it charged off in XXXX how can they continue to report me and my wife late in XXXX? XXXX XXXX has already deleted the item but, the other XXXX bureaus are showing invalid data that is destroying our credit scores. Please hold XXXX accountable to the FCRA and make them remove the lates after the account charged off XXXX. We have disputed the account via the credit bureau dispute process, 4 times and they still refuse to fix it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 223\n", + " high_rank: 223\n", + " label: \"XXXX is not up to date, card have a credit balance not {$8700.00} \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 224\n", + " high_rank: 224\n", + " label: \"XXXX is more than 7 years old and was supposed to be removed from my credit report. someone must have shared or bought some information because that debt should have been removed and it was not. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 225\n", + " high_rank: 225\n", + " label: \"XXXX is doing hard inquiry on my credit and I did not authorize nor give them permission to view my reports and XXXX do not have an account with them for anything. When I call them to have them remove the inquiry and stop running my credit my number is blocked and I ca n\\'t speak to any human nor get them on the phone. The first time it was XXXX XXXX, 2015 and the XXXX time was XXXX XXXX, 2015. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 226\n", + " high_rank: 226\n", + " label: \"XXXX is claiming owner ship of my morgage. my morgage in the XXXX district court is owned by XXXX XXXX. Even though I have never received a transfer notice as required by law frim XXXX XXXX. please find with this complaint copies from the XXXX district court snt to me by XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 227\n", + " high_rank: 227\n", + " label: \"XXXX is charging for time usage on cellular numbers not used. I have disputed this several times, yet they do not send me documentation to back this debt because there isnt. How can I owe money when I didnt use their service. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 228\n", + " high_rank: 228\n", + " label: \"XXXX denys me access from my computer. Message that comes up is : \\\" The XXXX website is not currently available at your location. Visit XXXX orwww.consumerfinance.gov/learnmore/ to learn how you can request your free U.S. credit report by mail. \\'\\' Called phone number - no live person ; called FTC - no live person ; called CFPB-spoke with \\'XXXX \\' who said the site should allow me access to obtain my free credit report. I live in XXXX, am a U.S. citizen and my computer and ISP is currently located in XXXX XXXX. I can not access the creditreport site. Furthermore, when I tried to register on this site ( CFPB ), my request for a password did not work and I received no email at the address I entered ( which is a good, working and legitimate address. ) I have no U.S. mail service in XXXX. We are moving back to U.S. in XXXX. There are many items on my and my husband \\'s reports that need work before we return. The only way I can receive is to obtain via email. I need this information as soon as possible. Can you help? Thank you. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 229\n", + " high_rank: 229\n", + " label: \"XXXX continues to show that the account is closed and has no balance or payment history. This account is open, has a balance and is paid XXXX monthly. Attached is my verification of mortgage, an account ledger from XXXX and my monthly statement. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 230\n", + " high_rank: 230\n", + " label: \"XXXX and Pinnacle credit are trying to collect a debt that I do not owe. I had service with XXXX for less than 10 days and returned the phone and cancelled service after realizing they did not provide service in my hometown. They have been trying to collect {$530.00} from me ever since. I have provided the contract and other documentation proving I do not owe this MULTIPLE times to all XXXX credit bureaus and to XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 231\n", + " high_rank: 231\n", + " label: \"XXXX agreed to remove tradeline if I paid a large lump sum instead of via a payment plan. I paid and the tradeline was not removed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 232\n", + " high_rank: 232\n", + " label: \"XXXX addresses reported on my report are incorrect, I have never lived at either XXXX XXXX XXXX XXXX in XXXX, Tx. or XXXX XXXX XXXX XXXX in XXXX, Tx.. I would appreciate these entries being removed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 233\n", + " high_rank: 233\n", + " label: \"XXXX XXXX, XXXX : Company called place of employment to inquire about debt owed. I returned phone call and asked to remove work number from their contact list. XX/XX/XXXX-XX/XX/XXXX : Company resumed calling employer, despite verbal confirmation that work number would be removed from contact list. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 234\n", + " high_rank: 234\n", + " label: \"XXXX XXXX, 2015 I was told i could get my loan deferred upon summitting my military orders. I received notification that my deferment request was received. Apparently during that time i was still being billed to the wrong address, so i never received anything notification regarding making payment. On XXXX XXXX, 2015 I was told they sent out multiple letters for additional information regarding my deferment but i was never called. Now my credit score has decreased significantly because it shows that I am now delinquent and past due on payments which should have been deferred. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 235\n", + " high_rank: 235\n", + " label: \"XXXX XXXX, 2015 I sent a validation letter. I have not heard back from them nor have they noted on my credit report that I am disputing these charges. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 236\n", + " high_rank: 236\n", + " label: \"XXXX XXXX ran my credit report and did XXXX hard inquiries during the same time frame which impacted my credit report. XXXX XXXX shared my credit report with XXXX XXXX and they did more hard inquiries. I need all the hard inquiries deleted from my credit report because they abused my credit report. The hard inquiries are negatively impacting my credit report and score. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 237\n", + " high_rank: 237\n", + " label: \"XXXX XXXX is incorrectly reporting a 30 day delinquency that is not correct. I paid as agreed on the account and have never been late. The account is currently enrolled in a debt management program that has also been paid as agreed. I contacted XXXX XXXX and they agreed and refunded the late fee charge and indicated they would remove the derogatory reporting ( 30 day late notice ). They have not done so since contacted over 60 days ago. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 238\n", + " high_rank: 238\n", + " label: \"XXXX XXXX XXXX, XXXX, XXXX XXXX, XXXX XXXX XXXX XXXX XXXX, and XXXX XXXX XXXX XXXX are reporting false information on my credit report. Improperly providing false information on a person \\'s credit report is a flagrant violation of the Fair Credit Reporting Act and Fair Debt Collections Practices Act. In addition, XXXX XXXX XXXX had previously deleted the derogatory mark from my credit report however they illegally proceeded to reinsert the false information on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 239\n", + " high_rank: 239\n", + " label: \"XXXX XXXX XXXX was disputed and they do n\\'t own the debt anymore. So, by law they have no more right to even report anything to the credit bureaus. They left a wrongful dispute on my credit report. The account number is as followed : XXXX XXXX XXXX XXXX sold the debt to another company. But they want give me the proper contact information inside XXXX to talk with someone about the debt. They all ways transfer me to a department and the number hangs up after 5 minutes of waiting. I am given XXXX XXXX ( XXXX ) XXXX email XXXXXXXXXXXX full authority to speak on my behalf please make notes on this case number that will be provided by the CFPB. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 240\n", + " high_rank: 240\n", + " label: \"XXXX XXXX XXXX is listed on my credit report as a collections account. The account needs to be deleted from my credit report immediately. XXXX XXXX XXXX signed a consent agreement on XXXX XXXX, 2015, with the Consumer Financial Protection Bureau because of their illegal and deceptive debt collection practices. Under the consent agreement, XXXX XXXX XXXX is to provide consumer refunds and correct credit reports for those consumers. My situation falls under the consent agreement and the collection account needs to be deleted from my credit report immediately. XXXX XXXX XXXX used deceptive and illegal debt collection practices to try and collect on the account they placed on my credit report. In addition, XXXX XXXX XXXX has incorrect information on my credit report which is a flagrant violation of the Fair Debt Collections Practices Act. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 241\n", + " high_rank: 241\n", + " label: \"XXXX XXXX XXXX has been trying to collect a debt for over {$1400.00} for cell phone service that I am not responsible for. I have contacted them on many occasions to explain that this is a fraudulent account and have requested that it be cleared and removed from my credit report.I do not know the origin or the phone numbers associated with this account.I currently have an account with them that was opened AFTER this debt was incurred.They refuse to remove this debt as being my responsibility. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 242\n", + " high_rank: 242\n", + " label: \"XXXX XXXX XXXX XXXX XXXX XXXX XXXX VA XXXX SS # XXXX DOB XX/XX/XXXX REMOVE XXXX INQUIRY FROM MY REPORT. I DO NOT HAVE CREDIT WITH THEM I NERVER APPLIED FOR CREDIT WITH THESE PEOPLE. YOU GAVE THEM ACCES TO MY CREDIT REPORT WITH MY PERMISSION DRIVERS ID AND UTILITY BILL AND SS CARD IS ATTACHED DO NOT SAY YOU DO N\\'T HAVE MY ID \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 243\n", + " high_rank: 243\n", + " label: \"XX/XX/XXXX i traded cars at parks XXXX of XXXX nc located XXXX XXXX XXXX.i tried again XX/XX/XXXX and told them to only run mycredit with XXXX XXXX and no one else.i late checked my credit reports andfound that they had ran my credit a numerous other places and brought myscore down approximately XXXX points.i called them and asked them to removethe unauthorized inquiries and was told they could n\\'t do that and the creditbureaus would not.i would like them to remove ALL of their unauthorizedinquiries \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 244\n", + " high_rank: 244\n", + " label: \"Who and what is this company? It needs to be removed from my credit report! This is only XXXX out of about XXXX that should not be there! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 245\n", + " high_rank: 245\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XXXX/XXXX/2015 on EQUIFAX. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 246\n", + " high_rank: 246\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XXXX/XXXX/2015 on EQUIFAX. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 247\n", + " high_rank: 247\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Transunion. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within XXXX ( XXXX ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 248\n", + " high_rank: 248\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Equifax. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 249\n", + " high_rank: 249\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on EXPERIAN. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 250\n", + " high_rank: 250\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX XXXX on or about XX/XX/XXXX on Equifax. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 251\n", + " high_rank: 251\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX XXXX XXXX on or about XXXX/XXXX/2015 on EQUIFAX. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 252\n", + " high_rank: 252\n", + " label: \"While checking my personal credit report, I noticed an unauthorized and fraudulent credit inquiry made by XXXX XXXX XXXX XXXX on or about XX/XX/XXXX on Equifax. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 253\n", + " high_rank: 253\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XXXX/XXXX/2015 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 254\n", + " high_rank: 254\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XXXX/XXXX/2014 on EXPERIAN credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 255\n", + " high_rank: 255\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XXXX/XXXX/2014 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 256\n", + " high_rank: 256\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX on or about XXXX/XXXX/2014 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 257\n", + " high_rank: 257\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX XXXX on or about XXXX/XXXX/2015 on EQUIFAX credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 258\n", + " high_rank: 258\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX XXXX on or about XX/XX/XXXX on TRANSUNION credit file. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX has violated the Fair Credit Reporting Act Section XXXX ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 259\n", + " high_rank: 259\n", + " label: \"While checking my personal credit report, I discovered an Unauthorized and Fraudulent credit inquiry made without my KNOWLEDGE or CONSENT by XXXX XXXX XXXX on or about XXXX/XXXX/2014 on EXPERIAN credit file. I did not authorized or give permission to anyone employed by this company to make any inquiry and view my credit report. XXXX XXXX XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I am requesting that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus and have them remove the unauthorized and fraudulent hard inquiry immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 260\n", + " high_rank: 260\n", + " label: \"While XXXX I attempted to make a larger than normal payment to a lender which resulted in my overpayment of what the lender was allowed to accept on a monthly basis. This resulted in my cancellation of recurring bank allotments to the lender under the impression that I had paid my account in full. The lender failed to notify me not only that I had over paid them but that they were charging me fees for the overpayment. This resulted in a 120 day delinquency being reported on my credit report. Once I returned from XXXX I received an email from an individual from the lending company that was assigned to identify the reasoning behind my large gap in payments after a previous perfect payment history. Once he informed me of what had occurred, I repaid the past due amount in full and the account was later closed \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 261\n", + " high_rank: 261\n", + " label: \"Wells Fargo has refused to link student loan account information to my online login so that I may access and gather information relating to balance and payment. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 262\n", + " high_rank: 262\n", + " label: \"Well, this collections company sent me a letter in the mail recently stating that I owe a debt in the amount of {$2200.00}. However, it is passed the statue of limitation because the debt was all the way from 2002. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 263\n", + " high_rank: 263\n", + " label: \"Well for two years i been trying to get my credit report and it \\'s ask me some questions and i answer no on them cause they do n\\'t apply to me cause i never had a car loan or try to get a car loan and i never had a montage loan either. So i said no and it would n\\'t give me my credit score. Its saying that my info is not matching with my social security number. I do n\\'t know what to do any more. I need help. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 264\n", + " high_rank: 264\n", + " label: \"Well for XXXX years i been trying to get my credit report and it \\'s ask me some questions and i answer no on them cause they do n\\'t apply to me cause i never had a car loan or try to get a car loan and i never had a montage loan either. So i said no and it would n\\'t give me my credit score. Its saying that my info is not matching with my social security number. I do n\\'t know what to do any more. I need help. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 265\n", + " high_rank: 265\n", + " label: \"We negotiated a settlement which involved removal from my credit report plus they were also contacted about the information stating the opened date was wrong. They have continued to report even though the settlement was for certain amount removal and corrections of the information of date opened. They have continued to do this with any debt they are issued instead of using the date the debt first became delinquent. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 266\n", + " high_rank: 266\n", + " label: \"We advised the credit bureaus that XXXX, XXXX XXXX and XXXX furnished them with incomplete and inaccurate information. Review the attached documentation which was sent to each of the aforementioned banks. They detail inaccurate information we were given at he time of hurricane XXXX. The incorrect information was relied upon to make financial decisions we would not have otherwise made. We wrote to each individual bank and have escalated it to the highest level and have filed complaints with the Consumer Protection Agency. We have also filed complaints on-line and made telephone calls directly to each of the credit bureaus. We stated that the information reported by the banks was inaccurate inasmuch as it does not reflect the entire circumstances of events fairly. IT DOES N\\'T TELL THE WHOLE STORY. This is a violation of our rights under the, \\\" fair credit reporting act. \\'\\' During hurricane XXXX both XXXX and XXXX XXXX verbally authorized via the customer service department a Disaster Relief program and/or moratorium of mortgage payments. At that time, neither bank fully disclosed how the waived payments would be repaid. We were told by both institutions that the missed payments would be added to the end of the loan. Both institutions told us after we had already taken part in the moratorium of mortgage payments that they must be paid in full at he end of the waived period. XXXX involvement is limited to having bought the loan from XXXX and has continued to report us late to the credit bureaus. However, since XXXX took over our loan in XXXX 2014 we have not missed or been late with a mortgage payment. Furthermore, if you research the history of loans with XXXX and XXXX XXXX, you will find that we have never been late or missed a payment and we are not in any foreclosure proceedings. However, the past reporting which still remains on our credit report has caused irreparable damage to our credit scores, my employment and our quality of life in general. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 267\n", + " high_rank: 267\n", + " label: \"Was notified by a collection agency that they were attempting to collect on an online loan made by someone using my name and social security number. The said loan was made in 2014 but the company is just now attempting to collect. Collection agency has not been forthcoming about any information and will not verify any details about the fraudulent loan ; all they want is money. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 268\n", + " high_rank: 268\n", + " label: \"Victim of Identity Theft \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 269\n", + " high_rank: 269\n", + " label: \"Very Arguementive, Recording without permission, have told several times to quit calling and have told to quit recording and they still do anyhow. they call about a bill that was supposedly quite a few years ago but just now getting ahold of me, Falsely making reports that they have talked to me before ( at times I was not home ) Representing companies that they are not. They call several times a day /week Tired of the attitudes \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 270\n", + " high_rank: 270\n", + " label: \"VIOLATED FCRA \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 271\n", + " high_rank: 271\n", + " label: \"VIOLATED \\\" FAIR CREDIT BILLING ACT \\'\\' AND FDCPA \\'\\' ... XXXX DIFFERENT COMPANIES DEMAND SAME PAYMENT OF FRAUD ACCOUNT XXXX XXXX AND NOT MY ACCOUNT. FORMAL FRAUD AFFIDAVIT FILED WITH \\\" FTC \\'\\' CASE # XXXX AND WITH XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 272\n", + " high_rank: 272\n", + " label: \"Under current federal law, the XXXX credit reporting agencies are suppose to let you review you credit report annually. I have tried for XXXX years and I always get various online replies from the XXXX agencies that they can not process my request or that I have already requested a report. It seems like if you do n\\'t buy their additional credit products they refuse to give the consumer their free credit report as required by law. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 273\n", + " high_rank: 273\n", + " label: \"US Bank recently cancelled the free night award bonus which was a benefit of their club carlson credit card. I had renew my annual membership with them for this card solely for this benefit feature. US bank did not communicate clearly with me that the benefit had changed. Instead they added a small notification in my monthly statement to notify that this benefit was set to expire XXXX XXXX. I feel I was misled by US Bank as they advertized at the time I renew my membership unlimited free bonus award for any nights booked with points. my family do a large part of our banking with US bank and are not considering other options. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 274\n", + " high_rank: 274\n", + " label: \"Trident Asset Collection Agency placed returned checks into the wrong category. They were entered as if they were revolving accounts ; in which, payments were assigned/ made on a specific date or cycle. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 275\n", + " high_rank: 275\n", + " label: \"Trans Union is not responding to my request to investigate and remove some accounts from my credit report that do not belong to me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 276\n", + " high_rank: 276\n", + " label: \"Trans Union is ignoring my requests to investigate, verify and remove some accounts from my credit file that do not belong to me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 277\n", + " high_rank: 277\n", + " label: \"Trans Union continues to report a balance on a negative item that is 10+ years old. This item should be removed all together from our report. The balance should be XXXX and the trade line removed all together as it is over 7 years old. We are 2 weeks away from closing on a loan and this item ( showing a balance ) is reported to Trans Union only and is causing us a debt to income ratio issue. It should be removed right away and we need written confirmation to provide our lender. URGENT REQUEST \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 278\n", + " high_rank: 278\n", + " label: \"Told the law firm that I did not want to be contact about this debt but they sent another letter. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 279\n", + " high_rank: 279\n", + " label: \"To whom this may concern, Scottrade Financial Services, Scottrade Bank, and Scottrade Brokerage were a victim of an enormous hack during XX/XX/XXXX and XX/XX/XXXX. Scottrade Bank, Scottrade Brokerage, and Scottrade Financial Services were warned about these cybersecurity issues at a technical and cultural level yet no action was taken. I would like Scottrade Financial Services, Scottrade Bank, and Scottrade Brokerage to provide me with instructions on how to file a dispute with their companies. Specifically, Scottrade Bank and Scottrade Brokerage have failed to provide clarification on the currently conflicting and alleged dispute policies and Scottrade Financial Services has no dispute policy what so ever. If Scottrade has any concern for the fraud that occurred and the continued danger they are putting their customers in, I respectfully request that Scottrade step up their game and putting customer care as a higher priority. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 280\n", + " high_rank: 280\n", + " label: \"To whom this may concern, In reference to my previous complaint about Scottrade \\'s treatment of my son. I have attached a bank statement that shows just how egregious the fraud at Scottrade has been. Over {$800000.00} of unauthorized ACH transfers occurred and Scottrade refused to refund the stolen money. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 281\n", + " high_rank: 281\n", + " label: \"To whom this may concern, I am writing in response to claims by Scottrade that they will not respond to the CFPB. This bad behavior by Scottrade appears to be a repeat of other bad behavior. In the attached you will see that Scottrade for a period of no less than 2 years hide behind the OCC while defrauding regulatory agencies by maintaining the veil that their company has less than XXXX XXXX in assets. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 282\n", + " high_rank: 282\n", + " label: \"To whom it may concern : I am writing to dispute the information reported on my credit report, regarding XXXX. I have already contacted my creditors and no changes have been made. I have been making payments to this creditor, in the amount of XXXX dollars monthly, for a year. They do not report my payments, or the account correctly. They report that I pay XXXX dollars monthly, when I was previously paying 300 dollars. The XXXX creditors do not report this account correctly. All XXXX creditors provide XXXX different monthly payments made towards my debts and different amounts owed. I have contacted them many times to remove erroneous account but they have not corrected this error. My name has also been an issue. I have been linked with my mothers name, so many times I changed it. The only names I have ever used where XXXX XXXX, XXXX XXXX, and my current legal name, XXXX XXXX. I have never used XXXX XXXX, that is my mother. I am incorrectly reported to have used the name XXXX XXXX, XXXX XXXX XXXX or XXXX XXXX and this needs to be removed from my record. I have contacted the XXXX creditors and provided them with legal proof and yet I am still receiving mail with incorrect names. I also can not change my address through the post office as it changes my mothers mail, along with mine. I have tried to fix these issues for a few years now to no avail. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 283\n", + " high_rank: 283\n", + " label: \"To increase the information available to me and the CFPB in investigating these matters, I kindly request that Scottrade provide me with all of the Exhibits referenced in Scottrade \\'s XXXX XXXX, 2013 letter. The Exhibits within the letter significantly advance my allegations mentioned above and the fact that Scottrade failed to provide them shows that Scottrade is actively hiding this information from regulators. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 284\n", + " high_rank: 284\n", + " label: \"To All party involve XXXX XXXX. XXXX XXXX XXXX XXXX, XXXX XXXX XXXX XXXX. XXXX XXXX XXXX, XXXX XXXX TransUnion Consumer Solutions, XXXX. XXXX XXXX XXXX, XXXX XXXX XXXX. PLEASE UPDATE MY CELL PHONE NUMBER TO MY FRAUD ALLERT { XXXX } XXXX XXXX, XXXX XXXX SOC SEC # XXXX DOB XXXX/XXXX/XXXX XXXX XXXX XXXX XXXX, XXXX XXXX Dear Sir or Madam : The sole purpose of this letter is to inform you I have been a victim of identity theft. I am further requesting that you block the following fraudulent information from my credit reports so that I can proceed accordingly with my file. Once more, I want to emphasize none of the information stated below relates to any transaction that I have made. XXXX ACC # XXXX XXXX XXXX ACC # XXXX XXXX, XXXX ACC # XXXX XXXX ACC # XXXX XXXX XXXX/XXXX/XXXX XXXX XXXX XXXX XXXX/XXXX/XXXX XXXX XXXX The items listed are clearly fraudulent ; therefore, I am requesting that they are deleted /blocked by name of source. In addition, A CRA must block the fraudulent information and the victim must be identified within four business days after accepting his/her Identity Theft Report. When it accepts the Identity Theft Report, the CRA also must notify the furnishers of the fraudulent information that the victim has filed the Report, that the Report states that the information they furnished Resulted from identity theft, and that it is blocking the information that they furnished. FCRA 605B ( b ), 15 U.S.C. 1681c-2 ( b ) .III. A. Blocking Information in Credit Reports under Sections-605B and 623 ( a ) ( 6 ) Under section 605B of the Fair Credit Reporting Act ( FCRA ), both the credit reporting agencies ( CRAs ) and the creditors, debt collectors, and other companies that reported the identity theft-related information to the CRA ( furnishers ) are responsible for blocking fraudulent information from appearing in victims \\' credit reports, blocking fraudulent information from appearing in victims \\' credit reports Please let me know if you need any other information from me to block this information on my credit report. Sincerely, XXXX, XXXX XXXX SOC SEC # XXXX DOB XXXX/XXXX/XXXX XXXX XXXX XXXX XXXX, XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 285\n", + " high_rank: 285\n", + " label: \"Threatened wage garnishment for a loan that is not in default. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 286\n", + " high_rank: 286\n", + " label: \"Threatened to send police to get me. Refused to mail me documents stating what debts I owed. Wo n\\'t stop calling me or my family. ( XXXX ) XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 287\n", + " high_rank: 287\n", + " label: \"This was an unauthorized credit pull. I did not want their Credit card. XXXX XXXX in XXXX, MN pulled my credit report and caused a hard pull. I did not authorize them for a credit card pull. I was trying to get signed up for just a XXXX XXXX Rewards card. Please remove this inquiry from my Credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 288\n", + " high_rank: 288\n", + " label: \"This number calls at least ten times a day and when I answer the phone I get immediately hung up on. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 289\n", + " high_rank: 289\n", + " label: \"This law firm never served me with summons before court date in order to receive summary judgement. They are crooks. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 290\n", + " high_rank: 290\n", + " label: \"This issue is with XXXX XXXX. They have failed to report our information correctly. We never included our mortgage in the Chapter XXXX bankruptcy filing. We paid the loan off based on the short sale agreement established with this mortgage company. The date of the bankruptcy was XX/XX/XXXX and the house sale date was XX/XX/XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 291\n", + " high_rank: 291\n", + " label: \"This is my third letter to them in regards to accounts listed on my credit report with their organization that are the result of identity theft and they have failed to process my disputes pursuant to section 605B of the FCRA. They continue to send me letters stating that I am not providing the proper identification, and yet I have sent my driver \\'s license, tax forms, proof of address, police report, FTC affidavit and statement of identity theft with each letter. You sent a letter stating that you are declining to process my disputes as identity theft because you believe them to be either in error or because I received goods or money in exchange for this. I have submitted a complaint with the CFPB in regards to that as well as their continued failure to process my disputes, send me credit reports or provide me with further assistance as required under the FCRA. *I have never claimed identity theft in the past, and I have provided all required documentation. When I take them to court they will need to explain why they did not process my disputes and the only reason they will have is that one of their processors did not have the time or energy to investigate my accounts and took the easy route and sent me that notification. They have violated my rights under said section and I have no problems seeking the damages available to me. Not only did every letter get sent certified, but they were also faxed and received by them. I have the proof that these were received and that the required documents were sent with said letters. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 292\n", + " high_rank: 292\n", + " label: \"This is dealing with an Estate Debt. A major credit card company hired a Collections Agency to collect a CC debt after my mother death. I am the legal administrator for the estate. Upon contacting both the CC and the debt collector, I was told by the CC the debt collector is the only XXXX that can now neg. the debt with me. Upon contacting the debt collector I was informed by the collections company that if I wanted to settle below a certain amount, they would need to verify the amount in the estate account and where asking me to provide a bank account statement. I feel they have no right to request such a document. Is this legal? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 293\n", + " high_rank: 293\n", + " label: \"This is a formal complaint against TRANSUNIONAccording to my credit report, XXXX XXXX XXXX is currently reporting to TRANSUNION that I applied for credit with XXXX XXXX on XXXX/XXXX/2015 I did not grant TRANSUNION authorization to provide access to my credit report to XXXX XXXX ; or share my credit report with XXXX XXXX XXXX. The Fair Credit Reporting Act requires that a creditor be able to verify the written authorization of the consumer giving the creditor permission to review their credit. If you can provide a copy of a credit application authorizing the disclosure of my credit files with my signature, I will accept the inquiry. If a signed authorization can not be found please remove the inquiry. The presence of this inquiry is adversely affecting my credit report. Time is of the essence so I would greatly appreciate a response from you immediately. Please mail me the copy of a signed application or a letter indicating your intention to delete the inquiry. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 294\n", + " high_rank: 294\n", + " label: \"This is a follow up to case Your submission, [ Case number : XXXX ]. I have already submitted my paperwork showing the credit reporting done in error on my account # XXXX. This needs to be removed from my credit immediately as the correct procedure ( to protect consumers ) was not followed therefore reported to the credit bureaus in error. I received no response to my certified letter demanding a validation of what is \\\" said owed \\'\\'. I do not owe this debt but if it is handled in the correct fashion and this removed from my credit, as it should have never been in the first place, I will pay the {$130.00}. Please reach out to me through email or fax with this expressed in writing and we will go from there. Once received in writing showing this was done in error and will be removed from my credit immediately, I will mail in a check. This is my final attempt before I seek legal counsel and move on from there to sue for the $ 1000+ damages done to my credit. Thank you \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 295\n", + " high_rank: 295\n", + " label: \"This is a debt that was purchased and then resold to XXXX companies that harassed me and later sued me and are now garnishing me for a debt in which I had a credit protection on my account in case I had stopped working. This debt is so old but being that it has been resold it it still alive. I tried to fight it stating I was not served the documents in questions ; however, the case was mute and my wages are garnished because of this. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 296\n", + " high_rank: 296\n", + " label: \"This is a continuation from earlier, This retaliatory ( eviction ) Unlawful detainer, to evade laws and accountability, has some incompetent jurisprudence/bias, and these stupid blunders from county clerks, hurried up and reported subreption, idiots!!!! LIKE I said earlier with transunion \\'s blunder, ALL ___XXXX credit reporting agencies____ need to be accountable. There arbitrary denial to allow me to view online, unless I pay. OTHERWISE I have to wait until XXXX, 2015 to legally get a report free of charge. This XXXX slumlord was reported to XXXX code inspectors for countless state law violations, of trying to defraud me with unrentable worthless property. This XXXX retired XXXX decided to abuse his authority and my due process rights and rewarded criminal negligence, fraud, and tortious breach of implied warranty of habitability, NOW I appealed this to the California XXXX XXXX XXXX, this careless idiot, circumvented irrefutable proof. Hardly a rock solid case against myself and my wife ( OBVIOUSLY THE INJURED PARTY ) bias/incompetence and judicial misconduct does n\\'t allow this sloppy, inaccurate, harmful errors!! LOT of controversy here. PLUS, I have rented 35 years, NEVER been evicted. emphasis added. I do n\\'t start now, because I moved to an homeless dreg, no income town, full of complacent slumlords, and sloppy code compliance, this defunct city of XXXX, ca is also grossly negligent, breach of there statutory duties. INTERTWINED ISSUES, DISGRACEFUL XXXX OF JUSTICE. Incompetent reporting of deceit to harm me and my wife is a TORT violation. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 297\n", + " high_rank: 297\n", + " label: \"This information was removed back in XXXX 2015 and then now, 3 months later it is reappearing! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 298\n", + " high_rank: 298\n", + " label: \"This debt was settled with the exact same debt collection agency yet they reinserted the debt back onto my credit report after it had been taken off. This is becoming insane. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 299\n", + " high_rank: 299\n", + " label: \"This debt was part of a business debt and not mine personally. The date the account was delinquent should be XXXX not XXXX and is over 7 years old. This is an attempt by a collection agency to keep the collection in force by changing the open date. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 300\n", + " high_rank: 300\n", + " label: \"This debt is well over 12 years old. I have not been able to make any form of acceptable payment arrangement. for the past 10 years. That which was offered was never acceptable or taken seriously. The lawsuit presented, was given now avenue to dispute. I was not able to secure legal representation to help in disputing the charges. When the garnishment order was given, no court date was provided, for to stand and give defense of statute of limitations had expired. then I was given notice of wage garnishment, which has caused great financial harm. I stand at the point of having my utilities shut off, because of the inability to pay them, because the money was taken else where. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 301\n", + " high_rank: 301\n", + " label: \"This debt is over 6 years old and it has not been proven that I owe this debt. I have not been provided with papers that show I agreed to pay what they say I owe. I have not been provided with a list of any and all services or goods purchased and a line by line itemization of charges and how they calculated what they say I owe. The creditor needs to prove that the statute of limitations has not expired on this account. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 302\n", + " high_rank: 302\n", + " label: \"This debt is on my credit report as my account but does not match any account numbers or date opened to my accounts. They are on my credit report as a negative item. I have asked for supporting information for the account and there is no information given. The collection company is rude and they demand payment when they call and I have disputed to the credit agencies numerous times to fix my credit and have got nowhere. this is affecting my credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 303\n", + " high_rank: 303\n", + " label: \"This debt is not valid. Original creditor falsely marketed with deceptive practices. False debt relief offers. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 304\n", + " high_rank: 304\n", + " label: \"This debt is not mine.. I do not have any recollection of this debt nor have I ordered from these people this needs to be deleted immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 305\n", + " high_rank: 305\n", + " label: \"This debt is not known to me. I am fighting an ongoing battle with this company. I have repeatedly made contact in writing and over the phone to no avail. I have sent law enforcement information to them to document that has been a victim of identity theft ; I sent them my Identity Theft Victims Affidavit and complaint made with the FTC attesting that this account was opened fraudulently. I complained to the credit bureaus and requested that full validation and they replied with just a statement stating that \\\" the information has been verified \\'\\'. This request is for more than just a simple statement without detail. Rather, I must requisition a careful documentation, including statements, contracts, copies of checks, and any other pertinent information that is being used to ascertain the validity of this account. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 306\n", + " high_rank: 306\n", + " label: \"This debt has passed the statue of limitations for this company to attempt to try and collect and/or report the account to the credit bureau \\'s. I have now received more harassing mail attempting to collect on a debt I do not owe, and threatening to report it after its already been removed from the credit bureau reports. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 307\n", + " high_rank: 307\n", + " label: \"This debt has been paid in full since XXXX 2012. There is a XXXX balance for this paid collection. Please remove it from my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 308\n", + " high_rank: 308\n", + " label: \"This debt collector placed negative information on my credit report without notifying me. Furthermore, since this debt collector has not validated that they are legally entitled to collect the debts they have listed, they are RE-AGING accounts listed on my credit reports in an effort to keep them there longer. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 309\n", + " high_rank: 309\n", + " label: \"This debt collector keeps on trying to call my father even though they have my number \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 310\n", + " high_rank: 310\n", + " label: \"This company has put my account on a levy without any notification. I keep calling them along with XXXX to give me any and all proof that this is my account and they will not disclose to me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 311\n", + " high_rank: 311\n", + " label: \"This company has called me repeatedly and I believe has put my phone number on call lists of various marketers and vendors so that I get many recorded messages trying to sell me something. I have applied for a total and complete discharge regarding my brothers student loan and his severe XXXX has not been taken into account at all. I requested an audience or to speak with the client for mediation on the debt and they said no the client will not speak with me. My father paid {$150.00} every month for several months resulting in about {$8000.00} paid and the balance of the loan was not affected much and now that I have not been able to afford to pay it, the balance is greater than the original balance. They offered to settle for {$12000.00} within three days of the request, and said I could pay {$100.00} a month with {$30.00} going to the principal and {$70.00} going to pay interest. I said that does n\\'t help me get out of debt and they made no effort to help me. Thank you for any help you can lend me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 312\n", + " high_rank: 312\n", + " label: \"This company CALLED MY SISTER and claimed that they had that number as my personal residence. This is not true, had never been true, and they are in violation of federal consumer protection laws. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 313\n", + " high_rank: 313\n", + " label: \"This collection agency was able to receive a judgment against me without giving me the opportunity to respond or dispute my case, they also denied my request after several attempts requesting to see a signed agreement or contract. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 314\n", + " high_rank: 314\n", + " label: \"This collection agency keeps harassing me about an account that was a predatory loan. I will literally be paying this debt until I am dead. I asked them to verify the debt and requested the original debt amount and contract with my signatures, because the amount they are trying to collect is not the original loan amount. It has been over 45 days and they have not sent me proper validation. No bill, no statement, no contract. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 315\n", + " high_rank: 315\n", + " label: \"This attempt to collect a debt that was a result of identity theft and needs to be closed and settled. I do not owe this organization money or its subsidiary. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 316\n", + " high_rank: 316\n", + " label: \"This account was paid in full before leaving with this company. I do not understand why they are putting this account on my credit file. Please have is account removed immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 317\n", + " high_rank: 317\n", + " label: \"This account was closed on XXXX/XXXX/08 want to be removed from my credit it \\'s already more than 7 years. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 318\n", + " high_rank: 318\n", + " label: \"This account is not owned by me ; I have never had any services from this care provider and therefore owe no balance as stated in my credit files. Please provide me with relevant information that you are using to validate this account such as ID used to open this account ; when and where this account was opened ; signatures etc., \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 319\n", + " high_rank: 319\n", + " label: \"This Company is reporting that I Obtained a Payday Loan from them. I have advised that I have never received a payday loan from their company and that I was a victim of identity theft. I have requested legal documents like a contract that should be in place if I did such a thing. The company will not respond to me nor verify an information regarding this supposed loan. I have disputed with all XXXX major credit bureaus several times and they keep telling me the company verified. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 320\n", + " high_rank: 320\n", + " label: \"They told me that it would not hurt my credit and I can dispute it and it will be removed. This was false and I was misled into thinking this account would not damage my credit score but it has tremendously. Want this account removed from credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 321\n", + " high_rank: 321\n", + " label: \"They sent me a letter stating that beginning XXXX XXXX, 2015 their company will start taking {$75.00} on my account. The company kept sending me letters about the debt which I do n\\'t recognized. I did request in writing to send me the validation of debt which they failed to send. Now, this is what they want to take money from my account without any judgement or proof of debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 322\n", + " high_rank: 322\n", + " label: \"They repeatedly call my home phone every 1-2 hours after I have already spoken to them on the phone about the account. This morning they called at XXXX. They have violated more than one issue. Besides the constant calling and the call before XXXX, they have threated legal action and called relatives about the account. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 323\n", + " high_rank: 323\n", + " label: \"They originally called stating that they were representatives of a federal agency and that my file was subject to a criminal complaint. They would call from different numbers and use different tactics to get me to think i was in trouble with the law. The debt remained on my credit report months after i paid it. I have disputed it and talked to the collection agency. They indicated that because i disputed the account, they had to send info on the amount i previous owed without stating that the account is paid off. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 324\n", + " high_rank: 324\n", + " label: \"They have an XXXX account on my credit report that is more than 10 years old. the account was opened in 2006. i have sent a request to delete more than 4 times and also sent a copy of the payoff letter. they continue to claim it as a charge off but it should have been deleted 2 years ago. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 325\n", + " high_rank: 325\n", + " label: \"These people call from different numbers and when I call them they never address themselves. I do owe a credit card debt but I can not make any payments right now since i only work part time and I am in school. They keep calling my place of employment which is illegal and asking my co-workers personal questions about me. I need this too stop. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 326\n", + " high_rank: 326\n", + " label: \"These debts are from XX/XX/XXXX or XX/XX/XXXX. Should n\\'t they have fallen off my credit report by now? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 327\n", + " high_rank: 327\n", + " label: \"There was confusion on why a collection agency reporting to my credit report that I had an account in default as I had no knowledge of any account of the sort and the location of the collection agency was in a state that seemed like it was not related to me either. Anyhow I opened an inspection into the collection agency through the cfpb which allowed for the collection agency to look further into my case and they found that I had indeed not been notified by the hospital of what was a special deductible/co-pay for a XXXX. I did n\\'t realize that this deductible was separate from my normal medical deductible which had already been covered for the year from a separate XXXX. As a result of this reinvestigation on the Collection Agency \\'s Part explained to me what the charges were and why I had not been informed about them. They also offered me a \\\" one-time special offer, \\'\\' as they put it, this offer as they explained would remove any mention of the account going to the collection agency from my credit files and it would resolve in full all claims by the hospital in question. They said that they would be willing to discount the amount that I would need to pay by XXXX %. I took them up on their offer and their word that it would not appear on my credit report. It now appears on my credit report as settled legally for less than the full amount and it has it under the collection agency \\'s name as the creditor claiming this fact. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 328\n", + " high_rank: 328\n", + " label: \"There was a small case suit against me in XXXX, as which, this was never placed on my credit files. The case was handled in mediation. The final payment was made in XXXX XXXX ; and now XXXX XXXX this has been placed on my credit files with all major credit bureaus. I am seeking help in reference to finding out why the major credit bureaus waited 5 years later to place this on my credit files? Why? I am hereby asking that XXXX be removed from all major credit bureaus because this was resolved in XXXX in mediation and was paid off in XXXX XXXX. It seems as though the credit bureaus of retaliating against me due to the many disputes I have submitted based on the laws. I am crying out for you to assist me in getting this public record removed from my files ASAP. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 329\n", + " high_rank: 329\n", + " label: \"There is an item I have disputed several times reflecting XXXX Mortgage which the first date of delinquency has been past 7 years, the late payments reports every month balance, past due balance on this stated collection. There is nothing accurate about this account. I am requesting some assistance from your company \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 330\n", + " high_rank: 330\n", + " label: \"There is a satisfied judgement on my credit report the judge has vacated it please remove it from my credit report.enclosed is a copy of the consent order from the court. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 331\n", + " high_rank: 331\n", + " label: \"There is a report of collection for {$100.00}. The debt collector is listed as XXXX XXXX. The original Creditor is listed as XXXX and XXXX XXXX. I have not had an account with this creditor, and have never received literature regarding this debt from the original creditor or the collection agency listed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 332\n", + " high_rank: 332\n", + " label: \"There is a negative mark against me that should have been taken off years ago! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 333\n", + " high_rank: 333\n", + " label: \"There is a legal item listed on my credit report that I paid and is listed as paid but I can not seem to get anyone to help me take care of it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 334\n", + " high_rank: 334\n", + " label: \"There is a judgment on my credit report that was dismissed. It should not be showing up. Attached is a copy of the documentation direct from the XXXX County Clerk of the Courts Office. I have written a few times but the credit bureau will not remove it. Please help, I am unable to get a mortgage approved because they will not fix it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 335\n", + " high_rank: 335\n", + " label: \"There is a judgment being reported by the XXXX major credit bureaus. I spoke with the collection agency and was told that the judgment would be completely vacated if it was paid. The amount owed was paid however it is still being reported on my credit bureau reports. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 336\n", + " high_rank: 336\n", + " label: \"There is a XXXX Bank account that does not belong on the report, XXXX has agreed for removal and the reporting agency keeps saying verified, this is wrong information on my name and it hurts me to the bottom. I have included a copy of my report as well the letter from XXXX bank showing the account in dispute. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 337\n", + " high_rank: 337\n", + " label: \"There are several inaccuracies on my credit report that I thought I clarified with documentation. I had sent, copies of divorce papers, police report and copy of my dl, and the credit reporting agencies still have not updated my accounts. Furthermore there were XXXX fraudulent addresses on their reports of places I have never been, accounts I had never opened. They ignored the updates to my file. These errors affect my life, I am on a fixed income and every point in this system, which I am at their mercy to counts by the dollar. I want all of them held accountable for their mistakes. I do not want to lose my house because they do not scour the information like they claim. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 338\n", + " high_rank: 338\n", + " label: \"There are several XXXX Accounts being reported in my credit file. These accounts do not belong to me. Each time that I disputed these accounts and proof that these accounts belong to me. I have not had any results from the credit agencies nor have I gotten any response from XXXX. I will like these accounts remove since they are playing a viable role in my credit score. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 339\n", + " high_rank: 339\n", + " label: \"There are XXXX accounts on my credit report that are not mine. XXXX is for XXXX ( debt collection agency is XXXX XXXX Solutions ) and the others are XXXX medical bills from XXXX XXXX. I never did any business with XXXX so I can only assume that this is a fraudulent account or they have the wrong person. The medical bills were not my responsibility, the insurance was under my ex-husbands name, the insurance was provided for his daughter at the time of service and there were no additional co-pays or fees. I have disputed these items with the credit bureaus, however, they remain on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 340\n", + " high_rank: 340\n", + " label: \"The students loans I owed for college are paid off in full. My credit report states that I have different student loans, but all were paid. XXXX University in Ohio confirmed they are all paid. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 341\n", + " high_rank: 341\n", + " label: \"The representative could not provide me with information about the amount owed other than who the original creditor was. I was asked to provide the collection company with information of what I owed them instead of them providing me with information about the amount of money that they were trying to collect. I asked to be provided proof of debt, including but not limited to, payment history, interest accumulation, and fees to verify the amount owed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 342\n", + " high_rank: 342\n", + " label: \"The reporting constitutes an outdated demerit past the legal time limit and collection of the initial matter exceeded the California Statute of Limitations of 4 years and should be removed. There was a dispute regarding application of payments towards account which led to a discrepancy in the crediting of payments made, a negotiation took place and favorable results were obtained, however the company did not follow our stipulation and erroneously made incorrect payment remarks on my account. Problems occurred with customer service not be effective in resolution of the problem. I contend that I was in complete compliance with the payment terms and conditions and that all payments were made in a timely fashion. After a lengthy continued negotiation on the matter illegal collection continued which exceed the statute of limitations- 4 years. The debt is illegal, contains outdated demerits and must be removed as it exceeds the legal time limit. All payments were made in a timely manner and in a sufficient amount as not to be a contractual violation at a time when the contract was valid. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 343\n", + " high_rank: 343\n", + " label: \"The primary creditor of this account has never contacted me in regard to taken further action to collect payment. In my defense payments has been auto scheduled to a min payment deducted every month from my account, but creditor decided to close my account without any notice and send me to collection instead of contacting me directly through all sorts of updated information on my account to settle this issue. I was wrongly sent to collection by this creditor and my balance is showing {$150.00} higher than what really is in facts. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 344\n", + " high_rank: 344\n", + " label: \"The lease was up and I disputed that with the collection agency and also ask for them to provide me proof of the debt and lease. They have not done so since the original dispute. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 345\n", + " high_rank: 345\n", + " label: \"The investigation of my discharged bankruptcy and unauthorized inquiries by the credit bureaus have been extended for more than 45 days. No validation from the credit bureaus or validation from the companies that the credit bureaus gave access ( to my credit file XXXX XXXX XXXX ) has been given in writing. No validation of Debts has been given at all by XXXX, XXXX, XXXX and XXXX XXXX. BY law You MUST delete the discharged bankruptcy and all accounts in the discharged bankruptcy and ALL the unauthorized inquiries ASAP \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 346\n", + " high_rank: 346\n", + " label: \"The investigation of my discharged bankruptcy and unauthorized inquiries by the credit bureaus have been extended for more than 45 days. No validation from the credit bureaus or validation from the companies that the credit bureaus gave access ( to credit file XXXX XXXX XXXX ) has been given in writing. No validation of Debts has been given at all by XXXX XXXX. BY law You MUST delete the discharged bankruptcy and all accounts in the discharged bankruptcy and ALL the unauthorized inquiries by XXXX, XXXX XXXX, XXXX XXXX, XXXX, XXXX, XXXX XXXX, XXXX XXXX XXXX, XXXX XXXX, and XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 347\n", + " high_rank: 347\n", + " label: \"The information has not been updated on my account. My account says that I have a balance of XXXX dollars owed to XXXX on XXXX XXXX XXXX but I have a paper that shows that my balance owed to them is XXXX. My bill has been paid but yet it has not been showed as paid on your balances on my report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 348\n", + " high_rank: 348\n", + " label: \"The credit reporting agencies are incorrectly reporting my current account status as 60-120 days past due. I paid the accounts and have a zero balance. I want the credit agencies to report the current status correctly as \\\" Paid as Agreed \\'\\'. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 349\n", + " high_rank: 349\n", + " label: \"The credit bureau would not properly investigate the public records that are not mine according to the State of South Carolina Department of Treasury and the XXXX County Court Clerk recorder, whom they did not verify any information with. It is against the FCRA to deem any public records as valid without contacting the source. The court stated that they do not verify any information with any of the credit bureaus. I sent the investigation in accordance with the Fair Credit Reporting Act, Section 1681i., and they refused to respond and have broken the law once again. All letters have been sent certified as documentation. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 350\n", + " high_rank: 350\n", + " label: \"The credit bureau did not give me a proper investigation in accordance with the FCRA. I asked them to send me the names of the individuals they contacted for verification, along with their addresses and phone numbers so that I can follow up with them. Had to remind them that they have 15 days to comply with the law by providing the requested information in compliance with FCRA, Section 611, part B, subsection ( iii ). Still no complete investigation. I asked them to verify the following questions which I have the right to : 1. Please explain to me what your representatives uncovered to lead them to believe that you are reporting this item as it legally should be reported? 2. What certified documents were reviewed to conclude your investigation? 3. Please provide a complete copy of all of the information that was transmitted to the data furnisher as part of the investigation. 4. What did it cost your company to obtain the documents needed to complete your investigation? 5. Please provide proof of your timely procurement of certified documents. 6. Did you speak directly to any agent of the company that was reporting the information to confirm the accuracy of what you are reporting? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 351\n", + " high_rank: 351\n", + " label: \"The credit bureau \\'s failure to provide me with information to prove that this is my account they have stated that they will no longer investigate my claims. I am requesting proof or remove the in accurate information \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 352\n", + " high_rank: 352\n", + " label: \"The credit Bureaus are giving out wrong information on me and refuse to give me my credit report. I am being discriminated by the credit bureaus and they are giving the XXXX person, who is using my information the correct information, and giving the people that I apply too, the wrong information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 353\n", + " high_rank: 353\n", + " label: \"The company that \\'s handling this specific debt, AR Resources, says that I owe money on XXXX different accounts with them. Upon the evaluation of my XXXX credit report, I found out that they \\'ve still continued to list this debt TWICE, and have never corrected the issue. XXXX account was listed since XXXX XXXX, and the other since XXXX XXXX. To date, they \\'ve never come forward to explain themselves and their error in judgement. This may have caused my credit to be rated more poorly, as well as other related issues. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 354\n", + " high_rank: 354\n", + " label: \"The company called me threatened to have me put in jail and I would have to attend classes if I did not pay full amount. Told me I committed fraud and had to pay full amount or they will send me to my county court. Contacted friends and relatives and revealed personal information to them regarding my debt. Threatened to take my references to jail as well \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 355\n", + " high_rank: 355\n", + " label: \"The collector said that, \\\" You people fought for your rights XXXX. \\'\\' people meaning XXXX people. I told him to send me everything in writing and he said, \\\" I \\'m not going to write you, I \\'m not your pen pal. \\'\\' He has called my wife at her place of work and was verbally aggressive. This has nothing to do with her. She has also advised him not to call her anymore. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 356\n", + " high_rank: 356\n", + " label: \"The collections agency received my account and everything was fine. They even offered to delete the account from my record as if it was never there if I paid the debt. However, after paying the debt, I could not get a copy of a letter saying it was paid. Recently, I ran my credit and not only is the file still on my report, but it is still marked as unpaid. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 357\n", + " high_rank: 357\n", + " label: \"The collection agency is under a law suit \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 358\n", + " high_rank: 358\n", + " label: \"The XXXX XXXX account was disputed, and Trans Union shows a cut off deletion date of XXXX XXXX. Trans Union shows a cut off deletion date of XXXX XXXX. The account went into default in XXXX, and XXXX XXXX extended the 7-year rule timeline illegally. The Federal Trade Commission has in the past fined XXXX XXXX for timeline re-aging issues, and this account is no different. Accordingly, I believe Trans Union did a poor job in its reinvestigation, and that they should remove the item immediately and permanently. Attached is the necessary documentation required to stipulate my position that the 7-year rule applies. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 359\n", + " high_rank: 359\n", + " label: \"The Law is the Law! Statue of Limitations law and laws for violating peoples rights are listed below. MGL Chapter 265 Section 37 MGL Chapter 260 Section 2. Actions of contract, other than those to recover for personal injuries, founded upon contracts or liabilities, express or implied, except actions limited by section one or actions upon judgments or decrees of courts of record of the United States or of this or of any other state of the United States, shall, except as otherwise provided, be commenced only within six years next after the cause of action accrues. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 360\n", + " high_rank: 360\n", + " label: \"The Credit Bureaus are reporting that my monthly payment for XXXX of my student loans are above $ XXXX when in fact it is only {$290.00} for all XXXX consolidated loans. This is throwing my debt to income ratio off. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 361\n", + " high_rank: 361\n", + " label: \"THIS COMANY IS REPORTING A NEGATIVE REPORT ON MY REPORT AND I HAVE ALREAD YED THEM PLEASE REMOVE FROM MY CREDIT THANKS \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 362\n", + " high_rank: 362\n", + " label: \"Student loan information entered XXXX ( same loan amount and acct number listed XXXX times ) on list of owed liabilities on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 363\n", + " high_rank: 363\n", + " label: \"Still reporting a judgement docket # : XXXX from 2008 on my credit report that is seven years old. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 364\n", + " high_rank: 364\n", + " label: \"Someone stole my identity and opened a XXXX account in the XXXX XXXX XX/XX/XXXX for about {$3800.00}. I \\'ve lived in XXXX since XX/XX/XXXX. I \\'ve had XXXX since XX/XX/XXXX. The same phone number for 10 years. Also I \\'ve never lived in XXXX. In XX/XX/XXXX I filed a police report where I live in XXXX stating this account and possibly others is identity theft. A few years back the state of XXXX tax dept was hacked exposing XXXX residents personal info such as social security numbers. I ca n\\'t verify that is the reason of my identify fraud but I assume that \\'s the only logical explanation. I have the XXXX police report, my XXXX id and the utility bill for my place in XXXX to dispute these charges. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 365\n", + " high_rank: 365\n", + " label: \"Someone purchased lights in my name without my permission. I reported it to the company and requested that they remove the items from all XXXX credit bureaus. The company failed to do so. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 366\n", + " high_rank: 366\n", + " label: \"Someone obtained a loan using my SS # \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 367\n", + " high_rank: 367\n", + " label: \"Some of the collections our from XX/XX/XXXX to XX/XX/XXXX they have had a charge off from the original. And I have been called for years from other debit collectors. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 368\n", + " high_rank: 368\n", + " label: \"Some 5 to 7 years ago I received a telephone bill from XXXX for {$370.00}. I paid the bill in full. Years later I received a collection notice that I owed XXXX {$370.00}. Not wanting to ruin my credit rating, I paid the bill AGAIN! Now I have received another collection notice from a different collection agency, stating I owe XXXX {$370.00}. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 369\n", + " high_rank: 369\n", + " label: \"Simons Agency has been contacting me everyday - sometimes 3 times a day - for the past year from several telephone numbers beginning with the area codes of ( XXXX ) and ( XXXX ). XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX Leaving several voicemail and automated messages within the past month. A letter was sent months ago to contact them regarding a medical bill from 2010 that was passed NJ Statute of Limitations of 4 years. ( Sale of goods under the UCC : 4-years, ( N.J.S.A. 12A ; 2-725 ) ). \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 370\n", + " high_rank: 370\n", + " label: \"Several times I have tried for free report and have been told I must download forms and send in requested information. I have answered ID question honestly and still told I have to do the mail in process. Why? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 371\n", + " high_rank: 371\n", + " label: \"Several disputes have been sent in regarding my current mortgage history with none of them resolving the issue. There were no late payments in XX/XX/XXXX or XX/XX/XXXX and the agencies still continue to list inaccurate information. I need some assistance I have attached the page of my report reflecting such inaccurate data. After the loan re modification never was a late payment made \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 372\n", + " high_rank: 372\n", + " label: \"Settled and paid debt collector way before settlement date. Debt collector refused to send me an email confirming payment of debt in full. Said that they would sent letter in the mail. Instead, collection company has continued harassing my family by sending people to my house to serve me with a summons. Now I am being sued for a debt that has already been paid. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 373\n", + " high_rank: 373\n", + " label: \"Served Summons and Complaint along with letter from attorneys indicating response is voluntary. It \\'s very misleading. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 374\n", + " high_rank: 374\n", + " label: \"Sent notice to cease and dismiss collecting Written Off debt that is over the Statute of Limitations to sue, along with all communications with us or any member of our family. This was to include but not limited to telephone calls, letters and personal interviews. They also responded by letter using fraudulent documents along with misrepresentation and deceit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 375\n", + " high_rank: 375\n", + " label: \"Sent a letter asking for this information. Did not get anything. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 376\n", + " high_rank: 376\n", + " label: \"Sent a cease and desist letter to convergent debt collection agency on behalf of my mother XXXX XXXX who is in XXXX..she has no money and lives on ssi..they continue to call everyday. .throughout the day several times throughout the day as well. .do n\\'t know what else to do. .I \\'ve tried explaining to them her situation but they still are harassing her for money. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 377\n", + " high_rank: 377\n", + " label: \"Senex Services Corp. has merged mine and my husband accounts. They transferred my husbands bills into my name. I have made several attempts for this to be corrected. I have XXXX accounts with them that I had a payment plan setup. They have cancelled my payment plan an refuse to take my payments or set it back up. The also refuse to unmerge mine and my husband accounts. Which in Ohio I am only responsible if \\\". Ohio has established clear liability for the medical debts of a debtor spouse when the debtor spouse is unable to pay the debt, to the extent that the other spouse is able. \\'\\' My husband is able to pay his own debt. We have separate accounts with both work. I told Senex my husband will be filing bankruptcy and I was told they would still sue me and come after me. They have refused to speak to me hung up on me and falsely released this to my credit reports. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 378\n", + " high_rank: 378\n", + " label: \"Scottrade, CFPB, and Others, I am the mother and joint account holder of a custodial Scottrade account. I recently wrote a letter to Scottrade asking questions about the custodial account. It appears as though Scottrade did not even read the letter because rather than addressing a response to me, XXXX XXXX XXXX XXXX, Scottrade wrote the the letter and instead addressed my son XXXX XXXX XXXX XXXX and did not address the issues that I raised in my letter. I would appreciate if Scottrade could read and address my concerns brought by both myself and my son. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 379\n", + " high_rank: 379\n", + " label: \"Scottrade continues to report fraudulent information to my tax file using information that is knowingly false and admittedly in dispute. Throughout complaint forums and other media, customers continue to have problems with Scottrade reporting false information to the IRS and refusing to correct it. I am suffering some the same failure and as a result have suffered significant damages. I kindly request Scottrade remove the information submitted to the IRS in accordance with my previously submitted letters. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 380\n", + " high_rank: 380\n", + " label: \"Scottrade Bank Manager XXXX XXXX XXXX instructed me to provide me personal information in a manner that is insecure ( via unencrypted email ). Roughly 10 days after providing the information as XXXX XXXX \\'s request, my account was hacked. Scottrade refused to make my account whole and said I was responsible for the hack. To warn other consumers, do not trust this company. At the current time Scottrade will not even address my concerns. Attached is the correspondence between myself and XXXX XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 381\n", + " high_rank: 381\n", + " label: \"Scottrade : I am writing on behalf of my son, who was a former customer of Scottrade financial products. My son has been a victim of corporate green at Scottrade when his account got hacked and Scottrade refused to refund any of the stolen money. Today I am writing to express my concerns over Scottrade \\'s response to my son \\'s complaints. Recently, my son discovered that XXXX XXXX XXXX, a branch manager at Scottrade exposed my son \\'s personal information by accepting insecure emails. Roughly 10 days after the insecure email, my son \\'s account was hacked. My son has been trying to resolve this with Scottrade but Scottrade has resorted to harassment and will not respond to his complaints. My son asks simple questions and Scottrade responds in a manner that is dehumanizing. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 382\n", + " high_rank: 382\n", + " label: \"SKIP TRACING, SEVERAL LAWSUITS, COLLECTORS IN VIOLATION OF TCPA, FDCPA ETC.. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 383\n", + " high_rank: 383\n", + " label: \"SINCE 2010 THE COURT REQUEST XXXX XXXX XXXX XXXX TO PAY THE BILLS FOR THE HOUSE AND IM DONT. HAVE TO DO ANYTHING WITH THE PAYMENTS HES AFFECTING ME UNPORPUSE. That mean 1st. Mortgage ( XXXX XXXX ) and 2nd Mortgage ( XXXX ) \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 384\n", + " high_rank: 384\n", + " label: \"Responded to initial contact letter with a timely debt verification request. Collection agency continued collection activity ( calls and letters ) before responding to the debt verification request. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 385\n", + " high_rank: 385\n", + " label: \"Requested the following account ( XXXX XXXX XXXX XXXX ) be deleted from my credit report, and the Credit Reporting Agency has refused. XXXX XXXX XXXX has refused to verify this debt in writing as per FDCPA, despite my numerous written requests. I am attaching several copies of Certified Return Receipts sent to XXXX XXXX XXXX and XXXX XXXX XXXX ( acting on XXXX behalf ). \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 386\n", + " high_rank: 386\n", + " label: \"Reporting to credit report balance was settled less than full balance. Sent me letter stating that {$590.00} was paid and I have no further obligation for this account. Account is still open on my credit report. I paid a total {$1000.00} \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 387\n", + " high_rank: 387\n", + " label: \"Reporting information from XXXX is incorrect. The original account was from XXXX. It was sold to XXXX and they are reporting an open date of XX/XX/XXXX when the actual date for the first collection was XX/XX/XXXX. This account is for early termination of service contract and not for the services provided. I did the dispute but the collections company and the credit reporting agencies will not change the incorrect information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 388\n", + " high_rank: 388\n", + " label: \"Repeatedly called and called my husband and disclosed my debt to him as well as threatened me with legal action. Claimed they sent me notice in mail did not receive so sent me email instead. I wanted written verification and said they could not do that. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 389\n", + " high_rank: 389\n", + " label: \"Refuses to report to the credit bureaus that this debt is paid after they settled with me. Paid off settled amount and now is stating I owe remainder and that the payment is late. Tried multiple times to contact agency and then transfer me and will not talk with me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 390\n", + " high_rank: 390\n", + " label: \"Received demand letter from law firm stating I owe them XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 391\n", + " high_rank: 391\n", + " label: \"Received a letter from a credit collector and the debt does not belong to me, I never opened the account \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 392\n", + " high_rank: 392\n", + " label: \"Receivable Recovery {$220.00} for all debts I had on my credit report on XXXX/XXXX/2015 by Debit Card to XXXX XXXX XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 393\n", + " high_rank: 393\n", + " label: \"Reached out to them however, never got a response. Unfortunately, I was the victim of identity theft. I have done everything required of me by law to dispute the fraudulent items on my credit report. I sent a letter to \\\" Flagship Credit \\'\\' on XXXX via XXXX certified mail. The company refuses to honor my rights under the FDCPA & the FCRA as a victim of identity theft to remove the fraudulent inquiry that was submitted without my knowledge, consent and/or authorization. Please find attached the notice that was sent out along with the attached certified receipt. Information can be tracked online using referenced information. Thank you for you time and attention regarding the matter. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 394\n", + " high_rank: 394\n", + " label: \"Ran a credit report without my consent. I \\'ve never given consent nor will I ever do so. Furthermore they did not notify me of this, which violates law \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 395\n", + " high_rank: 395\n", + " label: \"Public Records XXXX XXXX XXXX Superior Docket # : XXXX XXXX XXXX XXXX XXXX. XXXX, CA XXXX / Date Filed : XXXX/XXXX/2009 / Type : Civil Judgment Ph. ( XXXX ) XXXXCurrent Status : Paid / SatisfiedXXXX XXXX Court Docket # : XXXX XXXX XXXX XXXX XXXX XXXX, CA XXXX. ( XXXX ) XXXXCurrent Status : Paid / SatisfiedXXXX BANK # XXXX / Current Status : Consumer reported ; not my account? XXXX XXXX XXXX, # XXXX / Current Status : Consumer reported ; not my account? XXXX XXXX XXXX, # XXXX / Current Status : Consumer reported ; not my account? XXXX # XXXX / Current Status : Consumer reported ; not my account? XXXX XXXX # XXXX / Current Status : Paid in Full / XXXX Balance \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 396\n", + " high_rank: 396\n", + " label: \"Please see the enclosed XXXX statement for XX/XX/XXXX. My due date was XX/XX/XXXX and my account was paid on XX/XX/XXXX for XX/XX/XXXX and XX/XX/XXXX for XX/XX/XXXX. Therefore my bill was not late and please updates all credit reports with this information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 397\n", + " high_rank: 397\n", + " label: \"Please see attached document dated Sunday, XXXX XXXX, 2015 \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 398\n", + " high_rank: 398\n", + " label: \"Please note-I have the recorded call on file and it was disclosed to the company that I was recording. I called Hunter Warfield to come to a resoluation on some lease break fees I had with an apartment complex called XXXX XXXX. The representative told me the total amount due was {$2100.00} and that I can settle for half of that amount. Unfortunately, I was unable to accept the settlement but began to question the amount because my last statement was {$1800.00} and there was nothing written in the contract for additional interest charges should my account go into collection. I told the representative that I will pay the amount actually owed and I want to make a payment arrangement. She told me I ca n\\'t just do what I want, If I want to pay the original amount due, it has to be paid in full. I told her that that is not fair debt collection practice and that I am only contractually obligated to the {$1800.00} and we can set up an arrangement from that. She asked me in a condensing told \\\" if I wanted help or not. \\'\\' I told her she can not refuse my payments. We went back and forth a few times and she ended up telling me to have a good day and she hung up on me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 399\n", + " high_rank: 399\n", + " label: \"Plaintiffs, at all times relevant to this complaint are owners of the real property known as XXXX XXXX XXXX, XXXX, CA XXXX ( hereinafter \\\" Subject Property \\'\\' ). Plaintiffs acquired a home mortgage refinance loan forthe Subject Property from lender, XXXX XXXX The mortgage loan was secured by a Deed of Trust executed on or about XXXX XXXX, XXXX. Defendant SELECT PORTFOLIO SERVICING ( hereinafter \\\" BANKS \\'\\' ), is the mortgage servicer of the XXXX secured lien and the purported beneficiary of the Deed of Trust used to secure the mortgage loan to Plaintiffs to purchase the subject property. Sometime in early XXXX XXXX, Plaintiffs received a Notice of Default from XXXX XXXX XXXX after having bought the loan from XXXX XXXX. Plaintiffs have attempted to short sell this property under the government Home Affordable Foreclosure Alternatives program, but has been unable to do so. On or about XXXX XXXX, SELECT PORTFOLIO SERVICING issued a Notice of Default against the Plaintiffs after having bought the loan from XXXX XXXX XXXX. Despite continuous efforts for the Plaintiffs to apply for a short sale for the defaulted note, the multiple lenders involved have not cooperated to date and have continually put the property up for foreclosure auction without legitimately reviewing the Plaintiffs for a short sale. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 400\n", + " high_rank: 400\n", + " label: \"Paypal took action to close my account but refuse to refund my money back to me. I \\'ve waited for weeks after my account was closed but they \\'ve still not sent my refund. I do n\\'t understand why they \\'ll close my account for no reason whatsoever and then refuse to give me the money in the same account they closed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 401\n", + " high_rank: 401\n", + " label: \"Payoff was made by bank in XXXX 2011. Original creditor did not credit to account until XXXX 2011, and assessed back interest and fees. Debt collection agency has been sent documentation on two different occasions and has just now sent statements- over a year after contact. This debt has been paid, and needs to be reflected as such. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 402\n", + " high_rank: 402\n", + " label: \"Payment was made to XXXX XXXX XXXX ( have receipt dated XXXX XXXX, 2015 ). As I paid in full, at XXXX time, XXXX gave me a credit of 5 % on the total bill. ( from XXXX to XXXX ) Received notice from collection services two weeks later asking for payment of the full amount. I contacted collection agency with copies of receipt, and they sent me another collection notice a month later, when I again sent them a copy of my paid in full receipt. I now have a major black mark on my credit report. I have attached my billing summary ( no balance due ) from XXXX, and have also included my receipt from the initial payment on XXXX XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 403\n", + " high_rank: 403\n", + " label: \"Paid off ALLIANCEONE account still showing up as open \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 404\n", + " high_rank: 404\n", + " label: \"PROFESSIONAL MED ADJ BUR is trying to collect {$430.00} & {$260.00} from when I was pregnant and had XXXX. I have given them my XXXX card # and told them that I have medical assistance then. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 405\n", + " high_rank: 405\n", + " label: \"Our house went up in smoke in XXXX 2009, after a year and a half, we put the property up for sale with a signed contract with a Realtor. The balance was suppose to be paid off with the Insurance money put into a separate account. The mortgage Company XXXX refused to move it to the payoff, because the left hand knew nothing about the right hand. It put us in a negative for 3 consecutive months, after several calls to the Insurance Department and doing exactly as they asked us to do after each and every call. They found the error and corrected it, and apologized for their mistake. They also charged us {$30.00} for each and every time the Title Company called for a payoff balance. 8 months later we were notified that the original mortgagor XXXX filed for Chapter XXXX. When the new mortgagor took over XXXX XXXX XXXX, they only had the paperwork for the loan which reflected only the 90 days late and nothing else. We keep disputing it and get nowhere. This also reflects a 30 day late with our Equity line of credit XXXX. We wanted a 30 day close on the property but because of the mishap with XXXX it reflects XXXX. We want it changed on our Credit Reports is all. We are not asking for it to be removed just changed to reflect a positive, because we were on time each and every month for the 32 years we had the loan with XXXX while they were our XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 406\n", + " high_rank: 406\n", + " label: \"On my credit reports, it states that the debt is still open when it was paid and closed. I have verification that the debt was paid. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 407\n", + " high_rank: 407\n", + " label: \"On my credit report it has my name as XXXX XXXX instead of XXXX XXXX & one of the addresses is wrong it has XXXX. XXXX XXXX XXXX Ky I have no clue who \\'s address this is I have never lived in XXXX ky \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 408\n", + " high_rank: 408\n", + " label: \"On XXXX/XXXX/15 I requested Business and Professional provide validation for {$160.00} debt being reported to credit bureaus. As of XXXX/XXXX/15 I have not received any response in relation to my request. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 409\n", + " high_rank: 409\n", + " label: \"On XXXX XXXX, 2016, I sent a validation letter to a USA Discounters XXXX an account listed on my credit report. The collection agency responded that they were not considered a debt collector as defined by the Fair Debt Collections Practices Act ( FDCPA ). They did not provide proof of debt they are claiming I owe. In the state of Texas, debt collection means an action, conduct, or practice in collecting, or in soliciting for collection, consumer debts that are due or alleged to be due a creditor. In addition debt collector means a person who directly or indirectly engages in debt collection and includes a person who sells or offers to sell forms represented to be a collection system, device, or scheme intended to be used to collect consumer debts. Therefore, I feel that they should respond to my request of validation for a debt they are claiming I owe. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 410\n", + " high_rank: 410\n", + " label: \"On XXXX XXXX, 2015 I paid off the XXXX XXXX XXXX, account. I received a letter on XXXX XXXX, 2015 that the account had been resolved. However Trans Union is still reporting it on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 411\n", + " high_rank: 411\n", + " label: \"On XX/XX/XXXX I pulled my credit report to see exactly what was listed on there. I found a collection entry from Convergent Outsourcing {$580.00} with a date open date of XX/XX/XXXX on credit report and XX/XX/XXXX on XXXX others. Well I want this item to be removed from my credit report and I want the company to send me a letter stating that the collection item has been removed. I have never had a XXXX XXXX account and I know it is n\\'t mine because I was XXXX when this collection was put on my credit report. So this is ID Fraud \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 412\n", + " high_rank: 412\n", + " label: \"On XX/XX/2015 I sent a letter questioning several accounts on my credit report. I have waited well past the 30 days they have to respond. I have received nothing in response. today is XX/XX/2015. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 413\n", + " high_rank: 413\n", + " label: \"On Tuesday, XXXX XXXX, 2015 a bill collector at the number XXXX called me XXXX times between the hours of XXXX and XXXX and would only identify himself as XXXX XXXX or XXXX XXXX. The voice mails stated they have a complaint in their office corresponding to my name, address, and SSN and I have to call them back within XXXX hours to address this complaint or else they will send a process server. When I called back, the agent did not immediately disclose that it was an effort to collect a debt, he was rude when I asked him to get to the point and tell me what they were calling me in reference to. I hung up on him. Then he called back and left my full SSN and DOB on my voicemail and said I have to call him back immediately or I will \\\" be scheduled to appear, \\'\\' and failure to do so will result in \\\" further consequences. \\'\\' He called again and I when I asked him to stop calling me he talked over me and said that he can send the process server to my job and I need to take care of my business and grow up, before hanging up on me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 414\n", + " high_rank: 414\n", + " label: \"Omega RMS has placed information on my credit report which is n\\'t mine. I never initialized any business with this company. Omega is known for placing bogus information on credit reports. Please remove all derogatory remarks and thank you in advance. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 415\n", + " high_rank: 415\n", + " label: \"No bills were sent to my home and no one contacted me about any payments to be made. Even the collection agency never contacted me. I realized I had a payment due when I pulled my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 416\n", + " high_rank: 416\n", + " label: \"Negative info is about an account with XXXX which I never open never asked and never sign a contract with them and I never used their service. The amount is $ XXXXXXXX negative is about an utility bill for {$68.00} for a rental that I never received and I payed after I find this in my credit report.Ater the payment I ask the collection agency to change the info in the credit report and mention that was a mistake as a result of miscommunication. They refused. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 417\n", + " high_rank: 417\n", + " label: \"NAVIENT is in direct violation of my rights under the Fair Credit Reporting Act and the Fair Debt Collection Practices Act. My complaint is very simple, once I am granted a deferment on any student loan, NAVIENT automatically reports the account as 90 days late. Now how can that be without a 30 and 60 day late payment history before it. It \\'s because NAVIENT uses the credit reporting system illegally, using it as a means to destroy a person \\'s personal credit history without merit or recourse. This practice has been consistent for decades, and I will seek private counsel to file suit if necessary. My student loans are now and have been in payment deferment since I obtained them. NAVIENT IS VIOLATING MY FCRA AND FDCPA RIGHTS. I DEMAND A CFPB INVESTIGATION ON THIS ABUSIVE CREDIT REPORTING PRACTICE TO CEASE THIS ACTIVITY ON AMERICAN CONSUMERS!!! NAVIENT MUST DELETE ALL NEGATIVE CREDIT HISTORIES ON ME IMMEDIATELY AND PERMANENTLY!!! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 418\n", + " high_rank: 418\n", + " label: \"My yonger sister bad credit is on my credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 419\n", + " high_rank: 419\n", + " label: \"My name is XXXX XXXX and I am writing to report an error on my report. I have never had a XXXX XXXX Credit Card. I would like assistance removing this information from my credit report, as this account belongs to my sister, XXXX XXXX, now XXXX XXXX. I also wanted this company to take preventative measures, from now on, to secure the separation of my information with any other consumer with similar identification, such as my sister, and my mother, XXXX XXXX, XXXX XXXX, while married. Thank you for your assistance in this matter. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 420\n", + " high_rank: 420\n", + " label: \"My motorcycle was stolen over 7 years ago and I obtained a police report, with which the debt was removed from my credit. It has now been placed for collection and has been placed on my credit again and they are consistently harassing me about the debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 421\n", + " high_rank: 421\n", + " label: \"My mother received a call asking for me. As she lives with me, she gave me the phone. The person I spoke to advised they were calling about a loan that had been turned over to them. As I had no knowledge of this, I asked them to send me information they in fact own the debt in question and I will handle it then. The agent said they had sent me XXXX letters, to which I responded I had n\\'t received anything from them. The person then said they were going to mark my account as \\'refused to pay \\'. I advised them I never said I had refused to pay ; I just wanted verification. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 422\n", + " high_rank: 422\n", + " label: \"My loan payments are current. They are calling me and the co-signor every XXXX minutes from morning until night. When I do answer the phone and talk to them they see that I am current and state that it is a \\\" glitch \\'\\' in the system. However they are still calling every XXXX minutes to both of us and this has been going on for at least 3 weeks now. I am getting ready to call an attorney. Please help. Thank youXXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 423\n", + " high_rank: 423\n", + " label: \"My identity was stolen and accounts were opened as a result this account is reporting on my credit report and with your company is fraudulent and you continue to report \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 424\n", + " high_rank: 424\n", + " label: \"My husband was unemployed for two and a half years. I was unable to pay credit card bills at the time. Paying mortgage and providing food for my family was the priority. I offered to make payment arrangements but, what they were requesting was in excess of {$200.00} per month which I explained was n\\'t affordable as I was the only one working in a household of XXXX people. This company sought legal action, put a lien on my house and froze my bank account. They debited amounts of a little over XXXX and XXXX XXXX dollars on two occasions and put a freeze on the same amount twice. I had to go to the bank on several occasions and take time off of work to resolve this error over the course of more than one week. The funds they debited were my mortgage funds which put me further in arrears and caused me extreme financial hardship. I contacted them regarding a settlement on a few occasions and they refuse stating since they have a lien on my house so they do n\\'t have to make a settlement arrangement. They are also unwilling to set up a reasonable payment arrangement. I am going to be out of work soon as my company lost their contract and I explained this to them. They are unrelenting and uncooperative. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 425\n", + " high_rank: 425\n", + " label: \"My husband created an account, without my knowledge, and made me an authorized user but I did not sign a signature card. After his death, the bank sent me a statement with the balance and interest charged on the account. I contacted them in good faith and asked for a settlement but they refused to talk and sent it to a collector. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 426\n", + " high_rank: 426\n", + " label: \"My first and second mortgage was through XXXX XXXX. We negotiated a short sale with them. They agreed to remove the balance on the first mortgage and close both the first mortgage and second mortgage and CHANGE THOSE STATUSES TO UNRATED. The first mortgage was properly notated but the second mortgage XXXX Account XXXX ) is reflecting a status of \\\" Charged Off \\'\\'. I disputed this with the bureaus and they left the status the same. The three credit bureaus would have submitted this to XXXX XXXX. They would have sent back the dispute indicating that the charged off status is correct. This is contrary to the arrangement we had for the status after the charge off. The Fair Credit Reporting Act provides that the data furnisher has the same requirements for processing disputes and providing the correct data as the bureaus do ( FCRA section 623 XXXX a ) ( 1 XXXX ( A ) \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 427\n", + " high_rank: 427\n", + " label: \"My credit was repaired, I have a fraud alert and now myscore will not appear. It states I have no credit when in 2013reported a XXXX credit score. unable to get a clear answerfrom the credit bureau. SS said I can get a new SS #. I have also gotten married XXXX/XXXX/2013 new last name XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 428\n", + " high_rank: 428\n", + " label: \"My credit score is below XXXX and there does not appear to be justification for the low score. the credit reporting reasons for the low score : \\\" too many delinquencies, too many credit reporting requests, proportion of balances too high \\'\\'. these reasons do not appear valid : there are almost no delinquencies within 24 mo, there are very few credit reporting requests in past 12 mo and the balances for debt to income are 40 %. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 429\n", + " high_rank: 429\n", + " label: \"My credit card was transferred to a collection agency a month after I filed bankruptcy. The payment was n\\'t even 30 days late yet. And is now reflecting as a collection account on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 430\n", + " high_rank: 430\n", + " label: \"My brother and I have the same first name and last name with different middle names. We have different birthday and social security numbers so we did n\\'t expect the report to be mixed up. This can create some issues. For example, my brother just got a car loan but it \\'s not my car loan. When I wanted to ask for credit report, they asked me if I have a car loan which I do n\\'t have but they said the identity test failed. It \\'s really stupid because they could have checked that the middle name, date of birth, and SSN are different. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 431\n", + " high_rank: 431\n", + " label: \"My bank account was fraudulently used to where now my credit and opening a bank account privileges have been severely affected. I contacted the bank immediately and they were not helpful and actually quite rude when it came down to it. I am highly upset because through no fault of my own, my future with other banks/creditors has been adversely affected. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 432\n", + " high_rank: 432\n", + " label: \"My XXXX was totaled in an accident on XX/XX/XXXX and was paid out in full by XXXX XXXX in XX/XX/XXXX. XXXX XXXX was paid out in full, but they have reported on my credit file that I was delinquent with payments, As a result there is serious error on my credit report and my FICO score has been impacted. As a result of XXXX mistakes I can not get a loan to buy a home and I am suffering hardship due to the error made by XXXX USA staff. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 433\n", + " high_rank: 433\n", + " label: \"My XXXX XXXX account is showing 41 % credit utilization there is less than 10 %. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 434\n", + " high_rank: 434\n", + " label: \"MY INSURANCE COMPANY, XXXX XXXX & XXXX XXXX SAYS BILL WAS SETTLED \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 435\n", + " high_rank: 435\n", + " label: \"MY ACCOUNTS ARE ALL LOCKED DOWN AND SAYING THAT I HAVE BEEN MARRIED AND ALSO HAVE A NEW HOUSE I AM RENTING OUT \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 436\n", + " high_rank: 436\n", + " label: \"Lien placed on my residence when debt is not mine. Person who the debt belongs to has same last name and same last XXXX of SSN, however different first name and middle initial than mine. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 437\n", + " high_rank: 437\n", + " label: \"Letter from LawyerWe have completed an examination of your bankruptcy case and spoken with our lawyer. It appears to us that the firm has done nothing which has injured you. Understanding our position requires some understanding of a complicated and, in some ways confusing set of laws relating to the bankruptcy and the real estate which you own. Your state has an exemption for a certain amount of equity in real estate. That is to say in a bankruptcy the creditors can not sell your residence to satisfy their judgment if you have less equity in the home than the amount of the exemption. The bankruptcy court can only order a creditor whose judgment has matured into a lien on your property to release that lien if you have equity in the real estate and that equity is less than the amount of the exemption provided under your state \\'s laws. The problem here is that at the time of your bankruptcy you had no equity in the house. That is to say the amount of the mortgage was equal to or greater than the fair market value of the home. Under those circumstances the court can not enter an order to avoid the lien of the judgment. There was nothing that could have been done to get the court to do that. We attach hereto a copy of the Court \\'s opinion on our motion to avoid the lien which states what I have just told you. While there was n\\'t a motion filed during your bankruptcy to avoid the lien, the Court has made it clear that it would have denied such a motion in any event. This does n\\'t mean that you still owe the money to that creditor. You do n\\'t! The judgment and the debt are discharged. The creditor can not take any action against you to collect the debt or enforce the lien. You should be able to refinance your mortgage without worry merely by showing the lender that you received a discharge in bankruptcy. I hope this is helpful and that you will be able to fulfill your economic plans in the future. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 438\n", + " high_rank: 438\n", + " label: \"Left me multiple vocie message advising that they were serving legal court papers on friday between XXXX for a judgment against me. I could contact XXXX and left a refrence ID most of the time they called private but happened to call with XXXX XXXX of the times. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 439\n", + " high_rank: 439\n", + " label: \"Last year I made a construction loan and began inquirys of several different leanding agencys to secure permanent financing of my home ... my goal was to REDUCE my interest rate and to gain FIXED rate financing on the home. I contacted XXXX ( or XXXX ) different sources and was able to secures a fixed rate below 4 % ... ONE goal ONLY and yet my credit scores began to drop ( a total of appx. XXXX points ) in the process. Is THIS proper? I do n\\'t think it \\'s the intent of credit reporting agencies to penalize anyone \\'s rating for do9ing the RIGHT thing ... please investigate and remove these \\\" hard Inquirys \\'\\'. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 440\n", + " high_rank: 440\n", + " label: \"Keep calling to take me to court without telling me the name of theircompany.After i repeatedly request for their information and they hang up on me \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 441\n", + " high_rank: 441\n", + " label: \"KEEPS CALLING MY WORK, CELL AND FAMILY MEMBERS AND SKIP TRACING AND ILLEGAL BACKGROUND CHECKS. THEY HAVE VIOLATED TCPA, FCRA, FDCPA. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 442\n", + " high_rank: 442\n", + " label: \"Ive been getting calls and they do n\\'t leave a message. I \\'ve had a comminication issue witg this company im the past \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 443\n", + " high_rank: 443\n", + " label: \"Initially I disputed items on my credit report, which came back as verified. I believe the investigation is questionable. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 444\n", + " high_rank: 444\n", + " label: \"Inaccurate information is being reported to XXXX and XXXX. My account was paid in full on XXXX/XXXX/2016. However, XXXX is reporting as of XXXX/XXXX/2016 my account Closed with a {$970.00} balance. XXXX is showing my account Open with a {$970.00}. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 445\n", + " high_rank: 445\n", + " label: \"In XXXX, 2009 a friend used my banking information and charged amounts to her cell phone. The charges called an accrual of overdrafts and fees in my banking account. The matter was reported to law enforcement as soon as it was realized. Reports from each agency were turned over to the bank. Reports include the name and address of the party that committed the act. The account was turned over to collections. The agency has been notified multiple times by phone and mail that this account was the result of a crime that was committed. I am mailing ANOTHER copy of all reports via a traceable method to verify that the collection agency receives the information as well as to the credit reporting agencies. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 446\n", + " high_rank: 446\n", + " label: \"In XXXX 2015, I had settled a debt with XXXX XXXX for an amount less than what was originally asked. This amount was agreed to, and I was given a confirmation over the phone, as well as a receipt over email. However, recently I noticed that a derogatory entry was made on my credit report for the difference between the original debt and what was agreed to in settlement. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 447\n", + " high_rank: 447\n", + " label: \"In XXXX 2009 my personal information was compromised when my car was broken into and my handbag stolen. Since XXXX 2009 a series of accounts have been opened using my personal information this has caused my once great credit to plummet to XXXX. Over the past 18 months I have had creditors collections agents harass me for balance owed to accounts that I know nothing about and my credit is non-existent and my hopes of purchasing a home is in jeopardy because of I am a victim of Identity theft. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 448\n", + " high_rank: 448\n", + " label: \"In XX/XX/2011 I had to move my family out of an apartment at XXXX XXXX XXXX XXXX XXXX due my wife and newborn baby becoming very ill as a direct result of the apartment we were living in having black mold. The apartment manager agreed to allow us to move out due to the circumstances. Since that time the management company of the apartments, XXXX XXXX XXXX XXXX XXXX XXXX has placed a collection balance with a collection agency that in-turn has placed a derogatory collection entry on my credit report with all three credit reporting agencies. The apartments and management company furnished me with a letter on XXXX/XXXX/11 ( letter attached ) advising that the collection item would be deleted from my credit report, but to date it has not. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 449\n", + " high_rank: 449\n", + " label: \"In 2010, a rental car company in XXXX charged my credit card for a deposit against damages at XXXX rate of exchange and then debited my credit card at a different rate pocketing the difference. I attempted to resolve this with the merchant but to no avail ; when I disputed this with the credit card I was stonewalled, my written letters were ignored, and after repeated attempts to discuss with them ( XXXX XXXX ), I closed the account having paid all that was owed except for the disputed amount. I now find that despite my otherwise excellent credit rating, my FICO score is being dragged down and inexplicably affecting my insurance premiums. At the insistence of the credit card company, all dispute processing was done on line, therefore little supporting evidence is available. However, I am attaching the final letter that I wrote them concerning the matter. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 450\n", + " high_rank: 450\n", + " label: \"In 2009 we completed a chapter XXXX bankruptcy for credit card debt, we kept both our home and vehicles. We are still living in our home and are still paying for it, we also have since paid off the vehicle and still own that and hold the title for it. However on our credit report it is showing that we lost these things in bankruptcy. We are applying for a loan modification due to the fact that my wife recently lost her job and are unable to move ahead because of this.In XXXX we completed a chapter XXXX bankruptcy for credit card debt, we kept both our home and vehicles. We are still living in our home and are still paying for it, we also have since paid off the vehicle and still own that and hold the title for it. However on our credit report it is showing that we lost these things in bankruptcy. We are applying for a loan modification due to the fact that my wife recently lost her job and are unable to move ahead because of this. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 451\n", + " high_rank: 451\n", + " label: \"Im a victim of title fraud XXXX XXXX made the title claim and told me not to pay the mortgage and they will not report any negative enclosed is a copy of the title claim \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 452\n", + " high_rank: 452\n", + " label: \"I would like Scottrade to fully and responsively address my other complaints instead of providing generic responses that allegedly relate to the XXXX XXXX, 2013, letter. Indeed, a number of the concerns I raised are wholly new issues and not addressed in the XXXX XXXX, 2013 letter, thus Scottrade \\'s boilerplate use of previous correspondence for materially new disputes is inappropriate. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 453\n", + " high_rank: 453\n", + " label: \"I was unable to get a free credit report from ANY of the XXXX companies at www.annualcreditreport.com. I believe this is by design. They ask questions the average person can not be expected to know ( for example the year your home was built for apartment renters, partial phone numbers of relatives, etc. ) and then refuse to provide a report based on the answers, unless you jump through many more time consuming hoops. They make the process unnecessarily difficult. This website was obviously put up to create the appearance of making an effort to comply with the law, while avoiding actually doing so as much as possible. It \\'s abusive. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 454\n", + " high_rank: 454\n", + " label: \"I was told that I have this XXXX XXXX debt that I did not obtain. I filed a fraud claim with XXXX XXXX back in 2014 and was told that they do not have any substantial information to say it was mine. I do n\\'t understand why I am still getting harassed to pay a debt that I have already filed a fraud claim for and was told they did not have a signature or anything on file. So I need for the XXXX major credit bureaus to permanently take this off my account and I need these debt collectors to understand that this was fraud and my personal information was used. They are selling each other debts that is useless and fraudulent. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 455\n", + " high_rank: 455\n", + " label: \"I was sued and paid the judgment. A new lawfirm file took over the judgment and garnished my wages. I have comunicated with them to stop the collection efforts to no avail. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 456\n", + " high_rank: 456\n", + " label: \"I was reported for greater than 7 years ( XX/XX/2007 ) for a NY State paid tax lien and transition and equifax continue to report it and the law states that paid tax liens should not be reported for greater than 7 years and it has been over 8 years. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 457\n", + " high_rank: 457\n", + " label: \"I was not notified in writing of the debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 458\n", + " high_rank: 458\n", + " label: \"I was denied credit so I pulled my credit report. I found a collection account had been placed on my credit report that I have no knowledge of. I was never notified before it was placed into collections. This is a violation of the Fair Credit Reporting Act. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 459\n", + " high_rank: 459\n", + " label: \"I was contacted in regards to a debt that is not mine. I have written several letters and after further review of the FTC guidelines decided to go through the proper channels and have an FTC Affidavit notarized. I sent it certified but this company keeps calling me at work and home. Please help me get this resolved. Thank you \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 460\n", + " high_rank: 460\n", + " label: \"I was contacted by this creditor regarding a debt from 2003. I notified in writing this debt is too old to be sued for and I asked not to be contact regarding this debt. I was than contacted again by mail, which advise me to call. I explained to the creditor XXXX that they are past the statue of limitations to collect on this debt, and she advised me that they can sue, then she said they cant, then she stated that they would keep me in collections. I than contacted your office, and I an now submitting a complaint. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 461\n", + " high_rank: 461\n", + " label: \"I was contacted by this company back in XX/XX/XXXX, they told me that I have an outstanding debt that I was never aware of for a payday loan back in XX/XX/XXXX. Stated that they were going to sue me for the funds. Afraid of legal action i agreed to make payments to them for the funds. After reviewing information online i am showing that this company is not a lawyer \\'s office but a collection agency. I am filing a formal complaint against their practices. To this day I have asked for paperwork showing the debt, but have never been provided the information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 462\n", + " high_rank: 462\n", + " label: \"I was called by someone at XXXX who claims I still owe money for a XXXX account that was paid over 6 years ago. The man I spoke with was forceful and threatening that his client might sue. It was shady at best. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 463\n", + " high_rank: 463\n", + " label: \"I was called about a debt that was written off XXXX years ago, by the credit card company. It was then sold to several collection agencies, before ending up in the hands of XXXX financial in Illinois. ( XXXX ). They never stated this was an attempt to collect a debt, nor read the \\\" mini mirnada \\'\\' required by debt collectors. The guy then proceeded to insult me, calling me a child, a bum, loser and so on. I eventually hung up, but after working in collections for a short time, I know what they did is illegal and they need to be fined for this. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 464\n", + " high_rank: 464\n", + " label: \"I was being charge with fees from an Appt complex when I moved out. So I filed a complaint with the, \\\" XXXX XXXX XXXX \\'\\'. After the review, the XXXX rule in my favor. During the XXXX review, I paid the collection company, because I was getting threatening letters and was being harassed daily. Once I receive the letter that XXXX ruled in my favor, I sent out disputes to all XXXX credit reporting agencies, the collection agency the Appartment company and requested the money back that I paid and disputed the A check was sent to me in XXXX 2014 from the apartment company refunding me the money that I had paid. As of today this derogortory information has not been removed from my credit report. XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 465\n", + " high_rank: 465\n", + " label: \"I was asked to choose XXXX item that best describes my issue however multiple issues could have been selected. The latest one that has me seething is they called my mother in law pretending to be conducting a background check on my company. Asked her if my husband was in fact my husband, asked her how many employees I had and asked for my phone number. Then he called my husband to tell him I had a debit. They have not produced a document proving this debit is mine. I have repeatedly told them I know nothing about this - and to please send me actual documentation and I \\'d be happy to pay whatever I actually owe. They call me EVERYDAY. I called them yesterday to make the phone calls stop and this bully named XXXX XXXX said all kinds of crazy nonsense - that if I was a XXXX he \\'d be willing to settle this debit right now. Asked me what I did for a living - told me I was rude and uncooperative when I would n\\'t engage in personal conversation. He \\'s a bully. And a liar. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 466\n", + " high_rank: 466\n", + " label: \"I visited XXXX in XXXX, CO and was looking at cars. They let me know that they were running a credit report to see what loans I qualified for. I let them know that I only would allow one company to run the report ( XXXX ) and they agreed. They did not tell me that other companies would be running a credit report to give me loans and I specifically told them that I did not want my credit run through finance companies I did not approve of. I was unaware and did not give understandable permission for this company to run a credit check on me. I was pressured into running a credit report when I did not want to because I was a first time car buyer and unaware that when XXXX ran the report it would go through numerous agencies. They did not clarify and tricked me. I think this is unfair in that it affects my credit score negatively. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 467\n", + " high_rank: 467\n", + " label: \"I visited XXXX # XXXX on XXXX/XXXX/15 I wrote a check lost my check a day later froze my bank account with XXXX and a few days after things had cleared I closed the bank account XXXX took my money I had earned using their reward program so I inquired why my {$29.00} had dissappeared I w as told it was for a check returned to contact a certain person I called left several messages no one responded so I was forced to file a XXXX complaint now working with someone in corporate that is taking care of the issue not even a couple of weeks later my checks are being returned from my new account I get a notice from TRS Recovery that Telecheck had blocked me from using my checks if I ever wanted to use a check again to pay {$48.00} that was for a {$23.00} check with a {$25.00} returned unprocessed check I tried to get TRS & Telecheck to remove the negative stuff from my credit while I work with XXXX but they refuse \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 468\n", + " high_rank: 468\n", + " label: \"I spoke with the US Dept of Education in XXXX today regarding my $ XXXX student loan. They stated that they reported to the credit agencies way back at the end of XXXX, 2015, that my account was paid in full and that all remarks and negative history should have been removed. They said that it is the obligation of the Credit report agencies ( all XXXX ) to remove all information off my account permanently so it does not stay on my report for XXXX years. All this derogatory information is still on my credit report and it is now almost XXXX!! I have to move and this credit score is disrupting my life and unjustified!! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 469\n", + " high_rank: 469\n", + " label: \"I simply requested the reason why my score dropped from XXXX to XXXX. I was informed this information was not available. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 470\n", + " high_rank: 470\n", + " label: \"I sent an offer in the form of a letter and check, I stated that if the offer was not accepted that I was advising that this is a cease and desist. They sent my check back and said that since I wrote in remarks in the memo of the check they could not accept it so that means the cease and desist is active. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 471\n", + " high_rank: 471\n", + " label: \"I sent a letter regarding the matter however, no response from the company. Unfortunately, I was the victim of identity theft. I have done everything required of me by law to dispute the fraudulent items on my credit report. I sent a letter to \\\" WFDS d/b/a Wells Fargo Dealer Service \\'\\' on XXXX via XXXX certified mail. The company refuses to honor my rights under the FDCPA & the FCRA as a victim of identity theft to remove the fraudulent inquiry that was submitted without my knowledge, consent and/or authorization. Please find attached the notice that was sent out along with the attached certified receipt. Information can be tracked online using referenced information. Thank you for you time and attention regarding the matter. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 472\n", + " high_rank: 472\n", + " label: \"I reviewed my credit information and notice an error on my account from an apartment complex I stayed in years ago. The complex back then was called \\\" XXXX \\'\\'. I had email correspondence with the complex regarding my concerns dealing with the apartment before I moved out and was reassured I had nothing to worry about because those issues are not mine and on the complex. I am looking at my credit report and see a charge for XXXX that should n\\'t be there because we left out with a walk through completed and was stated that we had nothing to worry about. We were also given back out security deposit as well when we moved out. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 473\n", + " high_rank: 473\n", + " label: \"I requested verification of debt, debt collector and/or attorney stated they did not have to provide me with proper validation of debt the further stated that copies of past statements were validation of debt. I am not disputing that I owe the company money I \\'m disputing the amount I have questions about the debt I requested proper validation of the debt as well as the signed contract from the credit card company and signatures of purchases that I personally made with the credit card none of which I have been given except for copies of statements of two plus years ago. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 474\n", + " high_rank: 474\n", + " label: \"I requested the report from XXXX last spring and though it docked me so it says i received it, it would not download. I recently requested my free annual report from all XXXX agencies and could not download them. Then I sent in a request following the instructions carefully over 6 weeks ago and still have not received them. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 475\n", + " high_rank: 475\n", + " label: \"I requested that the agency provide verification i.e. a lawful contract ; a hand signed invoice to prove this alleged debt is valid so I may pay any verified debt owed. I gave the agency 10 days from the date I received my returned certified letter receipt ( XXXX XXXX ). It has been well over ( 10 ) days and the agency has defaulted in sending me the information I requested to verify the accuracy of this account. Therefore I am requesting that this false account be removed immediately and permanently from mycredit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 476\n", + " high_rank: 476\n", + " label: \"I requested a collection company to validate a debt which they have not and continue to report false information \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 477\n", + " high_rank: 477\n", + " label: \"I recently received a copy of my Credit Bureau Name credit report. The credit report showed a credit inquiry by your company that I do not recall authorizing. I understand that you should n\\'t be allowed to put an inquiry on my file unless I have authorized it. Please have this inquiry removed from my credit file because it is making it very difficult for me to acquire credit. Please be so kind as to forward me documentation that you have had the unauthorized inquiry removed. If you find that I am remiss, and you did have my authorization to inquire into my credit report, then please send me proof of this. Thank you for your help, XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 478\n", + " high_rank: 478\n", + " label: \"I recently pulled my credit report and discovered that this company is reporting that I owe them a debt. To my knowledge this company has never provided me with a service. I have never entered into a contractual agreement with this company promising to pay them for said services. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 479\n", + " high_rank: 479\n", + " label: \"I recently pulled my credit report and discovered that this company has reported that I owe them a debt. I was never notified that I owed this company a debt and further more I never entered into a contract with this company and they have never provided me any services. I was never afforded my rights according to the FDCPA \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 480\n", + " high_rank: 480\n", + " label: \"I recently pulled my credit report and discovered that this company has reported that I owe them a debt. I have not received a letter from them prior to them placing this on my credit report. I was not afforded my right under the FDCPA. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 481\n", + " high_rank: 481\n", + " label: \"I recently ordered my credit files and found this account on my credit reports. I have never had any account with this institution and do not know of any account ever opened with them. My personal details where compromised in 2012 when my wallet was lost and included ; credit cards ; social security card and driving license but was found and mailed to me. Please provide full details of this account including the information used to open it. My credit files report an address that is not known to me and there have been attempts to open accounts from this address therefore, I require full validation of the opening documents for this account to ascertain who is using my identity. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 482\n", + " high_rank: 482\n", + " label: \"I recently have ask you to show me permissible purpose that I allowed many of the creditors that you are reporting hard inquries on my report to be allowed to report the inquiry under the Fair Credit Act. I \\'m asking you to show me, full documentation that the inquries belong on my credit report. Not a response with an answer of you believe that it was permissible purpose. The credit report showed a credit inquiry by a company ( s ) that I do not recall authorizing. I understand that you should n\\'t be allowed to put aninquiry on my file unless I have authorized it. Please have thisinquiry or inquries removed from my credit file because it is making it verydifficult for me to acquire credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 483\n", + " high_rank: 483\n", + " label: \"I received threatening phone calls and letters plus a lawsuit was filed, when I disputed the claim to debt. They are not the original debtor and their information is wrong. They did not provide me with enough information and threatened to take action if I did n\\'t respond within 30 days. They refuse to give me their street address when I phone them so that I can have them served. They were very rude on the phone and would not provide information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 484\n", + " high_rank: 484\n", + " label: \"I received some phone calls and the attached letters from the company and I do n\\'t ever remember ever having this credit card. In 2010 I went to my Credit Union, XXXX XXXX XXXX XXXX and enrolled in their credit education program. It took me about 3-4 years to get all my reports cleaned up and paid so that I could retire and buy a home. About a month ago I received the first letter then phone calls that left voice mails. I sent a Cease and Desist letter and have heard nothing since but now they have put it on my credit report. It also is way over the statute of limitations in the state where this agency is and the state where I live anyway \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 485\n", + " high_rank: 485\n", + " label: \"I received a summons for a lawsuit after I disputed the debt. I had my attorney send a letter stating that I did not owe the debt and why and they responding directly to me, not my attorney. They proceeded in filing a lawsuit directly against me instead of my attorney. They also refused to provide a physical address so they could be served. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 486\n", + " high_rank: 486\n", + " label: \"I received a subpoena from a collection agency threatening to sue me on a time barred debt from 2004.This company has tried several times to garnish my wages but have been unsuccessful due to I only work 1-2 days a week and now they are taking me to court and asking for record of employment, checking/saving accounts, deed to property, titles to vehicles and copies of tax returns for the past 3 years which I do n\\'t understand the need for because I thought it is against the law to try and sue or threaten to sue someone on a time barred debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 487\n", + " high_rank: 487\n", + " label: \"I received a letter stating I owed a debt. I sent a debt validation letter back and did n\\'t receive validation but did receive another letter for debt payment. I clearly stated in my validation letter not to contact me or continue to try and collect without validating the debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 488\n", + " high_rank: 488\n", + " label: \"I received a debt settlement letter from a collection agency for a medical bill. The last day to pay the settlement amount is on XXXX/XXXX/2016 ; today is XXXX/XXXX/2016. I called today to pay the debt in full, but was told that the bill was sent to their attorney \\'s office and the collection agency could not talk to me or receive a payment from me. I was told that if the collection agency spoke with me, that it would be against the law. The letter mailed did not mention anything about the account being sent to an attorney \\'s office, if contact was not made. I tried to inform the collection agency about the settlement letter received, but again I was told that they could not talk to me. I then spoke to someone in their attorney \\'s office and was told that the settlement offer ( which expires tomorrow ) will not be honored because the bill was now in the attorney \\'s office. I was told to call back on XXXX/XXXX/2016 at noon and the supervisor ( who was not in at the time of my call ) will make a decision whether to honor the settlement price, which was unlikely. I even faxed a copy of the settlement letter as proof, because the attorney \\'s office did not have it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 489\n", + " high_rank: 489\n", + " label: \"I received a call from a company stating that I had XXXX outstanding payday loans from 2011. I was told that I had taken out an online payday loan in the amount of {$400.00} on XXXX/XXXX/11 and another in the amount of {$450.00} on XXXX/XXXX/11. I disputed these charges. The company claimed that they could not provide me with any documentation supporting this claim and they refused to give me any contact information for the lenders in question. They had my bank account number, the last XXXX of my SSN, and my email address. I repeatedly stated that I did not take out any online payday loans, and after repeated requests for more information I was advised to do my own research. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 490\n", + " high_rank: 490\n", + " label: \"I really need help because I have been disputing a few accounts on my file for a few months and I am getting no where with the bureaus. I asked for their assistance and I did not receive it. I asked for them to put a temporary fraud alert on my file and they did n\\'t. I asked for the documents that were used to \\\" verify \\'\\' these accounts and they did not provide them. this is my last resort and I have already consulted an attorney in regards to bringing a lawsuit against them. why are they making this so difficult to remove these inaccuracies when that is their job to make sure this stuff is actually accurate? They did not investigate these accounts and if they did, they would have the documentation to validate these accounts. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 491\n", + " high_rank: 491\n", + " label: \"I previously held a revolving account with XXXX. In XXXX of 2013 the account was settled for a lesser amount, paid off, and then closed. This company is still reporting late payments although the account was paid and closed. It is not possible to be late on an account that does not even exist. I have filed four disputes to date. Every dispute finds that the reporting is inaccurate and the issue is fixed, until the following month. The company then reports that I am late as if the dispute and resolution never occurred. When I call the company directly I get continuously transferred and am forced to leave a message. I have never received a return call or any attempt to fix the situation directly from the company. This is harming my credit and effecting my chance to purchase a home. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 492\n", + " high_rank: 492\n", + " label: \"I paid this debt over the phone back in XXXX. ACH did n\\'t go through so she called back and did a Debit card payment for the full {$100.00}. Now I am receiving calls saying that this was never paid. I have provided proof and if this hits my credit I will sue this company. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 493\n", + " high_rank: 493\n", + " label: \"I paid the debt off and the collection company is still reporting as a collection account. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 494\n", + " high_rank: 494\n", + " label: \"I paid my Tax Lien that was filed by the state of California and the lien has been released for several years now. I contacted the state office and asked them how to remove the lien of my credit but they keep referring me to the XXXX credit bureaus. I ha e filed a disput with all XXXX credit reporting agencies several time but they will not remove the released lien. The credit agencies keep telling I have to contact the state. I feel like I \\'m going in circles and can not find a solution. Please helpThank you, XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 495\n", + " high_rank: 495\n", + " label: \"I noticed that a credit card company reported my account on my credit report, even though I am only an authorized user. This is a violation of the FCRA and I respectfully request that you remove this listing immediately. According to section 603 of the FCRA, only information on credit issued to a consumer is allowed. If you are an authorized user, you do not fall under these categories, you are not responsible for the debt and did not receive credit. An authorized user does n\\'t have credit on this account and it \\'s only the signor that is responsible. So, in essence, if an account on which you are an authorized user shows up on your report, it would be someone else \\'s credit ( the signor on the account ). \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 496\n", + " high_rank: 496\n", + " label: \"I noticed a collection on my credit report I did not recall or remember. I sent them XXXX letters and they just simply sent me a response stating I owe them the debt. Tried calling and the number was disconnected. Tried disputing with the credit bureaus and having little luck there. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 497\n", + " high_rank: 497\n", + " label: \"I never received payday loan and collection will not remove from credit report. The original disagreement was over 7 years ago. Collection agency is reporting it as new debt and did not send a notice before putting it on my credit reports so i could dispute it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 498\n", + " high_rank: 498\n", + " label: \"I never received any communication regarding the debt. Had I been informed of the debt it would have been taken care of. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 499\n", + " high_rank: 499\n", + " label: \"I never had any agreement with XXXX XXXX XXXX ; I have reported this to XXXX with no resolve. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 500\n", + " high_rank: 500\n", + " label: \"I never did this program and never received money from a loan or supplies to take these classes. They filed a lien against me and never served me papers so they violated my rights by not allowing me notice to defend myself in a court of law. Also who received the money from this loan? This is the XXXX XXXX and it is a fraud program that is why I never enrolled. Please put a stop to these illegal actions of falsifying court records saying they served me. I would like proof of who signed those papers please. Thank you for your help this is very disturbing! And is showing up on my credit that is how I found out about it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 501\n", + " high_rank: 501\n", + " label: \"I married my wife and took all the proper documents down to child support agency in XXXX, WI they are still trying to enforce I owe for our children each month, and then put it on my credit report, as if I do n\\'t take care of mine! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 502\n", + " high_rank: 502\n", + " label: \"I just checked my personal credit report, just discovered an unauthorized and fraudulent credit inquiry made by XXXX on or about XXXX/XXXX/14 on TRANSUNION. I did not authorized anyone employed by this company or at this company or TRANSUNION to make any inquiry or inquiries and view or show my credit report to anyone, person, company, entity, business, co, corp or similar. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof Bearing my Signature or Request in Writing that I authorized them to view my credit report, then I am demanding that TRANSUNION remove the unauthorized and fraudulent hard credit inquiry immediately from my TRANSUNION credit file. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 503\n", + " high_rank: 503\n", + " label: \"I initiated a dispute with all three credit bureaus regarding XXXX XXXX credit card account XXXX. The investigation came back as verified, however I did not ask for verification that the account was mine, I asked the CRA to verify the date of first delinquency being that there is conflicting information for this account as to when the first delinquency occurred ( see attached report ). This account is approximately 7 years old and should be deleted from my credit file. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 504\n", + " high_rank: 504\n", + " label: \"I initiated a dispute of highly inaccurate information on my credit report on XXXX XXXX, 2015. Since then I have sent over XXXX letters to the credit bureaus to have them do their role and investigate and remove these inaccurate accounts. Nothing has been done and they claim that they verified the following accounts. I know this is a lie, because I am the alleged debtor and the debtor has n\\'t even verified with me that the debt is properly validated. Pursuant to the Fair Credit Reporting Act the credit bureaus must verify with the furnisher of information on record. This has not been done. Please assist me because my family and I are trying to achieve the american dream of home ownership and the credit bureaus lack of response and irresponsibility is keeping my family from achieving this. The following below are the account numbers that are in question. I have also included the last XXXX letters that have been sent over. XXXX XXXX / XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 505\n", + " high_rank: 505\n", + " label: \"I initiated a credit dispute with the XXXX credit reporting agencies on late payment remarks that are inaccurate. Also I did contact the creditors and they ran in investigation and sent me letters stating that I was not late. I have sent this to the credit bureaus and they refuse to do their jobs. I \\'m just trying to get this rectified so I can purchase a new home for my family. I have made countless attempts and Do n\\'t know what to do. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 506\n", + " high_rank: 506\n", + " label: \"I hired a law firm in XXXX 2013 because XXXX was going outside the parameters of their contract and was committing deceptive trade. The supporting documentation is attached that I have tried to work with XXXX and my attorney has also tried to work with XXXX to correct the issues they are reporting. Essentially XXXX has a glitch in their website and they are not processing payments in a timely fashion and then reporting them as past due although the payments are made prior to being 30 days over the due date. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 507\n", + " high_rank: 507\n", + " label: \"I have written, called the collection agencies requesting verification of this \\\" debt they are reporting on my credit bureaus as belonging to me \\'\\' But, they keep giving me the round around and can not provide me with proof of the authenticity of this debt. I have already written, called, to no avail. I\\'v requested verification of this account confirming that is my debt or they need to remove this collection account from my credit reports. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 508\n", + " high_rank: 508\n", + " label: \"I have written to all XXXX credit report agencies and to XXXX XXXX over 90 days ago regarding a credit card issued by them that is currently been reported on my credit report. I am still waiting to get a respond from them. I need this to be removed from my report because of the negative impact it is having on my report. In my letter to XXXX I asked them to provide me with a proof that I open this account. I have not receive a respond from them. I need this item to be removed from my report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 509\n", + " high_rank: 509\n", + " label: \"I have tried to offer a fair settlement to this account based on what I could afford. They are really mean. They refuse to even discuss it. They yell at you on the phone and the last girl said she was going to tell them to take legal action even though the debt is old and out of statute. Bottom line, they refuse to work with consumers. They would rather get nothing and continue to hurt consumer credit if you can not afford to pay them the full amounnt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 510\n", + " high_rank: 510\n", + " label: \"I have tried numerous times to have my creditors review and update my credit information to no avail. I printed out all XXXX credit bureaus, credit reports and I \\'ve also sent the disputes trying to update all my information and as of now my credit report is still the same I paid off all of my credit cards with revolving interest and the majority of my accounts with a large balance and I still have a low score. I \\'m currently in the process of purchasing a home but I can not purchase my home with my credit score being so low. I sold my previous home in order to pay off all pending loans and credit card balances and no change as of yet. Please help!!!! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 511\n", + " high_rank: 511\n", + " label: \"I have told them on XXXX other occasion to please stop calling my job. They have called again. They also will constantly call my cell number and not leave a message. I will sue next time I receive a call at my job. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 512\n", + " high_rank: 512\n", + " label: \"I have the credit bureaus to remove the citizens bank students loan off of my credit report and they refused I stated to them that I do not owe any money \\'s to citizens bank for a student loan which.have been verified by XXXX that I do not owe them any Money and they still have it on my credit report as well as money they alleging say I received from the bank on account I do not have \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 513\n", + " high_rank: 513\n", + " label: \"I have some unauthorized inquiries on my credit report from companies trying to run my credit without my consent and it has drastically hurt my credit scores. I would like these inquiries removed immediately. I should n\\'t have any inquiries on my file at all. I filed a fraud Identity theft report in XXXX 2014 and sent all my documentation to the credit bureaus and they still have allowed this to happen. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 514\n", + " high_rank: 514\n", + " label: \"I have settled with XXXX XXXX XXXX over 5 years ago to an amount that was less than owed to them. They have received payments up to the total settled. XXXX XXXX XXXX never sent me a letter stating that the account was settled. I do n\\'t know why they keep these figures on my report. I have contacted them on many occasions and they are ignoring my requests. As far as I can say, I have fulfilled the terms of the agreement. They say that the person working the arrangements, XXXX, does n\\'t work there anymore. How is that my fault if the employee handling the account is gone. This does n\\'t speak were highly of a multimillion dollars corporation.In the meantime they are messing up my credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 515\n", + " high_rank: 515\n", + " label: \"I have sent several requests to Experian requesting an investigation of my accounts. It has been months and I still have not received a response to my concerns. The only thing I have received is some automated rejection letter stating that they wo n\\'t do anything to help me. This has to be a violation of my rights. I feel like I \\'ve already wasted so much time just trying to get Experian to look at the errors on my credit report and I \\'m so frustrated that Experian is intentionally not responding to my inquiries. I need to have this issue resolved immediately. There are many things I need to do with my life and they all involve my credit. But I am not able to move forward all because of this credit bureau! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 516\n", + " high_rank: 516\n", + " label: \"I have sent numerous emails pertaining to a Timeshare that I did not sign up for, I believe an ex-friend of mine, used my ID an obtained this credit along with other creditors. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 517\n", + " high_rank: 517\n", + " label: \"I have sent letters to this collection agency to respond and send me proof of my debt, I have had the mortgage lending company to reach out to this company and no one responded at all. If it is in fact my debt, I will pay it but if I can not get proof it was my debt it should not be on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 518\n", + " high_rank: 518\n", + " label: \"I have repeated asked the Debtor to provide proof ( by way of the original bill ) of this debt - both on my own and through your agency. The collection company has put this collection on my credit report without verifying to me that it is a debt. That was a ludicrous move because they were far likely to get paid ( if the bill is even legitimate ) had the only reported IF I did n\\'t pay. Now, regardless of the outcome, what is the incentive - it is still on my credit. I read complaint after complaint about these people and there is no one that does anything about it. Shame on everyone involved. Putting this bill, without an proof, on a credit report for a alleged bill I owe back to 2009 is extortion. Shame!! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 519\n", + " high_rank: 519\n", + " label: \"I have received several calls to collect a debt. I would be fine paying the bill if the person on the other line had n\\'t called me offensive names and threatened to sue me. When asked to speak with her supervisor she has been belligerent and rude. I am uncomfortable receiving calls from this company. They have called me several times a day for the last three weeks. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 520\n", + " high_rank: 520\n", + " label: \"I have received debt collection notices from a number of agencies for a credit card debt that I do n\\'t owe. I have sent inquiries regarding documentation connected with this debt and have been ignored several times which prompted a new collection agency to contact me regarding this debt despite assurances from some of the agencies that contacted me earlier that I was billed in error ( different middle name ) and they would resolve the matter. The latest collection agency only gave me the option of filing an identity theft complaint form despite my informing them that this is n\\'t the case! I wish to make a formal complaint to all of the associated parties and the original company that issued the debt notice. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 521\n", + " high_rank: 521\n", + " label: \"I have received a credit card application in my XXXX year old \\'s name, XXXX XXXX XXXX, what do I do? My purse was stolen from my vehicle 2013 including my and children \\'s social security cards. Nothing came of it until this. Help me with my next step please! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 522\n", + " high_rank: 522\n", + " label: \"I have received a collection letter from this company and have not had XXXX XXXX XXXX since 2002. 13 years ago. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 523\n", + " high_rank: 523\n", + " label: \"I have reached out to the company. However, they never responded. Unfortunately, I was the victim of identity theft. I have done everything required of me by law to dispute the fraudulent items on my credit report. I sent a letter to \\\" Sun Trust \\'\\' on XX/XX/2014 via XXXX certified mail. The company refuses to honor my rights under the FDCPA & the FCRA as a victim of identity theft to remove the fraudulent inquiry that was submitted without my knowledge, consent and/or authorization. Please find attached the notice that was sent out along with the attached certified receipt. Information can be tracked online using referenced information. Thank you for you time and attention regarding the matter. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 524\n", + " high_rank: 524\n", + " label: \"I have previously notified the credit bureaus this is a result of fraud and sent the police report. I am very upset this is still on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 525\n", + " high_rank: 525\n", + " label: \"I have not received any mail or calls from the lender since XX/XX/XXXX when it was charged off my account. Then yesterday a collection company called my cosigner and asked for a payment of {$4000.00} toward a debt from XX/XX/XXXX of {$14000.00}. The collection company also told her that by paying {$4000.00} her financial responsibility as a cosigner would be removed. I have not received any notice of right to dispute, nor was it mentioned in my call today. As far as I was concerned this account was charged off and it does n\\'t even appear on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 526\n", + " high_rank: 526\n", + " label: \"I have not received a new credit card with a chip by the XXXX/XXXX/2015 deadline. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 527\n", + " high_rank: 527\n", + " label: \"I have not authorized a series of inquiries that are showing up on my Credit report and am disputing them. All the listed companies that have requested a copy of my credit report on the letter attached do NOT HAVE my written authorization to view my Credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 528\n", + " high_rank: 528\n", + " label: \"I have never lived on XXXX in XXXX or XXXX in XXXX, that should appear on XXXX XXXX report. How could you confuse XXXX completely different SSN and DOB and foul up the information? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 529\n", + " high_rank: 529\n", + " label: \"I have neither claimed or denied the debt. I asked for verification and they claim they had mailed it out over a week ago. I have not received anything in the mail. Now they are calling my work office main line which is totally unacceptable since I told them they could reach me threw my cell. I have not received any new calls on my cell from this company and now I am taking legal action to get these calls to stop at work. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 530\n", + " high_rank: 530\n", + " label: \"I have multiple accounts on my credit report that are reporting incorrectly. They were opened fraudulently with my social security number, my name ( wrong middle name ) and an ID from Pennsylvania with the wrong address and a photo that is not mine. None of the companies agree that this debt is not mine and most of the fraudulent files are reporting to all XXXX credit reporting agencies. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 531\n", + " high_rank: 531\n", + " label: \"I have just received a copy of my credit report and it continues to show information that is incorrect. I have never used the name XXXX XXXX, I was born XXXX XXXX and then my mother added her maiden name to my last name, changing it to XXXX XXXX. I need that name removed from my record as it is wrong. The only XXXX names I have used are : XXXX XXXX XXXX, there is an account on my record that does not belong to me. There are XXXX XXXX cards on my account. The XXXX card, account number : XXXX, that was opened in XXXX, 2007, does not belong to me. I believe this account may belong to my mother, but it is not mine and therefore, it needs to be removed from my record. My financial record is regularly confused with my mother \\'s, XXXX XXXX, and my sister \\'s, XXXX XXXX, therefore I would like a note placed on my record that states that caution must be taken when adding information to my record due to family with similar names and addresses. I also need the credit reporting company to remove the old phone numbers from my record, as some belonged to me in the past, but not all of them, some belonged to my sister and mother. My number is XXXX XXXX XXXX XXXX and all those other numbers, either do not belong to me, or are outdated. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 532\n", + " high_rank: 532\n", + " label: \"I have informed collector of my new mailing address but yet collector still send collection letter/notices to my old address which my sister live. Collector seems to use the mailing to old address for important documents/court order to which I did not received and fail to report and result in a default judgement. I have letter written to inform collector with settlement check which the cashed and acknowledgement of my new resident/mailing address. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 533\n", + " high_rank: 533\n", + " label: \"I have information that is on my credit report this does not belong to me ... the address XXXX XXXX XXXX XXXX, MD XXXX and several accounts XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX, XXXX These accounts need to be removed asap I have filed police and ftc reports regarding this issue. Police Reporto Report number : XXXX Officer Name : XXXX XXXX XXXX # XXXX XXXX police department \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 534\n", + " high_rank: 534\n", + " label: \"I have filed several disputes with the all three of the CRA \\'s and have also disputed directly with XXXX in SD in regards to XXXX credit lines with them. This account has been re-aged and XXXX XXXX reports that the information remains correct and verified. I do not appreciate this practice and it can be viewed as unethical and perhaps this is not the XXXX time this has occurred.. All XXXX credit bureaus report a different age of these accounts. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 535\n", + " high_rank: 535\n", + " label: \"I have disputed this entry for more than 2 years now. Experian, XXXX refuse to remove this entry even after I sent them evidence that this account should be deleted. XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 536\n", + " high_rank: 536\n", + " label: \"I have disputed this collection before and it was removed from my credit report. Now it is back and they are sending me letters trying to collect a debt I do not owe. This account does not belong to me. I have never had an account with this Creditor. I am requesting that it be removed from my credit report. If you fail to remove it, you are required by law to provide proof that the debt is mine. Please see the attached document and the comments. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 537\n", + " high_rank: 537\n", + " label: \"I have disputed this account more than several times, then had to take it upon myself to contact the creditor and obtain the history which still is not correctly reporting on my credit. I do not know how these agencies go about receiving a dispute and complete a full investigation as nothing has been addressed or even verified. This agency still continues to report late payments on my mortgage in 2014 which is NOT accurate on my end and the creditor. Please see attached and help. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 538\n", + " high_rank: 538\n", + " label: \"I have disputed several times several public records listed on my personal credit file with Equifax. There are inaccurate remarks and even duplication \\'s. I ca n\\'t get anywhere with this agency. Please help as they are listing # XXXX tax lien for {$80000.00}, # XXXX tax lien again for {$80000.00}, # XXXX {$1700.00} and # XXXX tax lien XXXX I do not owe any tax liens and these are a mistakes listed. Please help \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 539\n", + " high_rank: 539\n", + " label: \"I have disputed a XXXX XXXX credit card a few times with all XXXX credit bureau and all XXXX claim XXXX XXXX says the account is mine. When I call XXXX XXXX, they tell me that they have no record of any account with my social security number. They tell me that I should dispute the item on my reports, which of course, I have. I do not know what to do. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 540\n", + " high_rank: 540\n", + " label: \"I have contacted this collection agency more then once and told them not to call my place of employment. They call my job everyday and leave messages such as if he does n\\'t call us by XXXX we will send legal paperwork to his job. Futhrrmore they are calling my family members saying I \\'m in trouble and need his phone number and last they made threats to me for example they say do you know where your daughter XXXX is I said why then they said you better check on her. I mean really come on and I also get a call from a private number they hang up just to get my voice mail saying that I will be receiving legal paperwork from my local county and you need to call up to make sure you address has not changed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 541\n", + " high_rank: 541\n", + " label: \"I have contacted all three credit reporting companies, because I received a letter from XXXX XXXX XXXX ( who claimed to have bought a debt relating to me from a third party ). I have continuously stated that this debt is not mine both to XXXX and to the credit reporting agencies. XXXX \\'s letter notified me that the statute of limitation HAS EXPIRED, and they will contact the credit agencies to remove this debt from my credit report. However, the debt still remains on my report although the statute of limitation has expired. This debt was never mine to begin with, and I even went to court, and it was disposed of by the judge over 3-4 years ago because XXXX \\'s attorneys could n\\'t offer any proof. If you take a look at my supporting documents ( my letter to the credit agency and XXXX \\'s letter to me - attached ), it is officially from XXXX ; however, the credit agencies \\\" claim \\'\\' that when they contacted XXXX, that they were told that this debt is mine -- obviously because XXXX wants money, and rather than the credit agencies doing their jobs, in terms of accuracy, they are failing to do so and being ignorant of my side of the story. This debt is not mine, and the credit agencies need to read the official letter sent to me by XXXX. This is harassment on the part of XXXX if they are indeed stating this debt is accurate, when their own letter states that the statute of limitation has expired and even went further to state that they will contact the credit agencies to remove. Please assist in getting this \\\" inaccurate \\'\\' and \\\" expired SOL \\'\\' information from XXXX off my credit report. Many thanks, XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 542\n", + " high_rank: 542\n", + " label: \"I have come across an item on my credit report that does not belong to me. An account was opened fraudulently without any acknowledgement ; In other words this account was not opened with my authority or consent and I am unaware of this account ; the balance reported or am I responsible for any debts occurred on this account. Please provide me with the application for service agreement verifying my authorization of the account in question. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 543\n", + " high_rank: 543\n", + " label: \"I have called and spoken to approximately XXXX people at XXXX to dispute an account from them that is listed on my credit report through them. It states that I closed the account and it went to collections, and that I still owe {$270.00}. I have never closed my account with them, the account number listed is not even an account number that they have. They have confirmed orally to me that I do not owe them any money, and have an active open account. They will not remove it because they tell me that they did not report it. It clearly shows that XXXX reported it though. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 544\n", + " high_rank: 544\n", + " label: \"I have been working with my creditor XXXX credit union regarding my credit card account showing that i am 60 days late. They have sent documentation as well as tried to correct the mistakes on my credit report. I have also sent in this information and the credit agency continues to report the late payments. They have prevented me from getting housing because these late payments are showing incorrectly, and they will not accept the documentation that myself and the creditor are trying to submit. My next step is to sue the agency because they will not correct this information and this documentation has been submitted to them on numerous occasions since XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 545\n", + " high_rank: 545\n", + " label: \"I have been paying my mortgage to in PITI for years. My monthly Mortgage ( PITI ) has been XXXX the past 2 years. It is my right as a mortgagee to pay any escrow shortage rather than accept any rate increase. The Principle and Interest amount is fixed and is only subject to amortization.The only change in amount due is based on an Insurance increase or a tax increase. If either or both should happen, it is the mortgage company responsibility to notify me of an rate change. They have not. If there is an anticipated shortage in the escrow the mortgage bank by law is required to notify me of the shortage. Then I have the option to send a check for the shortage amount or accept a rate increase. I have always sent in any needed escrow shortage and reject a payment increase. Wells Fargo is attempting to take away my option by forcing me to accept a payment increase. They have not sent me any escrow shortage notice. My principle and interest payment remain fix. Wells Fargo is now taking my monthly payments hostage and not applying it to the principle and interest and sending me late notices and threatening me with foreclosure. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 546\n", + " high_rank: 546\n", + " label: \"I have been on the phone with Rush Card for 2 weeks now about my balance being at XXXX instead of XXXX and my card being used when I was n\\'t using it. I tried to call and the phone is being hung up or not answer. I have been on the phone today for XXXX hours trying to see why my card is deactivated. I got told the system was down, they sent me a new card in which I have n\\'t received, and the next XXXX yelled at me and now as I type I am on hold again and it had been XXXX mimutes. They are not giving any answers about this and all I want is my money. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 547\n", + " high_rank: 547\n", + " label: \"I have been notified by XXXX XXXX XXXX that my balance is being provided to all major credit bureaus but the account balance is not being updated. I have not been able to pay on this account due to inaccurate balancing updates. I have attached documentation that the balance should be {$960.00} so that I can begin letting my credit union make payments as they did on my behalf. But I find it unfair to do this and the credit bureaus are not doing their part to update the balance. XXXX XXXX XXXX said it was fine to have the credit union mail payments to the original creditor as which would notify them of the payments received as which, XXXX would then in return notify the credit bureaus. There are old debt ( not that I am admitting to these debts ) that has exceeded the time limit but yet displayed on my credit file. For example, XXXX XXXX XXXX expired XXXX 2016 but still displaying on all credit files. Whenever I disputed a debt, I always said \\\" it \\'s not my debt \\'\\' because of the laws to restart the count, but the credit bureaus restarted the counts ( review my credit files, you will see ). I also disputed the \\\" suffix \\'\\' on my name with XXXX in Report Number : XXXX because I am not a male and never had \\\" XXXX \\'\\' on my name. This is yet to be corrected because I have not received an updated report to reflect this. See attached that reflects this name. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 548\n", + " high_rank: 548\n", + " label: \"I have been a XXXX resident since 2006. As a result of a mortgage interest statement, the state of XXXX determined that I must have earned XXXX. revenue. My accountant and I responded and the state determined that no other action was required. However, a lien was already placed on me and I can not get it removed. Included is all of my documentation. I have divorce documents showing ex wife \\'s ownership of home in question. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 549\n", + " high_rank: 549\n", + " label: \"I have attempted to contact the company to clear this debt and gotten no response. I believe it has been cleared. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 550\n", + " high_rank: 550\n", + " label: \"I have an eviction on my record from XXXX XXXX Apartments in XXXX XXXX XXXX, Utah. XXXX Apartments filed a retaliatory eviction against me. We went to court and settled that I would pay the remaining rent balance and not post anything online and move out at the end of XXXX 2015. I complied with everything that was agreed upon in court and in return they was supposed to give me neutral renters history. However after paying the balance which was agreed upon XXXX XXXX Apartments made extra demands for money that was not part of the settlement and have issued an eviction on my record. XXXX XXXX Apartment not only filed the illegal eviction but attempted to extort more money from me because of my military status and fear that an eviction would negatively affect my career. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 551\n", + " high_rank: 551\n", + " label: \"I have an account from XXXX Account number ending in XXXX in which they had issued me a XXXX ( see attached file ) and cancelled the debt. I am requesting to have the account removed from my Credit History and all Credit Reports or identified a s resolved and closed account so as not to adversely affect my Credit Score. I can be reach via e-mail at XXXXXXXXXXXX or called at XXXXBest regardsXXXX XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 552\n", + " high_rank: 552\n", + " label: \"I have all these hard credit inquiries on my credit report which I did not approve. How can I get these removed? they all happened on XXXX XXXX, XXXX please help me remove these from my report? XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 553\n", + " high_rank: 553\n", + " label: \"I have a good solid contract and the buyer has already been pre-approved for the loan. The bank will not consider the short sale. Also, when I phoned the bank regarding foreclosure alternatives, it was relayed to me that my only recourse was to do a short sale. No one ever informed me about being able to apply for a loan modification. I had to go to an outside source to learn about this particular foreclosure alternative. I am trying my hardest to get this done. At this point I am desperate for assistance and I am reaching out to you as a consumer for help. I feel as if the lender and/or their representative did not do what the government says, which is provide alternatives to me as a homeowner. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 554\n", + " high_rank: 554\n", + " label: \"I have a few XXXX credit card account \\'s with my wife, however, there is an individual past due XXXX account listed on my credit report, as an individual account. I have never had an individual account with XXXX. I have asked for copies of documents, to no avail. This is not my account. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 555\n", + " high_rank: 555\n", + " label: \"I have a debt collection company calling my employer. I just reported XXXX company maybe a month ago and they stopped and clearly gave my information over to another company since they could no longer call my employer. I need this to stop permanently. I ca n\\'t have these sorts of calls coming into my work office. My employer \\'s phone number is not my phone number, which means they \\'re knowingly contacting me at work. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 556\n", + " high_rank: 556\n", + " label: \"I have a XXXX XXXX on my and my husband credit I have called them I get transferred over and over spent hours on the phone just for them to tell me they will send me a bill to show me what it is for but it never comes. So it is on our credit as part of my bankruptcy when this was paid in full we were with this company for years. When I first went to XXXX years ago they told me my husband and son had the same name so my sons up grade got added to our account by mistake. The point is it is affecting my credit and I want it taken off.This is showing on all three bureaus on mine and my husband. I have no documents due to the fact it is so old. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 557\n", + " high_rank: 557\n", + " label: \"I have a Judgement reporting on my credit report that is completely inaccurate. I have sent the credit bureaus multiple letters asking them to verify the accuracy and they claim they contacted the court however I sent the court a letter as well and they claim they do not verify anything with any credit reporting agency. The credit bureaus are falsifying their investigation results and lying to the consumers \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 558\n", + " high_rank: 558\n", + " label: \"I have XXXX broken apartment Lease agreements ( not mine ) from my ex husband being reported on my credit I have sent XXXX letters asking them to be removed ( first XXXX in XXXX 2015 then every 45 days following ) and sent attached copies of my divorce etc ... They refuse to investigate or contact the leasing company to verify this info so I am at a loss of where to turn ... .The leasing co are XXXX XXXX XXXX and XXXX in XXXX XXXX Texas \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 559\n", + " high_rank: 559\n", + " label: \"I have XXXX XXXX accts that have been sold to a XXXX party collection agency. Negatvies being reported by XXXX AND the new company ( XXXX XXXX ). so, instead of XXXX delinquent entry, all credit reports reflect XXXX delinquent entries. I feel this is a double jeopardy scenario. I do not feel that any of the XXXX major credit reporting bureaus have done anything to help me. they have attempted to pacify me with phone calls and offers of reduced rate credit monitoring services. they have done nothing to actually resolve my dispute up to and including investigation into my issue. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 560\n", + " high_rank: 560\n", + " label: \"I had the judgment for this debt vacated in 2011 against XXXX and now this new company is contacting me about the same thing. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 561\n", + " high_rank: 561\n", + " label: \"I had request a verification of the debt and the creditor has not done so. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 562\n", + " high_rank: 562\n", + " label: \"I had incurred a pay day loan 15 years ago in 2001 and I have n\\'t had a debt since. I filed bankruptcy and this debt was covered in the bankruptcy. However, this debt collector continues to send me letters and places numerous phone calls to my phone and I \\'ve asked them to seize. Firstly, the debt was over 15 years ago, and secondly they are not authorized to collect on this debt and thirdly this was dismissed in bankruptcy over 13 years ago. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 563\n", + " high_rank: 563\n", + " label: \"I had duplicate accounts in XXXX which shows the balance XXXX e.g. XXXX $ on a card that has {$4000.00} total. I erased the XXXX card and paid off the card since. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 564\n", + " high_rank: 564\n", + " label: \"I had an old dept. and a collection company bought the dept., I challenged them with a letter in accordance to fair credit Act which they had 30 days to respond under federal law and they had to remove it from my credit reports. They have not removed it and they have not responded. I tried contacting them but they are very rude and no resolve. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 565\n", + " high_rank: 565\n", + " label: \"I had an cellphone with XXXX wireless, I had to cancel contract after over 5 years of service due to job loss. At that time I had a bill of about XXXX. After almost 5 years, I did n\\'t think the cancellation fee applied to me. XXXX sought after debt collection agency pinnacles with XXXX account, ( 1 ) XXXX and ( 2 ) XXXX. I feel even if I cancelled my contract I do n\\'t owe those amount. I only had XXXX phone on the account. Now pinnacles has sold my information to another debt collection agency called XXXX. At this point I need them to give me proof I how I owe that much. If it ca n\\'t be satisfied, then it both pinnacles and XXXX needs to be removed off my XXXX credit reporting bureau asap. I will fax over all documents. Pinnacles account for both debt are the same with the change of at least XXXX character, as if they tried to create another account. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 566\n", + " high_rank: 566\n", + " label: \"I had a car loan with Santander Consumer USA. After paying for many years we requested the company repossess the vehicle. This was XX/XX/XXXX. At a later date we received a XX/XX/XXXX XXXX adding {$5100.00} to our XX/XX/XXXX income due to the amount of the loan adjusted off. Last month I received a XX/XX/XXXX XXXX for the SAME LOAN adding an additional {$4400.00} to my XX/XX/XXXX income for the SAME REASON FOR THE SAME LOAN. I do n\\'t think I should be charged twice for the same loan charge/write off!!!! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 567\n", + " high_rank: 567\n", + " label: \"I had XXXX rental properties trying to save them I filed a XX/XX/XXXXbkpt & XX/XX/XXXXbkpt to try to save my houses. I did not go through with either XXXX of them I paid {$150.00} for each bkpt the house in XX/XX/XXXX I lost the house & it went into foreclosure the attorney never showed up in court he took my money & run. I GOT HIM XXXX. In XX/XX/XXXX the house that has been going on for about 6 years I decided to claim bkpt again to try do a loan modification keep the house. I under stand that when you claim bkpt & you go thru with the program it goes on your credit report & I agree with that. But if you do not go through with it & it is dismissed I think it is a little bit of discrimination when you do not go through with it. That is my opinion. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 568\n", + " high_rank: 568\n", + " label: \"I got behind on my credit card and they call me up to 10 times a day even on Sundays. I told them to send me their information so I could send them a letter not to call me more than three times a day. I did not receive that information they continue to call me 10 times a day. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 569\n", + " high_rank: 569\n", + " label: \"I got a call form PayPal on XXXX different occasions saying I had outstanding balance. After calling back I found out that I have XXXX accounts neither XXXX was I aware were out there. My daughter opened them in my name. After she was in jail she admitted to me that she did this. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 570\n", + " high_rank: 570\n", + " label: \"I filed bankruptcy because I have XXXX and could not work anymore to afford the payments. I surrendered the vehicle and I was told that it would come off my credit. They told me that it would be removed and it has not. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 571\n", + " high_rank: 571\n", + " label: \"I file chapter XXXX bankruptcy on XX/XX/XXXX. It was dismiss on XX/XX/XXXX, the case was reinstated to a chapter XXXX on XX/XX/XXXX. My case was discharge on XX/XX/XXXX. I keep calling and mailing my bankruptcy case information to this company, and they failed or wo n\\'t updated my credit report with XXXX to reflect the correct information. This company just did a update as of XX/XX/XXXX to collect on this account still showing a open collection on XXXX and XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 572\n", + " high_rank: 572\n", + " label: \"I feel my credit scores should be a lot higher then they are.All payments have been on time, I have small balences on the credit cards that I have. The scorces do n\\'t match the numbers, can you look in to this? Over the last 3 yrs I have done a lot of work to get it right, the reports are great the numbers do n\\'t make since. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 573\n", + " high_rank: 573\n", + " label: \"I do not owe any credit card with this institution. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 574\n", + " high_rank: 574\n", + " label: \"I do not know if this is a legit debtor, I received an aggressive call asking me to pay. It appeared legit and thus I paid the attached charges in full \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 575\n", + " high_rank: 575\n", + " label: \"I do not agree with XXXX Chase accounts listed on my personal credit file. I prior put a complaint against this agency due to fraud our office and just because there was signed checks this agency stated they were validated. I would like to request again verification of last activity a payment was made and also copies of initial contracts verifying these accounts were personally guaranteed as I do not agree. This is now the second time requested and I have the right to request and receive. Chase # XXXXChase # XXXXChase # XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 576\n", + " high_rank: 576\n", + " label: \"I do n\\'t owe any money to XXXX XXXX XXXX 2014 paid for less than full Balance XXXX this information is not accrete please take this out from my Credit Score ASAP \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 577\n", + " high_rank: 577\n", + " label: \"I disputed this account with Commonwealth Financial Systems via certified return receipt letter ( attached ) on XX/XX/XXXX. The company has failed to verify the account belongs to me and I have no knowledge of this account. It has not been deleted from my credit reports. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 578\n", + " high_rank: 578\n", + " label: \"I disputed this Bankruptcy information previously and it could n\\'t be verified and was removed from my credit file, I see it has been added back on to my credit file. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 579\n", + " high_rank: 579\n", + " label: \"I disputed several things on my XXXX credit report and I am trying to make sure that they are removed from all credit bureaus. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 580\n", + " high_rank: 580\n", + " label: \"I dispute the validity of this debt. I do not believe I owe this debt for the following reason : The debt is too old and may be time barred. There has been no activity on this debt since 2007. I request written verification of this debt in the following form:1. I request the date of the last payment made on this debt. 2. I request any and all information pertaining to this debt including date of agreement. Until such verification is received you may not contact me in any form. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 581\n", + " high_rank: 581\n", + " label: \"I did not request or receive a loan from anyone. I have had no dealings with this company. I am being contacted by repeatedly by several different companies and each time the lender and collection name changes. I am not even sure how they got my information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 582\n", + " high_rank: 582\n", + " label: \"I did not recieve a notice to validate the debt. They are stilling trying to collect on it. That is a violation of the FDCPA and FCRa because they are also reporting it on my credit report. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 583\n", + " high_rank: 583\n", + " label: \"I did not incur this debt and when does the statue of limitation ends? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 584\n", + " high_rank: 584\n", + " label: \"I did not authorize an inquiry from this particular company, nor have I signed and/or endorsed any contract, application ( s ), etc., that created any inquiries with the listed corporation, agency, and or company .Someone has unlawfully used my name, unambiguous information and endorsements that attempted to established the herein accounts without my, knowledge, authorization, consent and or signature. Possible endorsements were used on commercial applications without my consent, permission and or knowledge. There being no permissible purpose to obtain my Consumer Credit file, I request the unauthorized inquiry into my file be removed from all the Consumer Reporting Agencies immediately and a copy of such deletion mailed to me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 585\n", + " high_rank: 585\n", + " label: \"I demanded verification/validation of account status, amount, original creditor and copy of the contract. I demanded removal of unauthorized inquiries on my report. they refuse to validate/verify accounts and inquiries and they refuse to delete incorrect information and are causing great harm to my ability to obtain credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 586\n", + " high_rank: 586\n", + " label: \"I contacted the collection agency and we agreed to settle the account at {$250.00}. However, they tried to force me into giving them my banking information which I did not feel comfortable doing specially because they refused to send me a letter confirming the agreement of {$250.00} before making the payment. I sent them a check and a note indication that the check of {$250.00} was for full and final settlement of the account. I also put on the front and back of the check that this payment was for full and final payment of account ending in XXXX which they cashed. I then called the collection agency to request a settled in full letter and they refused and was asked by the manager XXXX XXXX to pay an additional {$200.00} to settle my account. I can provide proof that the check was cashed on XXXX/XXXX/15. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 587\n", + " high_rank: 587\n", + " label: \"I checked my credit report and a new address appears there. I have not moved I reside in XXXX, NJ the new address that shows is XXXX XXXX XXXX XXXX, XXXX XXXX. I have never lived there and I have never used this address. I still reside at my XXXX, NJ address. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 588\n", + " high_rank: 588\n", + " label: \"I can not get in touch with a human to express my problem. Out of frustration I am filing a complaint about the XXXX credit reporting agencies. I have several creditors showing up as bad debt and they have been closed for over 7 years. This situation is really messing me up at repairing my credit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 589\n", + " high_rank: 589\n", + " label: \"I call then send back requested information but they still refuse to correct and/or remove incorrect info therefore when I apply for credit, I \\'m denied because the fraud alert placed due to identity thief requires that they call me before issuing any type of credit in my name \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 590\n", + " high_rank: 590\n", + " label: \"I ca n\\'t get my report it asks questions that I do n\\'t know the answer to? I should know where I \\'ve had a loan! right? I already had someone get electric in my name.I had to do police report and all kinds of headaches. I went without power for 3weeks from this deal and even had to deal with social services trying to charge me for neglect of my children. I ca n\\'t get a cell phone, a used car, a credit card, not a thing please help me I do n\\'t know what to do.I ca n\\'t even get my report to dispute. I \\'m XXXX old have XXXX and I \\'ve worked my XXXX off for everything I have.What should I do? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 591\n", + " high_rank: 591\n", + " label: \"I bought an online subscription to XXXX for approximately {$120.00} dollars. I had signed up with my personal email account which I had a non-subscription account with the same website for previously. In XXXX \\'s system my subscription was then associated with the former/old username not my new username/account. When I contacted XXXX Customer Support they were to contact me back in 48 hours and did not. I then called their Customer Service and was told I would not be issued a refund and that this problem was \\\" impossible. \\'\\' I then indicated that I would dispute the transaction with my credit card company, American Express. I opened the credit dispute with American Express eventually providing them with the Customer Support attempts at contact I had with XXXX and a Screen shot of my account from XXXX. This screen shot showed that I could not check my messages as my paid subscription was not recognized and for which American Express had record of withdrawal from my account for the transaction. I then called several separate divisions of American Express Customer Service and told them that was all the information that I had and that they could either be diligent & vigilant in attending to this matter and getting me my money that I was defrauded back or not. I was also told that I could not further escalate my concerns when multiple managers in their Customer Service divisions lied and told me they could not put me in contact with the corporate office. I then found their corporate office number online and called the following day. I received a call back and explained the issue and again stipulated that American Express should follow through on my legitimate transaction dispute and resolve the matter in a timely fashion. I received a call back a few days subsequent to that call from another person in their corporate office. I missed this call due to work and when I called back I left a voicemail explaining my reason for calling and requesting callback. Yesterday marked a full calendar week and several business days between their last call back and my last request for a call back. I left a voicemail largely stipulating the same information as my XXXX voicemail and this has not been returned. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 592\n", + " high_rank: 592\n", + " label: \"I believe that the XXXX credit bureaus are grading my credit report in a discriminatory fashion and allowing companies to add negative items that are inaccurate and are not being properly varified by the credit bureaus. Which has caused my credit score and report to suffer as a result. And, cause me hardship in my personal finances. Which has allowed lenders to disqualify me for different loan products, such as credit cards and home loans. So basically, it \\'s not lenders being discriminatory, it \\'s the credit bureaus. Because the are not making companies report adequate evidence to prove the the validity of the claims, which they would not do to other Americans consumers. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 593\n", + " high_rank: 593\n", + " label: \"I believe I have Genesis loans from XXXX Colleges and would like to know if they were included in the CFPB settlement. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 594\n", + " high_rank: 594\n", + " label: \"I attempted to shop for a good rate for a car in XXXX of 2014. I went to XXXX XXXX dealership and I received XXXX hard inquiries on my credit report and my score dropped between XXXX points!. I applied for rental housing and was denied based on my credit. How can I get these inquiries immediately removed from my credit report? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 595\n", + " high_rank: 595\n", + " label: \"I attempted to buy a car from XXXX XXXX in XXXX XXXX and the manager insisted he had to run a credit check which is XXXX hard inquiry. I told him not to run a credit report for a loan on a whole lot of companies because hard inquiries are hard to get rid of when you they are on your credit report. I gave him permission to ask for a loan from XXXX XXXX and XXXX XXXX which are XXXX auto loan companies I am currently using to pay off car loans and are in good standing. Well, needless to say he ran my report XXXX times lowering my score of XXXX to mid XXXX. I would like these hard inquiries removed from my credit report so I can purchase a new car or buy a home. I had a good score now I have a bad one. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 596\n", + " high_rank: 596\n", + " label: \"I applied for credit with XXXX XXXX expecting them to run my credit with XXXX for financing. They initiated XXXX inquiries to obtain financing for the vehicle. This was not disclosed to me. It has damaged my credit for over a year now. Businesses should not be allowed to do this without first advising consumers what they are going to do and what the impact of that can be on them. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 597\n", + " high_rank: 597\n", + " label: \"I applied for a credit card and was denied. I \\'m told my credit reports areblocked. I ca n\\'t get a answer from the credit Co \\'s. Who placed the block? It was n\\'t there in XX/XX/XXXX when a leased a car, and can I remove a blockPlease adviseThank youXXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 598\n", + " high_rank: 598\n", + " label: \"I am very upset and disappointed in the rewards change of my XXXX credit card. The free night benefit removal has been a disappointment. In addition, I just the annual fee charged to my account. {$75.00}. I believe it is very bad practice to suddenly change the terms of card ; In addition the old terms were advertised in marketing materials and in statements, website. To add insult to injury, I just found out that US Bank and XXXX XXXX have been selectively issuing free night certificates to select customers. I would like to also received the free night certificate. Thanks, XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 599\n", + " high_rank: 599\n", + " label: \"I am responding to a letter I received from Experian regarding a request made on my credit file. Based on my understanding of the letter, it looks like Experian is refusing to complete my request because they do n\\'t think I wrote my dispute letter. I would like Experian to know that I did in-fact send them a letter disputing information on my credit report. I also give Experian my full consent to continue with the investigation of my accounts per the dispute letter I wrote to them. I researched a dispute letter online and just used that to manifest my dispute. Although I carefully reviewed Experian \\'s website to figure out exactly what I needed to do to file a dispute, I suppose it is possible that I may have missed something. I would truly appreciate Experian providing me with an explanation of my rights specifically pertaining to how I am allowed to dispute information on my credit report. I need to know what made my letter \\\" suspicious \\'\\' and why Experian would think that someone else would want to have my credit report investigated. Does n\\'t investigating my credit only really benefit me? I would like Experian to let me know if I can re-write my letter and if Experian could provide me with an example of a letter that would be acceptable to them since the one I wrote is not good enough. I work very hard all day and can not afford to take time off to dispute my accounts. I also do not have the money to be represented by an attorney or any other agency. Would completing a dispute over the phone provide me with the same benefits as the letter? And if the results would be the same, why not just accept my letter? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 600\n", + " high_rank: 600\n", + " label: \"I am requesting that TransUnion immediately delete the address listed on my credit file as reported and previously listed on the TransUnion Credit File : XXXX XXXX XXXX, XXXX, WA XXXX. DATE REPORTED : XXXX/XXXX/2015 \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 601\n", + " high_rank: 601\n", + " label: \"I am requesting that TransUnion immediately delete the address listed on my credit file as reported and previously listed on the TransUnion Credit File : XXXX XXXX XXXX XXXX XXXX, XXXX, WA XXXX. DATE REPORTED : XXXX/XXXX/2015 \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 602\n", + " high_rank: 602\n", + " label: \"I am looking at my credit report and my name is not fully my legal name. I would like to update that information as soon as possible. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 603\n", + " high_rank: 603\n", + " label: \"I am having issues with the incompetency of the credit bureaus with my investigation and reinvestigation of my inaccurate information on my credit report. Not only have they failed to provide a proper investigation, but they have failed to provide the documentation to prove the method of verification and documentation used to \\\" verify \\'\\' my accounts, as allowed to me under sections 1681 and 609 of the FCRA. Congressional opinion in many lawsuits, specifically XXXX vs. XXXX, states that the law is verify clear in that once I notify the bureaus that I have inaccurate information on my credit report, they must investigate the accounts AND they have to verify the information received by the data furnishers. Once I notify them that the results are still not correct, they are in a different place than before and MUST reinvestigate and go beyond the original source of information. The effect these negative inaccuracies are having on my credit far outweigh any cost associated with investigating these accounts, and Congress states that I am in the right when I state that there must be a reinvestigation. Sending me a letter stating that no reinvestigation will be taken unless I provide further information from data furnishers, courts, etc. and that I must resolve the issue with the creditors myself is a clear violation under the FCRA. Stating that their organization is not a mediator, will not provide any documentation used to verify said documents or refusing to reinvestigate are further violations, as they bear a GRAVE RESPONSIBILITY to ascertain that these accounts and all other information on my credit report is accurate. They have failed to do so. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 604\n", + " high_rank: 604\n", + " label: \"I am filing this complaint because XXXX has ignored my request to provide me with the documents that their company has on file that was used to verify these accounts I disputed. Since it has gone well past the 30 day time frame and the company can not verify these accounts, under Section 611 ( 5 ) ( A ) of the FCRA-they are required to, \\\" ... promptly delete all information which can not be verified. \\'\\' that I have disputed. Please resolve this manner as soon as possible. Thank you \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 605\n", + " high_rank: 605\n", + " label: \"I am filing this complaint because I think what Experian is doing to me is wrong, unethical and may be against the law. A letter was mailed to Experian on or around [ XXXX/XXXX/15 ]. I clearly stated my concerns to them regarding inaccurate, questionable or unverifiable information listed on my credit report. I also provided a clear copy of my ID, proof of my social security number and a proof of my current mailing address. On [ XXXX/XXXX/15 ] I received a notice from Experian stating the following : \\'\\' We received a suspicious request in the mail regarding your personal credit report and determined that it was not sent by you. Suspicious requests are reviewed by Experian security personnel who work regularly with law enforcement officials and regulatory agencies to identify fraudulent and deceptive correspondence purporting to originate from consumers. In an effort to safeguard your personal credit information from fraud, we will not be initiating any disputes based on the suspicious correspondence. Experian will apply this same policy to any future suspicious requests that we receive regarding your personal credit information, but we will not send additional notices to you of suspicious correspondence. If you believe that information in your personal credit report is inaccurate or incomplete, please visit our website at experian.com/validate dispute or call us at XXXX XXXX XXXX XXXX XXXX to speak directly to an Experian consumer assistance representative. \\\" However, an Experian confirmation number was not even provided on this notice. I can not imagine what could have possibly been \\\" suspicious \\'\\' about my correspondence to Experian. I should not have to spend endless hours on phone calling the credit bureau back and forth attempting to resolve the issues on my credit report! I am filing this complaint because Experian will not respond to any letters that I am sending in. I \\'m sure this could be a violation of my rights and Experian should not be deliberately disregarding my concerns \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 606\n", + " high_rank: 606\n", + " label: \"I am filing this complaint because I think what Experian is doing to me is wrong, unethical and may be against the law. A letter was mailed to Experian on or around XXXX/XXXX/15. I clearly stated my concerns to them regarding inaccurate, questionable or unverifiable information listed on my credit report. I also provided a clear copy of my ID, proof of my social security number and a proof of my current mailing address. On XXXX/XXXX/15 I received a notice from Experian stating the following : We received a suspicious request in the mail regarding your personal credit report and determined that it was not sent by you. Suspicious requests are reviewed by Experian security personnel who work regularly with law enforcement officials and regulatory agencies to identify fraudulent and deceptive correspondence purporting to originate from consumers. In an effort to safeguard your personal credit information from fraud, we will not be initiating any disputes based on the suspicious correspondence. Experian will apply this same policy to any future suspicious requests that we receive regarding your personal credit information, but we will not send additional notices to you of suspicious correspondence. If you believe that information in your personal credit report is inaccurate or incomplete, please visit our website at experian.com/validate dispute or call us at XXXX ( XXXX ) XXXX to speak directly to an Experian consumer assistance representative. However, an Experian confirmation number was not even provided on this notice. I can not imagine what could have possibly been \\\" suspicious \\'\\' about my correspondence to Experian. I should not have to spend endless hours on phone calling the credit bureau back and forth attempting to resolve the issues on my credit report! I am filing this complaint because Experian will not respond to any letters that I am sending in. I \\'m sure this could be a violation of my rights and Experian should not be deliberately disregarding my concerns! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 607\n", + " high_rank: 607\n", + " label: \"I am experiencing issues involving my identification which has been used in the opening of medical accounts that have been appearing on my credit reports since 2013. Over the past ( 3 ) years I have asked that the ( XXXX ) bureaus assist me with acquiring verification from this company so that I can move forward in the removal of the entry from my credit history. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 608\n", + " high_rank: 608\n", + " label: \"I am currently divorced and the primary custodian of my XXXX daughters. I am in the process of losing our home due to specific credit problems that are preventing me from securing a refinance loan and lowering our monthly living expenses. During my marriage, there were several accounts opened fraudulently using my social security number, unbeknownst to me, by my then wife. I have attempted to reach these creditors and never received call backs. They have been charged off and are now affecting myself and my daughters instead of the person that originally opened these accounts. I am asking for help in removing these particular accounts from my credit report so that I may secure our home and future necessities. Thank you \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 609\n", + " high_rank: 609\n", + " label: \"I am continuously contacted and also at my mothers phone in regards to some type of loan I took out on XXXX/XXXX/2011 onine and never paid. The collection agency High Point Asset, knew a great deal about me, down to my bank, however I never heard of this loan company XXXX XXXX XXXX, and never took out a loan. Then even knew my bank, I went back to my statements to confirm this, and I have not received in a direct deposits on a loan from this company. I explained, to them if that \\'s the case, why did n\\'t they collect ... I do n\\'t have any stop pays on my account back then, to stop them from collecting money owed ... I told them to prove to me, that i took this loan, because I did not ... they sent a letter in the mail and continue to call from XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 610\n", + " high_rank: 610\n", + " label: \"I am being billed for an item I have no knowledge of, until I received a letter from the collection agency. I was out of the country for a period of time and I believe someone that resided with me at the time, created an account with out of my knowledge.attached is my credit report \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 611\n", + " high_rank: 611\n", + " label: \"I already paid this debit prior with another credit agency, But now the debt has changed names and been sent to someone else to deal with even though it was already paid. I sent letter by certified mail to collector back on XXXX/XXXX/2015 asking for validation of proof that I owe debt from previous credit agency which was signed and received on their end on XXXX/XXXX/2015 and informed them of the FDCPA and that they are given 30 days to get this information out to me or else they would need to stop any debt collection from me. Now we sit at XXXX/XXXX/2015 and no information as of yet. I contact the collector and was informed that on XXXX/XXXX/2015 they mailed out information claiming validation of my debt and that the process took longer than 30 days to collect and that I should receive it in the mail in a few days. In the meantime the collector is filing default on me regarding this debt stating that I owe it which I do not and with that certified letter I sent was all the proof they needed to see that it has been paid for but regardless they want to still pursue to collect. They have violated the FDCPA. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 612\n", + " high_rank: 612\n", + " label: \"I XXXX are requesting as of XXXX/XXXX/2016 a temporary credit freeze be place on my credit file at XXXX XXXX and trans union and all other national credit reporting agency. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 613\n", + " high_rank: 613\n", + " label: \"I XXXX are requesting as of XXXX/XXXX/2016 a temporary credit freeze be place on my credit file at Equifax XXXX and XXXX and all other national credit reporting agency. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 614\n", + " high_rank: 614\n", + " label: \"I XXXX XXXX DISPUTE THE CHARGES HAD BEEN MADE BECAUSE I WAS INCARCERATED AND I DISPUTE THE CHARGES HAD BEEN MADE BECAUSE I WAS INCARCERATED AND BEING DETAINED I HAVE THE RIGHT TO REFUSE EXTRA LATE FEES OR CHARGES I CAN SEND A LETTER OF THE PROOF OF DETENTION AND INCARCERATION I AM NOT DELINQUENT FOR MY BILLS AND I AM A VICTIM OF IDENTITY THEFT AND I WANT TO SETTLE MY ACCOUNT. BEING DETAINED I HAVE THE RIGHT TO REFUSE EXTRA LATE FEES OR CHARGES I CAN SEND A LETTER OF THE PROOF OF DETENTION AND INCARCERATION I AM NOT DELINQUENT FOR MY BILLS AND I AM A VICTIM OF IDENTITY THEFT AND I WANT TO SETTLE MY ACCOUNT. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 615\n", + " high_rank: 615\n", + " label: \"I WENT TO XXXX AS SUGGESTED BY XXXX FICO TEAM AND THIS WEBSITE. I ORDERED ALL XXXX CREDIT REPORTS. I RECEIVED THE FIRST REPORT FROM XXXX AND SAVED IT. I THEN DISPUTED AN INCORRECT ISSUE AND RE-SAVED. I WAS THEN PREVENTED FROM PROCEEDING WITH THE REST OF THE REPORTING. I WAS, HOWEVER ABLE TO NAVIGATE ANYWHERE ELSE (PURCHASE CREDIT PROTECTION OR ORDER A FICO SCORE). THERE IS NO PERSONNEL ANSWERING THEIR LINE. I THEN CONTACTED THEM VIA THE ONLINE \\\"CONTACT US\\\", BUT HAVE NO WAY TO GO BACK TO MY REPORT. THIS IS UNACCEPTABLE.\"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 616\n", + " high_rank: 616\n", + " label: \"I SENT A NOTICE OF DISPUTE WELL OVER 60 DAYS AGO. DEMANDING PROOF THAT I OWE THIS DEBT. I HAVE NOT HAD ANY RESPONSE FROM CREDITOR SHOWING ON OWE THIS DEBT BY MAIL OR PHONE CALL FROM CREDITOR \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 617\n", + " high_rank: 617\n", + " label: \"I REQUEST MY FREE ANNUAL CREDIT REPORT FROM XXXX AND I PUT ALL MY INFORMATION AND AT THE FINAL STEP WHEN I DESIRE VIEW AND PRINT IT THE PAGE DID NOT GIVE NOTHING, I ENTER AGAIN AND THEY SAID ME THAT I ALREADY HAVE RECEIVED MY CREDIT REPORT AND NOW I SHOULD BE PAID FOR A COPY. PLEASE, HELP ME \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 618\n", + " high_rank: 618\n", + " label: \"I HAVE NO IDEA WHAT THESE CHARGES ARE FOR. I HAD XXXX SERVICE IN XXXX 2009. MY PLAN WAS UNLIMITED TALK TEXT ETC. AROUND XXXX XXXX 2009 THEY BILLED ME FOR SOME XXXX CALLS CONCERNING A COMPANY NAMED XXXX XXXX??? WHICH I NEVER HEARD OF AND THE AMOUNT OF THE FRAUDULENT CHARGES WAS ALMOST {$300.00}. I DISPUTED THESE CHARGES VEHEMENTLY BUT THEY WOULD NOT REMOVE THEM AND DID NOT PERFORM ANY TYPE OF INVESTIGATION. I CANCELED MY SERVICE AND I DO N\\'T KNOW HOW OR WHY THEY ARE REPORTING THIS AMOUNT AS MY DEBT. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 619\n", + " high_rank: 619\n", + " label: \"I HAVE ASKED FOR VERIFICATION THAT THIS DEBT BELONGS TO ME AND IT HAS NOT BEEN PROVIDED. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 620\n", + " high_rank: 620\n", + " label: \"I DISPUTE THE CHARGES HAD BEEN MADE BECAUSE I WAS INCARCERATED AND BEING DETAINED I HAVE THE RIGHT TO REFUSE EXTRA LATE FEES OR CHARGES I CAN SEND A LETTER OF THE PROOF OF DETENTION AND INCARCERATION I AM NOT DELINQUENT FOR MY BILLS AND I AM A VICTIM OF IDENTITY THEFT AND I WANT TO SETTLE MY ACCOUNT. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 621\n", + " high_rank: 621\n", + " label: \"I \\'ve recently obtained a copy of my credit report from your agency, and found the following error on my credit report in the name of XXXX and XXXX XXXX ( Judgement ) Please note that before making this request, I sent letters to the organizations responsible to determine their validity. Although I sent these letters return receipt requested and have proof that my letters were received more than 30 days ago, they have failed to respond. Therefore, I ask for your assistance in resolving this matter. In accordance with the Fair Credit Reporting Act, I respectfully ask you to investigate my claim and, if after your investigation, you find my claim to be valid and accurate, I ask that you immediately delete the unauthorized inquiries outlined above. If your investigation determines the inquiry was authorized, I respectfully request you forward to me a description of the procedure used to determine this within 15 days of the completion of your re-investigation. Thank you for your consideration and cooperation and if you have any questions concerning this matter I can be reached at ( XXXX ) XXXX. I \\'m reminding you that you are required to conduct the subject investigation in a timely manner. The Fair Credit Reporting Act states that the investigation should be completed within 30 days. Please send me a copy of my updated credit report to the address listed above following the completion of your investigation. Please also provide me with any documentation that you received in connection with the above investigation including, but not limited to, the telephone and/or contact information of the inquirers, any and all responses provided by the furnishers of information, and the specific action taken as a result of those responses. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 622\n", + " high_rank: 622\n", + " label: \"I \\'ve called the company and explained, that I \\'m trying to buy a house. Also I \\'ve been on-time for a while can you please help and take some lates off my account the company refused my request. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 623\n", + " high_rank: 623\n", + " label: \"I \\'ve been waiting since XXXX XXXX for the state of Alabama to investigate a tax lien against me. The lien was for unpaid state income taxes in XXXX, which was not valid as a I was a Louisiana resident. Finally, the state \\'s taxpayer advocacy office provided me with the attached letter saying I did not owe the state and that the lien should be rescinded. I \\'ve disputed the lien on my credit report for all XXXX bureaus, providing the letter from the state as proof, but the bureaus will not remove the item. I am seeking to have the lien completely removed. I \\'m hoping this can be done soon, as I need to help my mom buy a car. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 624\n", + " high_rank: 624\n", + " label: \"I \\'ve been paying on this student loan ( private ) that had gone into collections for almost two years. While working with a credit repair agancey they told me that the $ XXXX that I owed and had been paying on was not being reported to my credit report and would remain in collections until I paid in full or settled. Also their interest rate was 4 % on the loan amount per day! so only half of my monthly payment was going toward the loan. I find that it \\'s totally illegal to hold someone hostage like this with such a huge amount ESPECIALLY when they are paying on time and have been. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 625\n", + " high_rank: 625\n", + " label: \"I \\'m writing this complaint because I have an account on my credit file that is not correct and should not be reporting. The collection agency XXXX XXXX is reporting an account for XXXX for the amount {$590.00}. I do not owe this amount to XXXX before leaving all accounts was paid in full. This account is reporting to be open in XXXX or XXXX, so this is why I do not have any receipt to show my zero balance because I was not aware they would just not in XXXX put this false information on my credit file. Please I \\'m requesting this account be removed and I also have disputed this account multiple time with the credit bureaus and they are not doing a proper investigation. Just because they can verify information does not prove I owe any account balance. What I do not understand why they choose to wait until this year to report this inaccurate information. Also I have had this account deleted before from another collection agency. I file a complaint previous with all XXXX credit bureaus on XXXX XXXX, XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 626\n", + " high_rank: 626\n", + " label: \"I \\'m still own my home and am current on my payments. I tried to dispute my Mortgage payments for 2015, but all XXXX credit bureaus denied my dispute, because I filed bankruptcy. XXXX XXXX refuses to recognize that my house was not included in the bankruptcy, because I did not REAFFIRM the debt. I RETAINED my house instead. Under Chapter XXXX. See, 15 USC & 1681i of the Fair Credit Reporting Act. I \\'m allowed to report my payments once a year to all XXXX Credit Bureaus. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 627\n", + " high_rank: 627\n", + " label: \"I \\'m really running out of patience and I just do n\\'t know what to do at this point! I have used a credit repair company and now am disputing myself with the XXXX bureaus. I have accounts on my file that continuously come back as \\\" verified \\'\\' and yet I have never received any documents, I have never received a description of their procedures in detail which I have requested and I have never received any documentation proving ownership of any of the accounts. How can they say that these accounts are verified when they do n\\'t have any documentation? How can they just take the creditors at their word? Do n\\'t they have a responsibility to actually do a real investigation? I understand that they only have a few minutes to do an investigation, but that \\'s not my problem. That \\'s a problem on their end and i should n\\'t be a victim of their money-making scheme. I already made a complaint with the TX Attorney General so each of the XXXX bureaus will be receiving either a call or letter and will have to explain themselves. Who did they speak with at the creditors? What date? what was their name? What documentation was used? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 628\n", + " high_rank: 628\n", + " label: \"I \\'m attempting to apply for a job that requires a credit check. I receive information that not only am I being sued but the court date is next week XXXX XXXX, 2015. Apparently the lawsuit was sent to an address that I have n\\'t lived in for years. I never received a call or an email from the company about any pending litigation. I guess if the person living at that address not found me to give the information, the court date would have came and went without me even knowing about it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 629\n", + " high_rank: 629\n", + " label: \"Hunter Warfield is trying to collect {$150.00} for carpet replacement. I have asked Hunter Warfield to abide by the Texas law which states, \\\" The landlord may not charge you for normal wear and tear on the premises and may only charge for actual abnormal damage. \\'\\' My use of the carpet did not go beyond normal wear and tear. I have disputed the validity of this collection several times, Hunter Warfield was unable to provide any proof such as pictures. The XXXX XXXX no longer owns XXXX XXXX XXXX. To this date, the collection remains on my credit report, and Hunter Warfield refuses to delete the account from my credit report, despite several goodwill efforts. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 630\n", + " high_rank: 630\n", + " label: \"Hi. Sadly- my house was illegally forclosed on in 2010. We were made to file bankruptcy. I should not have to suffer because XXXX XXXX stole my house. Can you please help me take XXXX XXXX off my credit report and my bankruptcy? .... The very least that could have been done when they were n\\'t made to follow through with the indepent forclosure review. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 631\n", + " high_rank: 631\n", + " label: \"Hi, I have asked to not be contacted at work because I am not allowed to receive personal phone calls or visits of any kind. The person I spoke with on the phone today stated that they would call my work even though I agreed to use their website to set up a payment plan. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 632\n", + " high_rank: 632\n", + " label: \"Hello, these credit cards debts i owed are over 7 years ago, when i was young n stupid make mistake to let my friend borrowed. If an collection debts is over 7 years, it should n\\'t exist on your credit report any more right? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 633\n", + " high_rank: 633\n", + " label: \"Hello, So a couple days ago I had gone in to apply for an apartment and received a notice back saying I could not be accepted because I have a consumer frozen file. I have gone into the XXXX credit bureau and spoke with all three credit bureaus on the phone and was told because I have absolutely no credit there is no files that come up under my name. I have received the document the apartment is seeing and it does show that I have a consumer freeze. Please help me as soon as possible so I can get into my new apartment. If there is a freeze I would like it removed immediately! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 634\n", + " high_rank: 634\n", + " label: \"Hello : I am writing this letter because there is a big mistake on my credit report. I am specifically asking for a legal debt validation made pursuant to 15 USC 1692g Sec. 809 ( b ) of the FDCPA for the following account : XXXX {$1500.00} CollectionsThe collection company has failed to legally verify and validate this debt despite my many attempts to contact them. The FCRA requires you to verify the validity of the item within 30 days. If the validity can not be verified, you are obligated by law to remove the item and prevent them from re-inserting this item. There is a clear case of unverified debt here, and I urge you to remove this item before I am forced to take legal action. In the event that you can not verify the item pursuant to the FCRA, and you continue to list the disputed item on my credit report I will find it necessary to sue you for actual damages and declaratory relief under the FCRA. According to this regulation, I may sue you in any qualified state or federal court, including small claims court in my area. While I prefer not to litigate, I will use the courts as needed to enforce my rights under the FCRA. I look forward to a speedy resolution of this matter. XXXX XXXXSSN : XXXXDOB : XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 635\n", + " high_rank: 635\n", + " label: \"Have letter dated from XXXX/XXXX/2015 from debt that is over 10 years old and has had many CFPB complaints filed on it before, removed from credit reports several years ago, now getting threats to collect. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 636\n", + " high_rank: 636\n", + " label: \"Greetings, I have been receiving anonymous calls and voicemails with my personal information being left on public voicemails from XXXX and XXXX. The calls have averaged over XXXX a day. I called the XXXX number name of the point of contact : XXXX XXXX ; and someone named XXXX answered and asked for my name, then provided me with the last XXXX digits of my SSN without verifying my identify. I advised him he should verify my identify before providing the last XXXX digits of my SSN. He then said what would someone do with your name and last XXXX digit of my SSN and became irate. I ended the call by stating I will report him to the CFPB. I have never received any correspondence in the mail for a debt owed and if received and legitimate will pay the debt. They are in violation of the Fair Debt Collection Practices Act by not providing me their actual company name, address, and business licensing number. They refuse to mail any correspondence for the debt owed and this is against the law. I am unsure if this is a scam or identify theft ; but all claims have to be legitimized! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 637\n", + " high_rank: 637\n", + " label: \"Grant & Webber has not corrected their report to the major credit reporting agencies that their claim to me for medical costs has be settled circa 30 days ago. This is the only ding on my credit and is a false report until corrected by Grant & Webber. The false statement is that I owe anything at all, since this was settled by my lawyer and hence Grant & Webber is attempting to claim or says they are owed monies they are not owed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 638\n", + " high_rank: 638\n", + " label: \"For the past three years I have pleaded with the top XXXX CRA to correct the record. Derogortory Information on my credit report is both FALSE and/or dated 15 to 20 years ago. I have not been able to obtain a credit card for over 15 years because of this. What \\'s worst, credit collection agencies are now filing judgements XX/XX/XXXX and XX/XX/XXXX for disputed items dating back 16 years. People who work as public and or government agencies are being targeted as easy targets. Many times it \\'s easier to simply give in to the false XXXX dollar judgement than fight and retain an attorney at a much higher cost. This happened numerous times. The new weapon by collection agencies in XXXX is the XXXX XXXX. They strong arm public employees and abuse their office. The CFPB needs to step in and sanction the reporting agencies and heavy fine the abusive collection agencies. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 639\n", + " high_rank: 639\n", + " label: \"For the past several years I have received notices from this company regarding a debt that is no longer valid. The statute of limitations has run out on this debt. The last time I used this card was over 6-7 years ago, and the tast payment made was over 5 years ago. Last night a woman, collection rep. called me at XXXX. I told her that the statute of limitations had run out on this debt,. She said I was still obligated to pay. That is false. I also told her to cease and desist. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 640\n", + " high_rank: 640\n", + " label: \"First I never received a notice of rights to dispute. The only letter I received said that I owed a debt and I could no longer write checks at all and had to pay this debt plus a fee. The address they had was incorrect and not where I live and I have not lived at the address in over 4 years. In order to be able to write checks, I sent in a post dated check to this company. I post dated the check to reflect XX/XX/XXXX. The company cashed this check XX/XX/XXXX. Due to this I received about {$200.00} in over draft fee \\'s because of them posting a post dated check. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 641\n", + " high_rank: 641\n", + " label: \"FORECLOSURE SALE DATE : The letter sent to me for my last HAMP request was dated XXXX XXXX, 2016. As per treasury guidelines, the homeowner ( thats me ) must be allowed to file an appeal within 30 days. Which means that the lender can not foreclose on the property during that 30 days appeals period. The declined letter sent to me correctly states this rule. Currently, the foreclosure date is set for XXXX XXXX, 2016. During my conversations with the trustee, and Rushmore agents I have repeatedly asked that foreclosure date should be set in accordance with the treasury guidelines and what is written in the declined letter. However, the date is still set for XXXX XXXX, 2016. I respectfully ask that they suspend the foreclosure activity and consider this information provided to in this appeal. My lender is forcing me into foreclosure on my HOME without reviewing my loan for HAMP. I have requested numerous time that my loan be reviewed for HAMP Loan modification. My plea had fallen on deaf ears. I believe that they have no intention of doing a HAMP modification for my loan. I have been stuck in the mortgage XXXX for the past 4 years. They are just running out the clock on me while adding all kind of fees to the arrears that could be avoided. FOR THE PAST 4 YEARS, ALL I AM GETTING IS RUN AROUND AND NO HELP. in the most recent review, they calculated my financials completely wrong. I make nowhere near the money they claim. Based in wrong income ( {$11000.00} + ) they denied a HAMP modification. I am attaching my most recent and current financial information with this package. I am hoping that you can get it done correctly. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 642\n", + " high_rank: 642\n", + " label: \"Experian is not responding to my requests to investigate and remove accounts from my credit report that were opened fraudulently. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 643\n", + " high_rank: 643\n", + " label: \"Equifax is not responding to my requests to investigate and remove accounts from my credit report that do not belong to me. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 644\n", + " high_rank: 644\n", + " label: \"Entered a judgement against on a debt in which the statute of limitations has expired. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 645\n", + " high_rank: 645\n", + " label: \"EQUIFAXXXXX XXXXSTATUS SHOWING COLLECTION/CHARGE OFF ( SHOULD BE UNKNOWN ) ACCOUNT WAS INCLUDED IN CHAPTER XXXX BANKRUPTCY FILED XX/XX/2015 \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 646\n", + " high_rank: 646\n", + " label: \"EQUIFAXXXXX XXXXACCOUNT SHOWING COLLECTION/ CHARGE OFF ( SHOULD BE UNKNOWN ) ACCOUNT WAS INCLUDED IN CHAPTER XXXX BANKRUPTCY FILED XX/XX/2015 \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 647\n", + " high_rank: 647\n", + " label: \"Disputed final bill amount with XXXX XXXX, for a service activated in XXXX 2015 and cancelled at the end of XXXX 2015 for not providing the services that were promised. This was simply \\'bait and switch \\' tactic!! Contacted XXXX on social media to settle the account. Also sent email to technician that set up the account. XXXX sent a general response but no follow up. Supplied evidence to XXXX collection agency on XXXX XXXX with email/ complaint on social media etc. advising them the account was in dispute. Supplied evidence of dispute to XXXX collection agency on XXXX XXXX. Agreeing to pay what I considered a fair amount for services used. That was rejected. This is unfair and I should not be penalized for services not provided. I am still willing to resolve this matter. I will not pay for the services not provided to me. Thank you \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 648\n", + " high_rank: 648\n", + " label: \"Dispute letter along with original documents from the Creditor was mailed in regarding the incorrect balance of XXXX. I do not owe the amount shown on my credit report. I also attached a letter explain the breakdown of the incorrect amount. The credit bureau has failed to insert a proper investigation for the item. The reporting agency only went by what the creditor responded. The documents clearly states the balance is incorrect. Attached in the packet was the original agreement, copy of payment summaries as well. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 649\n", + " high_rank: 649\n", + " label: \"Did not recieve dummy letter which allows me to ask them to validate the accounts. That is a violation of the FDCPA. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 650\n", + " high_rank: 650\n", + " label: \"Debt was the result of an identity fraud from a bank \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 651\n", + " high_rank: 651\n", + " label: \"Debt was settled in dispute resolution and I have copy of signed settlement agreement and both the cleared personal checks that were used to pay full settlement agreement amount and the lawsuit was dismissed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 652\n", + " high_rank: 652\n", + " label: \"Debt was paid XXXX/XXXX/2014, Was promise to remove/delete file from XXXX credit bureaus \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 653\n", + " high_rank: 653\n", + " label: \"Debt validation was requested but collection agency never responded to request. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 654\n", + " high_rank: 654\n", + " label: \"Debt never validated. Settled with original creditor. This creditor presenting false and misleading information to credit bureaus damaging access to credit markets. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 655\n", + " high_rank: 655\n", + " label: \"Dear Sir/Madam, After reviewing this document : XXXX and being a victim of Identity Theft myself, I thought I would take some of the proactive steps to research and resolve the situation. I am writing today to ask Scottrade Bank provide me with access to my account so I can review the alleged debts and balances. Furthermore, I would like Scottrade to confirm what amount if any debt they allege to own. Scottrade previously claimed that I owe them money, but will not let me access to account to see the specific details. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 656\n", + " high_rank: 656\n", + " label: \"Dear Madam/Sir : i will kindly appreciate very much to please to see the company respond on my submission number # XXXX. Please send me the respond of the company on line. Thank you. XXXX XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 657\n", + " high_rank: 657\n", + " label: \"Date of deliquency was XXXX XXXX, 2006, it has now been over 8 1/2 years and I should not be held to pay this and should be taken off my credit as a debit. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 658\n", + " high_rank: 658\n", + " label: \"Credit card company sold debt to collection agency that resulted from identity theft. I have mailed a copy of the identity theft report via certified mail to the company. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 659\n", + " high_rank: 659\n", + " label: \"Credit Bureaus failed to address score factor, which resulted in approving personal loan, credit card applications. Insist on reporting accounts as adverse or maybe considered negative. Inconsistency in credit scores. No justification received. Credit bureau data input does not warrant accounts being reported as adverse/considered negative. See attached for additional information. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 660\n", + " high_rank: 660\n", + " label: \"Continued to call during all hours of the night and repeatedly contacted on Sundays all day \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 661\n", + " high_rank: 661\n", + " label: \"Consistently calling me at work even though I told them that I can not take calls at work \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 662\n", + " high_rank: 662\n", + " label: \"Company keeps calling me at work and at home and NEVER identify themselves or company name. They leave leaving threatening messages for fraudulent debt. The message started with \\\" A complaint had been filed against you \\'\\' and that I \\\" and or my attorney need to call \\'\\'. \\'\\' They then threatened to contact my place of employment. I have not received anything in the mail in regard to this nor do I now owe, nor have I ever owed, any bills or other debts. You call the number back and get no information concerning true identity of company. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 663\n", + " high_rank: 663\n", + " label: \"Company has asked me for sources of income insisting on using student loan money to pay back loans. My understanding is that student loans are under federal jurisdiction and as per stipulations regarding students loans ; Money borrowed can not be used for purposes other than education. I do not believe it is right consciously knowing that it is not allowed that the company is suggesting using these tactics nor are the personnel qualified to make suggestions of that nature. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 664\n", + " high_rank: 664\n", + " label: \"Company garnished my bank account along with those that I was associated with even thought I was in a payment agreement with them and current on the payment agreement with no notice or attempt to renegotiate the agreement. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 665\n", + " high_rank: 665\n", + " label: \"Company claims to have a courier company to send me legal documents and are trying to serve me with papers. They are stating that I owe them {$1200.00}. A man named XXXX XXXX is calling me stating that I have to appear in court. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 666\n", + " high_rank: 666\n", + " label: \"Company claims to have a courier company to send me legal documents and are trying to serve me with papers. They are stating that I owe them XXXX. A man named XXXX XXXX is calling me stating that I have to appear in court. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 667\n", + " high_rank: 667\n", + " label: \"Collectors may NOT add interest, fees, expenses or charges of any kind to the original debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 668\n", + " high_rank: 668\n", + " label: \"Collection agent gave me a false court date to get me to pay an amount on a debt- harrasment \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 669\n", + " high_rank: 669\n", + " label: \"Collection Consultants is reporting a collection account on all XXXX credit bureaus illegally. I had a medical bill with a hospital. I had a payment plan with the hospital while I was investigating the charges. I had NEVER gotten a bill that I demanded. I do not believe I owe this. I disagree that I received some services or goods at the hospital. Neither did my insurance company. Nobody ( not the hospital or Collection Consultants ) has been able to provide to me an itemization of the total bill. When I questioned this the hospital sent the bill to Collection Consultants even though I was paying them. They just stopped sending bills then Collection Consultants sent me a letter demanding the payment in full. I called. I told them I was investigating the charges and that I needed them to send me a copy of their HIPPA compliant agreement with the hospital, a copy of their assignment, and an itemization of the bill including anything that I authorized. They never provided this information. They never validated the debt in accordance with the Fair Debt Collection Practices Act. I did pay them only because I did NOT want it to go on my credit and I was assured it would be removed. The representative said at the end of my XXXX payment plan it would be removed from my credit. This did not happen. They deceived me and did not validate it. They have XXXX things I have issue with. 1- I do not believe they followed HIPPA laws. 2- They have reported this to the bureaus when they did not have a legal right do so because they did not validate their legal right to when requested, 3- they used deceptive practices to collect the debt. They promised me it would be removed. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 670\n", + " high_rank: 670\n", + " label: \"Classification of multiple names is ridiculous. I was married. I have since divorced and no longer use his name. He is also deceased as of last year. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 671\n", + " high_rank: 671\n", + " label: \"Case numbers : XXXX need to know why my credit score dropped dramatically. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 672\n", + " high_rank: 672\n", + " label: \"COLLECTION AGENCY COUPLED WITH LAWFIRM VIOLATED FCRA, FDCPA, TCPA, SOL, PRIVACY AND CIVIL RIGHTS VIOLATIONS. SERVED ME AND SAID WILL SUE ME TOO ON BEHALF OF XXXX XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 673\n", + " high_rank: 673\n", + " label: \"COLLECTION AGENCIES KEPT CALLING AND TRYING TO SKIP TRACE MY BROTHER ETC IN VIOLATION OF FCRA, FDCPA, TCPA \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 674\n", + " high_rank: 674\n", + " label: \"By failing to adhere to both California law and the rules under CFPB, The party ( ies ) complained of in my initial complaint are not compliant with rules regarding dual tracking. The Parties are \\\" covered \\'\\' under both California Homeowner \\'s Bill of Rights and the CFPB \\'s strict guidelines. I have a valid and complete loan modification package that has been acknowledged as received and no notice of deficiency of documentation has been received by me. I just received another Notice of Trustee during the pendency of my application. The Parties have also failed to respond to the initial complaint with competent and reliable evidence that supports all facts contained within all recorded title documents that were used against my contract rights. Specifically, the assignment ( s ) of deed of trust to an un-verified entity, Notice of Default, Notice of Trustee Sale. No authenticated evidence has been offered by the offending Parties by any person with personal, first-hand knowledge of those facts. I am not in default to an unknown, un-authenticated party that is currently in my chain of title without competent evidence to support the beneficial interest. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 675\n", + " high_rank: 675\n", + " label: \"By failing to adhere to both California law and the rules under CFPB, The party ( ies ) complained of in my initial complaint are not compliant with rules regarding dual tracking. The Parties are \\\" covered \\'\\' under both California Homeowner \\'s Bill of Rights and the CFPB \\'s strict guidelines. I have a valid and complete loan modification package on XXXX XXXX, 2016 that has been acknowledged as received and no notice of deficiency of documentation has been received by me. I just received another Notice of Trustee during the pendency of my application. The Parties have also failed to respond to the initial complaint with competent and reliable evidence that supports all facts contained within all recorded title documents that were used against my contract rights. Specifically, the assignment ( s ) of deed of trust to an un-verified entity, Notice of Default, Notice of Trustee Sale. No authenticated evidence has been offered by the offending Parties by any person with personal, first-hand knowledge of those facts. I am not in default to an unknown, un-authenticated party that is currently in my chain of title without competent evidence to support the beneficial interest. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 676\n", + " high_rank: 676\n", + " label: \"Both equifax and XXXX have my account with XXXX listed has charged off or repossesed. My car I got through them was stolen on XXXX XXXX and I have the police report to prove it. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 677\n", + " high_rank: 677\n", + " label: \"Barclays closed my Wyndham Rewards card out of the blue. I had paid the annual fee of {$69.00} 2 months before the card was closed and now I can not reap the rewards of this annual-fee credit card. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 678\n", + " high_rank: 678\n", + " label: \"Background screening for lease on new house turned up someone else associated with my social scurity number on credit check. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 679\n", + " high_rank: 679\n", + " label: \"Around XXXX 2014 I applied for a loan with XXXX XXXX XXXX XXXX ( XXXX ). Unbeknownst to me over the next few months ( XXXX ) continued to request copies of my credit reports from the XXXX major credit reporting agencies through XXXX. Some of the request were days apart. Once I found out about the excessive credit inquiries I requested the credit reporting agencies to delete them. I also asked XXXX to have them deleted with negative results. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 680\n", + " high_rank: 680\n", + " label: \"Apparently XXXX of my girlfriend \\'s credit cards ( XXXX XXXX ) was added to my list of credit cards, though I do not have the card, I am not an authorized user, nor do I have any type of access to this account. The account has had XXXX late payments, which are showing up on my credit report and damaging my score. The account shows as open, but with XXXX balance and it states that the last time it reported was on XXXX XXXX, 2014. On the credit report, it also states my responsibility for the account is \\\" Terminated \\'\\'. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 681\n", + " high_rank: 681\n", + " label: \"An overdraft activity was happened because of the death of my family relative and his burial help. I called Bank of America ( BOA ) branch as well as internal recovery services, XXXX XXXX XXXX, TX XXXX about the issue and financial difficulty and request for corporation and help and after I paid full and my balance was {$0.00}. So, I received a letter for {$0.00} from BOA. Instead to receive money full they put negative remarks and comments in the XXXX. I requested them that they need to remove false/wrong/unjustified statement after they received full payment and the balance is {$0.00}. They need to fix the XXXX and make a correction in the account system that they already receive full payment. It is indicating that complete fraud and harassment attitude from the Bank od America. Please take a necessary action to safe my credit which is damaging form BOA blackmailing and poor services. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 682\n", + " high_rank: 682\n", + " label: \"Although I was only allowed to check XXXX statement in each category, almost all of the above apply. A debt that was satisfied in 2005 with proof from my credit union, they presented to the courts, continue to leave on public record, removed money from my bank account and told motor vehicles not to issue my registration ( although motor vehicle did cash my check ), Motor vehicle has not sent my registration. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 683\n", + " high_rank: 683\n", + " label: \"Also did not send me documents on validating the debt the name of creditor. I have asked them to cease and decist with calling my mother, my job, and also me. The number that keeps harassing me is XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 684\n", + " high_rank: 684\n", + " label: \"All XXXX credit bureaus show incorrect reporting of XXXX school loan debt. I resolved the issue with this debt holder. Originally I was not aware of the debt and never paid it. However the holder realized I \\'d not been fully informed and also realized under the student loans, I have discretionary forbearance of several months that I had not used, so they simply retroactively conveyed the forbearance and cleared up all past due issues, including any credit reporting claims. I spoke with them again and they ensured they will clear up on their end. I write this complain to ensure this process of clearing any false negative reporting on all XXXX is conclusively reversed and removed regarding all student loan and/or XXXX debt or any debt for that matter, as I \\'m current on any and all debts. Regards \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 685\n", + " high_rank: 685\n", + " label: \"All XXXX credit bureaus list XXXX state tax liens as active ; however these liens were both released by the state and I have a copy of the release documents from the state. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 686\n", + " high_rank: 686\n", + " label: \"All ( XXXX ) Credit Reporting Bureaus are reporting the closed XXXX Account as a Repossession. The fact of the matter is, I paid off the entirety of this loan in advance of the maturity date and I hold the title and lien release to the vehicle. No Repossession ever occurred yet after XXXX CFPB complaints with XXXX and these XXXX complaints - XXXX for each credit reporting bureaus, they can not accurately report the \\\" correct \\'\\' status and would rather ruin someone \\'s credit score than do their \\\" due diligence \\'\\' \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 687\n", + " high_rank: 687\n", + " label: \"Again, American Express ( Amex ) failed to follow their term in their letter dated XXXX/XXXX/2015 ( copy sent earlier ). All their past responses to this complaint are irresponsible. Therefore, I will continue to file this complaint until Amex becomes responsible and transfers the XXXX earned rewards points to my open Amex account. I am in full disagreement with Amex \\'s failure to transfer XXXX earned points from my closed Amex account # XXXX to my open Amex account # XXXX ( copies sent earlier ), because Amex stated in their XXXX/XXXX/2015 letter, \\\" that as per the MR Terms and Conditions if you cancel your enrollment in the program and do n\\'t keep open any American Express Cards, all points in your program account will be immediately forfeited \\'\\'. The key word in this quote is the word \\\" any \\'\\', which pertains to my open Amex account # XXXX. On XXXX/XXXX/2015 I advised Amex in my letter ( copy sent earlier ) of this open Amex account. Amex needs to transfer my earned XXXX points to my open Amex account # XXXX per their terms and conditions. If then they are not in compliance with Federal banking laws. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 688\n", + " high_rank: 688\n", + " label: \"Again did not recieve letter with rights to validate debt. Violates the FDCPA. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 689\n", + " high_rank: 689\n", + " label: \"After turning in my car, I received a bill that I did not recognize. I called FORD MOTOR company and they said it was for mileage. I offered to pay it on my XXXX credit card, and they said that they do not take XXXX. I made other arrangements to pay. They have been paid in FULL a few years ago and they are still reporting a collection on my credit report with this account being closed in 2009. I also made all the lease payments on time for 36 months due. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 690\n", + " high_rank: 690\n", + " label: \"After the past several years of XXXX, starting at the height of the subprime mortgage crisis, my wife and I have been through hell with our property in XXXX. Everything from a neighborhood turning into a criminal wasteland because of everyone walking away from their bad investments, to wasting our money on lawyers and loan mitigators, to our home eventually being foreclosed upon. Somehow the foreclosure was not the end of the story. A debt collector, Specialized Loan Services, has been attempting to collect a large sum of money from us. In short, we began with XXXX, ended up with XXXX XXXX XXXX, and now Specialized Loan Services ( although according to real estate records our home has been foreclosed upon ). Our problems started in XXXX while I was on XXXX. We walked away in XXXX due to a significant increase in crime in our once respectable condominium community ( and a 60 % drop in value of our property ), and rented a house in a safe neighborhood in XXXX. There was no way I \\'d leave my wife and daughter in such a failed and unsafe community that our XXXX neighborhood became. This year after returning from another XXXX, we learned our property was foreclosed upon around XXXX, and are still being hounded by the debt. This has severely impacted our credit reports and have further professional implications as well. I have n\\'t had time to tend to this problem until now. We need some help! Please let me know if you need further data. I have a tons of documentation that include the Trustees Deed of Sale. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 691\n", + " high_rank: 691\n", + " label: \"After submitting the request information at XXXX, each of the XXXX credit bureaus claimed they could not provide my reports. When I attempted to submit a comment/complaint, the site claimed it could n\\'t even accept a comment. This is a scam. I viewed my credit report at my credit union today and I KNOW what information they have. But in order to get a copy of the report, they want me to provide them with information I know they do not currently have. I am not willing to play that game. They owe me a copy by law. How can I force them to comply? \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 692\n", + " high_rank: 692\n", + " label: \"After recently pulling my own credit report, I found that XXXX XXXX Bank is showing I opened a credit card of {$250.00} with them in XXXX XXXX and charged off in XXXX XXXX. This is not true. It \\'s showing that I have a balance of {$380.00}. I want proof of this. If I did ever indeed have an account with them, I want documentation of the dates opened and charged off because I did not open or charge off any accounts during that time period. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 693\n", + " high_rank: 693\n", + " label: \"After receiving a debt that I knew nothing of on XXXX XXXX, I immediately had my credit reports pulled, and sent all XXXX credit bureaus certified dispute letters. I received confirmation back that all the items that I had disputed had been verified. I sent a second round of letters asking that I be provided with the names and numbers of whom they had validated the debts with. I myself sent a validation letter to XXXX of the creditors only to be told it was a mistake, and that a letter would be sent to all XXXX credit bureaus to have deleted. This was XXXX of the debts that they claimed they had investigated and had found it belonged to me. They have ignored all of my dispute letters, and refuse to remove debt that have not been validated. I have asked for proper paperwork demonstrating the agreement between me and these creditors. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 694\n", + " high_rank: 694\n", + " label: \"After calling, setting up a payment plan, and paying the balance off over the length of XXXX years this company called and requested additional fund be paid immediately or legal action would be taken. The owner of this account it XXXX and has XXXX. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 695\n", + " high_rank: 695\n", + " label: \"Additional documents attached to support complaints XXXX ; XXXX ; XXXX ; XXXX ; XXXX ; XXXX ; XXXX. Disparity in credit scores still continues. Key factors that adversely affected my credit scores. Serious delinquency, number of accounts with delinquencies, time on delinquency is too recent or unknown. A review of credits reports does not support these adverse comments. There no delinquencies. If there are no delinquencies time on delinquencies are null and void. Several accounts continue to be reported as and adverse accounts or accounts that may be negative. Information creditors are reporting to bureaus does not support adverse/accounts that may be considered negative. Several accounts have inserting bankruptcy comments, which I believe is the reason for reporting as adverse. Public record was a chapter XXXX bankruptcy which was dismissed in 2009. There were never any liens /liabilities against this file. These accounts were never included in bankruptcy. Information received from a creditor reveal that they throw out the high credit score and the low credit score, using the middle score. Based on their processing, I missed the cut off by XXXX points. Why do credits continue to use credit bureaus information as gospel?. Believe the creditor should communicate with customer before making any decision on an application. Creditor questioned why is there such disparity in my scores. scores. This question has been asked with responses from the credit bureaus. Why do the credit bureaus have such power to dictate who is credit worth or not. In response to my disputes, the end results are that information is accurate and will no longer investigate. Their re investigative results are verbatim Like they copied and pasted their results from previous investigative results. XXXX account show that records were updated based my dispute submitted over one year ago. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 696\n", + " high_rank: 696\n", + " label: \"Account is very old XXXX is past the statute of limitations please remove. I have an open active account that is in good standings with this same company. Remove this outdated item XXXX XXXX XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 697\n", + " high_rank: 697\n", + " label: \"Account is time barred. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 698\n", + " high_rank: 698\n", + " label: \"According to the Fair Debt Collection Practices Act ( FDCPA ), a company is required to verify a debt using documentation held within the businesses or their affiliates. I would like Scottrade Bank to provide verification of any debt that Scottrade Bank or their affiliates allege that I owe. According to the, Fair Debt Collection Practices Act ( FDCPA ), Scottrade Bank and their affiliates are required to provide this information promptly. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 699\n", + " high_rank: 699\n", + " label: \"ASSET ACCEPTANCE , LLC & MCM FINALLY SETTLED COMPLIANT, BUT FAILED TO ADD MONETARY GAIN. I HAVE ADDED XXXX XXXX TO COMPLIANT ALONG WITH TCPA! SEE ATTACHED ) PHONE RECORDS ... .THET ARE VIOLATORS OF SEVERAL NEW CHARGES, PLEAE REVIEW! \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 700\n", + " high_rank: 700\n", + " label: \"A pervious acquaintance made a purchase from XXXX XXXX on credit. A collection company is now trying to collect the debt from me. I am not a party to the debt, nor have I ever been. I requested verification of said debt, and they sent a copy of a statement in which I am not listed. They refuse to stop persuing collection of the debt unless I file a police report for Identity Theft. I do not see any indication that my identity was stolen by the borrower. I contacted XXXX XXXX and was told that I had been put on the account as an \\\" Authorized User \\'\\', but I was not a party to the debt. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 701\n", + " high_rank: 701\n", + " label: \"A group on XXXX created a group. I realized that it was a pyramid scam. I sent them money in hopes of getting more back. I did n\\'t not receive any money in return and they will not send my money back. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 702\n", + " high_rank: 702\n", + " label: \"A gentleman by the name of XXXX XXXX is calling me, my wife, my parents, my wife \\'s parent, and my friends and telling them I have a court judgement against me and that he was sending a law official over to issue a citation for arrest. He calls non-stop and provides this information. I called the courts and they do not have a number that he keeps giving and they do not have any record of him. Please help. I have kept a recording of what he says on my phone. XXXX XXXX # XXXX \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 703\n", + " high_rank: 703\n", + " label: \"A few months ago I ended up filing some disputes because there was incorrect and incomplete information on my credit report. So I prepared a nice letter and sent it with a copy of my driver \\'s license, proof of my social security number and proof of my mailing address so that Experian would be able to verify my identity. It has been at least XXXX months since I mailed my letter and I have n\\'t heard back. When I try calling their XXXX number they want a report number before I speak with an agent and since I do n\\'t have one I ca n\\'t speak to anyone. I thought that the credit companies had to respond back to me within XXXX days otherwise they are supposed to remove things from my credit report?! Well it \\'s been way more than XXXX days and all of the stuff I disputed is still there. I know I can go online and buy a credit monitoring service and try to dispute things online but I thought that Experian is supposed to help me for free! I \\'m at the point where I \\'m done wasting time and need to get this fixed immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 704\n", + " high_rank: 704\n", + " label: \"A few months ago I ended up filing some disputes because there was incorrect and incomplete information on my credit report. So I prepared a nice letter and sent it with a copy of my driver \\'s license, proof of my social security number and proof of my mailing address so that Experian would be able to verify my identity. It has been at least 2 months since I mailed my letter and I have n\\'t heard back. When I try calling their XXXX number they want a report number before I speak with an agent and since I do n\\'t have one I ca n\\'t speak to anyone. I thought that the credit companies had to respond back to me within 30 days otherwise they are supposed to remove things from my credit report?! Well it \\'s been way more than 30 days and all of the stuff I disputed is still there. I know I can go online and buy a credit monitoring service and try to dispute things online but I thought that Experian is supposed to help me for free! I \\'m at the point where I \\'m done wasting time and need to get this fixed immediately. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 705\n", + " high_rank: 705\n", + " label: \"A debt dating from 2006 has been relisted on my credit file by XXXX XXXX. This debt has passed its status of limitations and had already been removed from my credit file. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 706\n", + " high_rank: 706\n", + " label: \"A debt collector contacted my elderly mother, who has a XXXX, at her telephone number. She was told that there was a warrant for my arrest and that I was due to being arrested any minute, if I did not contact them. She was told that she had XXXX minutes to contact me and have them contact them so that I could be arrested wherever I was located at. She contacted me at work and I then contacted the company. Meanwhile, my brother had to take my mother to the doctor due to her XXXX. When I contacted the company, a representative told me that I needed to make payment immediately and he would then terminate my warrant of arrest. I paid them with whatever I could and am now making hospital payments for my mother. I believe this was very unethical on the companies behalf and should be disciplined for verbal abuse and domination over something that does not originally belong to them. \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 707\n", + " high_rank: 707\n", + " label: \"3rd Party collection company is attempting to collect a debt, that was not mine nor authorized by me, additionally, this debt they are attempting to collect is beyond 6years the statute of limitation in Pa where I reside, the holder of this debt is also a collection agency, XXXX the original debtor removed the debt \"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 708\n", + " high_rank: 708\n", + " label: \"~ {$7000.00} in debt has been reported on a credit card that I never had. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 709\n", + " high_rank: 709\n", + " label: \"~ This file is to be PLACED WITH CASE FILE # XXXX - XXXX. U.S. Bank National Association from the ILLEGAL law offices XXXX, XXXX XXXX XXXX XXXX, XXXX XXXX, Oklahoma XXXX, XXXX XXXX, ( XXXX ) XXXX XXXX, fax ( XXXX ) XXXX XXXX. With a second office address of XXXX XXXX XXXX, XXXX XXXX, XXXX, XXXX XXXX ( XXXX ) XXXX XXXX, fax ( XXXX ) XXXX XXXX, lawyers listed as : XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX, XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX and XXXX XXXX XXXX XXXX Pictures # XXXX, XXXX, XXXX, XXXX ARE THE ILLEGAL UNMERITED weak sand that CA N\\'T TELL ME I DO NOT KNOW WHAT I AM TALKING ABOUT, NO plaintiff anywhere WILL SHUT ME UP AS IT IS ALREADY KNOW THAT U.S. Bank National association has ALREADY BEEN SUED FOR HARASSING United States Citizen \\'s AND HAS TRIED unsuccessfully to not answer to THE FRAUD ALREADY FOUND PERTAINING TO houses AND FAMILIES LIVES. THERE IS NOT ANY PLACE THAT DOES NOT GLOBALLY KNOW WHAT HAS BEEN GOING ON WITH THE FBI, XXXX, FTC, POLICE, CEO \\'S IN PRISON, MONEY LAUNDERING, ticket Me scalping and ILLEGAL exchanges of money in and out of VAULT \\'S. Picture \\'s # XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX are the FRAUDULENTLY INSTALLED ILLEGAL CONTRACTOR \\'S that installed and cracked walls, did not measure correctly, had no LEGAL CONTRACTOR \\'S PERMITS AS TO THE REASON the house DID NOT PASS INSPECTION \\'S NOR APPRAISAL \\'S AND why XXXX this house went into FRAUDULENTLY OPENED ILLEGAL account \\'s where the payment \\'s did not go where stated and the way the bail out \\'s started from FRAUD account \\'s ILLEGAL accountant \\'s, money laundering, gambling, etc., ALREADY FOUND AND DOCUMENTED FROM ILLEGAL spending, luxury cars, luxury vacation \\'s, hidden account \\'s and ILLEGAL divorce cased FRAUDULENT payment \\'s of house payment \\'s. # XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX, XXXX THAT ILLEGALLY INSTALLED NO PERMIT bathroom that has no heat, no air conditioning, no water and pulling apart from the original house. The seams of the walls are breaking apart and the masking tape that was painted over is pulling off the walls. With no insulation under the raised floor it is COLD in the winter, the driveway is cracked and pulling apart and it was that way in 2012 - for a VA first time home THAT IS ILLEGAL AND FRAUD. # XXXX picture was placed on file in court and THAT WAS NOT THE CONDITION OF the house on XXXX/XXXX/2012 - THAT IS FRAUD DOCUMENTATION. This house sat empty for almost 2 years, the plumbing was off. The house is NOT WORTH {$74000.00} IT IS OVERLY priced for this area/OPENED ACCOUT FRAUDULENTLY. A remodel is to have ALL WORKING FEATURES the correct price - a remodel will NOT MAKE THE amount of a house go up in a starter house area where the average house is from {$28000.00} to {$30000.00} and where houses have been here since 1959, the streets are cracking, the sewage is outdated, the electric is outdated, the water meters are outdated - some houses have garages, some do not. This is the third time this house has gone down there is no deed, no title and robo signing is FRAUD, also PREJUDGING AND DISCRIMINATION ARE FRAUD. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 710\n", + " high_rank: 710\n", + " label: \"{$810.00} was fraudulently charged on my XXXX XXXX prepaid visa. They will not give me a provisional credit. I \\'m a single mom on a tight budget. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 711\n", + " high_rank: 711\n", + " label: \"{$5900.00} owed for fee/other has showed up again on Ocwen Loan Servicing \\'s web-site. This is the third time in the last year. They have removed this XXXX other times. I am in the process of refinancing my mortgage and I believe that they are going to try to collect this amount in the pay-off. This amount is not in their pay-off quote and has never appeared in any statement. This is my XXXX complaint. Do I have to go to the AZ Attorney General? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 712\n", + " high_rank: 712\n", + " label: \"{$4000.00} I rec \\'d a Loan online from Cash Central in the amount of {$1500.00} on XX/XX/XXXX. This was to be an installment loan which was for 18 months, per my attached paperwork. It is now XX/XX/XXXX and they say that my balance is still {$1400.00}. The loan is to paid in XX/XX/XXXX in full. I contacted them and they now tell me that I have another 16 months to pay. I have all confirmations from this company as far as them receiving my payments since XX/XX/XXXX. I have been paying them {$300.00} per month. The total paid to them as of the end of the loan will be {$5500.00}. I do not believe that they are licensed in my State. I had asked in a previous email but they never responded. Please step in and let me know exactly what I should do. I do not intend to pay after the end of the loan. Thank you, XXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 713\n", + " high_rank: 713\n", + " label: \"{$300.00} cash load was made to my XXXX card on XXXX/XXXX/15 through XXXX. The money was never credited to my account even though money gram shows it as having been received. Rush card customer service is non-existent. I have called and been hung up on repeatedly. I have emailed, private messaged on XXXX and twitter ( per XXXX XXXX request ) and have not been contacted in response. I have copies of all the receipts and proof that the money was paid and should have been loaded to my card immediately, but no one will help me \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 714\n", + " high_rank: 714\n", + " label: \"{$3.00} REFUND REFUSED FROM A FAILED WESTERN UNION XXXX XXXXI MADE A MONEY TRANSFER THROUGH WESTERN UNION AT THE XXXX STORE XXXX XXXX XXXX XXXX, DE ( XXXX ) XXXX MANAGER XXXX. THE TRANSACTION NUMBER SHOWED AS VALID THROUGH WESTERN UNION TRACKING ONLINE. \\' \\'\\' SEE ATTACHMENT \\'\\'. HOWEVER THE RECIPIENT WAS TOLD THE XXXX NUMBER WAS INVALID. AND THEREAFTER IT WAS NO LONGER VALID WITH ONLINE TRACKING. XXXX MANAGER XXXX SAID WESTERN UNION HAS TOLD HER IT HAS CREDITED BACK THIS AMOUNT TO THE XXXX STORE BUT SHE SAYS IT WAS NOT. AND IF IT WAS THE MAXIMUM REFUND I COULD RECEIVE IS {$990.00} ACCORDING TO CORPORATE POLICY AFTER SPEAKING WITH THEM. COULD YOU KINDLY ADVISE ME WITH THIS MATTER. MY NAME IS XXXX XXXX PHONE # XXXX. XXXXXXXXXXXX I THOUGHT I SHOULD ADD THAT WESTERN UNION TOLD ME OVER THE PHONE THEY COULD MAIL ME A REFUND CHECK BUT IT WOULD TAKE TWO WEEKS OR I COULD DRIVE XXXX ABOUT XXXX MILES AWAY TO RECEIVE A CASH REFUND. I DO N\\'T BELIEVE THAT AND NEITHER DOES THE XXXX MANAGER XXXX XXXX, DELAWARE.XXXX ) XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 715\n", + " high_rank: 715\n", + " label: \"{$13000.00} was charged to XXXX account in XXXX XXXX Since this date Wells Fargo has been unable to furnish any backup documents to support this charge. At XXXX/XXXX/XXXX, with compound monthly interest at 10.75 %, the total amount charged to XXXX account from XXXX thru XXXX is {$93000.00} which is greater than the foreclosure amount.. XXXX has sent dozens of qualified RESPA requests only to receive the same reply for each. \\\" WE have received your inquiry and as soon as our research is complete you will be advised. \\'\\' This is not believable and is criminal fraud. For 13 years Wells Fargo has been sending this same reply. Recently Wells Fargo advised this charge resulted from a Loan Modification dated in XXXX XXXX. This is criminal fraud because the {$13000.00} was charged to XXXX account 20 months before XXXX XXXX. XXXX Loan Number with Wells Fargo is XXXX. XXXX Desired Resolution. Place Criminal Charges against Wells Fargo for {$93000.00} for attempted Larceny Force immediate return of the XXXX. Please advise what additional data you will need in order to enforce these charges against Well Fargo Thank you very much XXXX XXXX XXXX Phone XXXX. This is the Third Request sent to CFPB. I have received one reply. Advising it will take 10 months to research this problem. This is not believable because they have been researching for the the last 13 years. . \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 716\n", + " high_rank: 716\n", + " label: \"zip. they keep reinserting incorrect info. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 717\n", + " high_rank: 717\n", + " label: \"you have an address on XXXX in XXXX texas and i have never lived in XXXX texas there is also an account for time warner cable on my report and i havent had XXXX i have lived in XXXX texas for about 2 yrs now and was XXXX for almost a yr prior to that and they do not have XXXX in XXXX also it says it was opened in 2014 that is impossible since i have lived in XXXX during that yr and can prove it \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 718\n", + " high_rank: 718\n", + " label: \"you can not get your statements on line of what you have paid whom \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 719\n", + " high_rank: 719\n", + " label: \"yesterday i checked my credit report through XXXX and i found many incorrect informations about me as : 1- My first name 2- My last name 3- My mailing address so i contacted the XXXX \\'\\' which is credit report Agency to ask about this wrong informations they told me this informations has been added by : REMEX INC their phone number : XXXX XXXX XXXX their mailing address : XXXX XXXX XXXX XXXX, NJ XXXX -- -- -- -- -- -- -- - they added a collection account to my credit report for service which is i didnt use and i didnt ask for this service ( I didnt use or receive any services from this company the collection account number is : XXXX I didnt authorize them to do this to my credit report, i didnt give them my informations and it didnt use any service from this company before so : 1- I need to know who gived this informations to this agency 2- I need them to delete this incorrect informations from my credit report 3- kindly they have to get this collection account removed from my credit report unless i will have to show up in the court asking for XXXX for each incorrect information they added to my credit report without my autorization \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 720\n", + " high_rank: 720\n", + " label: \"yesterday i checked my credit report through Experian and i found many incorrect informations about me as : 1- My first name 2- My last name 3- My mailing address so i contacted the XXXX \\'\\' which is credit report Agency to ask about this wrong informations they told me this informations has been added by : XXXX XXXX which is sent to XXXX XXXX by Quality Asset Recovery I didnt authorize this action Quality Asset Recovery sent : 1- My social Security Number 2- they violated my privacy when i was patient 3- by sending this documents to XXXX XXXX about my illness they violated Section 264 of HIPAA Law violated 5 USC, section 552A 4- i sent them cetified letter 2 month ago to ask them about this collection account they didnt respond me yet untill now due to the FCRA they should respond before 30 days or they have to delete the collection account they didnt do any of these 5- i filed dispute regarding this collection account on the XXXX credit report agency 2 month ago and due to the investigations it has been deleted from my credit report but the collection agency reinserted the collection account on XXXX and XXXX without sending my any mails the section 6o9 of the FCRA says before the collection agency reinsert the collection account on the credit report they have to send mail regarding the collection account before they reinsert it their phone number : XXXX XXXX XXXX their mailing address : 7 XXXX XXXX XXXX XXXX XXXX, NJ XXXX XXXX - they added a collection account to my credit report for service which is i didnt use and i didnt ask for this service ( I didnt use or receive any services from this company the collection account number is : XXXX 1- I need them to delete this incorrect informations from my credit report 2- kindly they have to get this collection account removed from my credit report from XXXX, XXXX and all credit report Agency which is having my credit report and this collection account on it unless i will have to show up in the court asking for XXXX for each incorrect information they added to my credit report without my autorization +XXXX USD for sharing my Social Security number informations with unauthorized company +XXXX USD for violating my patient Privacy \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 721\n", + " high_rank: 721\n", + " label: \"yes on my moms walmart credit card our monthly bill went from XXXX a month too XXXX a month??? we did not really charge that much for it too go up XXXX more a month???? so we would like a explanation not happy????? i do have power of attorney im her son XXXX/its in your records????? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 722\n", + " high_rank: 722\n", + " label: \"yes on my moms credit card om not very happy the way XXXX XXXX forced me into a XXXX monthly ayment plan???? first of all.they wanted me too keep aying the XXXX monthly payment untill few billing cycles till i get the XXXX too take affect????? i could not afford the XXXX a month???? thats why wefell behind on bill????? i really wanted XXXX a month plan??? but they would not accept XXXX a month plan??? was forced into a XXXX a month plan???? like too talked too whos in charge like a top supervisor instead of the lower people on this mattar????? want main supervisor too help on this mattarrr???? going thru hardship now. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 723\n", + " high_rank: 723\n", + " label: \"yes on my moms credit card account i set up a payment arrangment with XXXX.the director at capital one bank.still waiting on my bill.payment plan was set up 2 months ago.have not gotton a bill for XXXX a month payment plan??? not very happy???? tryong my best??? also they riuned my moms credit?????? trying too work with them/hard too work with?????? my moms XXXX years old has XXXX and is XXXX?? this how they treat the elderly?????? disgusting???? plus the keep charging late fees????? called XXXX back few times no reply????? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 724\n", + " high_rank: 724\n", + " label: \"yes my name is XXXX XXXX and my complaint is with USAA. I fell victim to fraud I filled out an ad online through XXXX thinking it was a build your own business kit and it turned out to be a scam. First they want to hold me responsible for paying the overdrawn balance I feel as though that is not right for me the customer having to pay for the wrong doing to me by someone who committed fraud on behalf of my checking account. Now they are reporting to the credit bureau about this incident. I \\'m a XXXX and me getting treated like I \\'m the criminal is very unacceptable I feel as though that the balance should have been written all I was able to continue to use my account because my military pay for XXXX my tax return the month of XXXX in the month of me my military pay has been garnished because they said that I had to pay back the overdrawn balance and it was over {$5000.00} of my money that I work hard to make has been garnished trying to please USAA not knowing that my money was being garnished for me being victimized of fraud or my account being compromised. I would greatly appreciate it if I can receive a phone call and or an email about this situation and I can fill you in with more details about what took place because I would like to have the money that I put it in the account by me being the XXXX back. that \\'s all that I want from USAA is my money the money that I made on a monthly basis with the XXXX in my tax return I want my money back if they ca n\\'t compensate me for what has been taken from me due to being victimized a fraud then I want to take them to court behind this matter I think is very unprofessional and very degrading and very disrespectful to treat a customer like he or she is the criminal that was done to them. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 725\n", + " high_rank: 725\n", + " label: \"yes me and my mom have a walmart master card.my moms XXXX years old XXXX and has a hard time talking on phone. we just made XXXX purchaases. on line at XXXX?? and another charge at local food store??? thouse XXXX things only charged. tried for some cash at a atm machne would not go thru???? we had ge capitail bank with card before synchrony bank took over at wamart???? we never had problems with ge capital and used card many years.they sent us a letter stating that they placed a restriction on our account toomake sure no fraud occuring???? this is a joke and were about too cancel account. i contacted the XXXX. but have not heard anything from XXXX????? i also told XXXX that im about too get power of attorney on moms bills this week?? im her son and caregiver past 3 years now???? and we dont need too be upset by all this fraud XXXX???? my mom lets me usecard all the time/ moms name XXXX by the way.also the letter we got in the mail from there fraud dept. you can have them call me XXXX XXXX her son at XXXX cell but till i ge power of attorney they might not want too talk with me??? up too them \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 726\n", + " high_rank: 726\n", + " label: \"yes like my house caught a fire and my insurance pay them off. but there did not send me my refund check when my mobile house got pay-off. and I want to know where is it. because I ever nothing In the mail are anything. and I know there owe me something out my pay off. I pay them too much money a month try to keep my house I love my home that why I pay my money a month. and same time I be pay my money be cheat me same time. its not fair how people you and you try so hard to work with them. its got to stop because with them people work to hard have nice place stay too. there changed too money on mortgage it up and down on your payment. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 727\n", + " high_rank: 727\n", + " label: \"yes ive been trying too work out a monthly payment on my moms account with collections dept.they asked me how much i can pay monthly toward closed account.i told him first XXXX .he said no.than i said XXXX he said no????? i asked hime was the minuium??? he would not tell me????? what kind of people work here???? my moms on XXXX???? and i am too????? than i get a letter email stating they offered payment options??? they offred nothing too me. im trying too work with them.but these people are of no help? like too talk too not the collections supervisor he did nothing for me??? like too speak too whos higher up in charge??? like i wana contact XXXX XXXX office on this mattar???? also wana get all late fees waived and penalities too on account???? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 728\n", + " high_rank: 728\n", + " label: \"yes i worn a law suit against chase mortgage i recieve my deeds full owner ship a year ago and they have ohold on me my credit all credit beau they surpose to had clear that please help me. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 729\n", + " high_rank: 729\n", + " label: \"yes i contacted the XXXX about capital one bank about i cant afford my high card payment every month.cant make the full payment each month???? have not heard anything back from capital one bank on credit card.my paymeny XXXX a month.im XXXX years old XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 730\n", + " high_rank: 730\n", + " label: \"yes i cntacted capital one bank on my moms credit card????? about getting a hardship on the loan balance.were they redo the whole loan and get my monthly payments lowered. my lawyer sent them my power of attorney too them???? have not heard back from them too see if they got my power of attorney????? im XXXX XXXX her son.im her caregiver????? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 731\n", + " high_rank: 731\n", + " label: \"yes at my pnc bank i got a over draft of XXXX??? they would not waive the overdraft fee because XXXX years ago i had another fee they waived???? im on XXXX and going thru a hardship???? they told me they could not helpme??? thought was very unfair thats all .also im a care giver too my mom whos XXXX XXXX too.im just going thru alot of XXXX and thought they have a heart??? guess they dont. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 732\n", + " high_rank: 732\n", + " label: \"www.Bank of America. XXXX ( 3 hours ago ) Replyto bcc : meBank of America XXXX XXXX XXXX XXXX, XXXX, XXXX XXXXEmail XXXX XXXXXXXXXXXX XXXX NOTIFICATION OF CREDIT FROM BANK OF AMERICA. Attn : Beneficiary, We have this day of Monday, XXXX XXXX, 2015 received a payment creditinstruction from the Federal Government of U.S.A to credit youraccount with your full Inheritance fund of US $ XXXX from XXXX account with our bank, Bank of America XXXX However, youshall require providing the followings data \\'s below : { 1 }. Your Full Name and Address ... ... ... ... .... { 2 }. Your Confidential Tel, Cell and Fax ... ... ... ... .... { 3 ). Your Bank name and address ... ... ... ... ... { 4 ). Your A/c Name and A/c Numbers. : ... ... ... ... ... .... ( 5 ). Your XXXX Code / Routing Numbers ... ... ... .... Please do provide the above information accurately, because thisoffice can not afford to be held liable for any wrong transfer of fundsor liability of funds credited into a ghost account. Secondly, the only money you pay for the transfer to take place isjust {$280.00} usd and you are giving 24hours to send the payment andplease be advise that you are to send the payment to XXXX XXXX in XXXX XXXX and you are to use this information to sendthe {$280.00} usd and please be informed that you are not going to pay anyother payment to any body and do not be deceived by any body to sendany other payment. Here is the information you will use to send the payment through XXXX XXXX. Receiver \\'s name / XXXX XXXX / XXXX, XXXX XXXXAmount / {$280.00} usdSend us the MTCN once you send the payment. Thanks for banking with Bank of America while we long forward toserving you with the best of our service. Thanks and XXXX bless you. Regards, Yours in Service, XXXX XXXX XXXX B O A XXXX Branch. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 733\n", + " high_rank: 733\n", + " label: \"wrote check to XXXX XXXX XXXX XXXX dated XXXX XXXX, check was cashed on the XXXX from my account at Bank of America, my payroll was deposited on the XXXX. I was charged a overdraft fee of {$35.00}, even though I do not have overdraft protection. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 734\n", + " high_rank: 734\n", + " label: \"wrongful closure of my credit cardsContacted the company directly the response was \\\" bank policy \\'\\' \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 735\n", + " high_rank: 735\n", + " label: \"wrong name on credit reort, containing a felony of burgulary by the name XXXX. my name is XXXX XXXX XXXX. this in return cost me a good job @ XXXX 2 weeks now @ {$18.00} an hour. please contact me asap XXXX XXXXXXXXXXXX XXXX XXXX XXXX XXXX, ohio XXXX also XXXXXXXXXXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 736\n", + " high_rank: 736\n", + " label: \"wrong information on credit my credit report and they know it and will not remove it southwest credit systems credit reference number is XXXX and the creditor account number is XXXX this belong to a XXXX XXXX at XXXX XXXX XXXX XXXX maryland XXXX my name is XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX md XXXX will you please help me get his bill off of my credit report XXXX and south west has said this is not my bill \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 737\n", + " high_rank: 737\n", + " label: \"wrong account i did not use hospital \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 738\n", + " high_rank: 738\n", + " label: \"without mailing me notice to let me know I had hostile pills they report me to credit bureau, then after my insure company paying them {$800.00} and I paid {$220.00} ( means I paid off my hostile bill! ), they keep calling me to said they DO NOT receive the insure company \\'s check, and ask me to pay them another {$800.00}, then a lady in ARC finally figure out they already get the check! BUT this is not the end. I receive a letter from them on XXXX XXXX, it said I still own {$800.00}, I called back ARC, XXXX lady said they do n\\'t receive the insure company \\'s check! My insurance company told me ARC already cashed the {$800.00} check on XXXX XXXX! I ca n\\'t believe after ARC received all the money but they still deny they get the money and want me to pay XXXX.This is a big mistake their employee made and they want me to suffer that! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 739\n", + " high_rank: 739\n", + " label: \"with \\\" automatic bill pay \\'\\' my account was withdraw XXXX ( same amount XXXX dollars, on XXXX XXXX, and XXXX XXXX. ) When I checked online to see if my pension money was available I noticed the mistake. This mistake made incur in overdraft, so they start withdrawing a XXXX dollars fee ( XXXX times ) they did n\\'t do it more times because I got my XXXX money deposited and the account had founds. Bank of America, send emails to see if their service was good, they call you to offer you new products, but they never called me, to tell me they were withdrawing this fee in an abusive way. Because, XXXX can be a punishment, more than XXXX about the same without notice to the affected person shows they are profiting without any ethical principles. I went to the bank in person, they sent me home, this issue can be solved only over the phone ... Next day, called at least they transferred me to XXXX different people and explain the whole issue since the beginning, maybe their solution was to make me give up, instead to give me a professional answer. They agreed about the mistake ( almost one hour later ), and refund XXXX dollars ( when really they deducted XXXX ), so I have other call pending to claim on the same. This is no the proper way to treat a XXXX who is a loyal customer of them for the past XXXX years at least. I got punished for their mistake in XXXX, and same problem had occurred on XXXX, so is recurrent this unfaithful practice. How they can do with me and my money whatever they want, and I have just to watch? I am just a person who lives on his retirement money not an account knowledge professional. Why Banks do n\\'t inform the client as soon as they take money as \\\" penalty \\'\\'? and really at my XXXX years old I did n\\'t feel treated with respect and understanding. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 740\n", + " high_rank: 740\n", + " label: \"will not remove \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 741\n", + " high_rank: 741\n", + " label: \"will not disclose what debt is for will not disclose what all fees/charges are \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 742\n", + " high_rank: 742\n", + " label: \"why should I have to write a letter to get my information, what is the problem it is telling me I need to write a letter to get it. this is time consuming not realistic today, people use the computer for everything and phones and email. now I have wasted time and more time because I need my credit information now! there should not be any issue with getting it online, and it does not tell me the reason. no security issue should not be handled that way because I still do n\\'t know the issue. I do n\\'t have time for this. this needs to be fixed and better convenient for people. we have to be systemized to do anything! is unfair! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 743\n", + " high_rank: 743\n", + " label: \"why are my wages still under a garnishment when my debt went into default in XXXX and LVNV funding did not show original signed documents from XXXX..there is no proof of ownership. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 744\n", + " high_rank: 744\n", + " label: \"who is not our deposit or loan customer ... ... .we may charge them a fee .... \\'\\' Does this mean {$.00} or {$XXXX}? I feel this misleading, ambiguous, and not within spirit of \\\" full disclosure \\'\\'. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 745\n", + " high_rank: 745\n", + " label: \"while withdrawing cash from the atm i only received XXXX dollars of the XXXX i was charged for. {$160.00} was sucked back into the atm. i filed a complaint with the bank to do an investigation and after a week i have n\\'t gotten any information nor gotten a provisional credit as promised \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 746\n", + " high_rank: 746\n", + " label: \"while travelling my accounts at bank of america were closed. No reason was given. Uncertain if the rest of money will be returned. Luckily i had stopped using the account and had transferred most out of it because the atm card kept having difficulty while travelling. There was less than {$1000.00} in the account, however I worry about my reputation on credit reporting agencies reports since they noted in their letter they could report to XXXX about account closure. Can you help clarify this problem, never bounced check, had no problems except someone deposited a check while my husband and were overseas but the bank accepted it even though they put wrong address on deposit slip and it was deposited out of state. That happened over 3 months ago and we thought the matter was settled. XXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 747\n", + " high_rank: 747\n", + " label: \"while shopping for a debt consolidation loan i applied at multiple institutions, till SOFI conditionally approved my application, this happened in XXXX. towards the end of XXXX i had to fix a problem with a document, after multiple calls trying to get my application looked at they told me the same thing the person was not at work. two weeks after i called every day so i could get it finish. today after my call they told me i was declined due to inquiries on my credit, since it took the a month and a half i got declined due to other applications i put in while waiting for Sofi to process mine. in short due to exceptionally poor service i received my time was wasted, costing me time and money. i feel like i was discriminated against due to my amount of contacting this institution. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 748\n", + " high_rank: 748\n", + " label: \"while looking for employment I was approached via email XXXX for a XXXX XXXX Position. HR contacted me and passed this initial interview. I was then passed on to the HR trainer where 4 weeks of training would be conducted on line. XXXX 2 weeks I was learning policies, acronyms, processes, etc. and passing weekly tests. The XXXX week i was asked to purchased some equipment ( valued at {$7400.00} XXXX and send out of country to a new office being opened. Being careful throughout this whole process about identity theft, I provided no personal info, in fact the hiring company said a few times that no personal info was required untill I passed the 4 weeks of training and met the hiring manager for the final interview. So for the XXXX project I was issued XXXX that had an account # and routing # XXXX CHASE BANK XXXX with funds that were put into my name that were to be used to purchase the equipment. I was asked to use my personal CC at this time till I became full time employed. I transfered the funds from the account info provided into my personal CC and waited till the funds posted. Once posted a few days later I proceeded to purchase the requested equipment and ship out of country to the designated address. I was requested to use USPS priority international delivery. I was then asked to perform the exact same task a second time which is when I suspected something was n\\'t right and asked a few more questions. At this time the response from XXXX XXXX was not acceptable and knew at this time something was wrong. I sent a final email declining the XXXX project / /purchase and also declined any employement with the company., I then proceeded to stop the shipment that was done earlier that morning with the USPS and was told that I was not able to stop it being it is an international shipment. I then contacted my credit card company \\\" CHASE \\'\\' and explained the situation and was told the funds are OK and no issues. I have been checking my account daily to ensure no issues and on XXXX/XXXX/15, the posted amount of {$8000.00} was reversed from my credit card account. I do not understand how CHASE bank that the funds were transfered from did not know the account I was using to transfer funds does not have a check / balance process in place to review and detect scams like this. A phone call or text or something to the actual owner of the account. Besides the names being different on the accounts. Todays day and age with technology, banks should be able to detect scams like this. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 749\n", + " high_rank: 749\n", + " label: \"while looking at my credit report today XXXX XXXX, 2015 via experience I noticed a credit card opened on XXXX 2015 for chase Bank, with a total amount used of {$450.00}. I did not apply for a chase credit. Please let me know the next step via email : XXXXXXXXXXXX or cell XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 750\n", + " high_rank: 750\n", + " label: \"while doing a debt settlement with XXXX, we settled several Chase cards, there were XXXX left and XXXX tried to contact and settle, with no notice to myself or XXXX XXXX, Chase did a charge off. Same with XXXX, XXXX tried to settle with them as well. Chase and XXXX did not give notice of charge off. If they sent notice, I did not get it but I sure got from chase and XXXX the XXXX showing a charge off and I had to add the balance as income, had to add to my taxes. I feel because we tried to settle, they should not show on my credit score as owing monies because I had to claim as income and pay taxes. I even tried to call them and stayed on the phone for XXXX hr, never got a call back. When checking my credit, you can see where chase settled several accounts. I feel that since they settled other accounts they should not have charged anything off. I feel like I am now a victim because they did not want to work with us, not even a call back to XXXX. XXXX has been great and they too were not happy with their professionalism. I can only wonder who else has gone thru this with Chase and XXXX! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 751\n", + " high_rank: 751\n", + " label: \"while checking my credit report I found a enquiry about a student loan with ACS Education Services in XXXX XXXX, NY. I call them on XXXX and spoke to XXXX about this matter and she wanted my SSI over phone andni kindly refuse to do so. I explained to here that the pulled a credet enquiry form my credit report and that was not me looking for a student loan, I \\'ve not looking for a student loan from anyone cent in was in bankruptcy chp XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 752\n", + " high_rank: 752\n", + " label: \"while checking my EXPERIAN CREDIT report, I noticed unauthorized and fraudulent credit inquiries made by CAPITALONE on or about XXXX/XXXX/2015 & XXXX did not authorize anyone employed by this company to initiate any inquiry and/or view my credit.This action by CAPITALONE has violated my FCRA Section 1681 b ( c ), without cause or justification, to which constitute a serious privacy Act Rights violation. I have personally requested from this company to permanently delete this information and/or send me any signed authorization from me as evidence within five business days.To this extent, CAPITALONE has ignored my request and in addition has failed to respect the process as required under the FRCA. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 753\n", + " high_rank: 753\n", + " label: \"where to begin with citimortgage home mortgage. first in 2012 i recieved a phone call from a citi employee that left me a voice mail an called me a XXXX. i kept that voicemaile up until this year. then we were doing what we thought was a harp refinance but citi called it hamp. we had to pay XXXX dollars to start this.plus we were never told through the whole 9 months of this hamp refi that they were reporting to the credit bureaus missed payments for 11 months which killed our credit. ive been through heck with this company for years i cant get away from them for all the credit damage they did. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 754\n", + " high_rank: 754\n", + " label: \"when you contact this mortgage company you do n\\'t get to talk to person. you leave a voice mail and they tell you they will get back to you in 24 hours and they never do. trying to get the loan redone and very little help from them. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 755\n", + " high_rank: 755\n", + " label: \"when we bought our house last year, we volunteered to sign up for an impound account so that we would n\\'t miss a payment. Our mortgage servicer, Select Portfolio Servicing in XXXX XXXX XXXX, Utah, takes our money for property taxes, and then refuses to pay them. They have had XXXX opportunities to pay on time, and have failed all XXXX times. Last year, we faced XXXX dollars in fines because of them. This year, i \\'m lucky i caught it on time, because they XXXX yet again. This is nonperformance of our mortagage service agreement, and they need to sell our loan to a competent servicer. This is ridiculous. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 756\n", + " high_rank: 756\n", + " label: \"when this person contacted me at work XXXX times in a row, also going through the receptionist in our office. When I finally had a chance to answer them I ask that he not call me at work and to mail me any correspondence. He did n\\'t even Identify that he was calling for me and told me that he was going to contact my human resources so that I would get fired. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 757\n", + " high_rank: 757\n", + " label: \"when my renewal for my membership fee from american express was up, i called and cancelled my card. i have a letter from them acknowledging my cancellation .they continually charge my card that membership fee and charge me late fees.they know say i owe them about XXXX dollars all from a membership fee and late charges. i told them i dispute the charges and told them to send it to a collection agency so i can bring it to arbitration .they do nothing but continual to charge me late fees \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 758\n", + " high_rank: 758\n", + " label: \"when moved out of our apartment we had the carpet cleaned but the community wanted us to replaced the carpet in the whole apartment because XXXX room had a stain that the cleaning people could not get out. So we refuse to pay them so they put us in collection. Also we moved into XXXX of their apartment in XX/XX/XXXX we move out in XX/XX/XXXX we went back in the apartment on the XX/XX/XXXX to clean the carpet they are trying to collect two months of utilities and charge us 3 days of rent how can you owe them two month of utilities when it is paid with you rent and I do n\\'t know where the get the three days of rent from but they have us in collection for this too. We need some help on how to get these collection off of us. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 759\n", + " high_rank: 759\n", + " label: \"when making a purchase at XXXX in XXXX nj, I wrote a check. XXXX contact global payments check services inc for authorization, they declined authorization without reason. I contacted Global who refused to give a reason and informed me they also ran credit checks for check authorizations. Global never asked for authorization or permission to run my credit. Global also acts as a Credit Reporting Agency and collects their own info on people which they base their authorizations on. They refuse to give reasons for declining a check and says they do not correct any info because they do not speak to individuals when they decline to authorize a check. Global Payments Check Services Inc. needs to be investigated for their collection of info and compiling of credit reports that they base their decisions on. Global Payments Check services Inc should be fined for the unauthorized credit checks they run when contacted for a check authorization. Global Payments Check Services Inc appears to be trying to circumvent laws and regulations when it comes to consumer laws. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 760\n", + " high_rank: 760\n", + " label: \"when i went to refinance my home, I was told that Discover placed a judgement on the title for credit card debt that i did not incur. my husband who i have been legally separated from for 3-4 years did have a Discover card that is delinquent. my ex will file a separate complaint as he says Discover never notified him of any of this. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 761\n", + " high_rank: 761\n", + " label: \"when i went to download my free annual credit reports from all XXXX companies i never got as far as the download as the internet connection timed out and the downloads were incomplete and therefore i could not print them out. Also, since that happenened i was also denied credit for a credit card ( XXXX Credit card ) For example as stated by law : Q : Are there any other situations where I might be eligible for a free report? A : Under federal law, you \\'re entitled to a free report if a company takes adverse action against you, such as denying your application for credit, insurance, or employment, and you ask for your report within 60 days of receiving notice of the action. The notice will give you the name, address, and phone number of the credit reporting company. You \\'re also entitled to XXXX free report a year if you \\'re unemployed and plan to look for a job within 60 days ; if you \\'re on XXXX ; or if your report is inaccurate because of fraud, including identity theft. Otherwise, a credit reporting company may charge you a reasonable amount for another copy of your report within a 12-month period. EquifaxXXXX ; equifax.comXXXX : XXXX ; XXXX : XXXX XXXXI need a new updated download of my reports from each in its own entirety for my record .... I remain, XXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 762\n", + " high_rank: 762\n", + " label: \"when i closed by XXXX XXXX account i paid my bill and full balance as i always do. months later i was contacted by verizon for non payment. i showed them proof of payment from my bank checking account. i was told that when i close an account that because i had phone internet and tv i should have paid the balances seperatly to different addresses. i never had done this in the past. i paid my bill as i allways have done. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 763\n", + " high_rank: 763\n", + " label: \"when i bought the house we live in, the mortgage is with Wells Fargo. when pres obama said there is mortgage help out there i thought why am i paying 6 % on my loan. This was in XXXX i have contacted Wells Fargo to refi to a VA loan from a fha loan because of all the insurance i have to pay. Well to make a long story short here i am 3 years later still trying tlo get a refi. Wells Fargo has never ever tried to help me. in XXXX i suffered a XXXX XXXX XXXX, i am the only worker in my family. when the XXXX XXXX came my unemployment just ran out current on mortgage. As i was in the hospital from XXXX XXXX to XXXX XXXX i was in the hospital. my new job was to start on XXXX XXXX well after the XXXX, i was left with XXXX income, so i went to my veterans service office and received a macv which paid my mortgage and house bills for 6 months. they paid and not always on time, So Wells Fargo who knew of my condition said as long as we receive it by the XXXX no penalties. So what they kept doing is reported every late to the credit bureau. taking my credit score from XXXX down to XXXX. So now they will not refi me because my credit score is down. What they do not understand is that they did it and that they refused to help because of that. So they keep doing this while i go deeper in debt. All i ask is that they refi me, take the stuff they put on my credit report off. i have been ontime for past 6 month, they told me after 3 months on time we will work with you. Well its been 6 and nothing. for three years i have been paying over {$4200.00} on interest and {$1200.00} on my principle per year. Also they have raised my esgrow account from {$130.00} a month to over {$210.00} a month, mean while my insurance and taxes have not gone up since i signed the papers. my tax goes up only {$40.00} and down depending on the schools needs. my insurance highest was {$1000.00} i have since redid insurance XXXX to keep it below {$800.00} a year. But Wells Fargo has broken verbal promises, they have lied to me about why my payment keeps going up even though the taxes and insurance as i write this are the same as when i signed my mortgage but the increase of 100 % is alarming. They refuse to help because of my credit score in which they brought down as i was fight for life. This bank has done alot of damage to my credit, my life and yes i am on XXXX because of XXXX during my XXXX XXXX. I just need this bank to do the right thing. they have disciminated against me, they have put me in a financial pickle. I have tried but all i get is no we ca n\\'t because of your credit score that we brought down. my next step is to sue Wells Fargo XXXX XXXX for unethical business practices and unethical discrimnation of finacial help, and unethical lending practices. The 6 % i pay on this mortgage is unreal and Wells Fargo owes me for overpaying the last 3 years. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 764\n", + " high_rank: 764\n", + " label: \"when ever i make a purchase my rush card hold more then my purchase was \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 765\n", + " high_rank: 765\n", + " label: \"when Macys changed their billing info to a different bank, they changed m account numbers, moved purchases bought on Macys Am Ex with a 16 % APR to Macys Store with a 25 % APR without telling me. They also shut me out of my account on line and as such after 8 months of phone calls could not get them to send paper statements. I paid each month by phone w/ no idea of what was in the billing. I was unable to return items in this period as they had changed the account numbers the billing and original receipts did not match, Many calls to customer svc then many emails to CEO XXXX XXXX, a XXXX called and got me on the web site and arranged for me to return the items had been unreturnable for more than 10 months. But XXXX went on vacation and after returning items ( with much hassle ) we demanded interest adjustments. XXXX denied claiming the interest charged paid on items never worn with tags pristine was rent for the item - ie one return had cost {$55.00} in XXXX and by the return time interest had accrued on it for an addition of {$250.00}. That \\'s just one of the items returned. We debated with XXXX who then accused my mother and self of having \\\" taken \\'\\' stolen the items we were returning. We have the original receipts - and they Macys Am ex number charged on does not match the new account number Macys gave us to increase the interest 9 %! Even sending proof in email they refuse to deal with the real issues - Changing account numbers! Moving the XXXX to store account to increase interest from 16.9 to 25.8 % which elicited Macys XXXX of dollars in interest, Calling us thieves and slandering us, failure to credit interest adjustments, and when we placed the account inn dispute continue to charge interest. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 766\n", + " high_rank: 766\n", + " label: \"when I was unemployed I made my payment and it was fully paid \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 767\n", + " high_rank: 767\n", + " label: \"when I was issued USBANK credit card it was disclosure about interest rate and term that I agreed, my point in credit cards XXXX, XXXX and XXXX since they are dealing withmoney that credit cards co must protect their clients against fraud and identity theft, on XXXX/XXXX/XXXX I purchased item that was defective and incorrect power source, since the item coming from XXXX, since I paid with my XXXX card, USBANK must disclose the transaction to me that if paying with XXXX if returning the item you are responsible for shipping cost if your item is defective and wrong not only did that it also caused stress and financial injury for not disclosing it at time of purchase than must pay the cost and compensate me for stress and financial injury and CFPB must panelize them. I think the XXXX committed fraud and knowingly shipped the defective item with wrong power source and since the cost of shipping is about {$210.00} I will not be able to return it. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 768\n", + " high_rank: 768\n", + " label: \"when I was employed by XXXX XXXX Services I was getting a pay check every week. The company was struggling financially, but they kept paying me on time with no problems. I was faithful to this company for 7 years. We where a small company of less than XXXX employees. We had a shop of XXXX guys and sometimes they would get a check sometimes they would n\\'t. but he kept my paychecks on time. What happened next really surprised me. I was going out of town and return on wednesday. Friday before the weekend he handed me a company check, never does he do that it has always been a direct deposit, so after work around XXXX I deposited the check through ATM. I had US bank as my only bank at the time. Saturday morning i went to the bank and i withdrew {$400.00} dollars and i know it was that amount, because banks wont allow you to withdrawl more for safety reasons. I had {$200.00} in my checking when i made the withdrawl, but because i deposited a night before i was able to take an additional {$200.00}. I did n\\'t want to take more because i had rent to pay that week, so i only wanted to spend what i had in hand. When i get back from my vacation i went to put gas at a gas station and my card was declined, i have no idea why it was declined. I had money in my checking. I tried using it again at the market and again it was declined. so the next day i call my bank and they said my account is closed! they said i commited fraud i did n\\'t understand what i did. They said i should go inside my branch to discuss with the manager so i went in and they told me that the check i deposited bounced and that i withdrew money more then what i had. i explained to them that was a company check and i withdrew because their atm allowed me to take {$200.00} above what i had in my account. So they said they closed all my savings and checking. They put a hold on any money i had in there until they can resolve the issue. The following day i went to the owners bank. XXXX XXXX and explained to manager what happened he said he could n\\'t do much. The owner found out i went to his bank and he really got upset because he said i could of ruined his credit and chances of getting loans. I told him he put me on a black list and it was his fault for bouncing the check he said he was sorry and that he can issue another. That was to late because US bank did n\\'t want to work with me or help me they just shut me down with no phone call or allow me to resolve the issue they just closed all accounts and didnt warn me. I felt betrayed by all parties my employer and my bank. I told US bank that there will be a direct deposit going in that Friday if they can please just take me off the list, they said it was to late they already put it and they could n\\'t do much. I felt that was wrong because not once did they call me to resolve this or give me the chance to fix it. I only found out when i tried to put gas. This has been now years of stress that i can not open any checking account. I have XXXX account and only because my father opened it for me. Its very difficult with only having XXXX bank when they are closed weekends and they are XXXX from me if i ever want to walk inside the branch. I would like US Bank to please take me off this list as it was inaccurate and not fraud. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 769\n", + " high_rank: 769\n", + " label: \"when I try to get my credit report I \\'m asked security questions like what bank do I have my car loan through and what bank is my mortgage through when I answer none above it says I have answered questions incorrectly when I do n\\'t understand why when I do n\\'t have a car loan nor do I have a mortgage and I have never lived in the states these loans are. So it want allow me to see my credit report \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 770\n", + " high_rank: 770\n", + " label: \"when I moved out of my apartment I owed the owner XXXX dollars. they took the money out of my check every pay period until they got the hole balance so every time I apply for an apartment I get denied. so I called the credit people and they said the owner was still on there. I really need that off I fax the credit people the proof that I payed it.so I really wana no can you take that off thank you. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 771\n", + " high_rank: 771\n", + " label: \"when I got the loan in XXXX 2015, I told the dealer that a due date of the XXXX would not work for me can I change it. They told me yes contact Ally and they will change it. When I spoke with Ally I asked about changing due date, they told me to make XXXX payment then they would. I inquired again on their website and was told to call. The agent I spoke with said it was changed and I had to pay a fee of XXXX for the change. She did n\\'t say when, said I would get it in the mail. Today XXXX/XXXX/2015 I have been called by Ally collections XXXX times and it is only XXXX am. I spoke to them on the last call and the agent told me I have to pay now, today or it wont go through. I told her that was why I changed dates so it wont be late anymore. She kept pressuring me to pay now, or this week. XXXX I was never told of the change fee originally, XXXX if my due date is not until the XXXX now why are they calling still asking for me to pay. I explained to the girl today that XXXX of the month I have rent, utilities, other car payment, insurance and there is just not enough to pay the XXXX payment. the middle of the month is good for me and I can pay then and not be late. She would n\\'t listen only pressuring me to pay now and said I would have late fee if I do n\\'t pay. How can I have late fee on something not due yet? On top of that Ally uses off shore people to handle their calls and they do not speak XXXX very well. Hard to understand them and they can not understand you. I could tell she was just reading from script. I am trying to save everyone time and money by changing dates but they are making it very difficult. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 772\n", + " high_rank: 772\n", + " label: \"what happened is i think my bank is charging me twice for transactions. when i go online with my bank i will see transactions posted with one balance and these are supposedly cleared. but when i go on to the website i see those same transactions on a different day with another balance and even when i have had another payday.i would like to have a rundown of my account done and would like to have the bank stop moving the transactions around. i think that there is a discrepancy in their banking practices. and they could be charging us double on our line of credit also. all i know is that when this practice happens the differences in the amounts are hundreds of dollarsl. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 773\n", + " high_rank: 773\n", + " label: \"what experian has done is illegal. They have updated my 6.9 yrs old closed account and converted a fully paid good account with notification of paid in time into a derogatory account as being late 120 days. The account in question is a secured account so no question of any money being due.XXXX has never demanded any money from me in 6 .9 yrs. Converting it from a good account to a bad account after 6.9 yrs on a closed account equivalent to reporting a late payment after 6.9 yrs. This is beyond the statute of limitations. Surprising enough they report payment received in XXXX and late in XXXX.Are credit reporting companies XXXX. Now i have to sue XXXX XXXX. by the time they respond my account will be deleted. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 774\n", + " high_rank: 774\n", + " label: \"westlake financial services, I contacted them on XXXX XXXX to voluntarily surrender my vehicle, they claimed it was being proccessed, called them back nothing, continued calling, they said it was being processed, all the way to XXXX when they stated it was never put in to be collected, demanded i fax them it in writing, called to collect on overdue amounts after i told them i was XXXX and could not pay currently or drive the vehicle due to medical conditions. refused to remove an ach claiming i never specifically stated to remove it. and other tactics. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 775\n", + " high_rank: 775\n", + " label: \"westlake auto finace did loans with them as an agent they then canceled my contract 4 years ago they then funelled my coustmers to other stores now there comming back 4 years latter saying i have XXXX in buy backs my contract said i was on first payment recourse all of these XXXX coustmers made XXXX to XXXX payments they harrassed them called there niebors family freinds anybody nothing the truth im XXXX years old retired XXXX ive tried to reson with them but there atty said it more fun to go threw court there using corprate money to exort money also they have to give these XXXX people setllments to they are already trying to double dip i also have proff tht they had my gm signing fake contracts \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 776\n", + " high_rank: 776\n", + " label: \"westersky gave the loan to cashcall with gave the loan to delbert servicei have been get threateding phone call XXXX that is calling from XXXX group ( XXXX ) XXXX say that i need to contact or my lawery because some serious allegations was filed. she has been call me employment and cell phone and know they started to call me husband. they told me husband that this call on the behalf of delbert service. and left him the same message. this lady has called for XXXX weeks straight. know i am getting threating calls for a XXXX states a file was giving to her and that i need to contact there office and that is is only notify me and that i have till XXXX XXXX and that XXXX XXXX XXXX bewteen XXXX and XXXX they are going to me place of employement or home. and top take that i been served \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 777\n", + " high_rank: 777\n", + " label: \"western union advertise on they side real-time currency ratesthis rate much different from actual rate you receiveagent from kiosk try to blame western union about this spared and western union supervisor blame agent. on they site on the moment I send the money rate was XXXX and I receive XXXX Today on forex USD to XXXX is XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 778\n", + " high_rank: 778\n", + " label: \"west assett management, a third party debt collector had attempted to collect a invalid debt for a cell phone account bill which had been settled years previous and the account closed with a {$0.00} balance. Please reference Case number : XXXX, after discontinuing collection activity for this account, they sold this invalid debt to another third party collection agency, XXXX receivables. This new collector is now attempted to collect for the same invalid, unverified and fraudulent alleged debt. XXXX receivables failed to properly notify of intent to pursue collection attempt, or provide notice of right to dispute. Without properly verifying accuracy or validity of alleged debt, the company reported to the credit reporting bureau \\'s that the debt was an unpaid account in collections, this improper information was reported on my credit report improperly and the alleged debt itself was fraudulent and improper due to having been re aged to appear as if the account and debt were recent, and the balance reported as owing over {$700.00} when in fact I provided documents clearly showing a {$0.00} balance and date of last bill from 2011. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 779\n", + " high_rank: 779\n", + " label: \"went to trade in XXXX. Contacted XXXX for lease pay off. XXXX gave us the information, paid it off. a few days After that occurred, XXXX sent us a notice and said it was considered a repo because it was an early payoff. XXXX said they were n\\'t obligated to tell us that at the time we traded in the car. Tried to get the XXXX back they would not return the car to us. Had XXXX given us the information in the first place we would have never traded the car in. We did everything right the way XXXX and XXXX told us. XXXX nor XXXX alerted us to this issue. Now they want another XXXX for early lease, and other penalities. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 780\n", + " high_rank: 780\n", + " label: \"went to Equifax site and looked at my report and noticed bank cards in my bankruptcy had DATE REPORTED, this year and last year, I did my bankruptcy 5 years ago and have had good credit since. Then tried to click on the complaint key and got knocked out and ca n\\'t get back to get my report. Thank you \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 781\n", + " high_rank: 781\n", + " label: \"went online to check my credit score and saw that i had an account open with XXXX XXXX, i had never applied for that credit card. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 782\n", + " high_rank: 782\n", + " label: \"went online and applied for a BP Credit Card and when I got to the end of the credit card application I received an immediate response stating \\\" In order to complete your application you must call XXXX within XXXX hours to complete your application. \\'\\' If we do not hear from you within 7 to 10 days then you will receive a letter from us. I called and it about XXXX Est standard time and a female representative came to the phone and said that my application would have to be done manually so she takes all my information including me disclosing my social, birthdate, address, income and then gets to the very end she comes back and says that she is going to have to transfer me to another department and I asked her what the problem was and she says that she can not disclose that information to me due to the privacy act. So I get transferred and another female rep comes to the phone and says that she can assist me and explains that they are having trouble with their computers, so here we go again and she takes my information XXXX again and I ahve to disclose all my personal inforamtion and when she gets to the bottom of the app she says I am going to ahve to transfer you to a specialty department and I ask her what the problem is and she states to protect the privacy of the applicant, she can not disclose that information and I have to be transferred to a specialty department so someone can speak to me to disclose what the problem is. XXXX I had to disclose my personal information and now they just accused me of stealing my own identity. I told her I wanted her name so that I could get to the bottom of the matter or either she could disclose to me what the problem is and she continues to apologize but due to the nature fo the call she has to transfer me to a specialty department if I want the information disclosed. I finally ask her once more she has a choice and basically refuses to give me her name and tells me that due to the nature of the call that there is a possibility, I am not who I say I am and I would need to speak with the specialty department so further action and attempt of verification could be dealt with. I have never been accused of such in all my life and I told her so and I also told her to cancel the application so it would not be recorded on my credit bureau report. Well they recorded it anyway to my credit Bureau report but that is not an issue but I feel that I should not be treated like a criminal. I still do not understand what all the big deal is and I am embarrased to know that I was basically accused of stealing my own identity. I should not ahve had to go thru the process all over and she should not have told me that could take of it until I was in the correct department and she would not offer to even get her supervisor on the phone which she kept me tied up for 1 1/2 hours. The reference # was XXXX I think this issue needs to be addressed so other good creditors do n\\'t get treated like I did. They should have to pay me XXXX for my humiliation and phone time. This is not the XXXX time that I have went thru this with them but it will be the last. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 783\n", + " high_rank: 783\n", + " label: \"went on the internet to search for home refi for convention to an FHA loan. Found American Financing Corporation, XXXX CO, and it said it was an FHA place I could find the information and financing I was seeking. Ended up with XXXX XXXX who tried to ramrod us into a XXXX loan. It was not explained they could not offer a XXXX which we needed looking for an FHA product. Head games looking for answers on when told not to pull a hard hit on my husband \\'s credit. My husband said \\\" not at this time \\'\\' and her answer was \\\" to late \\'\\' she had the report. Then the head games trying to cover herself with XXXX us on speaker phone saying my husband was lying. She tanked us on being able to find a lender to suit our needs and it was a head game with her saying my husband gave her card blanche when it was never given. We needed to see if we could raise our XXXX scores for better rates as we had just a hard hit about a week prior and unable to obtain financing with another lender. We never would have been able to get our house through a XXXX appraisal and lost another appraisal fee. No written, nor verbal, approval was given to pull any credit report and we received the paper, for legal written approval, 4 days after the \\\" to late \\'\\' conversation so she could cover herself. We, me nor my husband, will not sign making this ok and I just will keep my present mortgage. There are many more issues involved in this that can not be brought forward in this description. It is heart breaking trying to refinance and unable to do so when the appraisals, XXXX scores, and any other issues they ( other previous lenders ) can find wrong we can not resolve and the process is tanked from the beginning. We were looking for information and got ramrodded ( for lack of a better term atm ) into either signing up for something we do n\\'t feel is right and not getting what we need, then having someone manipulating us into a product we will never get. We needed a lender, broker, or business we could WORK WITH BEFORE we got pushed and hurried up to sign paperwork that could burry us in a situation that could force us to lose our home if pushed into a closing. This whole situation is insane. I have XXXX character remaining and know we will not find what we are looking for with this business and have to wait out the hard hits and start this over with another lender when the time is available to do so. It was a constant case of being contradicted trying to find answers and a follow up phone call with someone who was trying to side step to cover her as* what is in the paperwork we, mainly all my husband \\'s information, trying to take me off the mortgage note and saying my husband gave no information about his wife of XXXX years to write the loan. Then she tried to say it was my husband only asking for XXXX on top of the loan and my husband knew we needed much more to resolve things we had lacked maintenance on, and would like to make other changes to the structure & property since we bought the home in 2001 - not to mention other liens on the property my husband can not explain. There is in no way he could or would have authorized moving into a transaction without his wife. His name was given for initial contact because there was only one space to put one name for initial contact and his name is 1st on the current mortgage XXXX XXXX ) for a joint transaction we are seeking. At present time we hold a loan application and all the document necessary to proceed for a loan product but unable atm to attach it to this complaint. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 784\n", + " high_rank: 784\n", + " label: \"wells, XXXX teachers fed cr union in ny, and myself were not serve notice from the hoa. I therefore should not be responsible why the hoa did not serve us. Condo was forclouse and new title issue on XXXX XXXX, wells paid pty taxes on XXXX XXXX and town should issue a refund to wells \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 785\n", + " high_rank: 785\n", + " label: \"wells fargo took a deposit from me on XXXX/XXXX/16 to this date they still have not released my funds they have bounced XXXX checks, and charged me {$70.00} according to bank check was drawn on it cleared their account XXXX/XXXX/16 so wells fargo has had this money in their account for 10 days and have refused me access I have had an account with this bank for over 15 years no one from wells fargo is interested in helping me they need to be held accountable for this and I am sure many other banking transgressions \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 786\n", + " high_rank: 786\n", + " label: \"wells fargo sent a new card to an address that is not mine and did not request refused to take false address off my account. refused to resolve problem or help me find the person that canceled my card and had a new card sent to them. told me they could not take false address of my account. no help offered status of account. do not know if crook is out running up charges on my account or not .the crook has total control they claim I can do nothing. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 787\n", + " high_rank: 787\n", + " label: \"wells fargo is damaging our credit by stating we are behind on our mortgage when we \\'re not.rreason for this is because they claim they under estimated our escrow account but never sent us any notification of this! we contacted wells fargo to see why we keep receiving notifications that we are behind on our mortgage, the customer service rep explained, did a conference call with a rep in the escrow dept & he verifyed this information as well that nothing was ever sent out to us regarding a mortgage increase because of our escrow.this is just XXXX of the many problems weve had with wells fargo being misleading, dishonest, unfair bussiness practicing & not upholding to their introduction on their customer service line when it comes to calls are being monitored & recorded b/c most of the customer services never document anything especially if wells fargo is in the wrong! i dont think this is fair that we the customer has to pay in so many because of their noncommunication, miscalculations & common sense should tell them that if a customer is paying their agreeed to monthly payments, then maybe there is a issue that needs to be addressed XXXX instead of slamming a customers credit! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 788\n", + " high_rank: 788\n", + " label: \"wells fargo has not reported correct information. My credit scores still read that I have not made a single payment since 2008. Wells fargo has been contacted in the past by XXXX XXXX about the payments. She is the other member of the JOINT ACCOUNT. SHE HAS ALREADY SUPPLIED ALL THE PAYMENTS FOR THE PAST 5 YEARS. Wells Fargo has yet to update my information. I have recived a useless phone call from a useless person who refused to go over information and was more worried about verifying information. It is now at the point where the mortgage has been transfer to bay view loans with incorrect information. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 789\n", + " high_rank: 789\n", + " label: \"wells fargo has denied me a loan modivation which I qualify for.they have changed my case maneger 3 times and never return phone calls.they have wrong information on my financels.I finalley got a hold of some one to find out why I got denied and there number of my monthly income got put in computer wrong.so I resubmitted.and know one called and now XXXX XXXX they started forcloser and I just got letter in mail 3 days ago.I have been in my home 18 years and have had my XXXX 30 years.my interest rate is XXXX wells fargo has been very challenging to deal with its because I have a little equity in my home they will not give me loan mode even though I qualify. I am a hard working single female.XXXX is why I feel behind she is XXXX and had to help her, I am only behind XXXX payment over the last 3 years, if they lowered my rate and added past payments on back of loan I would be fine. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 790\n", + " high_rank: 790\n", + " label: \"wells fargo dillards never provided any proof of validity of debt with my signed signatures on any transactions or application or that any items were received by XXXX and signed for at my home all they provide is copies of a statement but no signed items and the account as a result of fraud issued by dillards without my Consent and this has causes me emotional distress that dillards wrongfully refuses to remove this fraud account from my credit reports and has not honored there XXXX fraud liability policy and have gotten nothing but rude customer service. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 791\n", + " high_rank: 791\n", + " label: \"wells fargo charged me over roughly XXXX dollars in charges. They also held a check up for {$890.00}. Then they closed an account without explanation so I can never recover my monies. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 792\n", + " high_rank: 792\n", + " label: \"wells fargo bill me for atty services XXXX, XXXX this is the XXXX time they did this and do n\\'t explain it. There a court date on XXXX XXXX, About a settlement for judgment, they need to explain things to me. And they s/b be suing the XXXX who created this mess, thinking they could foreclose on pty that the bank owns, by not serving them. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 793\n", + " high_rank: 793\n", + " label: \"wells fargo bank mortgages. Are lieying fradulent cheats, i have over XXXX case history complaints with the cfpb since 2012, they have doctered documants,? but i have all the originals that shows them to be lieying cheats, iam going to sue them and also you for allowing them to comitt fraud and perjury and falsifying documants now iam comming for you? 7 day notice of proceedings, the truth will come out and i will show the world how decieptfull you realy are scum \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 794\n", + " high_rank: 794\n", + " label: \"wells fargo bank is blocking me access to my account/money & has since XXXX. XXXX store manager XXXX XXXX XXXX XXXX XXXX XXXX XXXX, al XXXX she blocked all access to my own money after i reported her for not knowing how to activate an instant debit card. she retaliated against me for reporting her, and told me to call loss prevention & therefore, they told me they she told them to block my from getting my money out of the bank. me & my children have been starving and without for 2 days now because of this banks actions. i want access to my funds immediately! Also, yesterday they printed my balance & i have a paper receipt of : {$4400.00} Open XXXX ( R ) Savings Total {$4400.00} Activity Summary Current Posted Balance & today my account went down somehow by balance of : {$4300.00} ANONYMOUSLY, AND WHEN I DIALED THE XXXX THE OPERATORS WERE ASKING FOR MY ONLINE BANKING USERNAME & PASSWORD. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 795\n", + " high_rank: 795\n", + " label: \"wells chg me XXXX on XXXX/XXXX/15 there is supposed to be no chg as this is a short sale. Weells is supposed to pay all atty cost, XXXX XXXX and to me XXXX in moving cost. They have yet to get a closing date on this pty. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 796\n", + " high_rank: 796\n", + " label: \"wells Fargo has denied my application for a cheaper payment, citing my cosigners income as the reason. My cosigner is actually in dire straits himself and is in the process of filing chapter XXXX. I ca n\\'t keep making the payments they want ( 35 % of monthly income ), I do n\\'t have the money to pay what \\'s past due, I ca n\\'t adjust the payment amount and I ca n\\'t ask my cosigne for money. I have no options and it terrifies me \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 797\n", + " high_rank: 797\n", + " label: \"wellfargo. took money form my checking account. and in stad of puting it in my mortgage account it put it in my principal that was over {$15000.00} in the account.know i cant pay bills and mortgage on time.thats was whit the money was for.I went to tell them whit happen and said day coud not do anyting about it. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 798\n", + " high_rank: 798\n", + " label: \"well, i cash my income tex check with XXXX XXXX in 2008 i put the sum of XXXX dollars a cuple weeks after with XXXX XXXX and netspend was the card holder at that time, well i was told that the card would be sent to the address i was staying at, well i ended up moving before the card came, so i went to the place where i was staying at and talk to one of the guys who work there and he said that a card came but he sent it back to the sender where the card came from. so i went to the place where i put my money at and they told me that they didnt have any paper work on or about my money or anything showing about what or how much money i put in that i would have to talk to netspend, well i talk to netspend and they lie, d about every thing, i know what i did and how much money they owe me, and if i dont get my money real soon im going to sue them i talk to my lawyer yester day. thank you XXXX XXXX XXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 799\n", + " high_rank: 799\n", + " label: \"well you did a case for me on XXXX dba XXXX well i just got back into transunion and looked up XXXX XXXX., which i been disputing, over again. well i got init tonight and found all my payments missing all of them wiped out the only thing i see is showing is late payment monts on it, but know paid payments. i trying to see where they went and so i did anothere dispute again. it like all my payment from my account are missing even credit card and my lind of credit from XXXX, need your help. i asked attorney general but since then nothing \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 800\n", + " high_rank: 800\n", + " label: \"well this is XXXX XXXX complaining about ocwen so I am very sure you know whats happening. and I want to let you know that ocwen just informed me this evening of an in house offer and this is what they said. we will take your interest rate to 2.0018 from 5 %. a house payment of XXXX a month. ( mind you our payments were XXXX a month when we started asking for help in 2011 ) and a net present value of our home at XXXX, and a market value of XXXX, with a principle balance of XXXX so our home is at present worth XXXX or XXXX and they are collecting XXXX with a very nice balloon payment of approx.XXXX at end of term. another helping homeowners is what we do, good deal from ocwen, right? ok, let me also say they have not even tried to ask our investor, XXXX XXXX for a principle reduction. you would think after all the XXXX they have put my family through they would at least ask .... they have our income at XXXX a month and want us to pay XXXX a month. then we have XXXX a month in child support, a XXXX yr old to support, groceries, electric, and so on ... .. there is something wrong here .... \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 801\n", + " high_rank: 801\n", + " label: \"well now that Im on a computer where I can print my report from, I wanted to be able to view it so that Im able to print it out \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 802\n", + " high_rank: 802\n", + " label: \"well my concerns is about my credit I have problem with the capital one bank they send me to collection I open I count with capital one bank 2004 in XXXX uta they give me XXXX dollars for credit I never finish the pay after I closed my account I thinking capital one bank discriminate me inspector general I need help thank \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 803\n", + " high_rank: 803\n", + " label: \"well i got a loan from credit acceptance corp for a XXXX dodge caravan that put it at XXXXthey repo my van with no calls are mail i was be hide in paymeants and book price is XXXX not XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 804\n", + " high_rank: 804\n", + " label: \"well XXXX they gave me some insurance on the car told me it was all the life of a long for {$800.00} but in 6 months it was cancelled because that \\'s all I went for and they told me that I can get license plates and everything with that when I got it so I stop paying for my own insurance because this insurance and they told me a lie I could n\\'t get plates with this because it \\'s not in XXXX that \\'s {$800.00} they still have any pain the long should be paid off they still coming at me so I need help because the car is paid off they called third parties on me they did a whole lot of stuff today shoulda called me all types of hours change dates they did n\\'t tell me nothing about this is so messed up company \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 805\n", + " high_rank: 805\n", + " label: \"well XXXX month ago I found out a car that I co-sign for was very delinquent so contacted the creditor a settlement they refused and demanded full payment I did not have XXXX so I felt I should do the right thing and make payments because after all I did co-sign for the loan. The payment is XXXX which I do n\\'t have and it has really put a undue burden on me. I wait for XXXX month and requested the creditor to update their credit files, because the report is now showing inaccurate balance and this is very misleading informationI, I was told the only way they will update any payments to this account if it was paid in full. ( balance ca n\\'t be correct ) therefore i had no choice but to requested Transunion to remove all the inaccurate and misleading information from my credit report these inaccurate details have adversely affected my credit worthiness and hampered my chance of acquiring new credit. Under the provisions of the Fair Credit Reporting Act ( FCRA ) I demanded transunion to re-verified and removed the inaccurate information. I provided them with prof of payments. I continue to send payment each month. They refuse to remove the inaccurate information this is damaging me severallythis is clearly a violation of the FCRA credit reporting act I provided prof of payment and the creditor is still saying owe the same amont of money there is clearly something wrong herethere \\'s discrepancies in the amount owe therefore by law it should be removedfor the according to the FCRA it should be totally removedthe company can not refused to update clients account if they are receiving payment this does not comply with the laws they are in total volition of the laws of the Fair Credit Reporting Act \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 806\n", + " high_rank: 806\n", + " label: \"well I fell behind with my mortage company due to my wife having XXXX sugery andwhile in surgery she had a XXXX and has n\\'t been working for some time approx. 3 years and have applied for a modification mortage company I was behind and the XXXX which gave me a loan for the moneythey paid get me current which I pay them XXXX a month I was doing well and due to decrease in hours I fell into a problem and was tring to work out an modification with green tree and they are changing my loan from XXXX percent to XXXX interest and my mortgage is goingup instead of it going down and they taking me from 24 years to a 40 year mortgageand I ask the gentlemen XXXX at green tree why he stated I already had an hamp loan in which I thought with and hamp loan the percent would only go up about XXXX % after XXXX years I been sent paper work to green trre and they been strong arming me to sign the documents they sent to me by XXXX/XXXX/15 cause that \\'s the best they can do for me I have sent the paper work to the attorney general office in XXXX to look into this matter further due to them being rude and telling that I have to take this deal or they going to take my home I have all the paper work and there bussines practices really need to be look at with the threats from there customer service rep. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 807\n", + " high_rank: 807\n", + " label: \"well I feel like I have no choice but to file a complaint here when I attempt to log in online it says that account details are no longer available I \\'m guessing this is because the account has been closed for well over 6 months now but because of that I can no longer send messages to you either that \\'s my first complaint you \\'re making it impossible for me to communicate with you the second complaint is about the XXXX dispute for {$400.00} which the transaction took place more than eight months ago it was disputed almost 8 months ago originally I provided all the tracking information the carrier confirms that the package was delivered to the proper address that belongs to the company there \\'s no proof otherwise that they have n\\'t received it and now eight months later you are billing my credit card keeping in mind a credit card that \\'s not even open anymore and has n\\'t been opened for almost 6 months I \\'m not sure what you \\'re doing there XXXX butt if Citibank is made a mistake processing all of this that \\'s your mistake not mine I have provided proof that the merchandise was returned unless the merchant has provided proof that they did n\\'t receive it which is far as I know they have n\\'t provided any proof of that I \\'m expecting a full refund you can discharge someone \\'s account 8 months later there are laws in place that you were breaking you are aware of this right? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 808\n", + " high_rank: 808\n", + " label: \"wel ive got alot of issues, we, ll start XXXX XXXX all XXXX XXXX. the recenmt over the limit that was reported is a complete lie, they added onterest which put me a few $ over. trhey did this b4 once when my balsanve was so high ( m thats done. just paid threm down in XXXX. but whenmi got a notification, i called custumer service and said a certain credit didnt go thru and their $ 50+ interest put me over. the csr said ( { and assured me that no0thing would be reported til XX/XX/XXXX. i get my dis on XX/XX/XXXX theyre due XX/XX/XXXX. so thryre alwayts earl ; y anmd wazy bedore the XX/XX/XXXX. now to the XXXX COAP??? i nquiries all in a month. i just found out thats XXXX XXXX XXXX. ive been getting preapprovalo letters up to {$35000.00} for apxc 2 years. in fact i bought new XXXX with itafter about XXXX monhs im wantyed to refi lower inteest. they approved me ( i have all documentaTIONstill ) then about a week later they call and said my employer filled the form wrong ( XXXX income, XXXX is XXXX main revenue source. my boss was on vaca tiohn fort 3 weelks. letters were coming in saying IF it were approved @ higher inrest rate. off and on back and forth i said forget thrm.. what im figuring now is the kept running my inquiries. THEY BETTER COME OFF ASAP!!!!!!!!!!!!!! I DONT THINK YOURE GOING TO WANT ME XXXX W/ THEM DIRECTLY. HELP ON THISW \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 809\n", + " high_rank: 809\n", + " label: \"we were in bankrupcy with nationstar, they claimed they were not getting payments from bank rupcy court.. we pulled out of bankrupcy and started sending payments o them. i belive they are holding the late payments from bankrupcy court agianst me. if i was months behind they would have reposessed. my atorney was XXXX in XXXX va, the bankrupcy court judge was a XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 810\n", + " high_rank: 810\n", + " label: \"we were harrassed and good credit threatened for 6 days because a payment they electronically took out of my bank account, they applied to a wrong account ... ..nothing on my end ... .all the error on their end ... .and they harrassed us saying they were going to charge us a late fee and report us for late payment when all along they had already taken money out of my account electronically ... .the bank printed it out for me ... they harrassed and harrassed us it was very stressful getting this straightened out and it took alot of phone calls and then we still got robotic calls ... .. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 811\n", + " high_rank: 811\n", + " label: \"we were charged a {$19.00} annual fee for a credit card that we no longer owned or used. We never got any statements and now we have XXXX thirty day lates on our credit report. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 812\n", + " high_rank: 812\n", + " label: \"we was told by underwiter and my customer assistance person that if we move back into the property that me and my husband will qualify for a loan modification ... however they denied the modification on XXXX XXXX 2015 and reason for denial is that we do not live in the property, which is a lie, we moved from XXXX texas back in the property with all proof, to be denied XXXX months ... \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 813\n", + " high_rank: 813\n", + " label: \"we refinanced thru a local credit union, within the year we were notified that Phh mortgage services had taken over our loan, at first it was ok then I was unable to make a payment on time, called them they said I could break that payment into XXXX lesser payments to catch up, not telling me that this was going to affect my credit score showing XXXX late payments, a couple years later my wife got layed off from her job XXXX, we asked to get a loan modification to help offset the loss of income, this was a nightmare, between the representitive that spoke broken XXXX to the constant problems with paperwork, we finally were told we could do a trial period of XXXX payments, we did that with out a problem until our XXXX rep sent the paperwork for the modification I would be paying on my mortgage until I was XXXX, so obviously we said put us back on our regular mortgage then I get a letter saying I owe XXXX dollars in late fees, which they said because you did n\\'t pay your regular amount that late fees were added, we disputed these fees but these people are not approachable, also they kept harassing us when we were in the modification in broken XXXX asking do you want to keep your house, also after we did the trial mod and went back to original mortgage, we got a letter saying we owed them XXXX dollars for original mortgage to get back on track, this company is horrible to deal with, you cant understand them and when you get an American to speak to they do n\\'t want to listen or hear anything you are trying to say to them \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 814\n", + " high_rank: 814\n", + " label: \"we purchased a home XX/XX/XXXX and was told by 5th3rd Bank officer, once we secured our loan, to let our other home go in to short sale. He said this wont hurt your credit because they are offering federal forgiveness, and it will be fine. Being this came from the bank, we felt pretty good about it and did just that. Now, XX/XX/XXXX we are trying to get a equity line from our current home and 5th3rd stated we do n\\'t qualify because of our credit and due to the short sale. After going round and round with them, their final result was, we cant help you out right now, try back in a couple years. This short sale we were told was ok, has put a damper on our credit and score over the past couple years and it was all due to 5th3rd \\'s employee assuring us it is ok. My wife and I originally were going to lease the house out until we could sale it for cost. I would not recommend doing any banking with 5th3rd at all. everything they have told us has done more harm than anything, and we will be paying for it for several more years.. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 815\n", + " high_rank: 815\n", + " label: \"we moved out of an apartment, we were refused walk through and billed for damages without any kind of proof, they also said we did not pay a security deposit which we have a cancelled check proving we did \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 816\n", + " high_rank: 816\n", + " label: \"we lost our home due to the countrywide scandal.we could not/were not allowed to refinance our home loan due to a XXXX on our house held by a third party. for over XXXX years bank of america was completely resistive to helping and ulimately we lost % XXXX in our equity and our home.we have tried many times to get help through the white house with no results.we appreciate anything you can due. thank you. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 817\n", + " high_rank: 817\n", + " label: \"we keep getting calls saying we owe a loan that we didnt even take out and that this company was going to take us to court and seek other damages and they call at all times of the day and nite and i told them just try and see what happens they have tried this in months past and we have caller ID so we dont answer the call and they quit for awhile and now it has started back and it comes from a XXXX # \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 818\n", + " high_rank: 818\n", + " label: \"we keep getting calls from midland credit which we do not or ever had any loans with and when we answer the phone they do not respond but when we call them back they want our phone number and we told them to quit calling but they keep calling our house \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 819\n", + " high_rank: 819\n", + " label: \"we keep getting calls from a company called portfolio recovery. they say there looking for a person who does not have this number. i have told them many times and they say ok we will take care of that yet they will call another XXXX times the next day they call at all times even on early sunday mornings. tell them stop calling and check my number and see who it comes up to i told them i am on the do not call list.and they still call some times after XXXX at night \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 820\n", + " high_rank: 820\n", + " label: \"we have tried for a home modification for almost 6 years. we kept getting the run around. they gave us a court date the judge said we had to be out in two months. we found a place to rent. a week before the forclosure. the bank said try again for a modification. then they said we ca n\\'t help you. you left the house. we did what the judge said. we checked on the house everyday. just another run around. the reason we asked for the modification my husband got sick and had to go on XXXX. we could not make the high payments anymore. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 821\n", + " high_rank: 821\n", + " label: \"we have paid off the XXXX ford truck I want it off my account and paid off XXXX XXXX get it off my account and XXXX XXXX was a terriable place to live XXXX next door to us fighing I called the drug enforcement took 5 months to get something done I feared my life and to many fires at XXXX XXXX and the one owner no longers owns it I want wwant it all taken off this is not fair the truck was sold at a action and after it was sold we owed nothing we got money back take part XXXX off and the ford truck and XXXX XXXX I pd XXXX XXXX in full get it off my credit ... ... ... ... ... ... ... ... ... ... ... .. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 822\n", + " high_rank: 822\n", + " label: \"we have owned our home for several years. We have been good about not using too much of our equity but we did take out a HELOC on our home. This HELOC now is foreclosing on us. We have applied to keep our home several times, last time being XX/XX/XXXX. My file was closed XX/XX/XXXX due to being incomplete. I have sent everything to ChASE everything they ask for, they would say that they never receive my faxes, give me other faxes and now I am losing my home because of this problem. I was told that my package was complete I thought I was under review, months later when my documents expire CHASE just asked me to resend the package again, over XXXX pages over and over. This is because they never review what I send them, they wait until it expires to ask for more- and now instead of helping me keep my home they wish to foreclose and evict me. I have even tried to do a short sale for HAFA and they are giving my agent the same problems with the fax, they resend things over and over but never can get CHASE to ackn receipt. I do not know what else to do- I often request to speak with a XXXX speaking representative but chase just assigns me to people that only speaka XXXX, I did not understand that I was supposed to resend everything again because it is old now. instead i get a denial \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 823\n", + " high_rank: 823\n", + " label: \"we have mortgage with greentree servicing. I applied for an inhouse modification which would reduce the interest and put the late payments at the back of the loan. and forgive the late fees. ( they would not even talk about a mod until we stopped paying them XXXX so thisput a negative impact on our credit scores. we use auto bill pay which insure ontime payment and now they claim we were late and want to tack on over {$10.00} XXXX in interest and {$600.00} plus in other fees. the forms they send out are so confusing and talking to a customer care rep is so bad. This month they send out XXXX invoices for XXXX payment and they are not even sending to my address where I live. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 824\n", + " high_rank: 824\n", + " label: \"we have lived in our home for 30 yrs. We are XXXX & XXXX yrs old. We have a son that is XXXX old who is a XXXX individual of XXXX. We have been scammed by our mortgage co as they have altered the income information greatly. Took my wife off the mortgage when she was the main source on income. Have a XXXX mortgage and we never took any money out of the house. My income was {$800.00}. per month from my part time job. The bank altered it to {$8.00}, ooo. per month. I did have an attorney look at the original loan documents and she has told us that it does most certainly appear to be fraudulent and it would take thousands of dollars to proceed. we do n\\'t have the money we are broke. We would like the bank to make good on their error asap before foreclosure as the pressure and the stress at our age and XXXX are too much to bear any longer. We tried for a loan modification XXXX times with and without help with no success. They always needed more info or the info expired it was a two year process. I hired a group of lawyers to help us and they scammed us and also made us enter into a credit card program that was also a part of their scam. They are all under arrest and have been indicted by the XXXX XXXX XXXX \\'s office. that was over {$21000.00}. we lost. we have been in contact with that XXXX \\'S office XXXX times after all their assets are seized some monies could be refunded to their victims. This has been going on since XX/XX/XXXX. We have no money to get a mobile home in a XXXX community, and we can not get any financing because our credit scores are not high enough and that is what I want to do. I am not looking to get rich over this but some money to buy a mobile home outright and some money for the anguish my wife and I have suffered would be satisfactory as this mortgage company has not helped us at all of even shown us some compassion from the beginning. They sold us a mortgage they knew we could not afford and would eventually foreclose on us. They know they are wrong we had an attorney put a cease and desist order on them as they were calling XXXX times a day and having me explain it over and over again. They have called some XXXX times since the cease & desist order was placed on XX/XX/XXXX. I am really at the end of my endurance financially, emotionally, and self worth their is nothing else for us to do. Soon we will be homeless I never thought my life would end this way after all the years of hard work this is what we have come to in our lives Thanks \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 825\n", + " high_rank: 825\n", + " label: \"we have learned the debt collector, XXXX XXXX, aka a criminal atty and unlicensed in the state of nevada never validated the debt since XXXX according to a XXXX XXXX XXXX of XXXX XXXX XXXX XXXXhere is the timeline:XX/XX/XXXX they filed a complaint in court as per attachedXX/XX/XXXX they served someone named XXXX in a gardenXXXXXX/XX/XXXX they filed the affidavit of serving someone named XXXX in a gardenwho was not methe judge noted in the minutes and transcript this is not proper service and often clerks just file things as they are presented without looking at anythingXX/XX/XXXX they obtained a default judgment by filing an affidavit serving XXXX without proper servicewhen i was not in town from XX/XX/XXXX through XX/XX/XXXXon XX/XX/XXXX i telephoned XXXX XXXX office, i asked them what this is, what is this for what are the amounts and charges for date of last payment etc ... i was put on hold and switched around several times and then told no need to answer ... they \\'ll take care of iti mailed and faxed to XXXX disputed the amounts and requested validation on XX/XX/XXXXi never heard from them ever again until 4 1/2 years later when a phone call from a XXXX at XXXX telephoned 3 times and hung up ... on my voice mail without identifying himself as to why he was calling. i have it on my machine then a letter was received dated XX/XX/XXXX received by a receptionist XX/XX/XXXX at a company that i am not an employee of ... along with demands for payments in amt of XXXX along within the demand and threats that strangers are responsible for this debt and if they do n\\'t comapy there is jail time it noted my entire social security number and my name ... which i understand is a breach of security and violation of nrs 239 statutes as well as a federal statute ... i have that statute written down that it violated. since then i have received mail addressed to my property in the name of XXXX towing companies that are being offered lines of credit. i have had to put a fraud alert on and so far several charges have been made that are not mine. i have learned the towing companies are out of XXXX and XXXX ... i looked up these companies that are using my property ... several consumers made XXXX videos stating their cars were being seized illegally by these same companies that are using my property and address. i wrote to the the atty general office they said they got my info from the chamber of commerce. i went to see the president of the chamber he said the towing companies are not participating in the chamber events and apologized. and their information is not in their system anymore. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 826\n", + " high_rank: 826\n", + " label: \"we have had a chase credit card account for our business for nearly XXXX years. it has never showed on our personal credit reports. a payment was late in XXXX XXXX this was a bank error. chase decided to report this lateness to the credit bureaus and put the account on our credit reports even though the account and the previous XXXX years of on time payments had never before been on the personal credit reports. as long as it was in a positive status they did n\\'t bother reporting it. only when it was late did they decide to add it. this late payment status has negatively affected my credit and has caused a lengthy mortgage refinance process to come to a halt over this late payment on the credit report. without this refinance we stand to lose close to {$90000.00}. chase will not entertain the possibility that this is an error. they refuse to change the information. they do n\\'t care even a little about customer service or a decade long customer relationship. they did not speak with us prior to this action. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 827\n", + " high_rank: 827\n", + " label: \"we have had XXXX XXXX as our lender on our first and second mortgage for over 20 years about 2 years ago they sold both our first and second mortgage to a company called Statebridge Co. in Colorado we made our payments on time and then the first week of XXXX we got a letter that the said the mortgage had matured and that we had untill- XXXX XXXX to pay {$320000.00} in full or they will foreclose on our property we have tried refi with them but they wont listen at all any help would be nice also they had both our mortgages but about a month ago the sold our XXXX mortgage to XXXX servicing about 3 weeks ago. We need some help they are totally uncooperative \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 828\n", + " high_rank: 828\n", + " label: \"we have disputed with all of them for years, under the fair credit act anything in collections gets deleted because we do not have a agreement with the collections company we have a agreement with the credit card company and they will not remove them at all \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 829\n", + " high_rank: 829\n", + " label: \"we have been trying to short sale our home due to my wife \\'s medical conditions for the last 2 years I have given them al the required info they have requested we have now been thru XXXX buyers on our home and They still keep asking me for the same documentation every time we give them things as they need it and still have to send more papers every week.here is what we sent them \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 830\n", + " high_rank: 830\n", + " label: \"we have been trying to save our home for quite awhile now. They are always missing paperwork, when I filled it all in, faxed it and fedexed it. I have been through at least XXXX or more account managers. it seems that as soon as things look close for a better payment they change our account manager. We are frustrated! now our home is in foreclosure wit a law date of XXXX XXXX and they still are doing the same thing with the paper work. We \\'ve worked hard to upkeep our home. They were suppose to get back to us with a rate that is XXXX our income. We are dealing with family health issues that are being resolved which will add to our income. We are frustrated and do n\\'t know where to turn. We can not afford an attorney at this time and they know this. What can you do? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 831\n", + " high_rank: 831\n", + " label: \"we have been trying to resolve our mortgage problem with a deed in lieu of filing. To this point we have signed all the paperwork and vacated the property. We were participating in the \\\" cash for keys \\'\\' program. All the paperwork we have signed and submitted states the property must be in broom swept condition. Also we were told that as long as the property was vacated in broom swept livable condition we would receive some compensation. Now that the house is signed over and out of our control we were told that because we left items in the house we will not receive any compensation. All the items left were usable by the next owner. we were never told that the house had to be empty to the walls ... I have called my account manager numerous times and never get a call back I always have to contact them. My last contact was 11 days ago and I have still heard nothing. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 832\n", + " high_rank: 832\n", + " label: \"we have been getting late night collection calls from our mortgage company because we are two payments behind. We have been in contact with the on a monthly basis to let them know why we are behind and when the next payment would arrive. The other night we received a call from the same number at XXXX. It showed up tonight again when the representative called and harassed us about all of the things we have given the information on just last month. The representative refused to accept my answers and threatened more harassing calls until the loan is brought current. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 833\n", + " high_rank: 833\n", + " label: \"we have been contacted by hunter warfield collection agency approximately 5 times. each time we requested paperwork sent through the mail for official verification. each time I provided my address and each time I was told that I would receive it within 7-10 days. I have never received anything. the last time they called me they were extremely rude and disrespectful. they argued with me and said they sent it when they never did. we told them we had no problem paying them as long as we received something official in the mail. they argued, their supervisor argued and then they hung up in my face. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 834\n", + " high_rank: 834\n", + " label: \"we have an agreement and this should not be reported in my account \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 835\n", + " high_rank: 835\n", + " label: \"we have a mortgage with \\'\\' green tree mortgage co \\'\\' we pay by bank draft and never misseda payment on our property located a XXXX XXXX XXXX, XXXX Ks XXXX we have never requested any legal service from them. They added over {$3000.00} on to our mortgagefor legal fees. They called it a \\\" Corporate Advance balance \\'\\' the sum of {$3000.00}. Our rental property was seized on the XXXX of XXXX 2014 by the XXXX XXXX \\'s Department. We hired our own Attorney and fought the DA and XXXX and we went to court and the presiding Judge was Chief XXXX XXXX XXXX XXXX XXXX. We won the case and was completely exonerated of the charges. The claimantwas \\\" the XXXX of Kansas \\'\\' and the defendant was our rental property. Green treemortgage is located in XXXX XXXX SD, XXXX XXXX XXXX, XXXX. Our Account # XXXX. Phone # XXXX .We believe this financial action against us is completely unjustified as wenever requested any legal services from this mortgage co and we were never notified or advised why we are being charged for these attorney fee \\'s. I am XXXX years old and aXXXX XXXX veteran XXXX and served in the military22 years. My wife is XXXX years old and we never had any problems with law enforcement. The property was seized for alleged criminal activity. We would appreciated it very muchif you could help us with this problem, as we have already spent most of our savingsfor attorney fee \\'s not to mention the stress that they have caused us. What is toprevent the mortgage Co from charging as any more fee \\'s. XXXX & XXXX XXXX XXXX XXXX, Ks XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 836\n", + " high_rank: 836\n", + " label: \"we have a mortgage loan with Chase finance and we had some hardship in 2014 and got behind on our mortgage and applied for a loan modification. it took months to get the modification. the result was that our payments would go from XXXX dollars to XXXX dollars for six months to payoff or get caught up on payments. now they are saying that since back in XXXX that I did n\\'t get the acceptance letter in back to them in time that they are no longer going to accept any more payments, after already accepting at least one payment unless I pay XXXX dollars to pay for 3 months and they are saying that my house can go into foreclo we at anytime. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 837\n", + " high_rank: 837\n", + " label: \"we have a few problems with Bank of America 1. Bank of America issued an incorrect payoff to our attorney. 2. we had closing on our house XXXX XXXX, XXXX 3. Bank of America lost the wire transfer to pay the house off. 4. We called many times to try and resolve it and ended up wiring an additional {$9300.00} 5. We had had to pay for forced placed flood insurance through XXXX XXXX eventhough we do n\\'t own the house. 6. they are supposed to cancel flood insurance and issue a refund from closing date 7. they have n\\'t issued a refund of flood insurance we sold our house. 8. The house suffered substantial damage in super storm sandy. it needed to be torn down and rebuilt. the flood insurance did not give us enough money to rebuild. so the house had to still have flood insurance on it even though it had no insurable value. Bank of America gave the lawyer the incorrect amount for payoff. Our title company wired the payoff on XXXX XXXX. Several days went by and our account did not reflect any payments. We called our lawyer and then the bank. Bank of America kept saying it would appear and give it more time. Finally after my husband had called almost every da we found someone in payoff who looked up the wire by the dollar amount and found that it had been received by XXXX XXXX. They said the amount of payoff was incorrect we owed money for forced placed flood insurance. We wired the amount they said we owed over {$9300.00}. We had to pay for flood insurance for insurance from XXXX XXXX to XXXX. They would cancel our insurance and issue us a refund. We received a letter saying they would refund us {$1300.00} because the insurance was not needed after XXXX XXXX. Closing was XXXX XXXX. we called XXXX XXXX, XXXX and a bank of America representative said the check would be received by us by XXXX XXXX, XXXX we called XXXX XXXX, XXXX and they said to give it to XXXX XXXX, XXXX if we still have n\\'t received it they would issue an new check. we called XXXX XXXX, XXXX they said they had no record of us deserving a refund check. finally after being bounced back and forth between many departments they requested we fax them the letter we received from then because they cant find it. Bank of America is very difficult to deal with. They should have honored the incorrect payoff or they should have deducted what we owed after the flood insurance was cancelled and had up pay that amount so we would not have to wait for a refund. or how about they cut us a break and not charge us interest for the last 11 months. we paid our mortgage up until XXXX XXXX we just could n\\'t afford it anymore we had to pay rent on a place to live. Its been horrible since super storm sandy. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 838\n", + " high_rank: 838\n", + " label: \"we have a construction loan since we bought the house and the land in XX/XX/XXXX first with XXXX XXXX \\'s Federal Savings bank in XXXX XXXX Maryland we got behind in payments after lost Job in XX/XX/XXXX and XXXX XXXX \\'s XXXX XXXX XXXX refinanced us to a lower interest rate to lower payments and then the other spouse lost her job in XXXX and our payments of XXXX was replaced back into our loan to catch us up but after the bank sold our loan to Gregory Funding who we think are a group of investors-that took the loan over added back the XXXX plus all the added arrears on to the loan. My husband is working full time as an XXXX and we have extra income due to my father who is a vet living with us we are now able to afford our home but after mediation with Gregory Funding they are demanding we pay the XXXX plus an extra XXXX including the mortgage payment of XXXX or they will foreclose on our home that mediation was done on XX/XX/XXXX they said they will contact us in 30 days for a final option from us it \\'s now XX/XX/XXXX and we are getting nervous cause we have not heard from them and we do n\\'t want to lose our home Gregory Funding only has a XXXX XXXX XXXX XXXX XXXX we do not have XXXX in funds to catch this loan up and what they are asking from us is not workable to help us stay in our home something seems very suspect with these investors. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 839\n", + " high_rank: 839\n", + " label: \"we have a XXXX mortgage for purchase with reverse mortgage solutions and they are threating foreclosure on a lapse in flood insurance of three months in 2014 due to fema of a total amount of XXXX dollars our flood insurance is XXXX dollars per year I am on a fixed income and can not pay the amount they are demanding \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 840\n", + " high_rank: 840\n", + " label: \"we has a bankruptcy that was discharged in 2006, however it continues to show on our credit report. We need this removed immediately. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 841\n", + " high_rank: 841\n", + " label: \"we had aa XXXX Mortage on our home with ( XXXX ) bank of XXXX. been calling for a month talking with several people getting the run around from Bank of America to relase the title that they are holding which is CRIMINAL- this happened in XXXX but in XXXX on the financial crisis XXXX had a class action lawsuit against them for giving out bad loans. Bank of America ref # XXXX left massages for XXXX XXXX that is title release supervior XXXX no call back. trying to do a direct sell my home. I need this taken care. please HELP!! Name XXXX XXXX phone XXXX address XXXX XXXX XXXX XXXX XXXX XXXX XXXX If you need any more information please call. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 842\n", + " high_rank: 842\n", + " label: \"we had a mortgage with XXXX. we had gotten behind because my husband was out of work for a year. I started a loan modification with XXXX and before it could be completed my loan was sold to BSI this XXXX. After speaking with them they advised me that I would have to reapply for a modification with them which we did. this was back in XXXX 2015. I sent BSI all the necessary paperwork just to receive XXXX letters from them claiming they could n\\'t move forward with the modification until they received recent paystubs and bank statements. I sent new XXXX even though what they had was still current. since then 6 months has gone by without any word from them. I email them and get no reply. I recently contacted someone other than my CSR and heard from him claiming he would forward my email to my CSR. That was two weeks ago and still no word. In the meantime I was told no payments would be accepted on my mortagage until it was modified. I now owe over {$20000.00}. XXXX is my loan number with BSI. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 843\n", + " high_rank: 843\n", + " label: \"we had a mortgage with Homecomings Financial back in XXXX and in XXXX we became delinquent on the Mortgage. First delinquency was XXXX XXXX. By XXXX we received threatening letters and by XXXX XXXX we got a Letter of Default from Homecomings. Throughout XXXX we were delinquent but because we were frightened by worked hard to pay what we could. In XXXX XXXX Homecomings Financial transferred to GMAC. GMAC took a final payment from us and applied it XXXX XXXX XXXX then reset the clock for our first delinquency as XXXX XXXX XXXX. After that they started foreclosure proceedings even though we were attempting loan modification and short sale. By XXXX XXXX they foreclosed. Ever since they have counted seven years from XXXX XXXX as if that is our first delinquency but it is NOT. We are now actually almost eight years past first delinquency which was XXXX XXXX. But GMAC went bankrupt in XXXX. The credit agencies will not respond to our multiple disputes ( more than XXXX ) and GMAC is not reachable. We can not buy a house or borrow money. The foreclosure remains on record and the credit reporting agencies continue to reject our requests to delete the account from our record now that seven years has past. Now they are saying it will go off record seven years after the last activity which is the last time GMAC forced money out of us. That can not possibly be legal. We need help. There is no way foreclosure can stay on your record for ten years just because GMAC is bankrupt. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 844\n", + " high_rank: 844\n", + " label: \"we had a chase bank credit card i thought this card was paid off back approx XX/XX/XXXX its now XX/XX/XXXX and XXXX service files a garnishment against me, i called them and XXXX said it already done and hung up on me that was XXXX at XXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 845\n", + " high_rank: 845\n", + " label: \"we had a balloon loan that matured, citimortgage threatened forclosure and would not work with us or refinance at all, they wanted our house and said they \\'d get it. so only option left was a bancruptcy that included the entirety of matured balloon loan balance in XX/XX/XXXX, case was discharged in XX/XX/XXXX, never missed a payment and everything agreed to in court and allowed was paid to the full. XX/XX/XXXX I get a bill from Citimortgage for XXXX dollars instead of the deed to my house. where did they make up this fraudulent loan? I have no idea, but apparently this is their M.O. and they do it all the time. After months of paperwork and haggling, i hired a lawyer which sent all the necessary paperwork to handle this matter and lo and behold Citimortgage pulls another fast one and sells the fraudulent loan to outside company known as XXXX, who now is threatening to forclose on the loan they acquired from Citi. It is ILLEGAL!!! to attempt to collect a debt that has been either paid which mine was or discharged in a bancruptcy. Double jeopardy or what, Citimortgage told me they would get me no matter what and now my lawyer ca n\\'t even get the third party company to communicate with her, even though they have a 3rd party authorization. These people are tant amount to organized crime and just keep asking for more or threaten to foreclose. These laws are supposed to protect us from XXXX companies like Citimortgage, taking advantage of those who do what \\'s right, follow the law, and pay every payment on agreed payment schedule. Someone must make Citimortgage play by the rules or pay themselves, can anyone make them live up to their end of the mortgage agreement since I have fulfillled mine. I want the deed to my house! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 846\n", + " high_rank: 846\n", + " label: \"we foreclosed a home with XXXX XXXX XXXX in XXXX we were offered a \\\" rem judgement of foreclosure \\'\\' and a \\\" deed in lieu \\'\\' to settle and our lawyer accepted the deal. we were told by BAC the accounts ( XXXX & XXXX mortgages ) were closed and wrote off. we have been contacted by a company called Real Time Resolutions and they have claimed we now owe them a balance for the mortgage amounts that BAC have told us were settled and closed. Real Time Resolutions has now reported on our credit report we are past due, and owe them thousands of dollars. we have XXXX XXXX XXXX telling us the accounts are not valid for collections, we have had lawyers tell us not to worry about these claims, but I would like to have Real Time remove the claims from our credit reports. I am now dealing with a new credit repair person that has me filing this complaint against Real Time and their tactics of damaging my credit history. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 847\n", + " high_rank: 847\n", + " label: \"we did a modification, we were approved with XXXX XXXX XXXX this was in XX/XX/XXXX as soon as we were approved they denied all at the same time. sent mtg, payment back to us and sold to select portfolio services. they \\'re not working with us. we obtained a lawyer, fee of XXXX a month who was suing XXXX. were now in forclosure we dont have a payoff amount it goes from XXXX, XXXX and then XXXX and back to XXXX we found this much out because were trying to do short sale and obtain our equity from the home, but now it going into forclosure. our parents left us this house, we did probate were abused in the refinancing of the propety, its been a struggle since XX/XX/XXXX the percentage has alwys bee 19 % never went down. we were said too so many times \\'\\' pay on time for a year and the percentage will go down with monthly payment. \\'\\' that never happened. we borrowed off the house in XX/XX/XXXX to do just what they asked. continue paying on time and things would get easier. that was not true. the money borrowed paid mtg. for XXXX years on time, the note was XXXX monthly. then XXXX started forclosures then stopped, because we had help from Harp. they lowered the mtg. to XXXX monthly that lased for about XXXX years. thats how we arrived in this situation now. we did the siminars thats how we were approved for our modification in XX/XX/XXXX then it was revoked in the same month. as of today were in forclosure and trying to make sure were not wrong but we were abused and taken advantage of. were looking for justice somewhere so i started here, i do not know what else to do. we \\'ve been here since XX/XX/XXXX please help. i Need to know if XXXX XXXX XXXX is still acountable for all of this. Select portfolio services is having problems and complaints of their own, why would they take on this loan and not want to work with us but force us out. i beleive they knew what was happing with XXXX and should not have been able to get this loan and there was a legal suit filed against XXXX XXXX XXXX? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 848\n", + " high_rank: 848\n", + " label: \"we could not make our lasts month payment because of high utility bills. we asked acc. rep. to defer our payment til the end of our loan. he said no problem since we had never done this in the past. when we contact him he says he is waiting for approval. it \\'s been a couple weeks we think he might waite til so much time has gone by and try and forclose. we have been denied a loan modification. our interest is 10 %. we are on social security greentree says our income is enough. when we pay our bills we have a little over XXXX left and that is without buying food or gas for our car when we applied for a loan modification they said we would have to pay XXXX a month for 4 months we can barely pay XXXX can you help us. we don, t have any loan papers from greemtree, only a letter we got years ago saying saying they had acquired our mortgage. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 849\n", + " high_rank: 849\n", + " label: \"we closed on our home XX/XX/XXXX. we received a notice in our XX/XX/XXXX mortgage paperwork that our escrow account was short by {$5700.00}. Since we have addressed the issue with our original lender, mortgage company and our current mortgage company we have been given so many different answers, reasons, amounts. Somewhere something does not add up correctly. The notice that we received in our XX/XX/XXXX statement was dated XX/XX/XXXX, which is 2 months past already. We need someone to look into this issue as to why our escorw account is so low and find the underlying problem. My husband and i have been paying what we were suppose, actually even more every month. I think either the original lender did wrong calculations or when the file was bought out thibgs were left out and evry person/company is only pointing fingers. PLEASE HELP! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 850\n", + " high_rank: 850\n", + " label: \"we called key bank about opening a new checking account and to see about incentives for opening an account. we were told there was a {$200.00} incentive but we had to do it online and was given no other information. we did the account on line and did n\\'t enter a promotional code because we were not given one. the bank is refusing to honor the word of one of their employees and ca n\\'t go back and get the information from the phone call because they deleted it. we only opened that account with that bank because of the promotion and they are refusing to honor it because they do n\\'t have the information from the phone call we made. XXXX from corporate office told me no and that was the reason. So now we are filing complaints and want what was promised to us. They continually lie to us about this \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 851\n", + " high_rank: 851\n", + " label: \"we are trying to perform a short sale with Wells Fargo. There have been XXXX offers on my home, yet Wells Fargo has not even reviewed them yet, after two weeks, because they ca n\\'t seem to get this open to do a short sale. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 852\n", + " high_rank: 852\n", + " label: \"we are having problems with rushcard in the last two days i think they took all of our money from us even me. There was a system update on all accounts that everyone has they told us yesterday on XXXX XXXX that we would have it up and running as soon as possible by XXXX time and it wasnt my account has a XXXX blanace wish is wrong and there was XXXX dollars left andf now there is not they have not answer us on XXXX or there phone calls i think they took everyone money they have and ran off with it this is a scam and i want my money back plus the days im losing from work with no money to help out my family at all \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 853\n", + " high_rank: 853\n", + " label: \"we applied on line for a loan with a company called community choice financial, they said we were approved, so the XXXX thing they wanted us to do is open up a checking account with XXXX bank, because that \\'s the only bank they deal with, also XXXX we opened up account to call them back, so we opened up account, called back they, then they said to go back to bank they would deposit XXXX dollars out of the XXXX we were getting, with draw the XXXX go to a money gram place and they would tell me where to send it, I ask them why pull out then send it back, they said it shows them good faith on paying back the XXXX dollars XXXX many red flags ). they were suppose to be in XXXX but the address on the application is XXXX, so we web searched the XXXX address got a number called, explained to them why we called they said never heard of them XXXX red flag again XXXX and then we contacted you. also they would not give me a lic. #. thank you \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 854\n", + " high_rank: 854\n", + " label: \"we applied for streamline refinance with XXXX XXXX XXXX, at the present time our loan was with Flagstar Bank. They sent us a payoff statement, which was paid by XXXX XXXX to the penny, now they are saying there was a XXXX short. We had XXXX in our escrow account. the closing was handle by a lawyer. How can they say there is a shortage after the loan has been paid in full according there letter of payoff. At this point they have taken the XXXX out of our escrow account without our permission. Our lawyer has written them XXXX letters which at this time he has had no response. In XX/XX/XXXX they said we had XXXX shortage in escrow, which we paid even thow the could n\\'t or would n\\'t tell us where the shortage money went. Now after closing on the loan they are saying there is a XXXX shortage.How can they say we owe more after the loan has been paid, by their figures. They are saying it needs to paid to complete payoff loan, complete the property lien release, and release the lien from our credit and/or avoid reporting to the credit bureaus. This last letter was written on XXXX XXXX, we received the letter on XXXX XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 855\n", + " high_rank: 855\n", + " label: \"we applied for a mortgage loan, and this error is reporting on both our credit. we mailed letters to all XXXX bureaus and a direct letter to SYNCB/Care Credit to remove this account that is not ours. It was removed off my wife \\'s credit file, but it still remains on mine. We ca n\\'t proceed until this problem is fixed. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 856\n", + " high_rank: 856\n", + " label: \"we applied for a mortgage loan modification back on XXXX XXXX XXXX XXXX was the owner of my loan, after XXXX denials they transfer my loan to RoundPoint now round point has approve a modification of the loan but I do n\\'t think it is a fair XXXX, they lower XXXX to the principal balance witch I appreciate but we owed around XXXX XXXX dollars over the value of the house and they are giving us an interest rate of XXXX, the only income to the house hold is thru my husband`s work, so he would have to work over time to be able to make this payments and over time is not always there, and even if it was my husband is a XXXX XXXX XXXX we would finish paying the loan in XXXX is he going to be able to work as a XXXX that long. we bought this house in XXXX and we will finish in XXXX how is this fair \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 857\n", + " high_rank: 857\n", + " label: \"we applied for a FHA mortgage. We are concerned the appraiser is not a fha certified appraiser. We are also concerned the loan company LiveWell Financial is some kind of scam based on XXXX complaints we read online. After the appraisal they would not answer our calls and we obtained our appraisal after considerable effort on our part almost XXXX month later. The appraisal was 75 % less than we hoped. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 858\n", + " high_rank: 858\n", + " label: \"was sent a bill from XXXX hosp.XXXX ca for $ XXXXXXXX.I called them told them once XXXX and XXXX pay there is no bills sent to me by law.now I get a collection notice from SCCS XXXX ca XXXX phone is XXXX ..reference # is XXXX ... I called them for XXXX times and requested they call me I am still waiting as of XXXX/XXXX/2015 XXXX pst.. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 859\n", + " high_rank: 859\n", + " label: \"was removed after it was challenged and was later put back on report \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 860\n", + " high_rank: 860\n", + " label: \"was put on a creditcard as other user but had my own card with same company and now its showing up on my credit report as bad credit when I never used it. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 861\n", + " high_rank: 861\n", + " label: \"was not contacted at all whatsoever about any debt owed. I found out by checking my credit report and finding a collection agency account by ad astra in regards to a seriously past due loan obtained from speedy cash/rapid cash. For 5 months i received no mail no calls or any form of communication from speedy cash or XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 862\n", + " high_rank: 862\n", + " label: \"was not contacted at all whatsoever about any debt owed. I found out by checking my credit report and finding a collection agency account by ad astra in regards to a seriously past due loan obtained from speedy cash/rapid cash. For 5 months i received no mail no calls or any form of communication from XXXX XXXX or ad astra \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 863\n", + " high_rank: 863\n", + " label: \"was never notified of this debt ... .had services at XXXX with financial help from hospital XXXX XXXX XXXX thru social worker payments were made by med assist went to clinic because of no income. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 864\n", + " high_rank: 864\n", + " label: \"was looking for a personal loan, and I guy named XXXX called me he said from XXXX he has a lot of my information/ss # /bank where I bank/address. He said I was approved for a {$5000.00} loan, just had to send {$250.00} to get application going and for fees. I used Money gram and sent him the money, and he never called me back. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 865\n", + " high_rank: 865\n", + " label: \"was issued a check via mail, to deposit into account for a sale made through internet- the check cleared - on request have a XXXX made for amount of fee to be sent to XXXX party. - on doing so ( XXXX XXXX Me ), the purchasing party pulled/ declined payment on their check - taking from my account amount paid out on money gram. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 866\n", + " high_rank: 866\n", + " label: \"was improperly served summons was served to someone i did not know sent the company signed lease agreement for where i was living during service of summons still threatened to garnish wages offered 75 % sif or payment plan they refused \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 867\n", + " high_rank: 867\n", + " label: \"was getting mortgage to buy a home. loan from navient showed up on credit report. says i owe XXXX dollars. they said it was for when i went to XXXX collage in 2005. i sent paper work to them showing i did not go there. was then taken off my credit reportwith not that is was not my loan.then when we went to close on house it was back on reportso my mortgage was canceled and didnot close on house.sent paper to navent show that it was removed from credit report and ask how this happened. it now says dispute is resolved and customer does not agree on my credit report. this is all messed up and should be gone. this loan was also listed on my bankruptcy and have been told that since it is a private loan it should have been discharged \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 868\n", + " high_rank: 868\n", + " label: \"was denied credit and pulled a report, company did not make information available to me before reporting to my credit report. This is an unfair practice. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 869\n", + " high_rank: 869\n", + " label: \"was contacted via mail in regards to a debt over 10 years old. contacted thhe agency was mini miranda without verifying correct party confirmed that the account was past statute was asked to resolve and informed the agency i wasnt interested in resolving.. received another call where my identity was not verified and the debt was disclosed i asked why i was still being contacted in regards to a past statute account and why the office was demanding payment the representative stated their office will continue to contact for payment until resolved the representative made me feel harrassed and i communicated that at which point she confirmed it. the representative was talking over me shouting and being argumentative the entire call. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 870\n", + " high_rank: 870\n", + " label: \"was contacted by collection agency proved debt had nothing to do with me. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 871\n", + " high_rank: 871\n", + " label: \"was charged exuberant deferred interest rate and offered to pay balance off as it had only been a few days since the charge happened and the company declined. ( XXXX months no interest ) seems like a very shady practice and there should be a reconciliation period. i should be able to pay off the balance and avoid this 30 % interest charge. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 872\n", + " high_rank: 872\n", + " label: \"was being reviewed for modification options. Green tree sent letter stating that client did not meet XXXX or more of the basic eligibility criteria XXXX which letter is attached ). Green tree failed to provided detail of what criteria client did not meet. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 873\n", + " high_rank: 873\n", + " label: \"was a money order for {$800.00}. I had to send another payment ... So I paid {$1600.00} instead of {$800.00}. Green tree often takes XXXX months to apply payments to account and lies about balances due. I currently am current, all payments made and they claim I owe {$2600.00}. The commit fraud on a daily basis. They misapply payments, fraudulently state that payments are paid later than they are. They try to charge late fees that are not due or are far higher than the agree late fee amount. GT has caused my homeowners insurance and tax payments to lapse. They do not obey the CEASE and DESIST order that was sent to them multiple times. Each offense carries a {$1000.00} penalty. They falsify statement and loan balance. This company GT has contacted my neighbors illegally when they know my location and even if my account is not past 30 days. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 874\n", + " high_rank: 874\n", + " label: \"want to cancel my membership and am unable to do so. I work for the Federal Government and they recommended I request a free credit report through XXXX. I signed up for through this website XXXX and did not receive any information on how to cancel membership. My bank is being charged {$17.00} a month by TU TransUnion and I want it canceled now. TransUnion said they have no record of my account but their name shows up on my bank statement for the draft. If I do not hear back from Annual Credit Report, I will report this as a fraud to all credit reporting agencies and XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 875\n", + " high_rank: 875\n", + " label: \"wages are garnished as of XX/XX/2015. was not aware until that day. contacted employer and they sent me the court order. all conversations are recorded. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 876\n", + " high_rank: 876\n", + " label: \"violators of fcra, fdcpa, and tcpa. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 877\n", + " high_rank: 877\n", + " label: \"victim of identity theft, never lived out side of XXXX before 2014 \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 878\n", + " high_rank: 878\n", + " label: \"victim of identity theft and fraud I have never establish credit or lived outside XXXX before 2014 \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 879\n", + " high_rank: 879\n", + " label: \"very very very old debt, out of the statute of limitations, paid in full years ago, and the company has a collection agency attempting to collect the same debt again and its expired from 6 years statute ... I have sent them cease and desist letters and they have not complied. please help \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 880\n", + " high_rank: 880\n", + " label: \"very \\\" simple \\'\\' situation. XXXX XXXX refused to change mailing address, kept sending it to old address, in spite of notification of COA by mail, telephone & online. So then, since they could not get the statement to me, I closed acct. that took weeks, instead of a few minutes.. the \\\" late \\'\\' charges are because they would not get the billing statement to the current/correct mailing address. I think the problem lies not in billing /accounting, but in customer service procedures. We still shop there, as they are handy. The problem is not with local stores, but headquarters. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 881\n", + " high_rank: 881\n", + " label: \"vendor charged me XXXX for the a service i did n\\'t get. i tried talking to the vendor to reslove the case before i called wells fargo bank. i was advised it was going to be taken care of i gave he all the info they requested and a credit was issued to me. only to find out that it the credit was take a from my account a few months later, making my account negative. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 882\n", + " high_rank: 882\n", + " label: \"used Bank of America to pay dentist bill, however, dentist overcharged per the contract with dental insurance and Bank of America would not help -- -they helped dentist commit fraud. Then, after many unsuccessful and aggravating phone calls with Bank of America, they actually had a collection agency call me BEFORE the payment was even due. There was NEVER anything past due on my account. I had already closed my credit card account and I still get solicitations to borrow money. Thank goodness I had no other dealings with Bank of America other than a credit card. I am disgusted both by the dentist that did this, never responded to my direct contact and even more disgusted with Bank of America \\'s handling -- or should I say mis-handling of the whole thing. Good riddance to them. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 883\n", + " high_rank: 883\n", + " label: \"usaa had a sales promotion that if you opened a direct deposit account to checking you would receive {$300.00} after 60 days. I joined and received {$300.00} in my account XXXX XXXX or XXXX XXXX, 2015. Under my account details they listed the {$300.00} as INTEREST. IT WAS SALES PROMOTION. When I complained they list it as job income, other income, everything but a sales promotion, and then without my knowledge switch it back to interest received 2015. IT WAS A SALES PROMOTION, NOT INTEREST ON MY ACCOUNT. I have complained several times. I receive only XXXX social security. It being listed as interest or job income changes my IRS filing status. I want it listed for what it was A SALES PROMOTION. I only received {$0.00} interest for 2015. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 884\n", + " high_rank: 884\n", + " label: \"us bank mortgage keeps giving me the ran around about my final modification, i just completed my 3 month trail period, and now they will not send me the final modification paper work, I have called everyday and still get the ran around from very person I speak with. I am assigned a relationship manager, but they are never available to speak with me about my mortgage account, and every person I speak with at us bank home mortgage have little knowledge of what they are doing, and can never give good information, they just keep suggesting that I made a mortgage payment of {$910.00} until my final paperwork is sent out and I am not going to keep giving them money and have no final modification amount set for me to pay yet. US BANK HAS HAD MORE THAN 45 DAYS TO GET T HIS INFO OUT TO ME, BUT OF COURSE THEY ARE SAYING THAT IT IS IN THE FINAL STAGES, BUT NOTHING DEFINITLEY. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 885\n", + " high_rank: 885\n", + " label: \"us bank is saying I started a bill pay against my will which I did not submit to be paid XXXX/XXXX/2015 to collect fees so on the XXXX/XXXX/2015 XXXX did reverse the fees an show me how to delete the information so it did not happen again so on XX/XX/XXXX the fees were put on my account again XXXX per item total XXXX so XXXX claim the fees would be refunded back to my account by XXXX so she walk me through my account to stop the pop up from appearing on my screen say the pop up is put there to be annoy me an cause it kept asking me to finish the bill pay so I did not now later so XXXX walk me through internet option to delete the pop up from appearing an the fee will be refunded back to my account by XXXX so XXXX I call back an the fee of XXXX is still on my account I talk to XXXX he inform me that he was refunding me the fees in a half an hour an I can check back about XXXX to see the fees had been refunded to my account so I call about XXXX I talk to XXXX who set me to talk to a lady name XXXX who then stated she was not refunding me any fees an gave a address to file a complaint us bank 24 hour banking management XXXX XXXX XXXX XXXX mn XXXX at first the bank is claiming the checks were mailed on XXXX I said can I have a copy of the receipt paying for postage they told me no so I talk to XXXX an XXXX said the check was sent out on XX/XX/XXXX so that is when he refunded the fees first fees back on XX/XX/XXXX an show me how to delete the information so it did not happen again but the bank is charging me again on XX/XX/XXXX to put the fees back on my account and refusing to honor because I did not submit the information to complete the bill pay the bank is doing this on there own to collect fees from me it is the bank who is doing tying to say I did bill pay when I did not plus the operator on XX/XX/XXXX is the one who told me to put in the memo to electronic debit from my account but I never submitted to be paid so not the bank is trying to say I did submit when i did n\\'t an the bank would send popup for me to finish an I put not now later so I never submitted \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 886\n", + " high_rank: 886\n", + " label: \"us bank decided to cancel the \\\" last night free award \\'\\' benifit from this credit card account, which is the main selling point of this card, as well as the main reason that i am paying the annual fee for. A huge change of benifit with a such short time notice seems a marketing fraud to me. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 887\n", + " high_rank: 887\n", + " label: \"upon request of docs, i was told i was speaking to an attorneythey also have reported the same information in duplicate as to affect my scores \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 888\n", + " high_rank: 888\n", + " label: \"unsolicited recorded call for dept collection. my number is on the do not call list, and have no outstanding consumer dept. Company name is RSI XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 889\n", + " high_rank: 889\n", + " label: \"unknown name and address added to my credit report. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 890\n", + " high_rank: 890\n", + " label: \"united recovery systems XXXX # XXXX this company has failed to provide me with competent information that I own this debt they have failed to provide the following information to me. 1. provide me copies of papers that show I agreed to pay what they say I owe. 2. prove the statute of limitations has not expired for this account 3. show me that they are licensed to collect in my state 4. provide me with there license numbers and Registered agent My request for validation was sent via USPS certified mail dated XXXX/XXXX/2015 \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 891\n", + " high_rank: 891\n", + " label: \"under XXXX has charged me {$88.00} for nothing provided to me.Theybill it as a rewards benefit -- various fees etc.First bill was for XXXX the next for XXXX which incuded {$16.00} for a r4eturned item. I requestted them to cancel my card -- instead they are piling late fees and have ruined my credit \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 892\n", + " high_rank: 892\n", + " label: \"unauthorized inquiry on my XXXX and XXXX credit reports. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 893\n", + " high_rank: 893\n", + " label: \"unauthorized inquiry on my XXXX and XXXX credit report. i did not apply for credit \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 894\n", + " high_rank: 894\n", + " label: \"unauthorized inquiry on credit reports \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 895\n", + " high_rank: 895\n", + " label: \"unauthorized inquiries on credit report \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 896\n", + " high_rank: 896\n", + " label: \"unauthorized inquiries on XXXX XXXX, 2015 \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 897\n", + " high_rank: 897\n", + " label: \"unauthorized credit inquiries from XXXX XXXX. they refuse to remove or investigate inquiry disputes. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 898\n", + " high_rank: 898\n", + " label: \"unauthorized and fraudulent credit inquiry made by XXXX on or about XX/XX/XXXX on Experian. I did not authorized anyone employed by this company to make any inquiry and view my credit report. XXXX has violated the Fair Credit Reporting Act Section 1681b ( c ). They were not legally entitled to make this fraudulent inquiry. This is a serious breach of my privacy rights. I have requested that they mail me a copy of my signed authorization form that gave them the right to view my credit within five ( 5 ) business days so that I can verify its validity and advised them that if they can not provide me with proof that I authorized them to view my credit report then I am demanding that they contact the credit bureaus immediately and have them remove the unauthorized and fraudulent hard inquiry immediately. I also requested that they remove my personal information from their records. My Social Security # is XXXX and my Date of Birth is XX/XX/XXXX in case it is needed to locate the fraudulent inquiry in their system. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 899\n", + " high_rank: 899\n", + " label: \"unarthorized charges were made to my XXXX account and was under investigation. Upon the TD Bank merge my case was misplaced and overlooked, until I received debt colecting calls several years later. Since I never opened a TD, I went to a branch to speak with a branch manager for more reliable information. I then paid the branch the amount supposedly owed and was told by both TD Bank and the collection agency this issue was resolved. Now almost 3 years later, the collections agency called my family members and told them I owe XXXX more than the last time. After threatening me, and saying they will hack into my bank account and take money, I came to the conclusion this agency does not want to resolve any issues and just want to scare me into paying them again. I already paid for a debt that was n\\'t mine in the first place and I \\'m not inclined to pay more and put up with such harrasment. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 900\n", + " high_rank: 900\n", + " label: \"unable to pay my loan to One Main Financial, ive told them verbally to do not call me and sent them certified letter stating that also, they continue to keep calling my work and im at risk of loosing my job, \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 901\n", + " high_rank: 901\n", + " label: \"unable to get accounts closed/removed with submitting documentations to credit bureau. in addition att sent a bill to collections that was a error of there. has since been retified but going to to 30-90 days to get it off credit report. every time I find errors its another 30 days with an open dispute.. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 902\n", + " high_rank: 902\n", + " label: \"unable to get a credit score have all positive items on my credit report. my score should be high. there is no score \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 903\n", + " high_rank: 903\n", + " label: \"unable to check my balance or any other information about my loan over the phone or online. spoke to numerous customer service personnel .no one able to tell me why i can not access my account .tired being on the phone 45 minutes at a time back and forth transferring from department to department \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 904\n", + " high_rank: 904\n", + " label: \"unable to acess funds from the rush card \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 905\n", + " high_rank: 905\n", + " label: \"u.s bank home mortgage just removed XXXX in debt from purchase amount, but still reporting on my credit reports im 90 days late when i \\'m current and trying to refinance with a new lender also i have a civil case pending and was ordered to buy a car and i can not buy another vehicle until i refinance this home u.s. bank are not updating everything correctly in the system yes balance left owed is XXXX but i \\'m not 90 day late, i owe this month only and my time clock is running out on what a judge in another case has told me to do. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 906\n", + " high_rank: 906\n", + " label: \"two years ago i bought a piece of property to build my house and I got it staked out septic designed and acquired the permit. A year and a half age I was rear ended in a car accident and could not work for a year because I did not get the medical attention that i am owed. The affordable care act was passed and approved by the supreme court so the quality of our lives would not be reduced. Because of the gap in income it is almost impossible to get a loan as well as now being forced to work a forty hour a week job and have to build it on the side while homeless because of ongoing issues that the doctors will not treat me for. My quality of life has decreased and will decrease further if the almost {$40000.00} of my own money i spent will be wasted because the government is not following through on their promises. and renting or buying a house than i do not like is not going improve the quality of my life as well as i would need my {$40000.00} returned \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 907\n", + " high_rank: 907\n", + " label: \"two debt collectors are trying to collect on the same debt XXXX provided verification of debt letters. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 908\n", + " high_rank: 908\n", + " label: \"two credit card companies have the wrong info and reporting credit against me. i have tried to have them correct the problem. sent certified letters asking for the social security number to be corrected and nothing happens \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 909\n", + " high_rank: 909\n", + " label: \"turned into collection agency from XXXX/ for a debit I was handling with my insurance company. debit turned over to Credit Adjustment XXXX Inc. XXXX XXXX XXXX XXXX XXXX AZ XXXX acct XXXX XXXX XXXX, clt..acct # XXXX Arrangements were made and a monthly payments has been in a timely manner for months. Please remove this issue so I can regain my credit score. XXXX is the lady I spoke with at credit agency stating to contact you as a credit report was done yesterday with poor rating. Please call me as XXXX if any further questions or email me at XXXXXXXXXXXX matter needs to be resolved asap. thank youXXXX XXXX XXXX XXXX XXXX, AZ XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 910\n", + " high_rank: 910\n", + " label: \"trying to withdrawal money from TD Bank , NA only to find out they are saying theydo not have signatures on file for our company ( owner of the account ). i sent backletters telling TD not to close the account but they closed anyway. They do haverecord of receiving those letters. They are saying they XXXX the money to PA. PA has no record of that money. Just want to get our money out of TD Bank andinto our other accounts at another bank. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 911\n", + " high_rank: 911\n", + " label: \"trying to obtain credit reports from XXXX and Equifax someone else had to set up a account now I ca n\\'t even dispute on because they state \\'s I do n\\'t know my grandmother \\'s name, come on now a few bank are mad and I need them to correct payment histories an balances I have a wrongful foreclosure on my credit report and I can provide supporting document but I need where I guess no one can access accounts online seeing how this is not the XXXX time this has occurred when my email address has n\\'t changed in over 7 years but my grandmother \\'s name have?? come on now this not fair also that there \\'s numerous inaccurate information being reported and I \\'m just trying to correct it and move on in the financial world but this is holding up the process. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 912\n", + " high_rank: 912\n", + " label: \"trying to get my credit score. they are asking me questions to verify my identity. but i can not answer their questions about my current mortgage and credit cards because i do not know anything about them. someone has stolen my identity and is using my credit, but i ca n\\'t get a copy of my credit report to find out what is going on. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 913\n", + " high_rank: 913\n", + " label: \"try this email address XXXXXXXXXXXX approx, how many times have you been at a restaurant? or any other situation where aomeone other then yourself had access to your credit card could hypothetically written all your info or ordered something via the phone, where someone has access to all your info regarding credit care and address info? why is it when you go to a restaurant to eat, the restaurant keeps a copy of your signed receipt? what is the point of a debit card being so? do you know when you call american express, when youre on hold, the computer generated voice goes, as a amex card holder, you are not responsible for any charged that you have on your bill.for what seems like six months american express isnt holding up to their part of the deal. i am sending the original letters to amex ceo and copies to president obama and you guys. who is \\\" XXXX \\'\\' in salt lake ut ... they wrote with a lettetheas of american express global banking ref : XXXX basically their is no signature, theur is no debit card number password. XXXX just charges and got no signature or no verification wheres the ip address? but neither i nor the other card holder authorized this charge! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 914\n", + " high_rank: 914\n", + " label: \"trustmark bank holds my note as a mortgage, for several months ive ask trust mark to explain why it is why every single month im stuck with a late fee, and no one that works for the bank does not want to explain why my im it with late fees, and my mortgage increases every month. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 915\n", + " high_rank: 915\n", + " label: \"tried to talk to someone on the phone because I paid for my credit score but it was never sent. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 916\n", + " high_rank: 916\n", + " label: \"tried to get a modification through carrington mortgage services, that \\'s who services my loan. I am 7 years behind on payment do to lay offs, been working steady last 2-3 years making XXXX more dollars a hour then when I bought the house. I been trying to get a modification for years and no luck. I have filled out and sent back modification after modification to be turned down. XXXX tried to help, We had 2 meetings, 1st one carrington said it looked good and might be able to help us. 2nd meeting did n\\'t say much, know I am heading for foreclosure. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 917\n", + " high_rank: 917\n", + " label: \"trided to get mod wells fargo would not give me one \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 918\n", + " high_rank: 918\n", + " label: \"transunionXXXX XXXXstatus showing collection/charge off ( should be unknown ) account was included in chapter XXXX bankruptcy filed XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 919\n", + " high_rank: 919\n", + " label: \"transunion would not delete wrong information. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 920\n", + " high_rank: 920\n", + " label: \"transunion says my personal finance debt is - $ XXXX when in fact it is just - $ XXXX. Info provided XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 921\n", + " high_rank: 921\n", + " label: \"transunion reinserted accounts already deleted for lack of verifiable documentation. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 922\n", + " high_rank: 922\n", + " label: \"transunion is reporting student loans incorrect with late payments, i have disputed this XXXX XXXX times in the past with them and have requested documentation showing that i have paid these late and have not gotten it. I have not paid these loans late. these loans are closed/ transferred and reporting inaccurate \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 923\n", + " high_rank: 923\n", + " label: \"transunion is reporting a judgement on my account from NJ Superior court XXXX this judgement has been vacated.XXXX pLease remove this judgement asap. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 924\n", + " high_rank: 924\n", + " label: \"transunion has reinserted wrong unverifiable information to my report. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 925\n", + " high_rank: 925\n", + " label: \"transunion credit report web suite does not work making it impossible to order a credit report on line as they advertise. there is no way to contact them toresolve this. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 926\n", + " high_rank: 926\n", + " label: \"transunion credit bureau has me at a very low score on my credit report ... .i want to know why \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 927\n", + " high_rank: 927\n", + " label: \"transfered money to XXXX bank for a car purchase the purchase was fraud i cancelled the transfer the next morning i tried to cancel same day but bank closed but the stop was in i have emails it took almost 1 week for someone to let me know a representative from the bank called me and sent email to bank trying to contact me saying he has my money and tell my bank to contact him to get my money back i only received XXXX XXXX dollars out of my XXXX dollars .i tried to contact the investigator from santander bank XXXX XXXX XXXX XXXX and she says she can not contact XXXX from XXXX bankXXXX XXXX XXXX to resolve this matter my case number is XXXX i really need some help to resolve this matter \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 928\n", + " high_rank: 928\n", + " label: \"transd union is reporting XXXX accts in error XXXX XXXX bank do n\\'t belong to me they keep reporting in error as the acct do n\\'t belong to me and blair was the wrong due date and such they have been reporting wrong and so far no one has done a thing to fine blair-comenity bank they should be fined for fraud \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 929\n", + " high_rank: 929\n", + " label: \"trans union has shared my other accounts to show how much I am paying per month on all open accounts and the information supplied is incorrect. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 930\n", + " high_rank: 930\n", + " label: \"trans union and XXXX I could n\\'t get my credit reports. my XXXX report I recieved but not the others \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 931\n", + " high_rank: 931\n", + " label: \"took out the the load from mobiloan. After, discovered and the terms and conditions of the load were unlawfully in my area. have contacted the company asking to surrender the load without penalty and interest. They refused and to day keep harassing me over the phone 10-20 times each day as well as placed a negative entry in my credit report. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 932\n", + " high_rank: 932\n", + " label: \"took out a {$5000.00} cash advance on my bank account 115.00 % rate could not pay the high cost cash advances is not legal in the state of Arkansas XXXX is reporting these accounts for cash call western sky Delbert collections \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 933\n", + " high_rank: 933\n", + " label: \"took out a {$5000.00} cash advance on my bank account 115.00 % rate could not pay the high cost cash advances is not legal in the state of Arkansas XXXX is reporting these accounts for cash call XXXX XXXX collections \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 934\n", + " high_rank: 934\n", + " label: \"took a {$1500.00} loan from XXXX loan and after I continuously paid them they still say owed them almost {$1900.00} regardless of the fact that I paid them {$340.00} ( {$3400.00} total ) since XXXX 2015. This is beyond usury and I need my title back. I paid more then twice what I owed them. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 935\n", + " high_rank: 935\n", + " label: \"told to get XXXX to pay loan because they wpouldnt letus change dates.on fixed income and ss comes in after the XXXX of the month .say we had to be charged for that service.we have been paying this XXXX service for a while and I could n\\'t understand why? said it was because we could n\\'t paqy on due date.they also never had us to sign any papers when they took the note from XXXX.we still own around XXXX and only paid XXXX for unit.been paying since 1999. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 936\n", + " high_rank: 936\n", + " label: \"told XXXX times to mail not call. XXXX time would not give me address to send cease of communications notice. would not provide address unless i \\\" talked about the debt \\'\\' like did i think i did not owe the debt etc etc. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 937\n", + " high_rank: 937\n", + " label: \"today while on a recorded line speaking to Wells Fargo Bank I spoke with a man named XXXX XXXX who continues to tell Consumer Financial Protection Bureau that they are assisting XXXX XXXX XXXX and family in investigations into the misconduct and financing of property without the knowledge of XXXX XXXX XXXX also at the same time they have told CFPB 60 days to assist with documentation they are not preparing as in ledgers audits on accounts funds produced and also liability claimed as beneficiary of these events. why would Wells Fargo Bank continue to tell Consumer Financial Protection Bureau they are assisting in the recovery of the home and property or the client and his rights when none of such is being done including helping with a forfeiture against current persons in the homes who acquired them for free illegally by XXXX XXXX XXXX who was put into power by Wells Fargo bank. we admitted to Wells Fargo bank that my brother might have been a part of the situation but still my brother is not the beneficiary of the property nor receiving payments for this property on any records that I can find, any proof of the transactions other than what was approved by XXXX XXXX XXXX has been requested. the longer this drags out the more time Wells Fargo Bank has to benefit off this as well as create more problems by for closing forfeiture and sales illegally of the property through the side title companies XXXX County title and XXXX County title all in Washington State and bonded by XXXX trustee services as independent state entity or private/state entity ( s ) funded and insured through Washington State. amateur izations were also requested last year around the same time when notification of the property have a non sufficient funds produced and XXXX XXXX XXXX being the payor of the Dead by and through wells Fargo the legal fraud and transacting wire fraud transfers of money pulling into XXXX right off XXXX to pay debts without his permission nor any rights given. specifically stated that this is out of Wells Fargo \\'s hands. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 938\n", + " high_rank: 938\n", + " label: \"today my bank account was garnished for entire amount in my account, it was XXXX, I called the debt collecting agency that took my money and was told I would not be able to talk with the person that was handling my case, that they would be gone until XXXX/XXXX/16. Then I was told that nothing could be done for me and that I should wait and call back on Friday. I do not believe this to be accurate but feel that calling them will get me no help. My hands are now tied and I have NO money or resources and I am a single mother of a XXXX year old and do not even have money to get her food or pay my rent ( which will cause eviction actions ). \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 939\n", + " high_rank: 939\n", + " label: \"today XXXX ocwen called to inform me AGAIN that i needed to fax them our tax returns and a letter stating when our hardship began and our application would be complete. i have faxed it XXXX times now along with the letter of hardship. this is ludicris. i have never in my life seen something like this. this is exactly what ocwen did to us when they told us if you want help you must fall XXXX months behind and we did and after we called for help and we sent in a complete application they just kept wanting things over and over and over again the whole time assuring us they would help us to find a resolution to stay in our home. they did this to me for XXXX months, mind you we were already XXXX months behind bc they told us in order to get help you must fall behind, now XXXX months into that help how can you get caught up. does anybody care what they do? is anyone listening to me? if i find me a lawyer that aint scared of ocwen im suing their pants of them. they better cross their every t and dot their i because if their paperwork is wrong i will fight them all the way to the top. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 940\n", + " high_rank: 940\n", + " label: \"to whom it may concern on the XX/XX/2015 i sent XXXX dollars cash through money gram at a Wal-mart store XXXX ca, XXXX and to come to find out that my money never got to the person I sent it to and i have kept in contact with Moneygram and I was told that it would take 10 days and then they told me 15 days and now the 15 days are up and now they are saying to wait another 15 days and I don\\'t know what to do. please help.\"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 941\n", + " high_rank: 941\n", + " label: \"to whom it may concern I am receiving telephones to my place of employment for debts that are not even mine. I am requesting to press charges to full extent of the law. And demand they stop immediately the company name is credit corp. solution the rep name is XXXX XXXX the phone she gave me is XXXX ext XXXX. I will further more cc the Texas State Attorney General Office so they start investigating the company tactic and demand that this loan is removed from my credit report. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 942\n", + " high_rank: 942\n", + " label: \"to whom it may concern : I have been in my home for 21 years. I got divorced about 13 years ago and was left to pay my house note..i found out that I was on a adjustable rate about 7 years ago.i have been trying to get on a fix note since then. every company I went through has taken my money ( and its about XXXX different companies ) saying they will get me on a fix rate..Never happen and I in a bad situation now..cause they want my home now!!! I have not paid a house note in 7 years and now they want my house..i have defraud out of my home cause of all these companies and I do n\\'t think its fair to me and my children..its not like I have been sitting around doing nothing..what I want to know is why I cant get a loan modf..or a fix rate. my loan is now with bayview loan services and like all the rest they cant help me either. what is really going on? you work for these companies to help people like myself and yet still nothing is getting done..so I just have to take my lost out of my home and nothing are no one helped me..if anyone can find in there heart to help me please step forward and do so.. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 943\n", + " high_rank: 943\n", + " label: \"to whom it may concern : I got a line of credit loan from Wells Fargo. I was paying prime plus XXXX for several years. All of a sudden the jumped up to prime plus 8 % for no reason. I need help with this. I do not feel this is fair. I called to see if they disclosed to me the min and max amount. They said they do not provide anything in writing. They only do this verbally. XXXX XXXX XXXX XXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 944\n", + " high_rank: 944\n", + " label: \"to much to tell bottom line I gave my ex wife marital home threw divorse XXXX years later I filed bankruptcy my ex let the home go back to bank they hurrase me with filing loss with my old homeowners ins in my name documents keep coming a lot more need help and to file a federal suite against bac home loans \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 945\n", + " high_rank: 945\n", + " label: \"to me 6 days agoDetails To whom thus may concern, This is to advise you that the company, Santander bank, NA, did not address my concern in the least. I had requested that they consider my request that I pay them $ XXXX until all my mtge arrears had been paid up and it was never replied to by either their attorney nor their mortserv person whom I had contacted when this arrears issue first arose. Note, my mtge payment had been deducted from wife \\'s checking account monthly until I, not my wife, declared bankruptcy last XXXX, 2015. - then they stopped making direct withdrawals from her account. I had been instructed to contact their point of contact office and did so several times. They sent me a packet of forms to fill out, including my financials, reasons why I felt that I should be granted a mtge modification and was told to include any documentation relevant to this case. I did so and received a very perfunctory reply from them which you wrote to me that they sent to me/ you? on XXXX, after their underwriting team took a few weeks to consider my request -- namely that I was turned down due to \\\" item # XXXX \\'\\', which, a few pages into their reply, explained that this was due to the fact that my residence was a co-op! I then decided to file with your agency and have been receiving annoying calls from the bank almost daily. When I speak to a rep, it \\'s always the same thing -- badgering me when/ if I can pay, asking me if I can borrow from a friend or relative, can I liquidate any XXXX I may have, etc., never any discussion about my proposed installment plan. note, my initial complaint with them was NEVER resolved. I had asked them to forgive the approx {$930.00} they tacked on to my 2 months mtge payments which are in arrears, for legal fees ( {$820.00} ), + late fees and inspection fees for an additional approx {$100.00}, due to the fact that it was THEY who stopped my payments from being received and the fact that XXXX XXXX XXXX, Santander \\'s attny, never got back to me to resolve this issue nor to address my request for an installment payment way back in XXXX of last year, despite both my and my attorney \\'s trying to resolve this issue with her. And as for their telling me in their explanation what they have done or will do to solve my problem, they have done neither, just a very tersely worded account stating that since my home us a co-op, that I was not eligible for a loan modification, which is NOT even what I was requesting.p in the first place. All I was requesting was for them to accept my installment plan and to forgive that addtnl {$930.00} they added due to their malfeasance.. I do greatly appreciate your allowing me to firstly file my complaint with your bureau and secondly, to dispute my bank \\'s reply. Thanking you for your time given this matter, I am, Yours truly, XXXX Incidentally, I hit the DISPUTE BUTTON BUT IT KEEPS ON SHOWING \\\" SUBMITTING \\'\\' Reply Forward \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 946\n", + " high_rank: 946\n", + " label: \"titlemax called me many time telling me to contact them. I answered one of their calls. told them I had no business with themthey called me a liarthey wanted me to give them personal information which would have allowed them identity fraud on methey kept telling me to XXXX payment and I never dealt with them ever in my life. I tried to be nice and explain they had the wrong person. when I asked how they got my phone number, they said it was in their \\\" system \\'\\' they said I live in XXXX, I never lived in XXXX. I told them numersous times I did not live in XXXX, never did, they kept telling me I was a lair. and was lying to them. and to fess up and make payment. this is unacceptable harassment and trying to collect money from me and I never had had any dealing with themtheir phone number isXXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 947\n", + " high_rank: 947\n", + " label: \"title max of Ga is the worst company for a title loan. I am sure because this office is located on the XXXX the interest rates are higher. I got the loan to help with my XXXX year old father back in XXXX of 2015 who transition in XXXX 2015. Also to do some car repairs. This company always changes information to the consumer and they do not let you know. It is always a blow in your face. I was told today that they will no longer accept debit payments if you are overdue just for 1 day. Will I called on Saturday at XXXX and no one answer the phone the machine came on that is how they get people to pay an additional interest rate. Also because they are closed on Sunday if your payment is due on Saturday then it \\'s a double payment. Since XXXX they have tried to get me a couple of times and I have fought them. However, This needs to stop somebody in the GA capital is capitalizing on these title pawns. How are they allowed to take advantage of people like this. I have copied and pasted some items from their website which is guidelines they do not follow. Which should be state wide. Please see below .We may from time to time in our sole discretion and without notice to you modify the terms of this Agreement and/or change the rules that govern it our customers mean a lot to us. We firmly believe that we only succeed when you succeed. WILL WHEN THEY MAKE MAJOR CHANGES YOU SHOULD LET THE CONSUMER KNOW THIS. \\\" NO LONGER TAKING DEBIT PAYMENT OVER THE PHONE. THEY SHOULD HAVE SENT OUT A NOTICE OR DO A CALLING POST TO CONSUMERS That \\'s why we spend ample time and attention training each and every one of our TitleMax team members. To us, it is much more than just auto title loans. It is about giving you the options you need to take care of your finances. So no matter what store you walk into, you \\'ll find customer service reps who have the tools and knowledge about vehicle title loans and our other programs to help you make the best decisions for your life. WELL IF THESE REPS WOULD HAVE HAD THE TOOLS AND KNOWLEDGE. THEN CONSUMERS WILL NOT BE IN THE PLACE THEY ARE IN NOW WITH PAYING ADDITIONAL FEES BECAUSE THEY CHANGED THE RULES it \\'s why we genuinely work with you from start to finish on a variety of auto title loans : From clear-cut explanations and walkthroughs of the process, to giving you the option of pre-approval for a car title loan to customized payment plans based on your own specific circumstances, to a robust text message reminder program to help you stay on track, we have designed our business around you. THE ABOVE IS RUBBISH I WISH THEY WOULD HAVE DONE THAT. THE ONLY PERSON THAT HAS KNOWLEDGE IS THE PROPRIETOR OF THE ESTABLISHMENT. WHO RUNS ALL OVER TOWN BECAUSE HE HAS XXXX STORES TO MANAGER AND COULD NEVER RETURN PHONE CALLS. Each and every step we take with our car title loans is to ensure your complete satisfaction with us and the ultimate success of your future. Benefit from our all-credit-welcome policy Our focus is on getting you as much cash possible while keeping your payments manageable. WELL IF THEY WOULD KEEP IT MANAGEABLE THEN I WOULD NOT TO BE THE VOICE FOR SO MANY FOLKS ON THE SOUTH SIDE OF XXXX ( XXXX ) XXXX In Georgia, title pawn companies are required to cut the interest rate in half after three months. But they do not have to let you pay down the principal as you go, so in most cases you just make interest payments until you pay off the loan entirely. I HAVE BEEN WITH THEM SINCE XXXX OF LAST YEAR THEY HAVE NOT CUT THE INTEREST RATE AFTER THREE MONTHS. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 948\n", + " high_rank: 948\n", + " label: \"title loan through titlemax XXXX tx. i have XXXX loans with them and have paid back more than i borrowed and still owe the amout i borrowed. i have been home with XXXX XXXX XXXX on medication that will not allow me to drive. they keep calling and i keep explaining i have very XXXX XXXX XXXX and cant drive. they told me after they added another XXXX XXXX dollars as a fee that i could have sent someone to pay it. they keep calling and harrasing me and im very sick. they dont care. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 949\n", + " high_rank: 949\n", + " label: \"tired of doing this. i have been with ciri bank 25 years plus what banking does not do sometimes is get to know their customers. XXXX does XXXX XXXX and i use those cards for major purchases. not citi. since there is no loyalty since XXXX they have XXXX dollars of interest they refuse to refund all of a sudden when it was happening. i have medical debt that could if i so chose allow me to discharge all. i am not doing this though. i am very frustrated at the scripts and bureaucracy in the financial industry what a disappointment that you dont get loyalty for loyalty so i cant give it. onceciti refunds it wuthout throwing it in my face or scripting me. or telling me its valid i will add it to my list of preferred cards. this is for my card ending in XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 950\n", + " high_rank: 950\n", + " label: \"tion or Company : Wells FargoStreet : City : XXXXState : NCZip : Phone : Type of Account ( s ) : ( If you are unsure of the type of account ( s ), please contactyour financial institution for assistance. ) Deposit Account ( Checking, Savings ) _X_ Credit Card ___Loan Product ( Consumer, Mortgage, HomeEquity ) ___Asset Management ( TrustAccounts ) ___Consumer Leasing ___NonDeposit Account ( Investments ) ___Insurance ___ Other XXXX Print Complaint FormXXXX XXXX XXXXXXXXHave you tried to resolve your complaint with your financial institution orYESIf Yes, when? XXXX/XXXX/2015How? Phone, OtherHas the financial institution responded to your complaint? NOIf Yes, when? How? Contact Name : XXXX : call center XXXXCOMPLAINT INFORMATIONDescribe events in the order they ocurred, including any names, phone numbers, and a full description of the problem with the amount ( s ) and date ( s ) of anytransaction ( s ). Be as brief and complete as possible to make the explanation clear. Do not include personal or confidential information such as your socialsecurity, credit card, or bank accounts numbers. They have, for the 3rd month in a row, stolen {$14.00} from my business checkingaccount even though it is linked to a {$19000.00} credit line which waives the $ XXXXfee. Called their phone center 45 minutes got an XXXX who lied aboutwhere she was, refused to transfer me to a supervisor and said they wouldcall back still waiting for XXXX others to call back from Tuesday andWednesday. They claim they fixed the issue fully knowing that this is untrue. They think that I wo n\\'t notice this charge and/or wo n\\'t waste my time tryingto resolve. They are doing this to every small business and you need toinvestigate this fraudulent practice For me, I want a refund andcompensation for my time as well as seeking that you fine them for fraud!!! They are XXXX with me and charging me {$14.00} when my line of credit isover {$10000.00}. They have XXXX with me for the past 3 times and have LIEDsaying this has been corrected. MAKE THEM FIX THE ISSUE AND STOPATTEMPTING TO STEAL FROM ME. HOW DARE THEY BLATANTLYATTEMPT TO STEAL MONEY FROM ME AND, WHILE YOU ARE SUPPORTEDBY THEIR LOBBY, I EXPECT YOU TO SOMETHING ABOUT THESECROOKS!!! Please be advised that the issues described in this complaint will be shared with \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 951\n", + " high_rank: 951\n", + " label: \"three years ago bank of america put my name in the XXXX and other databases so i cant do any type of financial transactions on earth anymore. i had a direct deposit from an employer on a friday and typically the money would be available the following monday. on saturday morning i wanted to go to a book sale and pay cash so i wrote a check to my checking account and took out cash knowing that i would be able to cover the check with my direct deposit by the time bank of america \\\" presented \\'\\' the check on monday. at bank of america, an transaction made after XXXX on a friday is a MONDAY business day transaction, so obviously my transaction on saturday morning was a MONDAY BUSINESS DAY TRANSACTION. the atm receipt had the date of the transaction ( which was about XXXX on saturday XXXX and also the \\\" business date \\'\\' of the transaction which was listed as the following MONDAY. i had done this type of transaction many times before without problems. on monday when i went to the atm to deposit cash to cover the check i had written on saturday morning it said my account had been closed. i called bank of america the they told me they had put my name in the XXXX database as having done \\\" bank fraud \\'\\' and that i would never be able to do any type of financial transaction on earth for the rest of my life. i then went over to the local branch in XXXX california and talked to the branch manager XXXX XXXX. he took {$860.00} cash from me ( this was monday afternoon ) so if they hadnt closed the account the check would have been fully funded. he called bank of america and they confirmed to him that they had put my name on XXXX and that i was now blackballed from doing financial transactions on earth. the corporate offices told him nothing could be done about it because \\\" the department that put my name in the XXXX database doesnt talk to anyone, either bank of america employees or customers \\'\\'. this was very unfair to me as, under their own rules, bank of america should not have submitted that check until monday, and since the bank manager took {$860.00} from me, the check would not have bounced. obviously since bank of america did not lose money they were not the victim of \\\" bank fraud \\'\\'. i went to several other banks like XXXX, XXXX and XXXX and credit unions and i was indeed blackballed from doing financial transactions in america, none of them would open an account for me. this has had a drastic effect on my life since my business in online and i need a bank account to receive payments from customers. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 952\n", + " high_rank: 952\n", + " label: \"threatened to take the cosignor on an old debt to court. Solicited information from her about how to get my work information by threatening to take her to court. I have just started a new job and after 3 days of working they \\'ve already managed to call. I work where personal calls are not allowed and I could be reprimanded. ive read complaints against this company refusing to send information in writing and demanding to settle over the phone. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 953\n", + " high_rank: 953\n", + " label: \"threatened that my credit will be ruined for seven years and I better have proof that the carpet in the apartment was in good condition if I am disputing. kept asking me for personal information such as my social security number. I already gave a security deposit which was not returned to me also the apartment complex was in the process of making upgrades, as each tenet moved out the carpets were removed and replaced with wood flooring. This is a scam to have past tenets pay for the buildings upgrades. During my time as a tent I never missed a rent payment, even when going without air conditioning on XXXX separate occasions each lasting several days. There was also and issue where Bees began nesting inside of my apartment when I asked the manager for help she hung up on me. the Bees were eventually exterminated. It is not possible to reach anyone above the apartment manager at XXXX, it goes to voicemail and the mailbox is full. Also I was never sent a bill or contacted by anyone that had an outstanding balance before receiving a collections notice. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 954\n", + " high_rank: 954\n", + " label: \"threatened a state guy would charge me. Called several times after I asked them not to. Calls made after XXXX XXXX. Threatened to sue me, said I would have to pay more fees to attorney. Refused to send me verification the debt is mine. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 955\n", + " high_rank: 955\n", + " label: \"threaten to put lien on property assets and garnish wages harassment XXXX times daily threats made daily calling other people \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 956\n", + " high_rank: 956\n", + " label: \"thjs is my story i will try to make this as short as posibleI brought my home in XX/XX/XXXX or XX/XX/XXXX at XXXX XXXX XXXX XXXX XXXX XXXX XXXX my financier was mortgage lenders network after maybe a year my lone got sold to another lender then at least two or more lender brought the lone, each time the lone got sold interest rate went up and taxes also when my lone got brought by american services company after six month i attempted to try and get my lone change to a fixed lone i was successful at 8.4 % doing this time everybody was trying to get there home modified so i went on line and attempted to contact XXXX and all of a sudden calls started coming in, a law firm called residents protection law center connected with and told me that they can help so went for itstarted submitting papers i went into active review with american servicing company for XXXX years til residents protection center out of California by the way went M I A and my lender told me that i was in foreclose and i need to leave a s a p i tried short sale that didnt work so i went in a deed in lue and gave up the keys for cash. XXXX years later now i see on my credit report a death of XXXX pluss .american servicing company says there is no death and now the say there is no records of that lone i faxed proff the wells fargo and wating on a responceim sorry i tried to make it short ps i am sdding documents also to you for help \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 957\n", + " high_rank: 957\n", + " label: \"this wasnt me \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 958\n", + " high_rank: 958\n", + " label: \"this was resolved with the hospital on XXXX/XXXX/XXXX. they retracted their letter to the collection agency and as of XXXX/XXXX/XXXX the collection agency contacted the credit bureau without approval from the hospital. the hospital said the collection agency had to wait 60 days & send notification to me before contacting the credit bureau. My XXXX score took a nose dive due to the aggressiveness of optimum outcomes inc out of XXXX il \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 959\n", + " high_rank: 959\n", + " label: \"this was reported once to my XXXX report by national recovery agency. i contacted them and asked the debt by provided in writing and they refused so i contacted XXXX pysicans group and they researched my account and found it to be correct. i payed them directly and they notified national recovery and it was removed and then rereported to XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 960\n", + " high_rank: 960\n", + " label: \"this was recently submitted to you through this cfpb complaint system and your previous notes were that you were going to remove the account XXXX from cfpb case number XXXX you stated that you would remove the item from the credit bureaus but it is still reporting on my equifax this needs to be removed asap as this is a fraudulent acount \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 961\n", + " high_rank: 961\n", + " label: \"this was paid either by my health insurance or fed workers comp \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 962\n", + " high_rank: 962\n", + " label: \"this was inserted into my report by the bureaus just recently the electric company has not updated since 2012 i called the electric company they said they dont have a record of this it is an error with the bureau. i have not paid this account late ever. it is impacting my score in a major way. i am attaching XXXX reports to show how it changed from one day to the next and not on reporting dates. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 963\n", + " high_rank: 963\n", + " label: \"this was from identity theft and is fraudulent needs to be taken off asap i gave a copy of my police report and ftc id theft affidavit outlining the id theft \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 964\n", + " high_rank: 964\n", + " label: \"this was from XXXX which was a part of my XXXX bill. they \\'re stating that when i moved even though the service remained in my name and i still have aep they were not able to collect the amount from me. this information is erroneous.XXXX continued to bill me for my electricity but unforunately XXXX did want to remain my energy provider once i moved. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 965\n", + " high_rank: 965\n", + " label: \"this was a genesis loan for XXXX taken out by XXXX in XXXX, Mi have been paying on this loan since 2009 appr. XXXX per month. the balance is still XXXX. As soon as I found out this was a fraudulent loan I was advised to stop paying it. my credit report currently states I am 120 days past due and received a bill yesterday that my minimum payment due is XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 966\n", + " high_rank: 966\n", + " label: \"this story is truly un fathomable and most of the answers i have gotten from this part of the bank fall short of accountability i hate bureacracy. but its everywhere. i went to use my business atm card issued in XXXX and it did not work this am i am now bing told it was deactivated yesterday. no one told me i have no idea why. emails all day stupid as anything not one tells me who did it why or offers to tell me which card i can use since i do have another or when i will get another. but they email all day long wasting my time. between not being able to get to my money with no warning, time on the phone on hold this is truly unbelievab ; le/ i want to know who and why my business atm card was turned off and i need it turned on again. or i need to know if other card i have ending i think in XXXX usable or i need a new one. its bad enough last month XXXX closed my account without my permission i can not take the fall anymore for all these mishaps youb have a lot of money there to pay people not to help customers efficiently. i want to know which card i can use to access business account asap and why it was closed. without warning. period not emails all day long saying les than nothing. no reasaon exists to have closed my card what about telling me? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 967\n", + " high_rank: 967\n", + " label: \"this started about a month ago, when i first paid my credit card for {$100.00} for unknown reasons the payment was declined and i have to file a dispute with my bank before the i can get my money .again on the XXXX i made a payment of {$100.00} and i was notified by them that the payment return again i went to my bank and filed a dispute and until now i havent gotten the money on my account yet my due date is the XXXX th of the month and for now we are not on the XXXX of the month i just do n\\'t know what is this.it look like is a scam credit card, also my credit report is not accurate i never filed a bankruptcy but i do n\\'t know why credit report is showing like a filed one i want my report to be accurate. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 968\n", + " high_rank: 968\n", + " label: \"this person XXXX XXXX called my cell phone on XXXX XXXX at XXXX and left a voicemal msg, then proceeded to call my place of employment. I asked him to send everything in writing and to refrain from calling my job. I hung the phone up and he proceeded to call 3-4 times back to back hollering and being verbally abusive. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 969\n", + " high_rank: 969\n", + " label: \"this parasitic company is trying to collect debts, from family members, that DO NOT exist. They are praying on people that have recently had a death in their family and telling the survivors that the dead owe them money. This company and EVERYONE that works for them is XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 970\n", + " high_rank: 970\n", + " label: \"this originally was a neck device that was purchased at a therapy office, That was supposed to be covered by the insurance company XXXX, I did not find out until a year later that I owed this, so I offered to return it, the company XXXX would not accept my offer, so right now I \\'m still in the appeal process with the State attorney \\'s office. So this should have not been sent to collections until fully resolved. Now I got this central credit services calling and there very loud and abusive for something that is still in dispute and they keep sending letters. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 971\n", + " high_rank: 971\n", + " label: \"this occurred about four years ago. my father was staying at the XXXX on XXXX in XXXX california. i had made one payment for him with my debit card and at the time i did so i had noticed that they were entering my credit card into a windows computer, not just sliding it in a regular credit card machine, so i was concerned that they were recording the card information. i made it clear that this was a one time charge and that they did not have my permission so make further charges to the card and i asked them to not record the card number. they agreed and assurred me that they would not make future charges to my card. several weeks later i noticed that they had charged around {$380.00} to my account without asking my permission and without even informing me ahead of time that they were doing it. i was very angry because there wasnt even enough money in my account to cover that charge, and in putting that unauthorized charge through, wells fargo had also caused a number of legitimate checks to bounce ( i believe they were XXXX checks written to book sales i frequented so it was very embarrassing ). i was very angry, i basically considered this identity theft and called wells fargo and they had me file some sort of internal appeal, which they found in their own favor without explanation and then refused to talk to me further. i think that they did this because this charge was put through by a XXXX employee who had basically done an identity theft crime and they didnt want it to be recognized as such. this was very unfair to me, how can you hold me responsible for what goes on in my bankaccount if any hotel employee who writes down my debit card number is allowed to charge things to my account without my permission? how can i possibly responsibly manage my own banking if someone is allowed to take money out of the account without my permission and without warning, and even if there isnt enough money to cover the charge? its ridiculous. in addtion wells fargo charged me {$200.00} worth of bounced check fees that they would not otherwise have gotten if they hadnt put this unauthorized charge through. wells fargo closed my accounts and put my name in the XXXX database, which prevents me from ever doing XXXX in america again. i went to several other banks and i was indeed blackballed from any sort of XXXX in america. a year or so later my father died and i tried to get a bank account again. i talked to XXXX XXXX in the XXXX wells fargo office and he called wells fargo corporate offices and they told him they would give me an account if i just gave them {$380.00}. my brother gave wells fargo {$380.00} and wells fargo went through the motions of pretending to open up an account for me, filling out paperwork and assigning an account number to me. in the following week though, the account never opened up. i went back to the wells fargo office and they told me they were not really going to open an account for me, that they had just said that so i would give them {$380.00}. THEY HAD JUST LIED IN ORDER TO GET {$380.00} FROM ME. I was very angry at this deception and demanded the {$380.00} back. they refused to give me my money back. wells fargo is truly sleazy bank by the way dont mail anything to the address i give below i dont live there anymore, thanks to wells fargo i went from making {$80000.00} a year to being homeless. its ridiculous how there is no regulation at all of crooked banks like wells fargo \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 972\n", + " high_rank: 972\n", + " label: \"this number represents 2 accounts1. XXXX XXXX Bank2. XXXX CardThe information Equifax is reporting is the Date of XXXX Delinquency or Last activity as of XX/XX/XXXXXXXX accounts were opened in XX/XX/XXXXThey are not reporting the date opened. According to Fair Reporting Credit Act these accounts should be removed from my report as they are over 7 years old. Equifax told me on the phone they could not obtain the opened date information. If they can not show the correct information regarding my account. They should notbe showing anything. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 973\n", + " high_rank: 973\n", + " label: \"this number has continued to call me since i have received this number XX/XX/2015 ... they are looking for someone name XXXX ... on XXXX XXXX, 2015 at XXXX XXXX central time the number that states admin recovery at XXXX called asking to speak to this person, i advised the woman asking that she had the wrong number and not to contact my home again ... there soon after she called back on a toll free number at XXXX at XXXX stating \\\" is that her, \\'\\' then not saying anything else ... i advised again that they had the wrong number and not to call back ... again on the XXXX XXXX, 2015 they called again from XXXX at XXXX i answered and no one spoke, i told them i was on the \\\" do not call list, \\'\\' and that i would be putting in a complaint if they continued to call back ... XXXX, 2015 at XXXX they called back, i did not answer ... i figured answering the phone would help since i have beenreceiving annoying and harassing calls since the XX/XX/2015 with complete voicemails looking for someone i do not know and does not live here in my residents ... i would really appreciate if they did not continue to call ... thanks! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 974\n", + " high_rank: 974\n", + " label: \"this number XXXX calls me every two hours up to 4-6 times a day after telling them to stop \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 975\n", + " high_rank: 975\n", + " label: \"this not my account so please remove \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 976\n", + " high_rank: 976\n", + " label: \"this not my account from XXXX {$540.00} please remove \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 977\n", + " high_rank: 977\n", + " label: \"this name was used Fraudulent to obtain credit or services under my social security number it was removed and I did ask that this name be blocked & removed it was n\\'t I \\'m now asking that this name be blocked & removed again from my credit files and the Fraudulent Accounts that came along with this name. I was told it is a lot of files, accounts that need to be Joined together and I was told that would be taken care of & that someone was going to call me to confirm this accounts has been joined to make XXXX account so that I my also go online to dispute items on my credit file this also has n\\'t been done because I still ca n\\'t I had to go through \\\" cfpb \\'\\' to dispute this matter again I want this taken care of if I have ( XXXX ) different accounts files within Transunion then they need to be all joined together with the correct info which does n\\'t include the Fraudulent name ( XXXX XXXX ) I want an update this also has been taken care of which I have asked over & over again and told over & over it would be done but again nothing has been done I will also be reporting this to the BBB. I want to be mailed out a copy of the updated credit report that shows this Fraudulent name & accounts has been removed & I want to be mailed out proof all of the accounts I have within Transunion as been updated and merged into just XXXX account.!!!!! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 978\n", + " high_rank: 978\n", + " label: \"this loan company me almost 7days a week XXXX times a day. I know i owe them for my debt but harassing me constantly is just starting to upset me \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 979\n", + " high_rank: 979\n", + " label: \"this item is listed as \\\" charged off \\'\\' and I would like the negative issue removed from my credit report please \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 980\n", + " high_rank: 980\n", + " label: \"this item is from XX/XX/XXXX when opened had XXXX insurance on it I am permant XXXX since XX/XX/XXXX now the XXXX or more different companies changing open date to XX/XX/XXXX or newer that is false it was opened in XX/XX/XXXX they are changing dates I have tried every time old companies called me I told XXXX insurance then never here from then again then new company and so on and so on this needs to be taken off it has been 8 + years not the 1 or two they are trying \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 981\n", + " high_rank: 981\n", + " label: \"this is what happened after the first complaint settled BOAI finally got into a modified loan, but I dont know how they came up with the number not including the escrow. On XXXX I fell on the job and was hurt. I have injuries to my XXXX. I knew right after I went to the urgent care I \\'d need a lawyer. My company XXXX is not paying me right, they are suppose to pay me 35 hours which I have never had at my hourly wage. ( 66 % ) after getting XXXX payments, they lowered it XXXX more. The day after I had this happen I called XXXX XXXX and told her there is no way I can pay what they told me I was going to have to pay ( house payment ) now it is XXXX plus shorter. i was transferred to another loan person, I want to say her name is XXXX. On XXXX different occasions she told me she mailed out a packet never got until last wednesday. She told me they do XXXX modifications in the first 5 years. I explained I dont get enough money to cover house, car, food, utilities, some bills I have been paying on. My food stamp amt is XXXX waiting for them to fix it. My worst fear is not having a job to go back to, XXXX doctor said with the damage I \\'d probably not be able to lift XXXX-XXXX lbs with right hand. I have been applying for other jobs I can do. Then if I get a job do I wait to have surgery later, at this time none of the damages to my body has received any medical care. The papers sent to me I am neither the owner or co owner, I sent in my information as best as I could. I will be mailing this on monday. The amusing or not so amusing issue is my house will be paid off in XXXX. Im not going anywhere, I have to stay in my home 10 years for getting the NC foreclosure loan. My house is not in the best shape, it is not worth the current loan amount. Until my health issues are completed or I get a new job I am between a rock and a hard place. ( in a home or on the street ) Never have I had a financial institution knowing treat their customers this way. Its like they go out of their way to create more stress than we already have. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 982\n", + " high_rank: 982\n", + " label: \"this is the worst company to deal with. customer service is awful. i ca n\\'t get ahold of anyone. the website is so incredibly bad that you ca n\\'t pay a bill. so the only way to make sure you pay on time is to pay by phone for a ridiculous pay-by-phone service charge. they are the bottom feeders of the mortgage world. this is my mortgage, and i \\' the one paying back a quarter of a million dollars and i can not deal with the company i \\'m giving my money to. i believe i should have some say in where my mortgage goes and who is handling it. Based on EVERY review i can online says this company is evil. someone should take a look. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 983\n", + " high_rank: 983\n", + " label: \"this is the third party is call me threatening me if i do n\\'t pay will take me to jail./or they reported to credit bureau. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 984\n", + " high_rank: 984\n", + " label: \"this is the second time i have contacted you. FIa was asked by me when they closed my accounts due to BUSINESS decision to eat my balances. i claled today to check was told to call a XXXX XXXX number that just asked me for my money that is not what i asked. so no letter or call to date has resolved it. i feel i should NOt have to pay the remaining balance due to how they treated me and closed my accounts. i will not endure any other adverse impact either to my credit. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 985\n", + " high_rank: 985\n", + " label: \"this is the same complaint ive been complaining about and since my wages will be garnished I will have to file Chapter XXXX ... in XXXX a XXXX dollar line of credit with XXXX then sold to XXXX XXXX went into default due to a termination of my job thru no fault of my own ... I told my boss about my XXXX and he began taking work away from me and giving it to less skilled workers ... with that XXXX and this issue is adding unneccesary stress in my life ... at that time of turmoil with no money and house payments and truck payments and pets and other bills and food XXXX XXXX reps were calling me harassing me telling me the sheriff will be at my house soon to take my house and that i will go to jail ... they called me at off hours and i was an emotional wreck and they didnt help ... .I didnt find substantial employment until XXXX and i had to pay family friends and other things back ... so in XXXX lvnv on behalf of XXXX XXXX has the courts issue me a summons ... XXXX XXXX was bought out by XXXX in XXXX of XXXX so why is a bottom feeder who buys debts for pennies on a dollar representing XXXX XXXX sueing me when they dont even own the debt? i answered the summons i got in XXXX pro se which i have a right to do and requesated proof of debt, ownership of debt and how much the debt was actually bought for ... I hear nothing back so i figured the issue was mute. I got another XXXX in XXXX and believed it to be a scam from lvnv funding to get money from me so I ignored it. then i get a court ordered wage garnishment. I responded to the courts and explained that i thought it was a scam and again requested proof and also to vacate the judgement as it would incure an financila hardship. I heard nothing back from the courts. I contacted the nys attorney generals office, the garnishment from XXXX stopped. Then they started again last XXXX. Then they stopped and now theyre starting again. The original amount was XXXX dollars, now its well over XXXX. The account went into default in XXXX that would make it past the statute of limitations. I am not going to pay them this amount of money especially when they bought the debt for less than XXXX. I will file chapter XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 986\n", + " high_rank: 986\n", + " label: \"this is the first time ive ever received my background check and i have never broken the law the misdemeanor in XXXX XXXX, Ia was done by someone who gave the police my information i know who it is because shes my sister she told me she had gotten it fixed 8 years ago but obviously from my background check she has n\\'t i have contacted her and she has been willing to help with getting this corrected. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 987\n", + " high_rank: 987\n", + " label: \"this is the copy of the voicemail the company left me ... lThis is an urgent message. We are trying to contact XXXX XXXX in regards to an active filing and delivery information packet. Your immediate return response is requested to XXXX. Failure to respond will result in immediate expedition of the case in decisions being made on your behalf without your knowledge or consent. Again you must contact us by XXXX at XXXX or press XXXX now to be connected. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 988\n", + " high_rank: 988\n", + " label: \"this is the copy of the voicemail left for me : This is the offices of XXXX calling with the litigations Department. I \\'m serving legal notification and which are being implemented as a sole defendant regarding a case in our office. As a result of your non-compliance. We are conducting an in-depth investigation into your case as well as finances at this point it is the plaintiff intention-to and prosecute a protractor through the courts in full compensation along with punitive damages awarded by state statute. At this point I \\'m legally notifying you a citation or has been filed as well as motion has been issued to execute the summons. Now prior to the attorney signing off on the documentation. I would like to speak with you. Reviewing the case affidavit information. I do believe this matter can be rectified on a voluntary basis out of court. However due to the severity of the violations. It is imperative that I speak with you. Litigations department phone number is XXXX or you can hit one to speak with the next available associate. Thank you. Bye. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 989\n", + " high_rank: 989\n", + " label: \"this is such a long story, but I will try and make it brief. I have a credit card from US Bank. It ha a large balance, but I always make my payments. After my divorce settlement was finished, I called US Bank, made it so the account could not be used, and started making payments. On the card they show you XXXX options, XXXX is the minimum payment which takes 20 years to pay off, the next options is a large payment that takes only 3 years to pay off. I took the 3 year plan and for the past year I have made my payment on time and in some case XXXX payments a month. Recently I received a letter from US bank. It said that they looked at my account and determined they needed to raise my interest rate to 24 % I was astounded, why I asked myself, this was unfair, and unwarranted. I called, spoke to several people in different departments. They all said the same thing, there was nothing they could do. I lived in NY for a long time, we would call this kind of practice Loan Sharking. I do n\\'t know how they get away with it. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 990\n", + " high_rank: 990\n", + " label: \"this is second time i write about wells fargo business account other answer was ridiculous. and in no way resolved issue. i resent spending my time like this. i again got feed on my business accounts WHEN IN XX/XX/XXXX i opened it up promised 6 months no fees on businesss accounts. i am closing all accounts later this month. i am tire dof the mishap this is why the account is not funded and will not be since wells can not keep a promiseplease credit the fees asap and make sure it does not happen this month i am leaving this month i asked for one year i did not get it which is why its not funded GREED GREED \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 991\n", + " high_rank: 991\n", + " label: \"this is regards to the lawsuit settlement between CFPB and XXXX College. My son had XXXX student loans issued thru Genesis Lending via XXXX. My husband is a coborrower on these loans. He has received XXXX letters for the XXXX loans, but our son has not received these letters - it is very important that our son receives these letters addressed to him as it has these XXXX loans have had a negative effect on his credit reports. The letters sent to my husband stated that notification was sent to the XXXX major credit reporting agencies requesting that these tow loans ( accounts ) be deleted from his credit report, but our son has NOT received these leters. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 992\n", + " high_rank: 992\n", + " label: \"this is our offer from ocwen loan co. for a trial modification. our interest rate goes from 5 % to a bit over 2 %. our payments were XXXX a month, 4 yrs. ago when we first started begging for help.now they will go to XXXX a month with our principle balance going from XXXX to XXXX and at then end of term our balloon payment will be XXXX so i ask you do we lose our home now or do we lose our home when we are old and cant even work probably. if i sign this so called agreement with ocwen does it forfeit my rights to sue them? and if i enter into this agreement with them so we dont lose our home does it make all the wrong things they have done, like just this yr. signing off on our paperwork at the XXXX co recorders office, be ok? if we sign the agreement to keep our home are we losing our rights to sue this co? \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 993\n", + " high_rank: 993\n", + " label: \"this is on case Case number : XXXX disputed and sent several documents justifying my case and I should be refunded my deposits due to 5th 3rd bank lack of ability in underwriting a file. Thank youXXXX XXXX \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 994\n", + " high_rank: 994\n", + " label: \"this is not my loan I never applied for this loan this was not done in person and my ID and check was stolen around the time this loan was taken out and all the money stolen out of my bank account even my regular pay check money \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 995\n", + " high_rank: 995\n", + " label: \"this is not my account or bills \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 996\n", + " high_rank: 996\n", + " label: \"this is not my account .Remove it from my credit file!!! \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 997\n", + " high_rank: 997\n", + " label: \"this is not mineAccount nameXXXX XXXXAccount numberXXXX .... Recent balance {$0.00} as of XX/XX/XXXXXXXX openedXXXXXX/XX/XXXXStatusForeclosed. In dispute XXXX XXXX XXXX XXXX XXXX, CA XXXX XXXX XXXXAddress identification numberXXXXTypeMortgageTerms2 YearsOn record untilXX/XX/XXXX XX/XX/XXXXCredit limit or original amount $ XXXXHigh balance $ 0Monthly payment $ 0Recent payment amount $ 0Date of statusXX/XX/XXXXXX/XX/XXXXFirst reportedXX/XX/XXXXXX/XX/XXXXResponsibilityIndividualReinvestigation informationThis item was updated from our processing of your dispute in XX/XX/XXXX. \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 998\n", + " high_rank: 998\n", + " label: \"this is not mine \"\n", + " sample_count: 1.0\n", + " }\n", + " buckets {\n", + " low_rank: 999\n", + " high_rank: 999\n", + " label: \"this is not a complaint as much as it is feedback overall i like capital one. they have helped me i need my case and needs individually analyzed and carefully analyzed. i need some extra time to pay my credit card bill and if possible any extra points to help me with balance. in addition to over a XXXX in medical debt currently in litigation for provider to pay i lost my AC and my fridge this summer. i only use your cards due to the excellent cusomter service. i am also needing more time to pay no interest please. some of those expenses are from months ago. please they were essential. my birthday is coming up and i would appreciate it. please consider helping me i use your cards when i have to and responsibily due to exemplary XXXX. i also had written about a business account and needs i have but to my disappointment just got a script back \"\n", + " sample_count: 1.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"consumer_complaint_narrative\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 66799\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6679.9\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 66799\n", + " }\n", + " unique: 2296\n", + " top_values {\n", + " value: \"Equifax\"\n", + " frequency: 4195.0\n", + " }\n", + " top_values {\n", + " value: \"Experian\"\n", + " frequency: 3933.0\n", + " }\n", + " top_values {\n", + " value: \"TransUnion Intermediate Holdings, Inc.\"\n", + " frequency: 3863.0\n", + " }\n", + " top_values {\n", + " value: \"Bank of America\"\n", + " frequency: 3497.0\n", + " }\n", + " top_values {\n", + " value: \"Wells Fargo & Company\"\n", + " frequency: 3074.0\n", + " }\n", + " top_values {\n", + " value: \"Citibank\"\n", + " frequency: 2788.0\n", + " }\n", + " top_values {\n", + " value: \"JPMorgan Chase & Co.\"\n", + " frequency: 2586.0\n", + " }\n", + " top_values {\n", + " value: \"Ocwen\"\n", + " frequency: 1620.0\n", + " }\n", + " top_values {\n", + " value: \"Capital One\"\n", + " frequency: 1504.0\n", + " }\n", + " top_values {\n", + " value: \"Synchrony Financial\"\n", + " frequency: 1375.0\n", + " }\n", + " top_values {\n", + " value: \"Nationstar Mortgage\"\n", + " frequency: 1372.0\n", + " }\n", + " top_values {\n", + " value: \"U.S. Bancorp\"\n", + " frequency: 1080.0\n", + " }\n", + " top_values {\n", + " value: \"Ditech Financial LLC\"\n", + " frequency: 1067.0\n", + " }\n", + " top_values {\n", + " value: \"Navient Solutions, Inc.\"\n", + " frequency: 997.0\n", + " }\n", + " top_values {\n", + " value: \"Encore Capital Group\"\n", + " frequency: 865.0\n", + " }\n", + " top_values {\n", + " value: \"Amex\"\n", + " frequency: 740.0\n", + " }\n", + " top_values {\n", + " value: \"Portfolio Recovery Associates, Inc.\"\n", + " frequency: 680.0\n", + " }\n", + " top_values {\n", + " value: \"PayPal Holdings, Inc.\"\n", + " frequency: 637.0\n", + " }\n", + " top_values {\n", + " value: \"ERC\"\n", + " frequency: 622.0\n", + " }\n", + " top_values {\n", + " value: \"Discover\"\n", + " frequency: 559.0\n", + " }\n", + " avg_length: 19.560951232910156\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"Equifax\"\n", + " sample_count: 4195.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"Experian\"\n", + " sample_count: 3933.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"TransUnion Intermediate Holdings, Inc.\"\n", + " sample_count: 3863.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"Bank of America\"\n", + " sample_count: 3497.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"Wells Fargo & Company\"\n", + " sample_count: 3074.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"Citibank\"\n", + " sample_count: 2788.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"JPMorgan Chase & Co.\"\n", + " sample_count: 2586.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"Ocwen\"\n", + " sample_count: 1620.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"Capital One\"\n", + " sample_count: 1504.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"Synchrony Financial\"\n", + " sample_count: 1375.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"Nationstar Mortgage\"\n", + " sample_count: 1372.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"U.S. Bancorp\"\n", + " sample_count: 1080.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"Ditech Financial LLC\"\n", + " sample_count: 1067.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"Navient Solutions, Inc.\"\n", + " sample_count: 997.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"Encore Capital Group\"\n", + " sample_count: 865.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"Amex\"\n", + " sample_count: 740.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"Portfolio Recovery Associates, Inc.\"\n", + " sample_count: 680.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"PayPal Holdings, Inc.\"\n", + " sample_count: 637.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"ERC\"\n", + " sample_count: 622.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"Discover\"\n", + " sample_count: 559.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"Empowerment Ventures, LLC\"\n", + " sample_count: 508.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"Select Portfolio Servicing, Inc\"\n", + " sample_count: 476.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"PNC Bank N.A.\"\n", + " sample_count: 466.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"TD Bank US Holding Company\"\n", + " sample_count: 457.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"Barclays PLC\"\n", + " sample_count: 427.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"SunTrust Banks, Inc.\"\n", + " sample_count: 426.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"Seterus, Inc.\"\n", + " sample_count: 399.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"HSBC North America Holdings Inc.\"\n", + " sample_count: 392.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"Santander Consumer USA Holdings Inc\"\n", + " sample_count: 356.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"Transworld Systems Inc.\"\n", + " sample_count: 335.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"Specialized Loan Servicing LLC\"\n", + " sample_count: 327.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"Ally Financial Inc.\"\n", + " sample_count: 326.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"USAA Savings\"\n", + " sample_count: 318.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"BB&T Financial\"\n", + " sample_count: 291.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"AES/PHEAA\"\n", + " sample_count: 273.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"Citizens Financial Group, Inc.\"\n", + " sample_count: 244.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"Caliber Home Loans, Inc\"\n", + " sample_count: 232.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"Carrington Mortgage Holdings, LLC.\"\n", + " sample_count: 230.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"Convergent Resources, Inc.\"\n", + " sample_count: 208.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"Fifth Third Financial Corporation\"\n", + " sample_count: 206.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"Afni, Inc.\"\n", + " sample_count: 199.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"Resurgent Capital Services L.P.\"\n", + " sample_count: 188.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"Regions Financial Corporation\"\n", + " sample_count: 185.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"Quicken Loans\"\n", + " sample_count: 181.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"M&T Bank Corporation\"\n", + " sample_count: 179.0\n", + " }\n", + " buckets {\n", + " low_rank: 45\n", + " high_rank: 45\n", + " label: \"Diversified Consultants, Inc.\"\n", + " sample_count: 176.0\n", + " }\n", + " buckets {\n", + " low_rank: 46\n", + " high_rank: 46\n", + " label: \"Navy FCU\"\n", + " sample_count: 167.0\n", + " }\n", + " buckets {\n", + " low_rank: 47\n", + " high_rank: 47\n", + " label: \"I.C. System, Inc.\"\n", + " sample_count: 165.0\n", + " }\n", + " buckets {\n", + " low_rank: 48\n", + " high_rank: 48\n", + " label: \"Sallie Mae\"\n", + " sample_count: 161.0\n", + " }\n", + " buckets {\n", + " low_rank: 49\n", + " high_rank: 49\n", + " label: \"MoneyGram\"\n", + " sample_count: 160.0\n", + " }\n", + " buckets {\n", + " low_rank: 50\n", + " high_rank: 50\n", + " label: \"Pinnacle Credit Services, LLC\"\n", + " sample_count: 157.0\n", + " }\n", + " buckets {\n", + " low_rank: 51\n", + " high_rank: 51\n", + " label: \"Scottrade Bank\"\n", + " sample_count: 155.0\n", + " }\n", + " buckets {\n", + " low_rank: 52\n", + " high_rank: 52\n", + " label: \"PHH Mortgage\"\n", + " sample_count: 155.0\n", + " }\n", + " buckets {\n", + " low_rank: 53\n", + " high_rank: 53\n", + " label: \"The Western Union Company\"\n", + " sample_count: 151.0\n", + " }\n", + " buckets {\n", + " low_rank: 54\n", + " high_rank: 54\n", + " label: \"Fidelity National Information Services, Inc. (FNIS)\"\n", + " sample_count: 151.0\n", + " }\n", + " buckets {\n", + " low_rank: 55\n", + " high_rank: 55\n", + " label: \"Shellpoint Partners, LLC\"\n", + " sample_count: 150.0\n", + " }\n", + " buckets {\n", + " low_rank: 56\n", + " high_rank: 56\n", + " label: \"PennyMac Loan Services, LLC\"\n", + " sample_count: 149.0\n", + " }\n", + " buckets {\n", + " low_rank: 57\n", + " high_rank: 57\n", + " label: \"National Credit Systems,Inc.\"\n", + " sample_count: 145.0\n", + " }\n", + " buckets {\n", + " low_rank: 58\n", + " high_rank: 58\n", + " label: \"Bayview Loan Servicing, LLC\"\n", + " sample_count: 145.0\n", + " }\n", + " buckets {\n", + " low_rank: 59\n", + " high_rank: 59\n", + " label: \"Freedom Mortgage\"\n", + " sample_count: 141.0\n", + " }\n", + " buckets {\n", + " low_rank: 60\n", + " high_rank: 60\n", + " label: \"Loan Care\"\n", + " sample_count: 139.0\n", + " }\n", + " buckets {\n", + " low_rank: 61\n", + " high_rank: 61\n", + " label: \"Receivables Performance Management LLC\"\n", + " sample_count: 138.0\n", + " }\n", + " buckets {\n", + " low_rank: 62\n", + " high_rank: 62\n", + " label: \"Hunter Warfield, Inc.\"\n", + " sample_count: 137.0\n", + " }\n", + " buckets {\n", + " low_rank: 63\n", + " high_rank: 63\n", + " label: \"EOS Holdings, Inc.\"\n", + " sample_count: 137.0\n", + " }\n", + " buckets {\n", + " low_rank: 64\n", + " high_rank: 64\n", + " label: \"Southwest Credit Systems, L.P.\"\n", + " sample_count: 125.0\n", + " }\n", + " buckets {\n", + " low_rank: 65\n", + " high_rank: 65\n", + " label: \"Servis One, Inc.\"\n", + " sample_count: 123.0\n", + " }\n", + " buckets {\n", + " low_rank: 66\n", + " high_rank: 66\n", + " label: \"Commonwealth Financial Systems, Inc.\"\n", + " sample_count: 123.0\n", + " }\n", + " buckets {\n", + " low_rank: 67\n", + " high_rank: 67\n", + " label: \"Cavalry Investments, LLC\"\n", + " sample_count: 118.0\n", + " }\n", + " buckets {\n", + " low_rank: 68\n", + " high_rank: 68\n", + " label: \"Flagstar Bank\"\n", + " sample_count: 116.0\n", + " }\n", + " buckets {\n", + " low_rank: 69\n", + " high_rank: 69\n", + " label: \"BBVA Compass\"\n", + " sample_count: 116.0\n", + " }\n", + " buckets {\n", + " low_rank: 70\n", + " high_rank: 70\n", + " label: \"Focus Holding Company\"\n", + " sample_count: 115.0\n", + " }\n", + " buckets {\n", + " low_rank: 71\n", + " high_rank: 71\n", + " label: \"First National Collection Bureau, Inc.\"\n", + " sample_count: 114.0\n", + " }\n", + " buckets {\n", + " low_rank: 72\n", + " high_rank: 72\n", + " label: \"CMRE Financial Services, Inc.\"\n", + " sample_count: 114.0\n", + " }\n", + " buckets {\n", + " low_rank: 73\n", + " high_rank: 73\n", + " label: \"CCS Financial Services, Inc.\"\n", + " sample_count: 110.0\n", + " }\n", + " buckets {\n", + " low_rank: 74\n", + " high_rank: 74\n", + " label: \"Genesis Lending\"\n", + " sample_count: 109.0\n", + " }\n", + " buckets {\n", + " low_rank: 75\n", + " high_rank: 75\n", + " label: \"The CBE Group, Inc.\"\n", + " sample_count: 107.0\n", + " }\n", + " buckets {\n", + " low_rank: 76\n", + " high_rank: 76\n", + " label: \"NetSpend Corporation, a TSYS Company\"\n", + " sample_count: 107.0\n", + " }\n", + " buckets {\n", + " low_rank: 77\n", + " high_rank: 77\n", + " label: \"OneMain Financial Holdings, LLC\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 78\n", + " high_rank: 78\n", + " label: \"Dynamic Recovery Solutions, LLC\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 79\n", + " high_rank: 79\n", + " label: \"Allied Interstate LLC\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 80\n", + " high_rank: 80\n", + " label: \"ACE Cash Express Inc.\"\n", + " sample_count: 103.0\n", + " }\n", + " buckets {\n", + " low_rank: 81\n", + " high_rank: 81\n", + " label: \"Santander Bank US\"\n", + " sample_count: 97.0\n", + " }\n", + " buckets {\n", + " low_rank: 82\n", + " high_rank: 82\n", + " label: \"Residential Credit Solutions\"\n", + " sample_count: 96.0\n", + " }\n", + " buckets {\n", + " low_rank: 83\n", + " high_rank: 83\n", + " label: \"KeyBank NA\"\n", + " sample_count: 96.0\n", + " }\n", + " buckets {\n", + " low_rank: 84\n", + " high_rank: 84\n", + " label: \"I.Q. Data International, Inc.\"\n", + " sample_count: 96.0\n", + " }\n", + " buckets {\n", + " low_rank: 85\n", + " high_rank: 85\n", + " label: \"CashCall, Inc.\"\n", + " sample_count: 95.0\n", + " }\n", + " buckets {\n", + " low_rank: 86\n", + " high_rank: 86\n", + " label: \"Stellar Recovery Inc.\"\n", + " sample_count: 94.0\n", + " }\n", + " buckets {\n", + " low_rank: 87\n", + " high_rank: 87\n", + " label: \"CNG Financial Corporation\"\n", + " sample_count: 91.0\n", + " }\n", + " buckets {\n", + " low_rank: 88\n", + " high_rank: 88\n", + " label: \"CL Holdings, LLC\"\n", + " sample_count: 90.0\n", + " }\n", + " buckets {\n", + " low_rank: 89\n", + " high_rank: 89\n", + " label: \"DriveTime\"\n", + " sample_count: 89.0\n", + " }\n", + " buckets {\n", + " low_rank: 90\n", + " high_rank: 90\n", + " label: \"Enova International, Inc.\"\n", + " sample_count: 88.0\n", + " }\n", + " buckets {\n", + " low_rank: 91\n", + " high_rank: 91\n", + " label: \"Speedy Cash Holdings\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 92\n", + " high_rank: 92\n", + " label: \"ProCollect, Inc\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 93\n", + " high_rank: 93\n", + " label: \"Tenet HealthCare Corporation\"\n", + " sample_count: 85.0\n", + " }\n", + " buckets {\n", + " low_rank: 94\n", + " high_rank: 94\n", + " label: \"AllianceOne Recievables Management\"\n", + " sample_count: 84.0\n", + " }\n", + " buckets {\n", + " low_rank: 95\n", + " high_rank: 95\n", + " label: \"Financial Credit Service, Inc.\"\n", + " sample_count: 83.0\n", + " }\n", + " buckets {\n", + " low_rank: 96\n", + " high_rank: 96\n", + " label: \"Selene Finance\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 97\n", + " high_rank: 97\n", + " label: \"Rushmore Loan Management Services LLC\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 98\n", + " high_rank: 98\n", + " label: \"Community Choice Financial, Inc.\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 99\n", + " high_rank: 99\n", + " label: \"TCF National Bank\"\n", + " sample_count: 80.0\n", + " }\n", + " buckets {\n", + " low_rank: 100\n", + " high_rank: 100\n", + " label: \"Red Rock Tribal Lending\"\n", + " sample_count: 79.0\n", + " }\n", + " buckets {\n", + " low_rank: 101\n", + " high_rank: 101\n", + " label: \"Toyota Motor Credit Corporation\"\n", + " sample_count: 78.0\n", + " }\n", + " buckets {\n", + " low_rank: 102\n", + " high_rank: 102\n", + " label: \"Round Point Mortgage\"\n", + " sample_count: 77.0\n", + " }\n", + " buckets {\n", + " low_rank: 103\n", + " high_rank: 103\n", + " label: \"Westlake Services, LLC\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 104\n", + " high_rank: 104\n", + " label: \"First Data Corporation\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 105\n", + " high_rank: 105\n", + " label: \"The CMI Group, Inc.\"\n", + " sample_count: 75.0\n", + " }\n", + " buckets {\n", + " low_rank: 106\n", + " high_rank: 106\n", + " label: \"Credit Protection Association, L.P.\"\n", + " sample_count: 75.0\n", + " }\n", + " buckets {\n", + " low_rank: 107\n", + " high_rank: 107\n", + " label: \"Credit Acceptance Corporation\"\n", + " sample_count: 75.0\n", + " }\n", + " buckets {\n", + " low_rank: 108\n", + " high_rank: 108\n", + " label: \"Conn\\'s, Inc.\"\n", + " sample_count: 75.0\n", + " }\n", + " buckets {\n", + " low_rank: 109\n", + " high_rank: 109\n", + " label: \"Penn Credit Corporation\"\n", + " sample_count: 73.0\n", + " }\n", + " buckets {\n", + " low_rank: 110\n", + " high_rank: 110\n", + " label: \"National Credit Adjusters, LLC\"\n", + " sample_count: 73.0\n", + " }\n", + " buckets {\n", + " low_rank: 111\n", + " high_rank: 111\n", + " label: \"The Huntington National Bank\"\n", + " sample_count: 72.0\n", + " }\n", + " buckets {\n", + " low_rank: 112\n", + " high_rank: 112\n", + " label: \"Sterling Jewelers Inc.\"\n", + " sample_count: 72.0\n", + " }\n", + " buckets {\n", + " low_rank: 113\n", + " high_rank: 113\n", + " label: \"SquareTwo Financial Corporation\"\n", + " sample_count: 72.0\n", + " }\n", + " buckets {\n", + " low_rank: 114\n", + " high_rank: 114\n", + " label: \"LoanDepot\"\n", + " sample_count: 71.0\n", + " }\n", + " buckets {\n", + " low_rank: 115\n", + " high_rank: 115\n", + " label: \"Credit Karma, Inc.\"\n", + " sample_count: 71.0\n", + " }\n", + " buckets {\n", + " low_rank: 116\n", + " high_rank: 116\n", + " label: \"URS Holding, LLC\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 117\n", + " high_rank: 117\n", + " label: \"HCFS Health Care Financial Services, Inc.\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 118\n", + " high_rank: 118\n", + " label: \"BMO Harris\"\n", + " sample_count: 69.0\n", + " }\n", + " buckets {\n", + " low_rank: 119\n", + " high_rank: 119\n", + " label: \"High Point Asset Inc\"\n", + " sample_count: 68.0\n", + " }\n", + " buckets {\n", + " low_rank: 120\n", + " high_rank: 120\n", + " label: \"Hyundai Capital America\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 121\n", + " high_rank: 121\n", + " label: \"GM Financial\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 122\n", + " high_rank: 122\n", + " label: \"TMX Finance LLC\"\n", + " sample_count: 65.0\n", + " }\n", + " buckets {\n", + " low_rank: 123\n", + " high_rank: 123\n", + " label: \"Radius Global Solutions LLC\"\n", + " sample_count: 64.0\n", + " }\n", + " buckets {\n", + " low_rank: 124\n", + " high_rank: 124\n", + " label: \"Comerica\"\n", + " sample_count: 64.0\n", + " }\n", + " buckets {\n", + " low_rank: 125\n", + " high_rank: 125\n", + " label: \"FAIR COLLECTIONS & OUTSOURCING, INC.\"\n", + " sample_count: 63.0\n", + " }\n", + " buckets {\n", + " low_rank: 126\n", + " high_rank: 126\n", + " label: \"Nissan Motor Acceptance Corporation\"\n", + " sample_count: 62.0\n", + " }\n", + " buckets {\n", + " low_rank: 127\n", + " high_rank: 127\n", + " label: \"GC Services Limited Partnership\"\n", + " sample_count: 62.0\n", + " }\n", + " buckets {\n", + " low_rank: 128\n", + " high_rank: 128\n", + " label: \"Debt Recovery Solutions, LLC\"\n", + " sample_count: 62.0\n", + " }\n", + " buckets {\n", + " low_rank: 129\n", + " high_rank: 129\n", + " label: \"Continental Finance Company, LLC\"\n", + " sample_count: 60.0\n", + " }\n", + " buckets {\n", + " low_rank: 130\n", + " high_rank: 130\n", + " label: \"JH Portfolio Debt Equities, LLC\"\n", + " sample_count: 59.0\n", + " }\n", + " buckets {\n", + " low_rank: 131\n", + " high_rank: 131\n", + " label: \"American Honda Finance Corporation\"\n", + " sample_count: 59.0\n", + " }\n", + " buckets {\n", + " low_rank: 132\n", + " high_rank: 132\n", + " label: \"Fay Servicing, LLC\"\n", + " sample_count: 58.0\n", + " }\n", + " buckets {\n", + " low_rank: 133\n", + " high_rank: 133\n", + " label: \"Alorica Inc.\"\n", + " sample_count: 58.0\n", + " }\n", + " buckets {\n", + " low_rank: 134\n", + " high_rank: 134\n", + " label: \"Amsher Collection Services, Inc.\"\n", + " sample_count: 57.0\n", + " }\n", + " buckets {\n", + " low_rank: 135\n", + " high_rank: 135\n", + " label: \"Platinum Holdings Group, LLC\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 136\n", + " high_rank: 136\n", + " label: \"Harris & Harris, Ltd.\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 137\n", + " high_rank: 137\n", + " label: \"Retrieval-Masters Creditors Bureau, Inc.\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 138\n", + " high_rank: 138\n", + " label: \"Nationwide Biweekly Administration, Inc\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 139\n", + " high_rank: 139\n", + " label: \"Ford Motor Credit Company\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 140\n", + " high_rank: 140\n", + " label: \"CIT Bank National Association\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 141\n", + " high_rank: 141\n", + " label: \"Aargon Agency, Inc.\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 142\n", + " high_rank: 142\n", + " label: \"NRA Group, LLC\"\n", + " sample_count: 53.0\n", + " }\n", + " buckets {\n", + " low_rank: 143\n", + " high_rank: 143\n", + " label: \"Security Finance\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 144\n", + " high_rank: 144\n", + " label: \"RMP Group Inc.\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 145\n", + " high_rank: 145\n", + " label: \"Credence Resource Management, LLC\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 146\n", + " high_rank: 146\n", + " label: \"Blackhawk Network Holdings Inc.\"\n", + " sample_count: 51.0\n", + " }\n", + " buckets {\n", + " low_rank: 147\n", + " high_rank: 147\n", + " label: \"Dovenmuehle Mortgage Inc.\"\n", + " sample_count: 50.0\n", + " }\n", + " buckets {\n", + " low_rank: 148\n", + " high_rank: 148\n", + " label: \"First National Bank of Omaha\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 149\n", + " high_rank: 149\n", + " label: \"BMW Financial Services\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 150\n", + " high_rank: 150\n", + " label: \"Ad Astra Recovery Services Inc\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 151\n", + " high_rank: 151\n", + " label: \"NCC Business Services, Inc.\"\n", + " sample_count: 48.0\n", + " }\n", + " buckets {\n", + " low_rank: 152\n", + " high_rank: 152\n", + " label: \"Bank of the West\"\n", + " sample_count: 48.0\n", + " }\n", + " buckets {\n", + " low_rank: 153\n", + " high_rank: 153\n", + " label: \"Real Time Resolutions\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 154\n", + " high_rank: 154\n", + " label: \"Delbert Services\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 155\n", + " high_rank: 155\n", + " label: \"Pentagon FCU\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 156\n", + " high_rank: 156\n", + " label: \"Lender Live\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 157\n", + " high_rank: 157\n", + " label: \"FirstSource Advantage, LLC\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 158\n", + " high_rank: 158\n", + " label: \"Arbor Residential Mortgage LLC\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 159\n", + " high_rank: 159\n", + " label: \"Stearns Ventures, LLC\"\n", + " sample_count: 43.0\n", + " }\n", + " buckets {\n", + " low_rank: 160\n", + " high_rank: 160\n", + " label: \"Risecredit, LLC\"\n", + " sample_count: 43.0\n", + " }\n", + " buckets {\n", + " low_rank: 161\n", + " high_rank: 161\n", + " label: \"Capital Management Services, LP\"\n", + " sample_count: 43.0\n", + " }\n", + " buckets {\n", + " low_rank: 162\n", + " high_rank: 162\n", + " label: \"ACS Education Services\"\n", + " sample_count: 43.0\n", + " }\n", + " buckets {\n", + " low_rank: 163\n", + " high_rank: 163\n", + " label: \"First Associates Loan Servicing LLC\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 164\n", + " high_rank: 164\n", + " label: \"Exeter Finance Corp\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 165\n", + " high_rank: 165\n", + " label: \"Cottonwood Financial Ltd.\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 166\n", + " high_rank: 166\n", + " label: \"Consumer Portfolio Services\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 167\n", + " high_rank: 167\n", + " label: \"BlueChip Financial\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 168\n", + " high_rank: 168\n", + " label: \"Premier Recovery Group\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 169\n", + " high_rank: 169\n", + " label: \"LexisNexis\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 170\n", + " high_rank: 170\n", + " label: \"CoreLogic\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 171\n", + " high_rank: 171\n", + " label: \"Sunrise Credit Services Inc.\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 172\n", + " high_rank: 172\n", + " label: \"Solidus Group LLC.\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 173\n", + " high_rank: 173\n", + " label: \"Franklin Collection Service, Inc.\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 174\n", + " high_rank: 174\n", + " label: \"Avant Credit Corporation\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 175\n", + " high_rank: 175\n", + " label: \"Trident Asset Management, L.L.C.\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 176\n", + " high_rank: 176\n", + " label: \"WAKEFIELD & ASSOCIATES, INC.\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 177\n", + " high_rank: 177\n", + " label: \"Pressler & Pressler, LLP\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 178\n", + " high_rank: 178\n", + " label: \"Byrider Franchising, LLC\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 179\n", + " high_rank: 179\n", + " label: \"Optimum Outcomes, Inc.\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 180\n", + " high_rank: 180\n", + " label: \"Linebarger Goggan Blair & Sampson, LLP\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 181\n", + " high_rank: 181\n", + " label: \"Financial Business and Consumer Solutions.\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 182\n", + " high_rank: 182\n", + " label: \"Monterey Financial Services, Inc.\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 183\n", + " high_rank: 183\n", + " label: \"Frederick J. Hanna & Associates, P.C.\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 184\n", + " high_rank: 184\n", + " label: \"Financial Asset Management Systems, Inc.\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 185\n", + " high_rank: 185\n", + " label: \"Concord Resolution Inc (Closed)\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 186\n", + " high_rank: 186\n", + " label: \"Expert Global Solutions, Inc.\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 187\n", + " high_rank: 187\n", + " label: \"Capital Accounts, LLC\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 188\n", + " high_rank: 188\n", + " label: \"Arvest Bank\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 189\n", + " high_rank: 189\n", + " label: \"Advance America, Cash Advance Centers, Inc.\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 190\n", + " high_rank: 190\n", + " label: \"21st Mortgage Corporation\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 191\n", + " high_rank: 191\n", + " label: \"Statebridge Company\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 192\n", + " high_rank: 192\n", + " label: \"Atlanticus Services Corporation\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 193\n", + " high_rank: 193\n", + " label: \"World Acceptance Corporation\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 194\n", + " high_rank: 194\n", + " label: \"Williams & Fudge, Inc\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 195\n", + " high_rank: 195\n", + " label: \"Performant Financial Corporation\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 196\n", + " high_rank: 196\n", + " label: \"Grant & Weber\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 197\n", + " high_rank: 197\n", + " label: \"EverBank\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 198\n", + " high_rank: 198\n", + " label: \"Northland Group, Inc.\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 199\n", + " high_rank: 199\n", + " label: \"Rent Recovery Solutions\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 200\n", + " high_rank: 200\n", + " label: \"ONLINE Information Services, Inc.\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 201\n", + " high_rank: 201\n", + " label: \"National Enterprise Systems, Inc.\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 202\n", + " high_rank: 202\n", + " label: \"Integrated Recovery Services\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 203\n", + " high_rank: 203\n", + " label: \"Google Inc.\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 204\n", + " high_rank: 204\n", + " label: \"Cooper Hoffman Klein Associates\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 205\n", + " high_rank: 205\n", + " label: \"Synovus Bank\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 206\n", + " high_rank: 206\n", + " label: \"Northstar Location Services, LLC\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 207\n", + " high_rank: 207\n", + " label: \"Check into Cash, Inc.\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 208\n", + " high_rank: 208\n", + " label: \"Van Ru Credit Corporation\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 209\n", + " high_rank: 209\n", + " label: \"R.M. Galicia, Inc.\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 210\n", + " high_rank: 210\n", + " label: \"MRS BPO, L.L.C.\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 211\n", + " high_rank: 211\n", + " label: \"GLA Collection Company, Inc.\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 212\n", + " high_rank: 212\n", + " label: \"Diversified Adjustment Service, Inc.\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 213\n", + " high_rank: 213\n", + " label: \"Altisource Portfolio Solutions, S.\\303\\203 r.l.\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 214\n", + " high_rank: 214\n", + " label: \"ATG Credit, LLC\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 215\n", + " high_rank: 215\n", + " label: \"AR Resources, Inc.\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 216\n", + " high_rank: 216\n", + " label: \"Weltman, Weinberg & Reis\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 217\n", + " high_rank: 217\n", + " label: \"Halsted Financial Services, LLC.\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 218\n", + " high_rank: 218\n", + " label: \"Colony Brands, Inc.\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 219\n", + " high_rank: 219\n", + " label: \"Bliksum, LLC\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 220\n", + " high_rank: 220\n", + " label: \"Banco Popular de Puerto Rico\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 221\n", + " high_rank: 221\n", + " label: \"AMCOL Systems, Inc.\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 222\n", + " high_rank: 222\n", + " label: \"Union Bank\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 223\n", + " high_rank: 223\n", + " label: \"State Farm Bank\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 224\n", + " high_rank: 224\n", + " label: \"SIMM Associates, Inc.\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 225\n", + " high_rank: 225\n", + " label: \"Prestige Financial Services, Inc.\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 226\n", + " high_rank: 226\n", + " label: \"Pacific Union Financial, LLC\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 227\n", + " high_rank: 227\n", + " label: \"National Principal Group, LLC\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 228\n", + " high_rank: 228\n", + " label: \"Mariner Finance, LLC\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 229\n", + " high_rank: 229\n", + " label: \"Global Credit & Collection Corporation\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 230\n", + " high_rank: 230\n", + " label: \"FirstMerit Bank\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 231\n", + " high_rank: 231\n", + " label: \"Caine & Weiner Co. Inc.\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 232\n", + " high_rank: 232\n", + " label: \"Amerisave\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 233\n", + " high_rank: 233\n", + " label: \"Oracle Financial Group LLC.\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 234\n", + " high_rank: 234\n", + " label: \"Gold Key Credit, Inc.\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 235\n", + " high_rank: 235\n", + " label: \"FirstPoint Collection Resources\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 236\n", + " high_rank: 236\n", + " label: \"Fidelity Capital Holdings, Inc.\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 237\n", + " high_rank: 237\n", + " label: \"ECMC Group, Inc.\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 238\n", + " high_rank: 238\n", + " label: \"ConServe\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 239\n", + " high_rank: 239\n", + " label: \"Windham Professionals\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 240\n", + " high_rank: 240\n", + " label: \"Stonegate Mortgage Corporation\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 241\n", + " high_rank: 241\n", + " label: \"Ray Klein, Inc.\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 242\n", + " high_rank: 242\n", + " label: \"Rash Curtis and Associates\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 243\n", + " high_rank: 243\n", + " label: \"Professional Debt Mediation, Inc.\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 244\n", + " high_rank: 244\n", + " label: \"Planet Home Lending, LLC\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 245\n", + " high_rank: 245\n", + " label: \"Phoenix Financial Services LLC\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 246\n", + " high_rank: 246\n", + " label: \"Homebridge Financial Services, Inc.\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 247\n", + " high_rank: 247\n", + " label: \"Higher Education Student Assistance Authority (HESAA)\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 248\n", + " high_rank: 248\n", + " label: \"FC HoldCo LLC\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 249\n", + " high_rank: 249\n", + " label: \"Capio Partners, LLC\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 250\n", + " high_rank: 250\n", + " label: \"Tower Loan\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 251\n", + " high_rank: 251\n", + " label: \"HOVG, LLC\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 252\n", + " high_rank: 252\n", + " label: \"Credit Bureau of Napa\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 253\n", + " high_rank: 253\n", + " label: \"Army and Air Force Exchange Service\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 254\n", + " high_rank: 254\n", + " label: \"AmeriCollect\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 255\n", + " high_rank: 255\n", + " label: \"United Collection Bureau, Inc.\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 256\n", + " high_rank: 256\n", + " label: \"Jim Bottin Enterprises, Inc\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 257\n", + " high_rank: 257\n", + " label: \"GVA Holdings, LLC\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 258\n", + " high_rank: 258\n", + " label: \"Early Warning Services, LLC\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 259\n", + " high_rank: 259\n", + " label: \"Asset Management Outsourcing, Inc.\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 260\n", + " high_rank: 260\n", + " label: \"Regional Management Corp.\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 261\n", + " high_rank: 261\n", + " label: \"PMAB, LLC\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 262\n", + " high_rank: 262\n", + " label: \"MNE Services, Inc\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 263\n", + " high_rank: 263\n", + " label: \"Dyck-O\\'Neal, Inc.\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 264\n", + " high_rank: 264\n", + " label: \"Contract Callers, Inc.\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 265\n", + " high_rank: 265\n", + " label: \"Cardinal Financial Company, LP\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 266\n", + " high_rank: 266\n", + " label: \"Banco Popular North America\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 267\n", + " high_rank: 267\n", + " label: \"American Credit Acceptance, LLC\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 268\n", + " high_rank: 268\n", + " label: \"Ability Recovery Services, LLC\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 269\n", + " high_rank: 269\n", + " label: \"Quality Loan Service Corporation\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 270\n", + " high_rank: 270\n", + " label: \"Progressive Financial Services, Inc.\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 271\n", + " high_rank: 271\n", + " label: \"Patenaude & Felix APC\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 272\n", + " high_rank: 272\n", + " label: \"North Shore Agency, LLC\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 273\n", + " high_rank: 273\n", + " label: \"National Arbitration Forum\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 274\n", + " high_rank: 274\n", + " label: \"Mobiloans, LLC\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 275\n", + " high_rank: 275\n", + " label: \"Heartland Payment Systems\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 276\n", + " high_rank: 276\n", + " label: \"Harvard Collections, LLC\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 277\n", + " high_rank: 277\n", + " label: \"Escallate, LLC\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 278\n", + " high_rank: 278\n", + " label: \"Direct Recovery Services, LLC\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 279\n", + " high_rank: 279\n", + " label: \"D. SCOTT CARRUTHERS\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 280\n", + " high_rank: 280\n", + " label: \"Atlantic Credit & Finance, Inc.\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 281\n", + " high_rank: 281\n", + " label: \"ZENCO COLLECTION, LLC\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 282\n", + " high_rank: 282\n", + " label: \"VW Credit, Inc\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 283\n", + " high_rank: 283\n", + " label: \"Reverse Mortgage Solutions\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 284\n", + " high_rank: 284\n", + " label: \"Revenue Recovery Corporation\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 285\n", + " high_rank: 285\n", + " label: \"Professional Finance Company, Inc.\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 286\n", + " high_rank: 286\n", + " label: \"LDF Holdings, LLC\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 287\n", + " high_rank: 287\n", + " label: \"First Credit Services Inc.\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 288\n", + " high_rank: 288\n", + " label: \"CarMax, Inc.\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 289\n", + " high_rank: 289\n", + " label: \"California Business Bureau, Inc.\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 290\n", + " high_rank: 290\n", + " label: \"Allied Collection Services, Inc. (Nevada)\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 291\n", + " high_rank: 291\n", + " label: \"Vanderbilt Mortgage & Finance\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 292\n", + " high_rank: 292\n", + " label: \"Southern Management Systems Inc.\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 293\n", + " high_rank: 293\n", + " label: \"Renton Collections Inc.\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 294\n", + " high_rank: 294\n", + " label: \"Nations Recovery Center\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 295\n", + " high_rank: 295\n", + " label: \"Medical Business Bureau\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 296\n", + " high_rank: 296\n", + " label: \"McCarthy, Burgess & Wolff, Inc.\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 297\n", + " high_rank: 297\n", + " label: \"LTD Financial Services, L.P.\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 298\n", + " high_rank: 298\n", + " label: \"Financial Corporation of America\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 299\n", + " high_rank: 299\n", + " label: \"Finance of America Mortgage LLC\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 300\n", + " high_rank: 300\n", + " label: \"Credit Central Holdings, LLC\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 301\n", + " high_rank: 301\n", + " label: \"American Collections Enterprise, Inc.\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 302\n", + " high_rank: 302\n", + " label: \"Alliant Capital Management LLC\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 303\n", + " high_rank: 303\n", + " label: \"Zwicker & Associates\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 304\n", + " high_rank: 304\n", + " label: \"Zions Bancorporation\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 305\n", + " high_rank: 305\n", + " label: \"USA Discounters, Ltd.\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 306\n", + " high_rank: 306\n", + " label: \"State Employee\\'s Credit Union\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 307\n", + " high_rank: 307\n", + " label: \"Solutions To Portfolios, LLC\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 308\n", + " high_rank: 308\n", + " label: \"Mid-Atlantic Consumer Services\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 309\n", + " high_rank: 309\n", + " label: \"Lobel Financial Corporation\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 310\n", + " high_rank: 310\n", + " label: \"Hillcrest Davidson & Assoc\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 311\n", + " high_rank: 311\n", + " label: \"Gatestone & Co. International Inc.\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 312\n", + " high_rank: 312\n", + " label: \"GMA Investments, LLC\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 313\n", + " high_rank: 313\n", + " label: \"Franklin American Mortgage Company\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 314\n", + " high_rank: 314\n", + " label: \"First Recovery Solutions, Inc.\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 315\n", + " high_rank: 315\n", + " label: \"First Investors Financial Services Group, Inc.\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 316\n", + " high_rank: 316\n", + " label: \"First Federal Credit Control\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 317\n", + " high_rank: 317\n", + " label: \"First Citizens\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 318\n", + " high_rank: 318\n", + " label: \"Ballybunion Enterprises, Inc\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 319\n", + " high_rank: 319\n", + " label: \"Astoria Bank\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 320\n", + " high_rank: 320\n", + " label: \"Virtuoso Sourcing Group, LLC.\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 321\n", + " high_rank: 321\n", + " label: \"Receivable Recovery Services, LLC\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 322\n", + " high_rank: 322\n", + " label: \"New York Community Bank\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 323\n", + " high_rank: 323\n", + " label: \"New American Funding\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 324\n", + " high_rank: 324\n", + " label: \"Jon Barry and Associates, Inc.\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 325\n", + " high_rank: 325\n", + " label: \"Harley-Davidson Financial Services, Inc.\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 326\n", + " high_rank: 326\n", + " label: \"Franklin Credit Management\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 327\n", + " high_rank: 327\n", + " label: \"Duvera Billing Services, LLC\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 328\n", + " high_rank: 328\n", + " label: \"Credit Systems International, Inc.\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 329\n", + " high_rank: 329\n", + " label: \"Collection Consultants of California\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 330\n", + " high_rank: 330\n", + " label: \"BOK Financial Corp\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 331\n", + " high_rank: 331\n", + " label: \"Arnold Scott Harris, P.C.\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 332\n", + " high_rank: 332\n", + " label: \"Webster Bank\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 333\n", + " high_rank: 333\n", + " label: \"United Shore Financial Services, LLC\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 334\n", + " high_rank: 334\n", + " label: \"United Consumers Inc\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 335\n", + " high_rank: 335\n", + " label: \"Umpqua Holdings Corporation\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 336\n", + " high_rank: 336\n", + " label: \"U.S. Collections West, Inc.\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 337\n", + " high_rank: 337\n", + " label: \"The Receivable Management Services Corporation\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 338\n", + " high_rank: 338\n", + " label: \"Seattle Service Bureau, Inc\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 339\n", + " high_rank: 339\n", + " label: \"ResidentCollect, Inc.\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 340\n", + " high_rank: 340\n", + " label: \"Oxford Law, LLC\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 341\n", + " high_rank: 341\n", + " label: \"NCB Management Services, Inc.\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 342\n", + " high_rank: 342\n", + " label: \"Machol & Johannes, LLC\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 343\n", + " high_rank: 343\n", + " label: \"MOHELA\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 344\n", + " high_rank: 344\n", + " label: \"Forster & Garbus LLP\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 345\n", + " high_rank: 345\n", + " label: \"FirstBank of Puerto Rico\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 346\n", + " high_rank: 346\n", + " label: \"First Advantage Corporation\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 347\n", + " high_rank: 347\n", + " label: \"Collection Bureau of the Hudson Valley, Inc.\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 348\n", + " high_rank: 348\n", + " label: \"B.C. Services, Inc.\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 349\n", + " high_rank: 349\n", + " label: \"American Coradius International LLC\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 350\n", + " high_rank: 350\n", + " label: \"Admin Recovery, LLC\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 351\n", + " high_rank: 351\n", + " label: \"Adler Wallach & Associates, Inc.\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 352\n", + " high_rank: 352\n", + " label: \"Access Group\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 353\n", + " high_rank: 353\n", + " label: \"World Omni Financial Corp.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 354\n", + " high_rank: 354\n", + " label: \"United Security Financial Corp\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 355\n", + " high_rank: 355\n", + " label: \"United Revenue Corporation\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 356\n", + " high_rank: 356\n", + " label: \"Tormey Bewley Corporation\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 357\n", + " high_rank: 357\n", + " label: \"State Collection Service, Inc.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 358\n", + " high_rank: 358\n", + " label: \"Revenue Assistance Corporation dba Revenue Group\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 359\n", + " high_rank: 359\n", + " label: \"RS Clark and Associates, Inc.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 360\n", + " high_rank: 360\n", + " label: \"R & B Corporation of Virginia\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 361\n", + " high_rank: 361\n", + " label: \"Nelnet\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 362\n", + " high_rank: 362\n", + " label: \"Medical Data Systems, Inc.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 363\n", + " high_rank: 363\n", + " label: \"Meade & Associates, Inc.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 364\n", + " high_rank: 364\n", + " label: \"LendingTree, Inc\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 365\n", + " high_rank: 365\n", + " label: \"Guaranteed Rate\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 366\n", + " high_rank: 366\n", + " label: \"Financial Credit Network Inc\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 367\n", + " high_rank: 367\n", + " label: \"Collection Bureau of America Ltd.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 368\n", + " high_rank: 368\n", + " label: \"Bonneville Billing and Collections\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 369\n", + " high_rank: 369\n", + " label: \"BYL Collection Services\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 370\n", + " high_rank: 370\n", + " label: \"American Financial Resources, Inc.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 371\n", + " high_rank: 371\n", + " label: \"Advanced Collection Bureau, Inc.\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 372\n", + " high_rank: 372\n", + " label: \"Account Discovery Systems, LLC\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 373\n", + " high_rank: 373\n", + " label: \"Southern Management Corp\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 374\n", + " high_rank: 374\n", + " label: \"Social Finance, Inc.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 375\n", + " high_rank: 375\n", + " label: \"Nationwide Credit Corporation\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 376\n", + " high_rank: 376\n", + " label: \"Midwest Recovery Systems\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 377\n", + " high_rank: 377\n", + " label: \"Maury Cobb, Attorney at Law, LLC\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 378\n", + " high_rank: 378\n", + " label: \"Lustig, Glaser & Wilson, P.C.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 379\n", + " high_rank: 379\n", + " label: \"LJ Ross Associates\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 380\n", + " high_rank: 380\n", + " label: \"GreenSky Trade Credit, LLC\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 381\n", + " high_rank: 381\n", + " label: \"First Tennessee Bank\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 382\n", + " high_rank: 382\n", + " label: \"FCI Lender Services Inc.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 383\n", + " high_rank: 383\n", + " label: \"Eastern Account Systems of Connecticut, Inc.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 384\n", + " high_rank: 384\n", + " label: \"EZCORP, Inc.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 385\n", + " high_rank: 385\n", + " label: \"Duncan Solutions, lnc.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 386\n", + " high_rank: 386\n", + " label: \"Delta Management Associates, Inc.\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 387\n", + " high_rank: 387\n", + " label: \"Western Portfolio Assets\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 388\n", + " high_rank: 388\n", + " label: \"Viking Client Services, Inc.\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 389\n", + " high_rank: 389\n", + " label: \"Valentine and Kebartas, Inc.\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 390\n", + " high_rank: 390\n", + " label: \"Universal American Mortgage Company, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 391\n", + " high_rank: 391\n", + " label: \"Source Receivables Management LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 392\n", + " high_rank: 392\n", + " label: \"Second Round Limited Partnership\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 393\n", + " high_rank: 393\n", + " label: \"RGS Financial, Inc.\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 394\n", + " high_rank: 394\n", + " label: \"Professional Recovery Management\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 395\n", + " high_rank: 395\n", + " label: \"PrimeLending, A PlainsCapital Company\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 396\n", + " high_rank: 396\n", + " label: \"Premier Portfolio Group\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 397\n", + " high_rank: 397\n", + " label: \"People\\'s United Bank\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 398\n", + " high_rank: 398\n", + " label: \"Optio Solutions, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 399\n", + " high_rank: 399\n", + " label: \"Nationwide Debt Management Solutions, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 400\n", + " high_rank: 400\n", + " label: \"Meridian Financial Services, Inc.\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 401\n", + " high_rank: 401\n", + " label: \"Mercedes-Benz Financial Services\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 402\n", + " high_rank: 402\n", + " label: \"Mercantile Adjustment Bureau, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 403\n", + " high_rank: 403\n", + " label: \"Med-1 Solutions, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 404\n", + " high_rank: 404\n", + " label: \"Malcolm S. Gerald and Associates, Inc.\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 405\n", + " high_rank: 405\n", + " label: \"Law Office of Michael J. Scott, PC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 406\n", + " high_rank: 406\n", + " label: \"Innovis\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 407\n", + " high_rank: 407\n", + " label: \"Great Lakes\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 408\n", + " high_rank: 408\n", + " label: \"First Niagara Bank\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 409\n", + " high_rank: 409\n", + " label: \"First National Bank of Pennsylvania\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 410\n", + " high_rank: 410\n", + " label: \"Collection Information Bureau, Inc.\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 411\n", + " high_rank: 411\n", + " label: \"Coastline Financial Resources, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 412\n", + " high_rank: 412\n", + " label: \"Cedars Business Services, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 413\n", + " high_rank: 413\n", + " label: \"Boeing Employees\\' Credit Union\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 414\n", + " high_rank: 414\n", + " label: \"Associated Bank\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 415\n", + " high_rank: 415\n", + " label: \"Asset Recovery Solutions, LLC\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 416\n", + " high_rank: 416\n", + " label: \"Wilson, Riley & Assoc\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 417\n", + " high_rank: 417\n", + " label: \"Universal Acceptance Corporation\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 418\n", + " high_rank: 418\n", + " label: \"Transfinancial Companies, Inc\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 419\n", + " high_rank: 419\n", + " label: \"Total Card, Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 420\n", + " high_rank: 420\n", + " label: \"The Regional Adjustment Bureau, Incorporated\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 421\n", + " high_rank: 421\n", + " label: \"Suttell, Hammer & White, P.S\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 422\n", + " high_rank: 422\n", + " label: \"Stoneleigh Recovery Associates, LLC\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 423\n", + " high_rank: 423\n", + " label: \"Selip & Stylianou, LLP\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 424\n", + " high_rank: 424\n", + " label: \"SCA Collections, Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 425\n", + " high_rank: 425\n", + " label: \"Rausch, Sturm, Israel, Enerson & Hornik, LLC\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 426\n", + " high_rank: 426\n", + " label: \"Palm Beach Credit Adjustors, Inc\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 427\n", + " high_rank: 427\n", + " label: \"Northeast Collection Bureau\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 428\n", + " high_rank: 428\n", + " label: \"Morgan Stanley\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 429\n", + " high_rank: 429\n", + " label: \"Monarch Recovery Holdings, Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 430\n", + " high_rank: 430\n", + " label: \"Messerli & Kramer P.A.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 431\n", + " high_rank: 431\n", + " label: \"Kimball, Tirey & St. John LLP\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 432\n", + " high_rank: 432\n", + " label: \"Gryphon Corp\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 433\n", + " high_rank: 433\n", + " label: \"Green Trust Cash, LLC\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 434\n", + " high_rank: 434\n", + " label: \"FMS Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 435\n", + " high_rank: 435\n", + " label: \"Element Global Services\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 436\n", + " high_rank: 436\n", + " label: \"E*Trade Bank\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 437\n", + " high_rank: 437\n", + " label: \"Credit Card Receivables Fund Incorporated\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 438\n", + " high_rank: 438\n", + " label: \"ClearSpring Loan Services, Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 439\n", + " high_rank: 439\n", + " label: \"Choice Recovery, Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 440\n", + " high_rank: 440\n", + " label: \"Check Security Associates, LLC\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 441\n", + " high_rank: 441\n", + " label: \"Central Portfolio Control Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 442\n", + " high_rank: 442\n", + " label: \"Bull City Financial Solutions, Inc\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 443\n", + " high_rank: 443\n", + " label: \"Bronstein & Weiss Arbitration\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 444\n", + " high_rank: 444\n", + " label: \"Blitt and Gaines, P.C.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 445\n", + " high_rank: 445\n", + " label: \"Asta Funding, Inc\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 446\n", + " high_rank: 446\n", + " label: \"Alpha Recovery Corp\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 447\n", + " high_rank: 447\n", + " label: \"Account Control Technology, Inc.\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 448\n", + " high_rank: 448\n", + " label: \"Zenith Financial Network Inc\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 449\n", + " high_rank: 449\n", + " label: \"Turning Point Solutions LLC\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 450\n", + " high_rank: 450\n", + " label: \"Trustmark Corporation\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 451\n", + " high_rank: 451\n", + " label: \"The Bureaus, Inc.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 452\n", + " high_rank: 452\n", + " label: \"Suburban Credit Corporation\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 453\n", + " high_rank: 453\n", + " label: \"Senex Services Corp.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 454\n", + " high_rank: 454\n", + " label: \"Reliant Capital Solutions, LLC\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 455\n", + " high_rank: 455\n", + " label: \"ROC Asset Solutions, LLC\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 456\n", + " high_rank: 456\n", + " label: \"RFNA, LP\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 457\n", + " high_rank: 457\n", + " label: \"Primary Residential Mortgage\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 458\n", + " high_rank: 458\n", + " label: \"Phillips & Cohen Associates, Ltd.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 459\n", + " high_rank: 459\n", + " label: \"N.A.R., Inc.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 460\n", + " high_rank: 460\n", + " label: \"Kohn Law Firm S.C.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 461\n", + " high_rank: 461\n", + " label: \"Herbert P. Sears Co., Inc.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 462\n", + " high_rank: 462\n", + " label: \"Frost-Arnett Company\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 463\n", + " high_rank: 463\n", + " label: \"Eltman Law, P.C.\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 464\n", + " high_rank: 464\n", + " label: \"Commerce Bank\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 465\n", + " high_rank: 465\n", + " label: \"Ceannate\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 466\n", + " high_rank: 466\n", + " label: \"BankUnited\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 467\n", + " high_rank: 467\n", + " label: \"Aldous & Associates, PLLC\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 468\n", + " high_rank: 468\n", + " label: \"Wilber and Associates, P.C.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 469\n", + " high_rank: 469\n", + " label: \"Webcollex, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 470\n", + " high_rank: 470\n", + " label: \"Valley National Bank\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 471\n", + " high_rank: 471\n", + " label: \"United Debt Holdings, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 472\n", + " high_rank: 472\n", + " label: \"Sun Loan Company\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 473\n", + " high_rank: 473\n", + " label: \"Solomon and Solomon, P.C.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 474\n", + " high_rank: 474\n", + " label: \"Simon\\303\\242\\302\\200\\302\\231s Agency, Inc\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 475\n", + " high_rank: 475\n", + " label: \"Select Management Resources, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 476\n", + " high_rank: 476\n", + " label: \"Security National Automotive Acceptance Company, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 477\n", + " high_rank: 477\n", + " label: \"Rent Recover, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 478\n", + " high_rank: 478\n", + " label: \"RSI Enterprises, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 479\n", + " high_rank: 479\n", + " label: \"Plaza Home Mortgage\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 480\n", + " high_rank: 480\n", + " label: \"Pinnacle Recovery, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 481\n", + " high_rank: 481\n", + " label: \"Paramount Recovery Systems, L.P.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 482\n", + " high_rank: 482\n", + " label: \"PDQ Services, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 483\n", + " high_rank: 483\n", + " label: \"Overton, Russell, Doerr and Donovan, LLP\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 484\n", + " high_rank: 484\n", + " label: \"Merchants and Medical Credit Corporation, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 485\n", + " high_rank: 485\n", + " label: \"MLD Mortgage, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 486\n", + " high_rank: 486\n", + " label: \"Lendmark Financial Services, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 487\n", + " high_rank: 487\n", + " label: \"Kirkland Asset Management LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 488\n", + " high_rank: 488\n", + " label: \"Javitch, Block & Rathbone LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 489\n", + " high_rank: 489\n", + " label: \"J.S Resolution Group, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 490\n", + " high_rank: 490\n", + " label: \"Harpeth Financial Services, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 491\n", + " high_rank: 491\n", + " label: \"Gulf Coast Collection Bureau, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 492\n", + " high_rank: 492\n", + " label: \"Guild Mortgage\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 493\n", + " high_rank: 493\n", + " label: \"Global Client Solutions\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 494\n", + " high_rank: 494\n", + " label: \"First Mortgage Corporation\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 495\n", + " high_rank: 495\n", + " label: \"Fidelity National Financial, Inc\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 496\n", + " high_rank: 496\n", + " label: \"Express Recovery Services, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 497\n", + " high_rank: 497\n", + " label: \"Dynamic Recovery Services, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 498\n", + " high_rank: 498\n", + " label: \"Designed Receivable Solultions, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 499\n", + " high_rank: 499\n", + " label: \"Daniels Norelli Scully & Cecere, P.C.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 500\n", + " high_rank: 500\n", + " label: \"DFC Global Corp\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 501\n", + " high_rank: 501\n", + " label: \"D&A Services, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 502\n", + " high_rank: 502\n", + " label: \"Credit Plus Inc\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 503\n", + " high_rank: 503\n", + " label: \"Credit Bureau Collection Services, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 504\n", + " high_rank: 504\n", + " label: \"Community Health Investment Company, LLC.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 505\n", + " high_rank: 505\n", + " label: \"Columbia Recovery Group LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 506\n", + " high_rank: 506\n", + " label: \"Clear Debt Solutions, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 507\n", + " high_rank: 507\n", + " label: \"Citi Management Group, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 508\n", + " high_rank: 508\n", + " label: \"Cascade Capital, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 509\n", + " high_rank: 509\n", + " label: \"CarFinance Capital LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 510\n", + " high_rank: 510\n", + " label: \"Capital Markets Cooporative, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 511\n", + " high_rank: 511\n", + " label: \"Campus Student Funding, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 512\n", + " high_rank: 512\n", + " label: \"Blatt, Hasenmiller, Leibsker & Moore, LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 513\n", + " high_rank: 513\n", + " label: \"Atlantic Recovery Solutions LLC\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 514\n", + " high_rank: 514\n", + " label: \"Associated Credit Services, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 515\n", + " high_rank: 515\n", + " label: \"Argon Credit\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 516\n", + " high_rank: 516\n", + " label: \"A.R.M. Solutions, Inc.\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 517\n", + " high_rank: 517\n", + " label: \"Zarvad III S.A.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 518\n", + " high_rank: 518\n", + " label: \"Wheels Financial Group, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 519\n", + " high_rank: 519\n", + " label: \"United Student Aid (USA) Funds\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 520\n", + " high_rank: 520\n", + " label: \"Rubin & Rothman, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 521\n", + " high_rank: 521\n", + " label: \"Robinson, Reagan and Young PLLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 522\n", + " high_rank: 522\n", + " label: \"Quality Asset Recovery LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 523\n", + " high_rank: 523\n", + " label: \"Provident Funding\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 524\n", + " high_rank: 524\n", + " label: \"Prospect Mortgage\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 525\n", + " high_rank: 525\n", + " label: \"P&B Capital Group, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 526\n", + " high_rank: 526\n", + " label: \"National Commercial Services, Inc\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 527\n", + " high_rank: 527\n", + " label: \"National Check Resolution Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 528\n", + " high_rank: 528\n", + " label: \"NVR Inc\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 529\n", + " high_rank: 529\n", + " label: \"NELSON AND KENNARD\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 530\n", + " high_rank: 530\n", + " label: \"Mortgage Research Center, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 531\n", + " high_rank: 531\n", + " label: \"Merchants\\' Credit Guide Company\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 532\n", + " high_rank: 532\n", + " label: \"Merchants and Professional Bureau, Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 533\n", + " high_rank: 533\n", + " label: \"Medical-Dental-Hospital Bureau of San Antonio\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 534\n", + " high_rank: 534\n", + " label: \"Marlette Funding, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 535\n", + " high_rank: 535\n", + " label: \"Louisiana Recovery Services Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 536\n", + " high_rank: 536\n", + " label: \"Loan To Learn\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 537\n", + " high_rank: 537\n", + " label: \"Lionstone Holdings Group\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 538\n", + " high_rank: 538\n", + " label: \"Legal Recovery Law Offices, Inc\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 539\n", + " high_rank: 539\n", + " label: \"KelKris Associates Inc\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 540\n", + " high_rank: 540\n", + " label: \"Io, Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 541\n", + " high_rank: 541\n", + " label: \"Holloway Credit Solutions\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 542\n", + " high_rank: 542\n", + " label: \"HireRight Solutions, Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 543\n", + " high_rank: 543\n", + " label: \"Global Recovery Group\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 544\n", + " high_rank: 544\n", + " label: \"Flurish Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 545\n", + " high_rank: 545\n", + " label: \"First American Financial Corporation\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 546\n", + " high_rank: 546\n", + " label: \"First Advantage LNS Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 547\n", + " high_rank: 547\n", + " label: \"Financial Management Solutions\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 548\n", + " high_rank: 548\n", + " label: \"Evans Law Associates, P.C.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 549\n", + " high_rank: 549\n", + " label: \"Education Management Corporation\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 550\n", + " high_rank: 550\n", + " label: \"Delray Capital, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 551\n", + " high_rank: 551\n", + " label: \"Critical Resolution Mediation LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 552\n", + " high_rank: 552\n", + " label: \"Creekside Recovery And Capital Management\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 553\n", + " high_rank: 553\n", + " label: \"Credit Adjustments Inc\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 554\n", + " high_rank: 554\n", + " label: \"Cornerstone Home Lending Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 555\n", + " high_rank: 555\n", + " label: \"Condor Capital Corp.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 556\n", + " high_rank: 556\n", + " label: \"Collections Acquisition Company, Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 557\n", + " high_rank: 557\n", + " label: \"Clark County Collection Service\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 558\n", + " high_rank: 558\n", + " label: \"BancorpSouth Bank\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 559\n", + " high_rank: 559\n", + " label: \"BWW Law Group, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 560\n", + " high_rank: 560\n", + " label: \"Aspen National Financial, Inc.\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 561\n", + " high_rank: 561\n", + " label: \"Aqua Finance Inc\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 562\n", + " high_rank: 562\n", + " label: \"American Pacific Mortgage Corporation\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 563\n", + " high_rank: 563\n", + " label: \"American Credit Resolution, Incorporated\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 564\n", + " high_rank: 564\n", + " label: \"Allied International Credit Corporation\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 565\n", + " high_rank: 565\n", + " label: \"Accelerated Financial Solutions, LLC\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 566\n", + " high_rank: 566\n", + " label: \"Washington Federal\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 567\n", + " high_rank: 567\n", + " label: \"WLCC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 568\n", + " high_rank: 568\n", + " label: \"United PanAm Financial Corp.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 569\n", + " high_rank: 569\n", + " label: \"Unique Management Services, Inc\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 570\n", + " high_rank: 570\n", + " label: \"UMB Bank\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 571\n", + " high_rank: 571\n", + " label: \"The Money Source Inc\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 572\n", + " high_rank: 572\n", + " label: \"The Affiliated Group, Inc\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 573\n", + " high_rank: 573\n", + " label: \"Strategic Alliances, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 574\n", + " high_rank: 574\n", + " label: \"States Recovery Systems, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 575\n", + " high_rank: 575\n", + " label: \"Security Credit Services, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 576\n", + " high_rank: 576\n", + " label: \"SCV Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 577\n", + " high_rank: 577\n", + " label: \"Ria Financial\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 578\n", + " high_rank: 578\n", + " label: \"Professional Medical Management, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 579\n", + " high_rank: 579\n", + " label: \"Professional Bureau of Collections of Maryland, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 580\n", + " high_rank: 580\n", + " label: \"Podium Mortgage Capital LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 581\n", + " high_rank: 581\n", + " label: \"P.S.C., Inc\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 582\n", + " high_rank: 582\n", + " label: \"Omega RMS, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 583\n", + " high_rank: 583\n", + " label: \"North American Credit Services\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 584\n", + " high_rank: 584\n", + " label: \"Network Capital Funding Corporation\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 585\n", + " high_rank: 585\n", + " label: \"NAM National Arbitration and Mediation\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 586\n", + " high_rank: 586\n", + " label: \"MidCountry Financial Corp.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 587\n", + " high_rank: 587\n", + " label: \"Mid-Atlantic Finance Co., Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 588\n", + " high_rank: 588\n", + " label: \"Loan Science, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 589\n", + " high_rank: 589\n", + " label: \"Lamont, Hanley & Associates, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 590\n", + " high_rank: 590\n", + " label: \"Lakeview Loan Servicing, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 591\n", + " high_rank: 591\n", + " label: \"John C. Heath, Attorney at Law, PLLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 592\n", + " high_rank: 592\n", + " label: \"Internal Check Systems, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 593\n", + " high_rank: 593\n", + " label: \"Integrity Solution Services, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 594\n", + " high_rank: 594\n", + " label: \"Factual Data\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 595\n", + " high_rank: 595\n", + " label: \"Essential Retrieval Group\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 596\n", + " high_rank: 596\n", + " label: \"Credit Collections U.S.A., L.L.C.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 597\n", + " high_rank: 597\n", + " label: \"Consumer Asset Management (Texas)\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 598\n", + " high_rank: 598\n", + " label: \"Collection Bureau Services, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 599\n", + " high_rank: 599\n", + " label: \"Coastal Financial Solutions, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 600\n", + " high_rank: 600\n", + " label: \"BNY Mellon\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 601\n", + " high_rank: 601\n", + " label: \"Avante\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 602\n", + " high_rank: 602\n", + " label: \"American Internet Mortgage, Inc\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 603\n", + " high_rank: 603\n", + " label: \"American Credit Adjusters\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 604\n", + " high_rank: 604\n", + " label: \"AmeriHome Mortgage Company, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 605\n", + " high_rank: 605\n", + " label: \"AmerAssist A/R Solutions, Inc.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 606\n", + " high_rank: 606\n", + " label: \"ARC Management Group, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 607\n", + " high_rank: 607\n", + " label: \"ALCHRO INC.\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 608\n", + " high_rank: 608\n", + " label: \"AFS Acceptance, LLC\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 609\n", + " high_rank: 609\n", + " label: \"AALM Consulting Services LTD (International company)\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 610\n", + " high_rank: 610\n", + " label: \"Vital Solutions, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 611\n", + " high_rank: 611\n", + " label: \"Vengroff Williams, Inc\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 612\n", + " high_rank: 612\n", + " label: \"Valarity, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 613\n", + " high_rank: 613\n", + " label: \"Universal Account Servicing, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 614\n", + " high_rank: 614\n", + " label: \"Tri-State Adjustments, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 615\n", + " high_rank: 615\n", + " label: \"Tidewater Finance Company\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 616\n", + " high_rank: 616\n", + " label: \"The Thomas Agency, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 617\n", + " high_rank: 617\n", + " label: \"The Best Service Co.,Inc\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 618\n", + " high_rank: 618\n", + " label: \"Sun West Mortgage Company, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 619\n", + " high_rank: 619\n", + " label: \"Sullivan Asset Management, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 620\n", + " high_rank: 620\n", + " label: \"Stephens and Michaels Associates, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 621\n", + " high_rank: 621\n", + " label: \"Stanislaus Credit Control Service, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 622\n", + " high_rank: 622\n", + " label: \"Stallings Financial Group, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 623\n", + " high_rank: 623\n", + " label: \"Sierra Pacific Mortgage\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 624\n", + " high_rank: 624\n", + " label: \"Servatus Corporation\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 625\n", + " high_rank: 625\n", + " label: \"Sentry Recovery and Collections, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 626\n", + " high_rank: 626\n", + " label: \"Sarma\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 627\n", + " high_rank: 627\n", + " label: \"SECURITY CREDIT SYSTEMS INC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 628\n", + " high_rank: 628\n", + " label: \"Rushmore Service Center, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 629\n", + " high_rank: 629\n", + " label: \"Rosen Management Services Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 630\n", + " high_rank: 630\n", + " label: \"RMS-Recovery Management Services, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 631\n", + " high_rank: 631\n", + " label: \"RAB PERFORMANCE RECOVERIES, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 632\n", + " high_rank: 632\n", + " label: \"QC Holdings, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 633\n", + " high_rank: 633\n", + " label: \"Professional Placement Services, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 634\n", + " high_rank: 634\n", + " label: \"Prince Parker & Associates\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 635\n", + " high_rank: 635\n", + " label: \"Praxis Financial Solutions, Incorporated\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 636\n", + " high_rank: 636\n", + " label: \"Pinnacle Asset Management, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 637\n", + " high_rank: 637\n", + " label: \"Patient Accounting Service Center\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 638\n", + " high_rank: 638\n", + " label: \"PLS GROUP, INC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 639\n", + " high_rank: 639\n", + " label: \"Northern Alliance Management, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 640\n", + " high_rank: 640\n", + " label: \"National Collection Systems, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 641\n", + " high_rank: 641\n", + " label: \"Movement Mortgage\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 642\n", + " high_rank: 642\n", + " label: \"Midstate Collection Solutions, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 643\n", + " high_rank: 643\n", + " label: \"Mel S. Harris and Associates, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 644\n", + " high_rank: 644\n", + " label: \"McCullough Payne & Haan, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 645\n", + " high_rank: 645\n", + " label: \"Mandarich Law Group, LLP\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 646\n", + " high_rank: 646\n", + " label: \"M.A.R.S. Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 647\n", + " high_rank: 647\n", + " label: \"M&S Recovery Solutions\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 648\n", + " high_rank: 648\n", + " label: \"Law Offices Howard Lee Schiff, P.C.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 649\n", + " high_rank: 649\n", + " label: \"Kinum, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 650\n", + " high_rank: 650\n", + " label: \"Johnson Mark LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 651\n", + " high_rank: 651\n", + " label: \"JP Recovery Services, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 652\n", + " high_rank: 652\n", + " label: \"Impac Mortgage Holdings, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 653\n", + " high_rank: 653\n", + " label: \"IBERIABANK\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 654\n", + " high_rank: 654\n", + " label: \"Hiday & Ricke, P.A.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 655\n", + " high_rank: 655\n", + " label: \"General Business Recoveries, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 656\n", + " high_rank: 656\n", + " label: \"Fitzgerald Goldman & Associates, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 657\n", + " high_rank: 657\n", + " label: \"FMA Alliance, Ltd.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 658\n", + " high_rank: 658\n", + " label: \"Evergreen Professional Recoveries, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 659\n", + " high_rank: 659\n", + " label: \"Embrace Home Loans Inc\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 660\n", + " high_rank: 660\n", + " label: \"Eastpoint Recovery Group, Inc\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 661\n", + " high_rank: 661\n", + " label: \"Direct Capital\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 662\n", + " high_rank: 662\n", + " label: \"DHI Mortgage\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 663\n", + " high_rank: 663\n", + " label: \"D2 Management LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 664\n", + " high_rank: 664\n", + " label: \"Credit Bureau of Lancaster County, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 665\n", + " high_rank: 665\n", + " label: \"Constar Financial Services, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 666\n", + " high_rank: 666\n", + " label: \"Concord Servicing Corporation\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 667\n", + " high_rank: 667\n", + " label: \"Columbia Collection Service, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 668\n", + " high_rank: 668\n", + " label: \"Collection Services, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 669\n", + " high_rank: 669\n", + " label: \"Collection Management Company\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 670\n", + " high_rank: 670\n", + " label: \"Collection Bureau Incorporated\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 671\n", + " high_rank: 671\n", + " label: \"Coast to Coast Financial Solutions, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 672\n", + " high_rank: 672\n", + " label: \"Clarity Services\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 673\n", + " high_rank: 673\n", + " label: \"Charles Schwab Bank\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 674\n", + " high_rank: 674\n", + " label: \"Cash Express, LLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 675\n", + " high_rank: 675\n", + " label: \"CU Recovery, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 676\n", + " high_rank: 676\n", + " label: \"COLLECTION SERVICES OF ATHENS, INC.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 677\n", + " high_rank: 677\n", + " label: \"C & M Associates Group, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 678\n", + " high_rank: 678\n", + " label: \"Brock & Scott, PLLC\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 679\n", + " high_rank: 679\n", + " label: \"Blakely-Witt and Associates, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 680\n", + " high_rank: 680\n", + " label: \"Berman & Rabin, P.A.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 681\n", + " high_rank: 681\n", + " label: \"American Capital Enterprises, Inc.\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 682\n", + " high_rank: 682\n", + " label: \"Alabama Housing Finance Authority\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 683\n", + " high_rank: 683\n", + " label: \"YKS Acceptance, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 684\n", + " high_rank: 684\n", + " label: \"Weber & Olcese, PLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 685\n", + " high_rank: 685\n", + " label: \"Waterstone Mortgage Corporation\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 686\n", + " high_rank: 686\n", + " label: \"WINN LAW GROUP, APC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 687\n", + " high_rank: 687\n", + " label: \"Vision Financial Corp.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 688\n", + " high_rank: 688\n", + " label: \"Vantage Sourcing, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 689\n", + " high_rank: 689\n", + " label: \"Universal Recovery Corporation\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 690\n", + " high_rank: 690\n", + " label: \"Union Adjustment Company, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 691\n", + " high_rank: 691\n", + " label: \"Torres Credit Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 692\n", + " high_rank: 692\n", + " label: \"Thunderbird Collection Specialists, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 693\n", + " high_rank: 693\n", + " label: \"The Phoenix Recovery Group\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 694\n", + " high_rank: 694\n", + " label: \"TekCollect Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 695\n", + " high_rank: 695\n", + " label: \"Synerprise Consulting Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 696\n", + " high_rank: 696\n", + " label: \"Synergetic Communication Inc\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 697\n", + " high_rank: 697\n", + " label: \"Supreme Lending\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 698\n", + " high_rank: 698\n", + " label: \"Summit Financial Corp\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 699\n", + " high_rank: 699\n", + " label: \"Stuart-Lippman and Associates, Inc\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 700\n", + " high_rank: 700\n", + " label: \"Stillman Law Office\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 701\n", + " high_rank: 701\n", + " label: \"Southwest Recovery Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 702\n", + " high_rank: 702\n", + " label: \"Royal United Mortgage LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 703\n", + " high_rank: 703\n", + " label: \"RevSolve, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 704\n", + " high_rank: 704\n", + " label: \"Resolve Partners, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 705\n", + " high_rank: 705\n", + " label: \"RentDebt Automated Collections, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 706\n", + " high_rank: 706\n", + " label: \"Recovery One, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 707\n", + " high_rank: 707\n", + " label: \"Receivable Management Group, Inc. (GA)\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 708\n", + " high_rank: 708\n", + " label: \"Platinum Home Mortgage Corporation\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 709\n", + " high_rank: 709\n", + " label: \"P&L Acquisitions LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 710\n", + " high_rank: 710\n", + " label: \"On-Site Manager, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 711\n", + " high_rank: 711\n", + " label: \"Northwest Collectors Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 712\n", + " high_rank: 712\n", + " label: \"Niagara Capital Recovery LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 713\n", + " high_rank: 713\n", + " label: \"Nevada Credico, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 714\n", + " high_rank: 714\n", + " label: \"NPS GROUP\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 715\n", + " high_rank: 715\n", + " label: \"NE PROCESSING LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 716\n", + " high_rank: 716\n", + " label: \"Mullooly Jeffrey Rooney & Flynn\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 717\n", + " high_rank: 717\n", + " label: \"Mountain Land Collections, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 718\n", + " high_rank: 718\n", + " label: \"Mitchell Rubenstein & Associates, P.C.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 719\n", + " high_rank: 719\n", + " label: \"Metro Collection Service, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 720\n", + " high_rank: 720\n", + " label: \"Merchants Credit Corporation\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 721\n", + " high_rank: 721\n", + " label: \"Medical Society Business Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 722\n", + " high_rank: 722\n", + " label: \"McCalla Raymer, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 723\n", + " high_rank: 723\n", + " label: \"MEFA\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 724\n", + " high_rank: 724\n", + " label: \"MB Financial, INC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 725\n", + " high_rank: 725\n", + " label: \"Kondaur Capital Corporation\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 726\n", + " high_rank: 726\n", + " label: \"Kings Credit Services\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 727\n", + " high_rank: 727\n", + " label: \"Kenneth, Eisen & Associates, Ltd.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 728\n", + " high_rank: 728\n", + " label: \"Keith D. Weiner & Associates Co., L.P.A.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 729\n", + " high_rank: 729\n", + " label: \"J&L Collection Services\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 730\n", + " high_rank: 730\n", + " label: \"Iowa Student Loan\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 731\n", + " high_rank: 731\n", + " label: \"Immediate Credit Recovery\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 732\n", + " high_rank: 732\n", + " label: \"Hunt & Henriques\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 733\n", + " high_rank: 733\n", + " label: \"Healthcare Financial Services, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 734\n", + " high_rank: 734\n", + " label: \"Hameroff Law Group, P.C.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 735\n", + " high_rank: 735\n", + " label: \"Gurstel Chargo PA\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 736\n", + " high_rank: 736\n", + " label: \"Goldstein, Cruise and Smith LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 737\n", + " high_rank: 737\n", + " label: \"Go Capital Holdings, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 738\n", + " high_rank: 738\n", + " label: \"Global Trust Management LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 739\n", + " high_rank: 739\n", + " label: \"Global Payments Check Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 740\n", + " high_rank: 740\n", + " label: \"Genuine Debt Solutions, LLC.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 741\n", + " high_rank: 741\n", + " label: \"GE Capital Bank\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 742\n", + " high_rank: 742\n", + " label: \"First Guaranty Mortgage Corporation\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 743\n", + " high_rank: 743\n", + " label: \"Financial Filing & Reporting, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 744\n", + " high_rank: 744\n", + " label: \"Financial Asset Management, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 745\n", + " high_rank: 745\n", + " label: \"Executive Acquisitions Group, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 746\n", + " high_rank: 746\n", + " label: \"Everest Receivable Services Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 747\n", + " high_rank: 747\n", + " label: \"Envoy Mortgage Ltd.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 748\n", + " high_rank: 748\n", + " label: \"Credit Corp Solutions Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 749\n", + " high_rank: 749\n", + " label: \"Credit Consulting Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 750\n", + " high_rank: 750\n", + " label: \"Continental Credit Control\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 751\n", + " high_rank: 751\n", + " label: \"Consumer Adjustment Company Incorporated\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 752\n", + " high_rank: 752\n", + " label: \"Commercial Acceptance Company\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 753\n", + " high_rank: 753\n", + " label: \"Coastal Credit, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 754\n", + " high_rank: 754\n", + " label: \"Client Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 755\n", + " high_rank: 755\n", + " label: \"Budget Control Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 756\n", + " high_rank: 756\n", + " label: \"Brown and Joseph, Ltd\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 757\n", + " high_rank: 757\n", + " label: \"Broward Adjustment Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 758\n", + " high_rank: 758\n", + " label: \"Banco Santander Puerto Rico\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 759\n", + " high_rank: 759\n", + " label: \"Avadyne Health Holdings, Inc\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 760\n", + " high_rank: 760\n", + " label: \"Autovest, L.L.C.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 761\n", + " high_rank: 761\n", + " label: \"Automated Collection Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 762\n", + " high_rank: 762\n", + " label: \"Asset Recovery Group, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 763\n", + " high_rank: 763\n", + " label: \"Armada Corp.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 764\n", + " high_rank: 764\n", + " label: \"Arcadia Holdings, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 765\n", + " high_rank: 765\n", + " label: \"Alliance Collection Agencies, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 766\n", + " high_rank: 766\n", + " label: \"Allgate Financial, LLC\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 767\n", + " high_rank: 767\n", + " label: \"ARS National Services, Inc.\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 768\n", + " high_rank: 768\n", + " label: \"AAA Collections\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 769\n", + " high_rank: 769\n", + " label: \"Xoom\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 770\n", + " high_rank: 770\n", + " label: \"Worldwide Recovery LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 771\n", + " high_rank: 771\n", + " label: \"Whitney Bank\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 772\n", + " high_rank: 772\n", + " label: \"Western-Shamrock Corporation\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 773\n", + " high_rank: 773\n", + " label: \"Walwick, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 774\n", + " high_rank: 774\n", + " label: \"Velocity Portfolio Group\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 775\n", + " high_rank: 775\n", + " label: \"Valmar Holdings\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 776\n", + " high_rank: 776\n", + " label: \"VHDA\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 777\n", + " high_rank: 777\n", + " label: \"Utah System of Higher Education\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 778\n", + " high_rank: 778\n", + " label: \"Unlimited Progress Corp\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 779\n", + " high_rank: 779\n", + " label: \"United Recovery Solutions\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 780\n", + " high_rank: 780\n", + " label: \"Unifin Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 781\n", + " high_rank: 781\n", + " label: \"USCB, INC.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 782\n", + " high_rank: 782\n", + " label: \"USCB Corporation\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 783\n", + " high_rank: 783\n", + " label: \"TrueAccord Corp.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 784\n", + " high_rank: 784\n", + " label: \"Trans-Fast Remittance LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 785\n", + " high_rank: 785\n", + " label: \"The TRAF Group\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 786\n", + " high_rank: 786\n", + " label: \"The Law Offices of Gerald E Moore & Associates, PC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 787\n", + " high_rank: 787\n", + " label: \"TSC Accounts Receivable Solutions\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 788\n", + " high_rank: 788\n", + " label: \"Sterling Infosystems, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 789\n", + " high_rank: 789\n", + " label: \"State Home Mortgage\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 790\n", + " high_rank: 790\n", + " label: \"Smith Debnam Narron Drake Saintsing & Myers LLP\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 791\n", + " high_rank: 791\n", + " label: \"Sierra Holdings LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 792\n", + " high_rank: 792\n", + " label: \"Secure Capital Management, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 793\n", + " high_rank: 793\n", + " label: \"Schachter Portnoy, L.L.C.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 794\n", + " high_rank: 794\n", + " label: \"SN SERVICING CORPORATION\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 795\n", + " high_rank: 795\n", + " label: \"SKO Brenner American, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 796\n", + " high_rank: 796\n", + " label: \"Roycroft Management\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 797\n", + " high_rank: 797\n", + " label: \"Rose & Associates, LLC.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 798\n", + " high_rank: 798\n", + " label: \"Remex, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 799\n", + " high_rank: 799\n", + " label: \"Recovery Partners, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 800\n", + " high_rank: 800\n", + " label: \"Receivables Outsourcing, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 801\n", + " high_rank: 801\n", + " label: \"Receivable Solutions, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 802\n", + " high_rank: 802\n", + " label: \"Receivable Asset Management\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 803\n", + " high_rank: 803\n", + " label: \"RSH & Associates, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 804\n", + " high_rank: 804\n", + " label: \"RJM Acquisitions LLC (Closed)\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 805\n", + " high_rank: 805\n", + " label: \"Pulte Mortgage\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 806\n", + " high_rank: 806\n", + " label: \"Protas, Spivok & Collins, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 807\n", + " high_rank: 807\n", + " label: \"Pollack & Rosen, P.A.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 808\n", + " high_rank: 808\n", + " label: \"Patrick K Willis Company Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 809\n", + " high_rank: 809\n", + " label: \"Patient Account Services, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 810\n", + " high_rank: 810\n", + " label: \"Oliver Adjustment Co.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 811\n", + " high_rank: 811\n", + " label: \"Old National Bank\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 812\n", + " high_rank: 812\n", + " label: \"Northeast Recovery Solutions, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 813\n", + " high_rank: 813\n", + " label: \"Nelson Cruz & Associates LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 814\n", + " high_rank: 814\n", + " label: \"Nationwide Intermediary Services llc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 815\n", + " high_rank: 815\n", + " label: \"Nationwide Acceptance LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 816\n", + " high_rank: 816\n", + " label: \"National Budget Planners of South Florida, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 817\n", + " high_rank: 817\n", + " label: \"Municipal Collections of America, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 818\n", + " high_rank: 818\n", + " label: \"Municipal Collections Services, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 819\n", + " high_rank: 819\n", + " label: \"Mortgage Lenders of America, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 820\n", + " high_rank: 820\n", + " label: \"Mediation Recovery Center\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 821\n", + " high_rank: 821\n", + " label: \"Media Collections, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 822\n", + " high_rank: 822\n", + " label: \"MSW Capital, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 823\n", + " high_rank: 823\n", + " label: \"MNS & Associates LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 824\n", + " high_rank: 824\n", + " label: \"Law Office of Joe Pezzuto, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 825\n", + " high_rank: 825\n", + " label: \"Land/Home Financial Services\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 826\n", + " high_rank: 826\n", + " label: \"Kross, Lieberman & Stone, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 827\n", + " high_rank: 827\n", + " label: \"Key 2 Recovery, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 828\n", + " high_rank: 828\n", + " label: \"John C. Bonewicz, P.C.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 829\n", + " high_rank: 829\n", + " label: \"JNR Adjustment Company, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 830\n", + " high_rank: 830\n", + " label: \"JLU Asset Management Group LTD\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 831\n", + " high_rank: 831\n", + " label: \"International Computer Systems, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 832\n", + " high_rank: 832\n", + " label: \"International City Mortgage, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 833\n", + " high_rank: 833\n", + " label: \"Hollis Cobb Associates\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 834\n", + " high_rank: 834\n", + " label: \"Hatfield Portfolio Group LLC.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 835\n", + " high_rank: 835\n", + " label: \"Guglielmo and Associates\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 836\n", + " high_rank: 836\n", + " label: \"Grant Mercantile Agency\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 837\n", + " high_rank: 837\n", + " label: \"Goldman Sachs Bank USA\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 838\n", + " high_rank: 838\n", + " label: \"General Information Services, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 839\n", + " high_rank: 839\n", + " label: \"Gateway Mortgage Group, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 840\n", + " high_rank: 840\n", + " label: \"Friendly Finance Corporation\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 841\n", + " high_rank: 841\n", + " label: \"FirstKey Holdings, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 842\n", + " high_rank: 842\n", + " label: \"FirstBank\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 843\n", + " high_rank: 843\n", + " label: \"First Heritage Credit, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 844\n", + " high_rank: 844\n", + " label: \"Farrell Holdings, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 845\n", + " high_rank: 845\n", + " label: \"FEDERAL PACIFIC CREDIT COMPANY, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 846\n", + " high_rank: 846\n", + " label: \"Empire Resolutions Group\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 847\n", + " high_rank: 847\n", + " label: \"East West Bank\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 848\n", + " high_rank: 848\n", + " label: \"Earm LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 849\n", + " high_rank: 849\n", + " label: \"EMPIRE MEDIATION SERVICES LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 850\n", + " high_rank: 850\n", + " label: \"E. A. Uffman & Associates, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 851\n", + " high_rank: 851\n", + " label: \"DataMax Corporation\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 852\n", + " high_rank: 852\n", + " label: \"Data Line Credit Corp\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 853\n", + " high_rank: 853\n", + " label: \"Crosstown Law, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 854\n", + " high_rank: 854\n", + " label: \"Creditors Collection Service\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 855\n", + " high_rank: 855\n", + " label: \"Credit Collections Services, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 856\n", + " high_rank: 856\n", + " label: \"Couch Conville & Blitt LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 857\n", + " high_rank: 857\n", + " label: \"Convergys\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 858\n", + " high_rank: 858\n", + " label: \"Consumer Financial Services\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 859\n", + " high_rank: 859\n", + " label: \"Collection Technology Incorporated\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 860\n", + " high_rank: 860\n", + " label: \"Collection Service of Nevada\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 861\n", + " high_rank: 861\n", + " label: \"Check City Partnership, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 862\n", + " high_rank: 862\n", + " label: \"Central States Recovery, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 863\n", + " high_rank: 863\n", + " label: \"Cash America International, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 864\n", + " high_rank: 864\n", + " label: \"CIG FINANCIAL, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 865\n", + " high_rank: 865\n", + " label: \"CAB Receivables, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 866\n", + " high_rank: 866\n", + " label: \"Bryant Bryant & Associates LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 867\n", + " high_rank: 867\n", + " label: \"Brumbaugh & Quandahl\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 868\n", + " high_rank: 868\n", + " label: \"Brookshaw Management, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 869\n", + " high_rank: 869\n", + " label: \"Bilateral Credit Corp, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 870\n", + " high_rank: 870\n", + " label: \"Benuck & Rainey, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 871\n", + " high_rank: 871\n", + " label: \"Aspen Yo LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 872\n", + " high_rank: 872\n", + " label: \"Armor Systems Corporation\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 873\n", + " high_rank: 873\n", + " label: \"American Adjustment Bureau, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 874\n", + " high_rank: 874\n", + " label: \"AmeriCash Holding LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 875\n", + " high_rank: 875\n", + " label: \"Advanced Recovery Systems, Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 876\n", + " high_rank: 876\n", + " label: \"Account Services Collections, Inc\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 877\n", + " high_rank: 877\n", + " label: \"Account Brokers Inc.\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 878\n", + " high_rank: 878\n", + " label: \"Academy Mortgage\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 879\n", + " high_rank: 879\n", + " label: \"APPLE RECOVERY, LLC\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 880\n", + " high_rank: 880\n", + " label: \"Works & Lentz of Tulsa, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 881\n", + " high_rank: 881\n", + " label: \"Weichert Financial Services\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 882\n", + " high_rank: 882\n", + " label: \"Wakpamni Lake Community Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 883\n", + " high_rank: 883\n", + " label: \"Voss & Klein, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 884\n", + " high_rank: 884\n", + " label: \"United Mortgage Corp.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 885\n", + " high_rank: 885\n", + " label: \"United Military Mortgage, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 886\n", + " high_rank: 886\n", + " label: \"United Guaranty\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 887\n", + " high_rank: 887\n", + " label: \"United Group Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 888\n", + " high_rank: 888\n", + " label: \"United Collection Service, Inc (FL)\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 889\n", + " high_rank: 889\n", + " label: \"U.S. Auto Credit Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 890\n", + " high_rank: 890\n", + " label: \"Torriere Holdings INC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 891\n", + " high_rank: 891\n", + " label: \"Third Federal Savings & Loan\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 892\n", + " high_rank: 892\n", + " label: \"The Northern Trust Company\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 893\n", + " high_rank: 893\n", + " label: \"The Eastbrooke Group LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 894\n", + " high_rank: 894\n", + " label: \"Terrill Outsourcing Group\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 895\n", + " high_rank: 895\n", + " label: \"Talbot, Adams, & Moore, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 896\n", + " high_rank: 896\n", + " label: \"Student Loan Finance Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 897\n", + " high_rank: 897\n", + " label: \"Stenger & Stenger, P.C\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 898\n", + " high_rank: 898\n", + " label: \"South Carolina Student Loan\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 899\n", + " high_rank: 899\n", + " label: \"Sokaogon Finance, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 900\n", + " high_rank: 900\n", + " label: \"Sessoms & Rogers, P.A.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 901\n", + " high_rank: 901\n", + " label: \"SFS, Inc\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 902\n", + " high_rank: 902\n", + " label: \"S&S Physician Services, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 903\n", + " high_rank: 903\n", + " label: \"Ridge & Valley Realty, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 904\n", + " high_rank: 904\n", + " label: \"Results Unlimited, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 905\n", + " high_rank: 905\n", + " label: \"Remitly, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 906\n", + " high_rank: 906\n", + " label: \"Remit Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 907\n", + " high_rank: 907\n", + " label: \"Reliable Credit Association, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 908\n", + " high_rank: 908\n", + " label: \"Receivables Management Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 909\n", + " high_rank: 909\n", + " label: \"Receivable Solutions Specialist, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 910\n", + " high_rank: 910\n", + " label: \"Quick Click Loans, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 911\n", + " high_rank: 911\n", + " label: \"Profit Services Group\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 912\n", + " high_rank: 912\n", + " label: \"Preferred Credit, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 913\n", + " high_rank: 913\n", + " label: \"Peter Roberts & Associates, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 914\n", + " high_rank: 914\n", + " label: \"Pathfinder Credit Services\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 915\n", + " high_rank: 915\n", + " label: \"Orions Management Group, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 916\n", + " high_rank: 916\n", + " label: \"OpenRoad Lending\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 917\n", + " high_rank: 917\n", + " label: \"One Reverse Mortgage\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 918\n", + " high_rank: 918\n", + " label: \"Omni Financial Group, Inc\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 919\n", + " high_rank: 919\n", + " label: \"Norwich Commercial Group Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 920\n", + " high_rank: 920\n", + " label: \"NorthStar Technologies\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 921\n", + " high_rank: 921\n", + " label: \"New Day Financial, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 922\n", + " high_rank: 922\n", + " label: \"New Century Financial Services, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 923\n", + " high_rank: 923\n", + " label: \"Neighborhood Assistance Corporation of America (\\\"NACA\\\")\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 924\n", + " high_rank: 924\n", + " label: \"Nationwide Advantage Mortgage Company\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 925\n", + " high_rank: 925\n", + " label: \"Nations Lending Coporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 926\n", + " high_rank: 926\n", + " label: \"National Recovery Solutions, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 927\n", + " high_rank: 927\n", + " label: \"NOVA Financial & Investment Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 928\n", + " high_rank: 928\n", + " label: \"Midwest Service Bureau, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 929\n", + " high_rank: 929\n", + " label: \"Metro Republic Commercial Service, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 930\n", + " high_rank: 930\n", + " label: \"Medical Recovery Services, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 931\n", + " high_rank: 931\n", + " label: \"Mary Jane M. Elliott, P.C. Attorneys At Law\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 932\n", + " high_rank: 932\n", + " label: \"MarkOne Holdings, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 933\n", + " high_rank: 933\n", + " label: \"Mark A. Kirkorsky, PC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 934\n", + " high_rank: 934\n", + " label: \"Main Street Personal Finance\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 935\n", + " high_rank: 935\n", + " label: \"MST Financial Services, L.L.C.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 936\n", + " high_rank: 936\n", + " label: \"MAS Financial Services, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 937\n", + " high_rank: 937\n", + " label: \"M. G. Credit, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 938\n", + " high_rank: 938\n", + " label: \"Loan Servicing Group\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 939\n", + " high_rank: 939\n", + " label: \"Lien Enforcement Inc\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 940\n", + " high_rank: 940\n", + " label: \"Lending Solutions Mortgage/ LSI Mortgage\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 941\n", + " high_rank: 941\n", + " label: \"Lending Club Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 942\n", + " high_rank: 942\n", + " label: \"Lazega & Johanson LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 943\n", + " high_rank: 943\n", + " label: \"Law Offices of Zakheim & LaVrar, P.A.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 944\n", + " high_rank: 944\n", + " label: \"Law Offices of Robert J. Colclough, III\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 945\n", + " high_rank: 945\n", + " label: \"Kramer & Frank, P.C.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 946\n", + " high_rank: 946\n", + " label: \"Knight Adjustment Bureau\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 947\n", + " high_rank: 947\n", + " label: \"Kirschenbaum, Phillips & Levy, P.C.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 948\n", + " high_rank: 948\n", + " label: \"James B. Nutter & Company\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 949\n", + " high_rank: 949\n", + " label: \"JMS Associates, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 950\n", + " high_rank: 950\n", + " label: \"Investors Bank\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 951\n", + " high_rank: 951\n", + " label: \"Investment Retrievers, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 952\n", + " high_rank: 952\n", + " label: \"Insight Capital LLC (NV)\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 953\n", + " high_rank: 953\n", + " label: \"Incomm Holdings, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 954\n", + " high_rank: 954\n", + " label: \"Ideal Collection Services, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 955\n", + " high_rank: 955\n", + " label: \"ID Analytics, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 956\n", + " high_rank: 956\n", + " label: \"Highland Capital\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 957\n", + " high_rank: 957\n", + " label: \"Helvey & Associates\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 958\n", + " high_rank: 958\n", + " label: \"Helm Associates\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 959\n", + " high_rank: 959\n", + " label: \"Healthcare Collections-I, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 960\n", + " high_rank: 960\n", + " label: \"Hauge Associates, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 961\n", + " high_rank: 961\n", + " label: \"Harbor Front Acquisitions LLC (Closed)\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 962\n", + " high_rank: 962\n", + " label: \"H. Kent Hollins, Attorney at Law, P.A\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 963\n", + " high_rank: 963\n", + " label: \"Gold Star Finance, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 964\n", + " high_rank: 964\n", + " label: \"Global Lending Services LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 965\n", + " high_rank: 965\n", + " label: \"Global Asset Management Group, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 966\n", + " high_rank: 966\n", + " label: \"George Mason Mortgage, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 967\n", + " high_rank: 967\n", + " label: \"Genesis Credit Management, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 968\n", + " high_rank: 968\n", + " label: \"GFS II, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 969\n", + " high_rank: 969\n", + " label: \"GEMINI CAPITAL GROUP, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 970\n", + " high_rank: 970\n", + " label: \"Fredericksburg Credit Bureau, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 971\n", + " high_rank: 971\n", + " label: \"Forster, Garbus and Garbus\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 972\n", + " high_rank: 972\n", + " label: \"Focused Recovery Solutions, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 973\n", + " high_rank: 973\n", + " label: \"First Hawaiian Bank\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 974\n", + " high_rank: 974\n", + " label: \"First Choice Assets LLC.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 975\n", + " high_rank: 975\n", + " label: \"Finance of America Reverse LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 976\n", + " high_rank: 976\n", + " label: \"Fenton & McGarvey Law Firm, P.S.C.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 977\n", + " high_rank: 977\n", + " label: \"Fein, Such, Kahn & Shepard, P.C.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 978\n", + " high_rank: 978\n", + " label: \"Federal Cash Advance, LLC of Oklahoma\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 979\n", + " high_rank: 979\n", + " label: \"Fairway Independent Mortgage Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 980\n", + " high_rank: 980\n", + " label: \"Evergreen Acquistions, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 981\n", + " high_rank: 981\n", + " label: \"Ethos Lending LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 982\n", + " high_rank: 982\n", + " label: \"Esser, James & Associates\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 983\n", + " high_rank: 983\n", + " label: \"Elite Financial Services, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 984\n", + " high_rank: 984\n", + " label: \"Eaton Group Attorneys LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 985\n", + " high_rank: 985\n", + " label: \"Dominion Law Associates, P.L.L.C.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 986\n", + " high_rank: 986\n", + " label: \"Data-Central, LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 987\n", + " high_rank: 987\n", + " label: \"Credit Technologies, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 988\n", + " high_rank: 988\n", + " label: \"Credit Solutions, LLC (KY)\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 989\n", + " high_rank: 989\n", + " label: \"Credit International Corporation\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 990\n", + " high_rank: 990\n", + " label: \"Credit Bureau of San Luis Obispo & Santa Barbara Counties\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 991\n", + " high_rank: 991\n", + " label: \"Credit Bureau Systems, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 992\n", + " high_rank: 992\n", + " label: \"Credit Bureau Services Association\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 993\n", + " high_rank: 993\n", + " label: \"Cornerstone Mediation LLC\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 994\n", + " high_rank: 994\n", + " label: \"Consumer Collection Management. Inc\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 995\n", + " high_rank: 995\n", + " label: \"Computer Credit, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 996\n", + " high_rank: 996\n", + " label: \"Como Law Firm P.A.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 997\n", + " high_rank: 997\n", + " label: \"Commercial Trade, Inc.\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 998\n", + " high_rank: 998\n", + " label: \"Commercial Recovery Systems\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 999\n", + " high_rank: 999\n", + " label: \"Collections Unlimited of Texas\"\n", + " sample_count: 4.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"company\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 66613\n", + " num_missing: 186\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.3\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 66613\n", + " }\n", + " unique: 60\n", + " top_values {\n", + " value: \"CA\"\n", + " frequency: 9981.0\n", + " }\n", + " top_values {\n", + " value: \"FL\"\n", + " frequency: 5956.0\n", + " }\n", + " top_values {\n", + " value: \"TX\"\n", + " frequency: 5700.0\n", + " }\n", + " top_values {\n", + " value: \"NY\"\n", + " frequency: 3817.0\n", + " }\n", + " top_values {\n", + " value: \"GA\"\n", + " frequency: 3111.0\n", + " }\n", + " top_values {\n", + " value: \"IL\"\n", + " frequency: 2410.0\n", + " }\n", + " top_values {\n", + " value: \"PA\"\n", + " frequency: 2363.0\n", + " }\n", + " top_values {\n", + " value: \"NJ\"\n", + " frequency: 2361.0\n", + " }\n", + " top_values {\n", + " value: \"VA\"\n", + " frequency: 2195.0\n", + " }\n", + " top_values {\n", + " value: \"NC\"\n", + " frequency: 2172.0\n", + " }\n", + " top_values {\n", + " value: \"OH\"\n", + " frequency: 2088.0\n", + " }\n", + " top_values {\n", + " value: \"MD\"\n", + " frequency: 1975.0\n", + " }\n", + " top_values {\n", + " value: \"AZ\"\n", + " frequency: 1625.0\n", + " }\n", + " top_values {\n", + " value: \"MI\"\n", + " frequency: 1538.0\n", + " }\n", + " top_values {\n", + " value: \"WA\"\n", + " frequency: 1518.0\n", + " }\n", + " top_values {\n", + " value: \"MA\"\n", + " frequency: 1259.0\n", + " }\n", + " top_values {\n", + " value: \"TN\"\n", + " frequency: 1211.0\n", + " }\n", + " top_values {\n", + " value: \"CO\"\n", + " frequency: 1137.0\n", + " }\n", + " top_values {\n", + " value: \"NV\"\n", + " frequency: 1054.0\n", + " }\n", + " top_values {\n", + " value: \"SC\"\n", + " frequency: 914.0\n", + " }\n", + " avg_length: 2.0\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"CA\"\n", + " sample_count: 9981.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"FL\"\n", + " sample_count: 5956.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"TX\"\n", + " sample_count: 5700.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"NY\"\n", + " sample_count: 3817.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"GA\"\n", + " sample_count: 3111.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"IL\"\n", + " sample_count: 2410.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"PA\"\n", + " sample_count: 2363.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"NJ\"\n", + " sample_count: 2361.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"VA\"\n", + " sample_count: 2195.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"NC\"\n", + " sample_count: 2172.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"OH\"\n", + " sample_count: 2088.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"MD\"\n", + " sample_count: 1975.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"AZ\"\n", + " sample_count: 1625.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"MI\"\n", + " sample_count: 1538.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"WA\"\n", + " sample_count: 1518.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"MA\"\n", + " sample_count: 1259.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"TN\"\n", + " sample_count: 1211.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"CO\"\n", + " sample_count: 1137.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"NV\"\n", + " sample_count: 1054.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"SC\"\n", + " sample_count: 914.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"MO\"\n", + " sample_count: 881.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"MN\"\n", + " sample_count: 802.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"AL\"\n", + " sample_count: 798.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"IN\"\n", + " sample_count: 760.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"OR\"\n", + " sample_count: 755.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"LA\"\n", + " sample_count: 747.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"CT\"\n", + " sample_count: 708.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"WI\"\n", + " sample_count: 677.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"KY\"\n", + " sample_count: 518.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"OK\"\n", + " sample_count: 470.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"UT\"\n", + " sample_count: 446.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"DC\"\n", + " sample_count: 412.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"NM\"\n", + " sample_count: 396.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"MS\"\n", + " sample_count: 338.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"DE\"\n", + " sample_count: 324.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"KS\"\n", + " sample_count: 308.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"ID\"\n", + " sample_count: 286.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"IA\"\n", + " sample_count: 278.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"AR\"\n", + " sample_count: 273.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"NH\"\n", + " sample_count: 255.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"HI\"\n", + " sample_count: 236.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"ME\"\n", + " sample_count: 216.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"NE\"\n", + " sample_count: 215.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"WV\"\n", + " sample_count: 203.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"RI\"\n", + " sample_count: 197.0\n", + " }\n", + " buckets {\n", + " low_rank: 45\n", + " high_rank: 45\n", + " label: \"PR\"\n", + " sample_count: 128.0\n", + " }\n", + " buckets {\n", + " low_rank: 46\n", + " high_rank: 46\n", + " label: \"MT\"\n", + " sample_count: 116.0\n", + " }\n", + " buckets {\n", + " low_rank: 47\n", + " high_rank: 47\n", + " label: \"VT\"\n", + " sample_count: 95.0\n", + " }\n", + " buckets {\n", + " low_rank: 48\n", + " high_rank: 48\n", + " label: \"SD\"\n", + " sample_count: 91.0\n", + " }\n", + " buckets {\n", + " low_rank: 49\n", + " high_rank: 49\n", + " label: \"WY\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 50\n", + " high_rank: 50\n", + " label: \"AK\"\n", + " sample_count: 66.0\n", + " }\n", + " buckets {\n", + " low_rank: 51\n", + " high_rank: 51\n", + " label: \"ND\"\n", + " sample_count: 59.0\n", + " }\n", + " buckets {\n", + " low_rank: 52\n", + " high_rank: 52\n", + " label: \"AE\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 53\n", + " high_rank: 53\n", + " label: \"AP\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 54\n", + " high_rank: 54\n", + " label: \"VI\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 55\n", + " high_rank: 55\n", + " label: \"GU\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 56\n", + " high_rank: 56\n", + " label: \"FM\"\n", + " sample_count: 3.0\n", + " }\n", + " buckets {\n", + " low_rank: 57\n", + " high_rank: 57\n", + " label: \"MP\"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 58\n", + " high_rank: 58\n", + " label: \"AS\"\n", + " sample_count: 2.0\n", + " }\n", + " buckets {\n", + " low_rank: 59\n", + " high_rank: 59\n", + " label: \"AA\"\n", + " sample_count: 1.0\n", + " }\n", + " }\n", + " }\n", + " path {\n", + " step: \"state\"\n", + " }\n", + " }\n", + " features {\n", + " type: STRING\n", + " string_stats {\n", + " common_stats {\n", + " num_non_missing: 66610\n", + " num_missing: 189\n", + " min_num_values: 1\n", + " max_num_values: 1\n", + " avg_num_values: 1.0\n", + " num_values_histogram {\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " buckets {\n", + " low_value: 1.0\n", + " high_value: 1.0\n", + " sample_count: 6661.0\n", + " }\n", + " type: QUANTILES\n", + " }\n", + " tot_num_values: 66610\n", + " }\n", + " unique: 904\n", + " top_values {\n", + " value: \"300XX\"\n", + " frequency: 1026.0\n", + " }\n", + " top_values {\n", + " value: \"750XX\"\n", + " frequency: 792.0\n", + " }\n", + " top_values {\n", + " value: \"770XX\"\n", + " frequency: 747.0\n", + " }\n", + " top_values {\n", + " value: \"900XX\"\n", + " frequency: 719.0\n", + " }\n", + " top_values {\n", + " value: \"945XX\"\n", + " frequency: 703.0\n", + " }\n", + " top_values {\n", + " value: \"331XX\"\n", + " frequency: 677.0\n", + " }\n", + " top_values {\n", + " value: \"606XX\"\n", + " frequency: 659.0\n", + " }\n", + " top_values {\n", + " value: \"891XX\"\n", + " frequency: 658.0\n", + " }\n", + " top_values {\n", + " value: \"330XX\"\n", + " frequency: 649.0\n", + " }\n", + " top_values {\n", + " value: \"207XX\"\n", + " frequency: 581.0\n", + " }\n", + " top_values {\n", + " value: \"334XX\"\n", + " frequency: 558.0\n", + " }\n", + " top_values {\n", + " value: \"070XX\"\n", + " frequency: 515.0\n", + " }\n", + " top_values {\n", + " value: \"112XX\"\n", + " frequency: 509.0\n", + " }\n", + " top_values {\n", + " value: \"925XX\"\n", + " frequency: 500.0\n", + " }\n", + " top_values {\n", + " value: \"303XX\"\n", + " frequency: 499.0\n", + " }\n", + " top_values {\n", + " value: \"926XX\"\n", + " frequency: 497.0\n", + " }\n", + " top_values {\n", + " value: \"191XX\"\n", + " frequency: 464.0\n", + " }\n", + " top_values {\n", + " value: \"852XX\"\n", + " frequency: 462.0\n", + " }\n", + " top_values {\n", + " value: \"604XX\"\n", + " frequency: 457.0\n", + " }\n", + " top_values {\n", + " value: \"917XX\"\n", + " frequency: 455.0\n", + " }\n", + " avg_length: 5.0\n", + " rank_histogram {\n", + " buckets {\n", + " label: \"300XX\"\n", + " sample_count: 1026.0\n", + " }\n", + " buckets {\n", + " low_rank: 1\n", + " high_rank: 1\n", + " label: \"750XX\"\n", + " sample_count: 792.0\n", + " }\n", + " buckets {\n", + " low_rank: 2\n", + " high_rank: 2\n", + " label: \"770XX\"\n", + " sample_count: 747.0\n", + " }\n", + " buckets {\n", + " low_rank: 3\n", + " high_rank: 3\n", + " label: \"900XX\"\n", + " sample_count: 719.0\n", + " }\n", + " buckets {\n", + " low_rank: 4\n", + " high_rank: 4\n", + " label: \"945XX\"\n", + " sample_count: 703.0\n", + " }\n", + " buckets {\n", + " low_rank: 5\n", + " high_rank: 5\n", + " label: \"331XX\"\n", + " sample_count: 677.0\n", + " }\n", + " buckets {\n", + " low_rank: 6\n", + " high_rank: 6\n", + " label: \"606XX\"\n", + " sample_count: 659.0\n", + " }\n", + " buckets {\n", + " low_rank: 7\n", + " high_rank: 7\n", + " label: \"891XX\"\n", + " sample_count: 658.0\n", + " }\n", + " buckets {\n", + " low_rank: 8\n", + " high_rank: 8\n", + " label: \"330XX\"\n", + " sample_count: 649.0\n", + " }\n", + " buckets {\n", + " low_rank: 9\n", + " high_rank: 9\n", + " label: \"207XX\"\n", + " sample_count: 581.0\n", + " }\n", + " buckets {\n", + " low_rank: 10\n", + " high_rank: 10\n", + " label: \"334XX\"\n", + " sample_count: 558.0\n", + " }\n", + " buckets {\n", + " low_rank: 11\n", + " high_rank: 11\n", + " label: \"070XX\"\n", + " sample_count: 515.0\n", + " }\n", + " buckets {\n", + " low_rank: 12\n", + " high_rank: 12\n", + " label: \"112XX\"\n", + " sample_count: 509.0\n", + " }\n", + " buckets {\n", + " low_rank: 13\n", + " high_rank: 13\n", + " label: \"925XX\"\n", + " sample_count: 500.0\n", + " }\n", + " buckets {\n", + " low_rank: 14\n", + " high_rank: 14\n", + " label: \"303XX\"\n", + " sample_count: 499.0\n", + " }\n", + " buckets {\n", + " low_rank: 15\n", + " high_rank: 15\n", + " label: \"926XX\"\n", + " sample_count: 497.0\n", + " }\n", + " buckets {\n", + " low_rank: 16\n", + " high_rank: 16\n", + " label: \"191XX\"\n", + " sample_count: 464.0\n", + " }\n", + " buckets {\n", + " low_rank: 17\n", + " high_rank: 17\n", + " label: \"852XX\"\n", + " sample_count: 462.0\n", + " }\n", + " buckets {\n", + " low_rank: 18\n", + " high_rank: 18\n", + " label: \"604XX\"\n", + " sample_count: 457.0\n", + " }\n", + " buckets {\n", + " low_rank: 19\n", + " high_rank: 19\n", + " label: \"917XX\"\n", + " sample_count: 455.0\n", + " }\n", + " buckets {\n", + " low_rank: 20\n", + " high_rank: 20\n", + " label: \"100XX\"\n", + " sample_count: 454.0\n", + " }\n", + " buckets {\n", + " low_rank: 21\n", + " high_rank: 21\n", + " label: \"782XX\"\n", + " sample_count: 449.0\n", + " }\n", + " buckets {\n", + " low_rank: 22\n", + " high_rank: 22\n", + " label: \"913XX\"\n", + " sample_count: 441.0\n", + " }\n", + " buckets {\n", + " low_rank: 23\n", + " high_rank: 23\n", + " label: \"850XX\"\n", + " sample_count: 418.0\n", + " }\n", + " buckets {\n", + " low_rank: 24\n", + " high_rank: 24\n", + " label: \"200XX\"\n", + " sample_count: 416.0\n", + " }\n", + " buckets {\n", + " low_rank: 25\n", + " high_rank: 25\n", + " label: \"921XX\"\n", + " sample_count: 413.0\n", + " }\n", + " buckets {\n", + " low_rank: 26\n", + " high_rank: 26\n", + " label: \"302XX\"\n", + " sample_count: 410.0\n", + " }\n", + " buckets {\n", + " low_rank: 27\n", + " high_rank: 27\n", + " label: \"080XX\"\n", + " sample_count: 406.0\n", + " }\n", + " buckets {\n", + " low_rank: 28\n", + " high_rank: 28\n", + " label: \"333XX\"\n", + " sample_count: 404.0\n", + " }\n", + " buckets {\n", + " low_rank: 29\n", + " high_rank: 29\n", + " label: \"752XX\"\n", + " sample_count: 401.0\n", + " }\n", + " buckets {\n", + " low_rank: 30\n", + " high_rank: 30\n", + " label: \"282XX\"\n", + " sample_count: 393.0\n", + " }\n", + " buckets {\n", + " low_rank: 31\n", + " high_rank: 31\n", + " label: \"902XX\"\n", + " sample_count: 386.0\n", + " }\n", + " buckets {\n", + " low_rank: 32\n", + " high_rank: 32\n", + " label: \"322XX\"\n", + " sample_count: 360.0\n", + " }\n", + " buckets {\n", + " low_rank: 33\n", + " high_rank: 33\n", + " label: \"301XX\"\n", + " sample_count: 355.0\n", + " }\n", + " buckets {\n", + " low_rank: 34\n", + " high_rank: 34\n", + " label: \"920XX\"\n", + " sample_count: 348.0\n", + " }\n", + " buckets {\n", + " low_rank: 35\n", + " high_rank: 35\n", + " label: \"760XX\"\n", + " sample_count: 346.0\n", + " }\n", + " buckets {\n", + " low_rank: 36\n", + " high_rank: 36\n", + " label: \"201XX\"\n", + " sample_count: 346.0\n", + " }\n", + " buckets {\n", + " low_rank: 37\n", + " high_rank: 37\n", + " label: \"441XX\"\n", + " sample_count: 338.0\n", + " }\n", + " buckets {\n", + " low_rank: 38\n", + " high_rank: 38\n", + " label: \"117XX\"\n", + " sample_count: 335.0\n", + " }\n", + " buckets {\n", + " low_rank: 39\n", + " high_rank: 39\n", + " label: \"212XX\"\n", + " sample_count: 332.0\n", + " }\n", + " buckets {\n", + " low_rank: 40\n", + " high_rank: 40\n", + " label: \"980XX\"\n", + " sample_count: 321.0\n", + " }\n", + " buckets {\n", + " low_rank: 41\n", + " high_rank: 41\n", + " label: \"923XX\"\n", + " sample_count: 318.0\n", + " }\n", + " buckets {\n", + " low_rank: 42\n", + " high_rank: 42\n", + " label: \"773XX\"\n", + " sample_count: 309.0\n", + " }\n", + " buckets {\n", + " low_rank: 43\n", + " high_rank: 43\n", + " label: \"983XX\"\n", + " sample_count: 306.0\n", + " }\n", + " buckets {\n", + " low_rank: 44\n", + " high_rank: 44\n", + " label: \"853XX\"\n", + " sample_count: 304.0\n", + " }\n", + " buckets {\n", + " low_rank: 45\n", + " high_rank: 45\n", + " label: \"787XX\"\n", + " sample_count: 303.0\n", + " }\n", + " buckets {\n", + " low_rank: 46\n", + " high_rank: 46\n", + " label: \"328XX\"\n", + " sample_count: 302.0\n", + " }\n", + " buckets {\n", + " low_rank: 47\n", + " high_rank: 47\n", + " label: \"190XX\"\n", + " sample_count: 299.0\n", + " }\n", + " buckets {\n", + " low_rank: 48\n", + " high_rank: 48\n", + " label: \"021XX\"\n", + " sample_count: 296.0\n", + " }\n", + " buckets {\n", + " low_rank: 49\n", + " high_rank: 49\n", + " label: \"928XX\"\n", + " sample_count: 291.0\n", + " }\n", + " buckets {\n", + " low_rank: 50\n", + " high_rank: 50\n", + " label: \"802XX\"\n", + " sample_count: 291.0\n", + " }\n", + " buckets {\n", + " low_rank: 51\n", + " high_rank: 51\n", + " label: \"601XX\"\n", + " sample_count: 291.0\n", + " }\n", + " buckets {\n", + " low_rank: 52\n", + " high_rank: 52\n", + " label: \"336XX\"\n", + " sample_count: 291.0\n", + " }\n", + " buckets {\n", + " low_rank: 53\n", + " high_rank: 53\n", + " label: \"554XX\"\n", + " sample_count: 289.0\n", + " }\n", + " buckets {\n", + " low_rank: 54\n", + " high_rank: 54\n", + " label: \"600XX\"\n", + " sample_count: 284.0\n", + " }\n", + " buckets {\n", + " low_rank: 55\n", + " high_rank: 55\n", + " label: \"956XX\"\n", + " sample_count: 281.0\n", + " }\n", + " buckets {\n", + " low_rank: 56\n", + " high_rank: 56\n", + " label: \"481XX\"\n", + " sample_count: 276.0\n", + " }\n", + " buckets {\n", + " low_rank: 57\n", + " high_rank: 57\n", + " label: \"337XX\"\n", + " sample_count: 275.0\n", + " }\n", + " buckets {\n", + " low_rank: 58\n", + " high_rank: 58\n", + " label: \"208XX\"\n", + " sample_count: 271.0\n", + " }\n", + " buckets {\n", + " low_rank: 59\n", + " high_rank: 59\n", + " label: \"774XX\"\n", + " sample_count: 267.0\n", + " }\n", + " buckets {\n", + " low_rank: 60\n", + " high_rank: 60\n", + " label: \"327XX\"\n", + " sample_count: 267.0\n", + " }\n", + " buckets {\n", + " low_rank: 61\n", + " high_rank: 61\n", + " label: \"275XX\"\n", + " sample_count: 251.0\n", + " }\n", + " buckets {\n", + " low_rank: 62\n", + " high_rank: 62\n", + " label: \"786XX\"\n", + " sample_count: 250.0\n", + " }\n", + " buckets {\n", + " low_rank: 63\n", + " high_rank: 63\n", + " label: \"951XX\"\n", + " sample_count: 244.0\n", + " }\n", + " buckets {\n", + " low_rank: 64\n", + " high_rank: 64\n", + " label: \"480XX\"\n", + " sample_count: 244.0\n", + " }\n", + " buckets {\n", + " low_rank: 65\n", + " high_rank: 65\n", + " label: \"972XX\"\n", + " sample_count: 243.0\n", + " }\n", + " buckets {\n", + " low_rank: 66\n", + " high_rank: 66\n", + " label: \"958XX\"\n", + " sample_count: 241.0\n", + " }\n", + " buckets {\n", + " low_rank: 67\n", + " high_rank: 67\n", + " label: \"890XX\"\n", + " sample_count: 241.0\n", + " }\n", + " buckets {\n", + " low_rank: 68\n", + " high_rank: 68\n", + " label: \"432XX\"\n", + " sample_count: 234.0\n", + " }\n", + " buckets {\n", + " low_rank: 69\n", + " high_rank: 69\n", + " label: \"104XX\"\n", + " sample_count: 232.0\n", + " }\n", + " buckets {\n", + " low_rank: 70\n", + " high_rank: 70\n", + " label: \"981XX\"\n", + " sample_count: 228.0\n", + " }\n", + " buckets {\n", + " low_rank: 71\n", + " high_rank: 71\n", + " label: \"751XX\"\n", + " sample_count: 227.0\n", + " }\n", + " buckets {\n", + " low_rank: 72\n", + " high_rank: 72\n", + " label: \"370XX\"\n", + " sample_count: 226.0\n", + " }\n", + " buckets {\n", + " low_rank: 73\n", + " high_rank: 73\n", + " label: \"941XX\"\n", + " sample_count: 225.0\n", + " }\n", + " buckets {\n", + " low_rank: 74\n", + " high_rank: 74\n", + " label: \"761XX\"\n", + " sample_count: 221.0\n", + " }\n", + " buckets {\n", + " low_rank: 75\n", + " high_rank: 75\n", + " label: \"088XX\"\n", + " sample_count: 219.0\n", + " }\n", + " buckets {\n", + " low_rank: 76\n", + " high_rank: 76\n", + " label: \"113XX\"\n", + " sample_count: 214.0\n", + " }\n", + " buckets {\n", + " low_rank: 77\n", + " high_rank: 77\n", + " label: \"346XX\"\n", + " sample_count: 212.0\n", + " }\n", + " buckets {\n", + " low_rank: 78\n", + " high_rank: 78\n", + " label: \"335XX\"\n", + " sample_count: 212.0\n", + " }\n", + " buckets {\n", + " low_rank: 79\n", + " high_rank: 79\n", + " label: \"775XX\"\n", + " sample_count: 211.0\n", + " }\n", + " buckets {\n", + " low_rank: 80\n", + " high_rank: 80\n", + " label: \"605XX\"\n", + " sample_count: 205.0\n", + " }\n", + " buckets {\n", + " low_rank: 81\n", + " high_rank: 81\n", + " label: \"352XX\"\n", + " sample_count: 205.0\n", + " }\n", + " buckets {\n", + " low_rank: 82\n", + " high_rank: 82\n", + " label: \"483XX\"\n", + " sample_count: 204.0\n", + " }\n", + " buckets {\n", + " low_rank: 83\n", + " high_rank: 83\n", + " label: \"114XX\"\n", + " sample_count: 203.0\n", + " }\n", + " buckets {\n", + " low_rank: 84\n", + " high_rank: 84\n", + " label: \"959XX\"\n", + " sample_count: 199.0\n", + " }\n", + " buckets {\n", + " low_rank: 85\n", + " high_rank: 85\n", + " label: \"210XX\"\n", + " sample_count: 199.0\n", + " }\n", + " buckets {\n", + " low_rank: 86\n", + " high_rank: 86\n", + " label: \"221XX\"\n", + " sample_count: 196.0\n", + " }\n", + " buckets {\n", + " low_rank: 87\n", + " high_rank: 87\n", + " label: \"940XX\"\n", + " sample_count: 194.0\n", + " }\n", + " buckets {\n", + " low_rank: 88\n", + " high_rank: 88\n", + " label: \"800XX\"\n", + " sample_count: 194.0\n", + " }\n", + " buckets {\n", + " low_rank: 89\n", + " high_rank: 89\n", + " label: \"801XX\"\n", + " sample_count: 189.0\n", + " }\n", + " buckets {\n", + " low_rank: 90\n", + " high_rank: 90\n", + " label: \"840XX\"\n", + " sample_count: 187.0\n", + " }\n", + " buckets {\n", + " low_rank: 91\n", + " high_rank: 91\n", + " label: \"329XX\"\n", + " sample_count: 187.0\n", + " }\n", + " buckets {\n", + " low_rank: 92\n", + " high_rank: 92\n", + " label: \"115XX\"\n", + " sample_count: 187.0\n", + " }\n", + " buckets {\n", + " low_rank: 93\n", + " high_rank: 93\n", + " label: \"482XX\"\n", + " sample_count: 186.0\n", + " }\n", + " buckets {\n", + " low_rank: 94\n", + " high_rank: 94\n", + " label: \"296XX\"\n", + " sample_count: 185.0\n", + " }\n", + " buckets {\n", + " low_rank: 95\n", + " high_rank: 95\n", + " label: \"077XX\"\n", + " sample_count: 185.0\n", + " }\n", + " buckets {\n", + " low_rank: 96\n", + " high_rank: 96\n", + " label: \"631XX\"\n", + " sample_count: 183.0\n", + " }\n", + " buckets {\n", + " low_rank: 97\n", + " high_rank: 97\n", + " label: \"224XX\"\n", + " sample_count: 182.0\n", + " }\n", + " buckets {\n", + " low_rank: 98\n", + " high_rank: 98\n", + " label: \"381XX\"\n", + " sample_count: 181.0\n", + " }\n", + " buckets {\n", + " low_rank: 99\n", + " high_rank: 99\n", + " label: \"430XX\"\n", + " sample_count: 180.0\n", + " }\n", + " buckets {\n", + " low_rank: 100\n", + " high_rank: 100\n", + " label: \"280XX\"\n", + " sample_count: 179.0\n", + " }\n", + " buckets {\n", + " low_rank: 101\n", + " high_rank: 101\n", + " label: \"950XX\"\n", + " sample_count: 177.0\n", + " }\n", + " buckets {\n", + " low_rank: 102\n", + " high_rank: 102\n", + " label: \"452XX\"\n", + " sample_count: 175.0\n", + " }\n", + " buckets {\n", + " low_rank: 103\n", + " high_rank: 103\n", + " label: \"953XX\"\n", + " sample_count: 173.0\n", + " }\n", + " buckets {\n", + " low_rank: 104\n", + " high_rank: 104\n", + " label: \"320XX\"\n", + " sample_count: 173.0\n", + " }\n", + " buckets {\n", + " low_rank: 105\n", + " high_rank: 105\n", + " label: \"970XX\"\n", + " sample_count: 168.0\n", + " }\n", + " buckets {\n", + " low_rank: 106\n", + " high_rank: 106\n", + " label: \"982XX\"\n", + " sample_count: 167.0\n", + " }\n", + " buckets {\n", + " low_rank: 107\n", + " high_rank: 107\n", + " label: \"967XX\"\n", + " sample_count: 164.0\n", + " }\n", + " buckets {\n", + " low_rank: 108\n", + " high_rank: 108\n", + " label: \"440XX\"\n", + " sample_count: 164.0\n", + " }\n", + " buckets {\n", + " low_rank: 109\n", + " high_rank: 109\n", + " label: \"339XX\"\n", + " sample_count: 163.0\n", + " }\n", + " buckets {\n", + " low_rank: 110\n", + " high_rank: 110\n", + " label: \"276XX\"\n", + " sample_count: 163.0\n", + " }\n", + " buckets {\n", + " low_rank: 111\n", + " high_rank: 111\n", + " label: \"197XX\"\n", + " sample_count: 162.0\n", + " }\n", + " buckets {\n", + " low_rank: 112\n", + " high_rank: 112\n", + " label: \"930XX\"\n", + " sample_count: 161.0\n", + " }\n", + " buckets {\n", + " low_rank: 113\n", + " high_rank: 113\n", + " label: \"347XX\"\n", + " sample_count: 161.0\n", + " }\n", + " buckets {\n", + " low_rank: 114\n", + " high_rank: 114\n", + " label: \"152XX\"\n", + " sample_count: 161.0\n", + " }\n", + " buckets {\n", + " low_rank: 115\n", + " high_rank: 115\n", + " label: \"922XX\"\n", + " sample_count: 159.0\n", + " }\n", + " buckets {\n", + " low_rank: 116\n", + " high_rank: 116\n", + " label: \"462XX\"\n", + " sample_count: 159.0\n", + " }\n", + " buckets {\n", + " low_rank: 117\n", + " high_rank: 117\n", + " label: \"220XX\"\n", + " sample_count: 157.0\n", + " }\n", + " buckets {\n", + " low_rank: 118\n", + " high_rank: 118\n", + " label: \"857XX\"\n", + " sample_count: 156.0\n", + " }\n", + " buckets {\n", + " low_rank: 119\n", + " high_rank: 119\n", + " label: \"342XX\"\n", + " sample_count: 156.0\n", + " }\n", + " buckets {\n", + " low_rank: 120\n", + " high_rank: 120\n", + " label: \"232XX\"\n", + " sample_count: 156.0\n", + " }\n", + " buckets {\n", + " low_rank: 121\n", + " high_rank: 121\n", + " label: \"907XX\"\n", + " sample_count: 155.0\n", + " }\n", + " buckets {\n", + " low_rank: 122\n", + " high_rank: 122\n", + " label: \"946XX\"\n", + " sample_count: 153.0\n", + " }\n", + " buckets {\n", + " low_rank: 123\n", + " high_rank: 123\n", + " label: \"064XX\"\n", + " sample_count: 153.0\n", + " }\n", + " buckets {\n", + " low_rank: 124\n", + " high_rank: 124\n", + " label: \"785XX\"\n", + " sample_count: 152.0\n", + " }\n", + " buckets {\n", + " low_rank: 125\n", + " high_rank: 125\n", + " label: \"916XX\"\n", + " sample_count: 151.0\n", + " }\n", + " buckets {\n", + " low_rank: 126\n", + " high_rank: 126\n", + " label: \"532XX\"\n", + " sample_count: 151.0\n", + " }\n", + " buckets {\n", + " low_rank: 127\n", + " high_rank: 127\n", + " label: \"841XX\"\n", + " sample_count: 150.0\n", + " }\n", + " buckets {\n", + " low_rank: 128\n", + " high_rank: 128\n", + " label: \"630XX\"\n", + " sample_count: 149.0\n", + " }\n", + " buckets {\n", + " low_rank: 129\n", + " high_rank: 129\n", + " label: \"294XX\"\n", + " sample_count: 148.0\n", + " }\n", + " buckets {\n", + " low_rank: 130\n", + " high_rank: 130\n", + " label: \"553XX\"\n", + " sample_count: 145.0\n", + " }\n", + " buckets {\n", + " low_rank: 131\n", + " high_rank: 131\n", + " label: \"028XX\"\n", + " sample_count: 145.0\n", + " }\n", + " buckets {\n", + " low_rank: 132\n", + " high_rank: 132\n", + " label: \"551XX\"\n", + " sample_count: 144.0\n", + " }\n", + " buckets {\n", + " low_rank: 133\n", + " high_rank: 133\n", + " label: \"338XX\"\n", + " sample_count: 142.0\n", + " }\n", + " buckets {\n", + " low_rank: 134\n", + " high_rank: 134\n", + " label: \"018XX\"\n", + " sample_count: 141.0\n", + " }\n", + " buckets {\n", + " low_rank: 135\n", + " high_rank: 135\n", + " label: \"914XX\"\n", + " sample_count: 139.0\n", + " }\n", + " buckets {\n", + " low_rank: 136\n", + " high_rank: 136\n", + " label: \"234XX\"\n", + " sample_count: 139.0\n", + " }\n", + " buckets {\n", + " low_rank: 137\n", + " high_rank: 137\n", + " label: \"206XX\"\n", + " sample_count: 139.0\n", + " }\n", + " buckets {\n", + " low_rank: 138\n", + " high_rank: 138\n", + " label: \"871XX\"\n", + " sample_count: 138.0\n", + " }\n", + " buckets {\n", + " low_rank: 139\n", + " high_rank: 139\n", + " label: \"321XX\"\n", + " sample_count: 138.0\n", + " }\n", + " buckets {\n", + " low_rank: 140\n", + " high_rank: 140\n", + " label: \"305XX\"\n", + " sample_count: 138.0\n", + " }\n", + " buckets {\n", + " low_rank: 141\n", + " high_rank: 141\n", + " label: \"223XX\"\n", + " sample_count: 137.0\n", + " }\n", + " buckets {\n", + " low_rank: 142\n", + " high_rank: 142\n", + " label: \"919XX\"\n", + " sample_count: 136.0\n", + " }\n", + " buckets {\n", + " low_rank: 143\n", + " high_rank: 143\n", + " label: \"641XX\"\n", + " sample_count: 136.0\n", + " }\n", + " buckets {\n", + " low_rank: 144\n", + " high_rank: 144\n", + " label: \"908XX\"\n", + " sample_count: 134.0\n", + " }\n", + " buckets {\n", + " low_rank: 145\n", + " high_rank: 145\n", + " label: \"283XX\"\n", + " sample_count: 132.0\n", + " }\n", + " buckets {\n", + " low_rank: 146\n", + " high_rank: 146\n", + " label: \"105XX\"\n", + " sample_count: 132.0\n", + " }\n", + " buckets {\n", + " low_rank: 147\n", + " high_rank: 147\n", + " label: \"986XX\"\n", + " sample_count: 131.0\n", + " }\n", + " buckets {\n", + " low_rank: 148\n", + " high_rank: 148\n", + " label: \"371XX\"\n", + " sample_count: 129.0\n", + " }\n", + " buckets {\n", + " low_rank: 149\n", + " high_rank: 149\n", + " label: \"103XX\"\n", + " sample_count: 129.0\n", + " }\n", + " buckets {\n", + " low_rank: 150\n", + " high_rank: 150\n", + " label: \"935XX\"\n", + " sample_count: 128.0\n", + " }\n", + " buckets {\n", + " low_rank: 151\n", + " high_rank: 151\n", + " label: \"209XX\"\n", + " sample_count: 127.0\n", + " }\n", + " buckets {\n", + " low_rank: 152\n", + " high_rank: 152\n", + " label: \"700XX\"\n", + " sample_count: 125.0\n", + " }\n", + " buckets {\n", + " low_rank: 153\n", + " high_rank: 153\n", + " label: \"060XX\"\n", + " sample_count: 124.0\n", + " }\n", + " buckets {\n", + " low_rank: 154\n", + " high_rank: 154\n", + " label: \"906XX\"\n", + " sample_count: 123.0\n", + " }\n", + " buckets {\n", + " low_rank: 155\n", + " high_rank: 155\n", + " label: \"295XX\"\n", + " sample_count: 123.0\n", + " }\n", + " buckets {\n", + " low_rank: 156\n", + " high_rank: 156\n", + " label: \"402XX\"\n", + " sample_count: 122.0\n", + " }\n", + " buckets {\n", + " low_rank: 157\n", + " high_rank: 157\n", + " label: \"809XX\"\n", + " sample_count: 121.0\n", + " }\n", + " buckets {\n", + " low_rank: 158\n", + " high_rank: 158\n", + " label: \"344XX\"\n", + " sample_count: 121.0\n", + " }\n", + " buckets {\n", + " low_rank: 159\n", + " high_rank: 159\n", + " label: \"194XX\"\n", + " sample_count: 121.0\n", + " }\n", + " buckets {\n", + " low_rank: 160\n", + " high_rank: 160\n", + " label: \"222XX\"\n", + " sample_count: 120.0\n", + " }\n", + " buckets {\n", + " low_rank: 161\n", + " high_rank: 161\n", + " label: \"109XX\"\n", + " sample_count: 120.0\n", + " }\n", + " buckets {\n", + " low_rank: 162\n", + " high_rank: 162\n", + " label: \"731XX\"\n", + " sample_count: 119.0\n", + " }\n", + " buckets {\n", + " low_rank: 163\n", + " high_rank: 163\n", + " label: \"349XX\"\n", + " sample_count: 119.0\n", + " }\n", + " buckets {\n", + " low_rank: 164\n", + " high_rank: 164\n", + " label: \"490XX\"\n", + " sample_count: 116.0\n", + " }\n", + " buckets {\n", + " low_rank: 165\n", + " high_rank: 165\n", + " label: \"949XX\"\n", + " sample_count: 115.0\n", + " }\n", + " buckets {\n", + " low_rank: 166\n", + " high_rank: 166\n", + " label: \"875XX\"\n", + " sample_count: 115.0\n", + " }\n", + " buckets {\n", + " low_rank: 167\n", + " high_rank: 167\n", + " label: \"074XX\"\n", + " sample_count: 114.0\n", + " }\n", + " buckets {\n", + " low_rank: 168\n", + " high_rank: 168\n", + " label: \"640XX\"\n", + " sample_count: 113.0\n", + " }\n", + " buckets {\n", + " low_rank: 169\n", + " high_rank: 169\n", + " label: \"272XX\"\n", + " sample_count: 113.0\n", + " }\n", + " buckets {\n", + " low_rank: 170\n", + " high_rank: 170\n", + " label: \"211XX\"\n", + " sample_count: 113.0\n", + " }\n", + " buckets {\n", + " low_rank: 171\n", + " high_rank: 171\n", + " label: \"531XX\"\n", + " sample_count: 110.0\n", + " }\n", + " buckets {\n", + " low_rank: 172\n", + " high_rank: 172\n", + " label: \"281XX\"\n", + " sample_count: 109.0\n", + " }\n", + " buckets {\n", + " low_rank: 173\n", + " high_rank: 173\n", + " label: \"762XX\"\n", + " sample_count: 108.0\n", + " }\n", + " buckets {\n", + " low_rank: 174\n", + " high_rank: 174\n", + " label: \"974XX\"\n", + " sample_count: 107.0\n", + " }\n", + " buckets {\n", + " low_rank: 175\n", + " high_rank: 175\n", + " label: \"450XX\"\n", + " sample_count: 106.0\n", + " }\n", + " buckets {\n", + " low_rank: 176\n", + " high_rank: 176\n", + " label: \"836XX\"\n", + " sample_count: 105.0\n", + " }\n", + " buckets {\n", + " low_rank: 177\n", + " high_rank: 177\n", + " label: \"142XX\"\n", + " sample_count: 105.0\n", + " }\n", + " buckets {\n", + " low_rank: 178\n", + " high_rank: 178\n", + " label: \"454XX\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 179\n", + " high_rank: 179\n", + " label: \"380XX\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 180\n", + " high_rank: 180\n", + " label: \"271XX\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 181\n", + " high_rank: 181\n", + " label: \"193XX\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 182\n", + " high_rank: 182\n", + " label: \"076XX\"\n", + " sample_count: 104.0\n", + " }\n", + " buckets {\n", + " low_rank: 183\n", + " high_rank: 183\n", + " label: \"927XX\"\n", + " sample_count: 103.0\n", + " }\n", + " buckets {\n", + " low_rank: 184\n", + " high_rank: 184\n", + " label: \"701XX\"\n", + " sample_count: 103.0\n", + " }\n", + " buckets {\n", + " low_rank: 185\n", + " high_rank: 185\n", + " label: \"027XX\"\n", + " sample_count: 103.0\n", + " }\n", + " buckets {\n", + " low_rank: 186\n", + " high_rank: 186\n", + " label: \"372XX\"\n", + " sample_count: 102.0\n", + " }\n", + " buckets {\n", + " low_rank: 187\n", + " high_rank: 187\n", + " label: \"217XX\"\n", + " sample_count: 102.0\n", + " }\n", + " buckets {\n", + " low_rank: 188\n", + " high_rank: 188\n", + " label: \"284XX\"\n", + " sample_count: 101.0\n", + " }\n", + " buckets {\n", + " low_rank: 189\n", + " high_rank: 189\n", + " label: \"681XX\"\n", + " sample_count: 100.0\n", + " }\n", + " buckets {\n", + " low_rank: 190\n", + " high_rank: 190\n", + " label: \"325XX\"\n", + " sample_count: 100.0\n", + " }\n", + " buckets {\n", + " low_rank: 191\n", + " high_rank: 191\n", + " label: \"292XX\"\n", + " sample_count: 100.0\n", + " }\n", + " buckets {\n", + " low_rank: 192\n", + " high_rank: 192\n", + " label: \"730XX\"\n", + " sample_count: 99.0\n", + " }\n", + " buckets {\n", + " low_rank: 193\n", + " high_rank: 193\n", + " label: \"622XX\"\n", + " sample_count: 99.0\n", + " }\n", + " buckets {\n", + " low_rank: 194\n", + " high_rank: 194\n", + " label: \"937XX\"\n", + " sample_count: 98.0\n", + " }\n", + " buckets {\n", + " low_rank: 195\n", + " high_rank: 195\n", + " label: \"799XX\"\n", + " sample_count: 98.0\n", + " }\n", + " buckets {\n", + " low_rank: 196\n", + " high_rank: 196\n", + " label: \"379XX\"\n", + " sample_count: 98.0\n", + " }\n", + " buckets {\n", + " low_rank: 197\n", + " high_rank: 197\n", + " label: \"314XX\"\n", + " sample_count: 97.0\n", + " }\n", + " buckets {\n", + " low_rank: 198\n", + " high_rank: 198\n", + " label: \"078XX\"\n", + " sample_count: 96.0\n", + " }\n", + " buckets {\n", + " low_rank: 199\n", + " high_rank: 199\n", + " label: \"180XX\"\n", + " sample_count: 95.0\n", + " }\n", + " buckets {\n", + " low_rank: 200\n", + " high_rank: 200\n", + " label: \"341XX\"\n", + " sample_count: 94.0\n", + " }\n", + " buckets {\n", + " low_rank: 201\n", + " high_rank: 201\n", + " label: \"274XX\"\n", + " sample_count: 94.0\n", + " }\n", + " buckets {\n", + " low_rank: 202\n", + " high_rank: 202\n", + " label: \"073XX\"\n", + " sample_count: 94.0\n", + " }\n", + " buckets {\n", + " low_rank: 203\n", + " high_rank: 203\n", + " label: \"024XX\"\n", + " sample_count: 94.0\n", + " }\n", + " buckets {\n", + " low_rank: 204\n", + " high_rank: 204\n", + " label: \"170XX\"\n", + " sample_count: 93.0\n", + " }\n", + " buckets {\n", + " low_rank: 205\n", + " high_rank: 205\n", + " label: \"125XX\"\n", + " sample_count: 93.0\n", + " }\n", + " buckets {\n", + " low_rank: 206\n", + " high_rank: 206\n", + " label: \"068XX\"\n", + " sample_count: 93.0\n", + " }\n", + " buckets {\n", + " low_rank: 207\n", + " high_rank: 207\n", + " label: \"030XX\"\n", + " sample_count: 93.0\n", + " }\n", + " buckets {\n", + " low_rank: 208\n", + " high_rank: 208\n", + " label: \"932XX\"\n", + " sample_count: 92.0\n", + " }\n", + " buckets {\n", + " low_rank: 209\n", + " high_rank: 209\n", + " label: \"954XX\"\n", + " sample_count: 91.0\n", + " }\n", + " buckets {\n", + " low_rank: 210\n", + " high_rank: 210\n", + " label: \"933XX\"\n", + " sample_count: 91.0\n", + " }\n", + " buckets {\n", + " low_rank: 211\n", + " high_rank: 211\n", + " label: \"765XX\"\n", + " sample_count: 91.0\n", + " }\n", + " buckets {\n", + " low_rank: 212\n", + " high_rank: 212\n", + " label: \"287XX\"\n", + " sample_count: 91.0\n", + " }\n", + " buckets {\n", + " low_rank: 213\n", + " high_rank: 213\n", + " label: \"984XX\"\n", + " sample_count: 90.0\n", + " }\n", + " buckets {\n", + " low_rank: 214\n", + " high_rank: 214\n", + " label: \"297XX\"\n", + " sample_count: 90.0\n", + " }\n", + " buckets {\n", + " low_rank: 215\n", + " high_rank: 215\n", + " label: \"985XX\"\n", + " sample_count: 89.0\n", + " }\n", + " buckets {\n", + " low_rank: 216\n", + " high_rank: 216\n", + " label: \"973XX\"\n", + " sample_count: 89.0\n", + " }\n", + " buckets {\n", + " low_rank: 217\n", + " high_rank: 217\n", + " label: \"952XX\"\n", + " sample_count: 89.0\n", + " }\n", + " buckets {\n", + " low_rank: 218\n", + " high_rank: 218\n", + " label: \"707XX\"\n", + " sample_count: 89.0\n", + " }\n", + " buckets {\n", + " low_rank: 219\n", + " high_rank: 219\n", + " label: \"708XX\"\n", + " sample_count: 88.0\n", + " }\n", + " buckets {\n", + " low_rank: 220\n", + " high_rank: 220\n", + " label: \"460XX\"\n", + " sample_count: 88.0\n", + " }\n", + " buckets {\n", + " low_rank: 221\n", + " high_rank: 221\n", + " label: \"310XX\"\n", + " sample_count: 88.0\n", + " }\n", + " buckets {\n", + " low_rank: 222\n", + " high_rank: 222\n", + " label: \"436XX\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 223\n", + " high_rank: 223\n", + " label: \"236XX\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 224\n", + " high_rank: 224\n", + " label: \"189XX\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 225\n", + " high_rank: 225\n", + " label: \"087XX\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 226\n", + " high_rank: 226\n", + " label: \"019XX\"\n", + " sample_count: 87.0\n", + " }\n", + " buckets {\n", + " low_rank: 227\n", + " high_rank: 227\n", + " label: \"957XX\"\n", + " sample_count: 86.0\n", + " }\n", + " buckets {\n", + " low_rank: 228\n", + " high_rank: 228\n", + " label: \"910XX\"\n", + " sample_count: 86.0\n", + " }\n", + " buckets {\n", + " low_rank: 229\n", + " high_rank: 229\n", + " label: \"805XX\"\n", + " sample_count: 86.0\n", + " }\n", + " buckets {\n", + " low_rank: 230\n", + " high_rank: 230\n", + " label: \"633XX\"\n", + " sample_count: 86.0\n", + " }\n", + " buckets {\n", + " low_rank: 231\n", + " high_rank: 231\n", + " label: \"285XX\"\n", + " sample_count: 86.0\n", + " }\n", + " buckets {\n", + " low_rank: 232\n", + " high_rank: 232\n", + " label: \"934XX\"\n", + " sample_count: 85.0\n", + " }\n", + " buckets {\n", + " low_rank: 233\n", + " high_rank: 233\n", + " label: \"410XX\"\n", + " sample_count: 85.0\n", + " }\n", + " buckets {\n", + " low_rank: 234\n", + " high_rank: 234\n", + " label: \"023XX\"\n", + " sample_count: 85.0\n", + " }\n", + " buckets {\n", + " low_rank: 235\n", + " high_rank: 235\n", + " label: \"373XX\"\n", + " sample_count: 84.0\n", + " }\n", + " buckets {\n", + " low_rank: 236\n", + " high_rank: 236\n", + " label: \"198XX\"\n", + " sample_count: 83.0\n", + " }\n", + " buckets {\n", + " low_rank: 237\n", + " high_rank: 237\n", + " label: \"079XX\"\n", + " sample_count: 83.0\n", + " }\n", + " buckets {\n", + " low_rank: 238\n", + " high_rank: 238\n", + " label: \"442XX\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 239\n", + " high_rank: 239\n", + " label: \"350XX\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 240\n", + " high_rank: 240\n", + " label: \"085XX\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 241\n", + " high_rank: 241\n", + " label: \"071XX\"\n", + " sample_count: 82.0\n", + " }\n", + " buckets {\n", + " low_rank: 242\n", + " high_rank: 242\n", + " label: \"915XX\"\n", + " sample_count: 81.0\n", + " }\n", + " buckets {\n", + " low_rank: 243\n", + " high_rank: 243\n", + " label: \"120XX\"\n", + " sample_count: 81.0\n", + " }\n", + " buckets {\n", + " low_rank: 244\n", + " high_rank: 244\n", + " label: \"837XX\"\n", + " sample_count: 80.0\n", + " }\n", + " buckets {\n", + " low_rank: 245\n", + " high_rank: 245\n", + " label: \"293XX\"\n", + " sample_count: 80.0\n", + " }\n", + " buckets {\n", + " low_rank: 246\n", + " high_rank: 246\n", + " label: \"199XX\"\n", + " sample_count: 77.0\n", + " }\n", + " buckets {\n", + " low_rank: 247\n", + " high_rank: 247\n", + " label: \"895XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 248\n", + " high_rank: 248\n", + " label: \"662XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 249\n", + " high_rank: 249\n", + " label: \"550XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 250\n", + " high_rank: 250\n", + " label: \"495XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 251\n", + " high_rank: 251\n", + " label: \"431XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 252\n", + " high_rank: 252\n", + " label: \"278XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 253\n", + " high_rank: 253\n", + " label: \"063XX\"\n", + " sample_count: 76.0\n", + " }\n", + " buckets {\n", + " low_rank: 254\n", + " high_rank: 254\n", + " label: \"378XX\"\n", + " sample_count: 75.0\n", + " }\n", + " buckets {\n", + " low_rank: 255\n", + " high_rank: 255\n", + " label: \"851XX\"\n", + " sample_count: 74.0\n", + " }\n", + " buckets {\n", + " low_rank: 256\n", + " high_rank: 256\n", + " label: \"463XX\"\n", + " sample_count: 74.0\n", + " }\n", + " buckets {\n", + " low_rank: 257\n", + " high_rank: 257\n", + " label: \"386XX\"\n", + " sample_count: 74.0\n", + " }\n", + " buckets {\n", + " low_rank: 258\n", + " high_rank: 258\n", + " label: \"286XX\"\n", + " sample_count: 74.0\n", + " }\n", + " buckets {\n", + " low_rank: 259\n", + " high_rank: 259\n", + " label: \"323XX\"\n", + " sample_count: 73.0\n", + " }\n", + " buckets {\n", + " low_rank: 260\n", + " high_rank: 260\n", + " label: \"020XX\"\n", + " sample_count: 73.0\n", + " }\n", + " buckets {\n", + " low_rank: 261\n", + " high_rank: 261\n", + " label: \"856XX\"\n", + " sample_count: 72.0\n", + " }\n", + " buckets {\n", + " low_rank: 262\n", + " high_rank: 262\n", + " label: \"146XX\"\n", + " sample_count: 72.0\n", + " }\n", + " buckets {\n", + " low_rank: 263\n", + " high_rank: 263\n", + " label: \"968XX\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 264\n", + " high_rank: 264\n", + " label: \"704XX\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 265\n", + " high_rank: 265\n", + " label: \"660XX\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 266\n", + " high_rank: 266\n", + " label: \"140XX\"\n", + " sample_count: 70.0\n", + " }\n", + " buckets {\n", + " low_rank: 267\n", + " high_rank: 267\n", + " label: \"781XX\"\n", + " sample_count: 69.0\n", + " }\n", + " buckets {\n", + " low_rank: 268\n", + " high_rank: 268\n", + " label: \"711XX\"\n", + " sample_count: 69.0\n", + " }\n", + " buckets {\n", + " low_rank: 269\n", + " high_rank: 269\n", + " label: \"151XX\"\n", + " sample_count: 69.0\n", + " }\n", + " buckets {\n", + " low_rank: 270\n", + " high_rank: 270\n", + " label: \"015XX\"\n", + " sample_count: 69.0\n", + " }\n", + " buckets {\n", + " low_rank: 271\n", + " high_rank: 271\n", + " label: \"010XX\"\n", + " sample_count: 69.0\n", + " }\n", + " buckets {\n", + " low_rank: 272\n", + " high_rank: 272\n", + " label: \"894XX\"\n", + " sample_count: 68.0\n", + " }\n", + " buckets {\n", + " low_rank: 273\n", + " high_rank: 273\n", + " label: \"453XX\"\n", + " sample_count: 68.0\n", + " }\n", + " buckets {\n", + " low_rank: 274\n", + " high_rank: 274\n", + " label: \"741XX\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 275\n", + " high_rank: 275\n", + " label: \"290XX\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 276\n", + " high_rank: 276\n", + " label: \"235XX\"\n", + " sample_count: 67.0\n", + " }\n", + " buckets {\n", + " low_rank: 277\n", + " high_rank: 277\n", + " label: \"939XX\"\n", + " sample_count: 66.0\n", + " }\n", + " buckets {\n", + " low_rank: 278\n", + " high_rank: 278\n", + " label: \"231XX\"\n", + " sample_count: 66.0\n", + " }\n", + " buckets {\n", + " low_rank: 279\n", + " high_rank: 279\n", + " label: \"009XX\"\n", + " sample_count: 66.0\n", + " }\n", + " buckets {\n", + " low_rank: 280\n", + " high_rank: 280\n", + " label: \"740XX\"\n", + " sample_count: 65.0\n", + " }\n", + " buckets {\n", + " low_rank: 281\n", + " high_rank: 281\n", + " label: \"326XX\"\n", + " sample_count: 65.0\n", + " }\n", + " buckets {\n", + " low_rank: 282\n", + " high_rank: 282\n", + " label: \"947XX\"\n", + " sample_count: 64.0\n", + " }\n", + " buckets {\n", + " low_rank: 283\n", + " high_rank: 283\n", + " label: \"880XX\"\n", + " sample_count: 64.0\n", + " }\n", + " buckets {\n", + " low_rank: 284\n", + " high_rank: 284\n", + " label: \"233XX\"\n", + " sample_count: 64.0\n", + " }\n", + " buckets {\n", + " low_rank: 285\n", + " high_rank: 285\n", + " label: \"912XX\"\n", + " sample_count: 63.0\n", + " }\n", + " buckets {\n", + " low_rank: 286\n", + " high_rank: 286\n", + " label: \"067XX\"\n", + " sample_count: 63.0\n", + " }\n", + " buckets {\n", + " low_rank: 287\n", + " high_rank: 287\n", + " label: \"254XX\"\n", + " sample_count: 62.0\n", + " }\n", + " buckets {\n", + " low_rank: 288\n", + " high_rank: 288\n", + " label: \"911XX\"\n", + " sample_count: 61.0\n", + " }\n", + " buckets {\n", + " low_rank: 289\n", + " high_rank: 289\n", + " label: \"712XX\"\n", + " sample_count: 61.0\n", + " }\n", + " buckets {\n", + " low_rank: 290\n", + " high_rank: 290\n", + " label: \"461XX\"\n", + " sample_count: 61.0\n", + " }\n", + " buckets {\n", + " low_rank: 291\n", + " high_rank: 291\n", + " label: \"306XX\"\n", + " sample_count: 61.0\n", + " }\n", + " buckets {\n", + " low_rank: 292\n", + " high_rank: 292\n", + " label: \"230XX\"\n", + " sample_count: 61.0\n", + " }\n", + " buckets {\n", + " low_rank: 293\n", + " high_rank: 293\n", + " label: \"936XX\"\n", + " sample_count: 60.0\n", + " }\n", + " buckets {\n", + " low_rank: 294\n", + " high_rank: 294\n", + " label: \"173XX\"\n", + " sample_count: 60.0\n", + " }\n", + " buckets {\n", + " low_rank: 295\n", + " high_rank: 295\n", + " label: \"086XX\"\n", + " sample_count: 60.0\n", + " }\n", + " buckets {\n", + " low_rank: 296\n", + " high_rank: 296\n", + " label: \"082XX\"\n", + " sample_count: 60.0\n", + " }\n", + " buckets {\n", + " low_rank: 297\n", + " high_rank: 297\n", + " label: \"530XX\"\n", + " sample_count: 59.0\n", + " }\n", + " buckets {\n", + " low_rank: 298\n", + " high_rank: 298\n", + " label: \"361XX\"\n", + " sample_count: 59.0\n", + " }\n", + " buckets {\n", + " low_rank: 299\n", + " high_rank: 299\n", + " label: \"374XX\"\n", + " sample_count: 58.0\n", + " }\n", + " buckets {\n", + " low_rank: 300\n", + " high_rank: 300\n", + " label: \"772XX\"\n", + " sample_count: 57.0\n", + " }\n", + " buckets {\n", + " low_rank: 301\n", + " high_rank: 301\n", + " label: \"309XX\"\n", + " sample_count: 57.0\n", + " }\n", + " buckets {\n", + " low_rank: 302\n", + " high_rank: 302\n", + " label: \"492XX\"\n", + " sample_count: 56.0\n", + " }\n", + " buckets {\n", + " low_rank: 303\n", + " high_rank: 303\n", + " label: \"351XX\"\n", + " sample_count: 56.0\n", + " }\n", + " buckets {\n", + " low_rank: 304\n", + " high_rank: 304\n", + " label: \"238XX\"\n", + " sample_count: 56.0\n", + " }\n", + " buckets {\n", + " low_rank: 305\n", + " high_rank: 305\n", + " label: \"705XX\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 306\n", + " high_rank: 306\n", + " label: \"549XX\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 307\n", + " high_rank: 307\n", + " label: \"503XX\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 308\n", + " high_rank: 308\n", + " label: \"443XX\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 309\n", + " high_rank: 309\n", + " label: \"324XX\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 310\n", + " high_rank: 310\n", + " label: \"017XX\"\n", + " sample_count: 55.0\n", + " }\n", + " buckets {\n", + " low_rank: 311\n", + " high_rank: 311\n", + " label: \"806XX\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 312\n", + " high_rank: 312\n", + " label: \"484XX\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 313\n", + " high_rank: 313\n", + " label: \"392XX\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 314\n", + " high_rank: 314\n", + " label: \"150XX\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 315\n", + " high_rank: 315\n", + " label: \"040XX\"\n", + " sample_count: 54.0\n", + " }\n", + " buckets {\n", + " low_rank: 316\n", + " high_rank: 316\n", + " label: \"948XX\"\n", + " sample_count: 53.0\n", + " }\n", + " buckets {\n", + " low_rank: 317\n", + " high_rank: 317\n", + " label: \"121XX\"\n", + " sample_count: 53.0\n", + " }\n", + " buckets {\n", + " low_rank: 318\n", + " high_rank: 318\n", + " label: \"111XX\"\n", + " sample_count: 53.0\n", + " }\n", + " buckets {\n", + " low_rank: 319\n", + " high_rank: 319\n", + " label: \"072XX\"\n", + " sample_count: 53.0\n", + " }\n", + " buckets {\n", + " low_rank: 320\n", + " high_rank: 320\n", + " label: \"863XX\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 321\n", + " high_rank: 321\n", + " label: \"494XX\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 322\n", + " high_rank: 322\n", + " label: \"376XX\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 323\n", + " high_rank: 323\n", + " label: \"273XX\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 324\n", + " high_rank: 324\n", + " label: \"029XX\"\n", + " sample_count: 52.0\n", + " }\n", + " buckets {\n", + " low_rank: 325\n", + " high_rank: 325\n", + " label: \"971XX\"\n", + " sample_count: 51.0\n", + " }\n", + " buckets {\n", + " low_rank: 326\n", + " high_rank: 326\n", + " label: \"960XX\"\n", + " sample_count: 51.0\n", + " }\n", + " buckets {\n", + " low_rank: 327\n", + " high_rank: 327\n", + " label: \"488XX\"\n", + " sample_count: 51.0\n", + " }\n", + " buckets {\n", + " low_rank: 328\n", + " high_rank: 328\n", + " label: \"319XX\"\n", + " sample_count: 51.0\n", + " }\n", + " buckets {\n", + " low_rank: 329\n", + " high_rank: 329\n", + " label: \"291XX\"\n", + " sample_count: 51.0\n", + " }\n", + " buckets {\n", + " low_rank: 330\n", + " high_rank: 330\n", + " label: \"846XX\"\n", + " sample_count: 50.0\n", + " }\n", + " buckets {\n", + " low_rank: 331\n", + " high_rank: 331\n", + " label: \"804XX\"\n", + " sample_count: 50.0\n", + " }\n", + " buckets {\n", + " low_rank: 332\n", + " high_rank: 332\n", + " label: \"395XX\"\n", + " sample_count: 50.0\n", + " }\n", + " buckets {\n", + " low_rank: 333\n", + " high_rank: 333\n", + " label: \"975XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 334\n", + " high_rank: 334\n", + " label: \"780XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 335\n", + " high_rank: 335\n", + " label: \"722XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 336\n", + " high_rank: 336\n", + " label: \"535XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 337\n", + " high_rank: 337\n", + " label: \"465XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 338\n", + " high_rank: 338\n", + " label: \"444XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 339\n", + " high_rank: 339\n", + " label: \"240XX\"\n", + " sample_count: 49.0\n", + " }\n", + " buckets {\n", + " low_rank: 340\n", + " high_rank: 340\n", + " label: \"993XX\"\n", + " sample_count: 48.0\n", + " }\n", + " buckets {\n", + " low_rank: 341\n", + " high_rank: 341\n", + " label: \"471XX\"\n", + " sample_count: 48.0\n", + " }\n", + " buckets {\n", + " low_rank: 342\n", + " high_rank: 342\n", + " label: \"838XX\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 343\n", + " high_rank: 343\n", + " label: \"754XX\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 344\n", + " high_rank: 344\n", + " label: \"468XX\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 345\n", + " high_rank: 345\n", + " label: \"403XX\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 346\n", + " high_rank: 346\n", + " label: \"270XX\"\n", + " sample_count: 47.0\n", + " }\n", + " buckets {\n", + " low_rank: 347\n", + " high_rank: 347\n", + " label: \"992XX\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 348\n", + " high_rank: 348\n", + " label: \"685XX\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 349\n", + " high_rank: 349\n", + " label: \"317XX\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 350\n", + " high_rank: 350\n", + " label: \"083XX\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 351\n", + " high_rank: 351\n", + " label: \"065XX\"\n", + " sample_count: 46.0\n", + " }\n", + " buckets {\n", + " low_rank: 352\n", + " high_rank: 352\n", + " label: \"446XX\"\n", + " sample_count: 45.0\n", + " }\n", + " buckets {\n", + " low_rank: 353\n", + " high_rank: 353\n", + " label: \"366XX\"\n", + " sample_count: 45.0\n", + " }\n", + " buckets {\n", + " low_rank: 354\n", + " high_rank: 354\n", + " label: \"277XX\"\n", + " sample_count: 45.0\n", + " }\n", + " buckets {\n", + " low_rank: 355\n", + " high_rank: 355\n", + " label: \"066XX\"\n", + " sample_count: 45.0\n", + " }\n", + " buckets {\n", + " low_rank: 356\n", + " high_rank: 356\n", + " label: \"038XX\"\n", + " sample_count: 45.0\n", + " }\n", + " buckets {\n", + " low_rank: 357\n", + " high_rank: 357\n", + " label: \"537XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 358\n", + " high_rank: 358\n", + " label: \"394XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 359\n", + " high_rank: 359\n", + " label: \"315XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 360\n", + " high_rank: 360\n", + " label: \"313XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 361\n", + " high_rank: 361\n", + " label: \"226XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 362\n", + " high_rank: 362\n", + " label: \"225XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 363\n", + " high_rank: 363\n", + " label: \"156XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 364\n", + " high_rank: 364\n", + " label: \"134XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 365\n", + " high_rank: 365\n", + " label: \"061XX\"\n", + " sample_count: 44.0\n", + " }\n", + " buckets {\n", + " low_rank: 366\n", + " high_rank: 366\n", + " label: \"245XX\"\n", + " sample_count: 43.0\n", + " }\n", + " buckets {\n", + " low_rank: 367\n", + " high_rank: 367\n", + " label: \"183XX\"\n", + " sample_count: 43.0\n", + " }\n", + " buckets {\n", + " low_rank: 368\n", + " high_rank: 368\n", + " label: \"721XX\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 369\n", + " high_rank: 369\n", + " label: \"365XX\"\n", + " sample_count: 42.0\n", + " }\n", + " buckets {\n", + " low_rank: 370\n", + " high_rank: 370\n", + " label: \"486XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 371\n", + " high_rank: 371\n", + " label: \"451XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 372\n", + " high_rank: 372\n", + " label: \"445XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 373\n", + " high_rank: 373\n", + " label: \"368XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 374\n", + " high_rank: 374\n", + " label: \"308XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 375\n", + " high_rank: 375\n", + " label: \"110XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 376\n", + " high_rank: 376\n", + " label: \"107XX\"\n", + " sample_count: 41.0\n", + " }\n", + " buckets {\n", + " low_rank: 377\n", + " high_rank: 377\n", + " label: \"903XX\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 378\n", + " high_rank: 378\n", + " label: \"864XX\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 379\n", + " high_rank: 379\n", + " label: \"672XX\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 380\n", + " high_rank: 380\n", + " label: \"299XX\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 381\n", + " high_rank: 381\n", + " label: \"174XX\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 382\n", + " high_rank: 382\n", + " label: \"014XX\"\n", + " sample_count: 40.0\n", + " }\n", + " buckets {\n", + " low_rank: 383\n", + " high_rank: 383\n", + " label: \"944XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 384\n", + " high_rank: 384\n", + " label: \"763XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 385\n", + " high_rank: 385\n", + " label: \"735XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 386\n", + " high_rank: 386\n", + " label: \"720XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 387\n", + " high_rank: 387\n", + " label: \"620XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 388\n", + " high_rank: 388\n", + " label: \"405XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 389\n", + " high_rank: 389\n", + " label: \"229XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 390\n", + " high_rank: 390\n", + " label: \"026XX\"\n", + " sample_count: 39.0\n", + " }\n", + " buckets {\n", + " low_rank: 391\n", + " high_rank: 391\n", + " label: \"995XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 392\n", + " high_rank: 392\n", + " label: \"307XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 393\n", + " high_rank: 393\n", + " label: \"216XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 394\n", + " high_rank: 394\n", + " label: \"171XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 395\n", + " high_rank: 395\n", + " label: \"141XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 396\n", + " high_rank: 396\n", + " label: \"139XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 397\n", + " high_rank: 397\n", + " label: \"130XX\"\n", + " sample_count: 38.0\n", + " }\n", + " buckets {\n", + " low_rank: 398\n", + " high_rank: 398\n", + " label: \"904XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 399\n", + " high_rank: 399\n", + " label: \"757XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 400\n", + " high_rank: 400\n", + " label: \"727XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 401\n", + " high_rank: 401\n", + " label: \"598XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 402\n", + " high_rank: 402\n", + " label: \"356XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 403\n", + " high_rank: 403\n", + " label: \"145XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 404\n", + " high_rank: 404\n", + " label: \"081XX\"\n", + " sample_count: 37.0\n", + " }\n", + " buckets {\n", + " low_rank: 405\n", + " high_rank: 405\n", + " label: \"776XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 406\n", + " high_rank: 406\n", + " label: \"756XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 407\n", + " high_rank: 407\n", + " label: \"617XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 408\n", + " high_rank: 408\n", + " label: \"435XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 409\n", + " high_rank: 409\n", + " label: \"400XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 410\n", + " high_rank: 410\n", + " label: \"360XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 411\n", + " high_rank: 411\n", + " label: \"054XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 412\n", + " high_rank: 412\n", + " label: \"007XX\"\n", + " sample_count: 36.0\n", + " }\n", + " buckets {\n", + " low_rank: 413\n", + " high_rank: 413\n", + " label: \"924XX\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 414\n", + " high_rank: 414\n", + " label: \"175XX\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 415\n", + " high_rank: 415\n", + " label: \"119XX\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 416\n", + " high_rank: 416\n", + " label: \"044XX\"\n", + " sample_count: 35.0\n", + " }\n", + " buckets {\n", + " low_rank: 417\n", + " high_rank: 417\n", + " label: \"961XX\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 418\n", + " high_rank: 418\n", + " label: \"543XX\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 419\n", + " high_rank: 419\n", + " label: \"357XX\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 420\n", + " high_rank: 420\n", + " label: \"172XX\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 421\n", + " high_rank: 421\n", + " label: \"144XX\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 422\n", + " high_rank: 422\n", + " label: \"069XX\"\n", + " sample_count: 34.0\n", + " }\n", + " buckets {\n", + " low_rank: 423\n", + " high_rank: 423\n", + " label: \"931XX\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 424\n", + " high_rank: 424\n", + " label: \"377XX\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 425\n", + " high_rank: 425\n", + " label: \"288XX\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 426\n", + " high_rank: 426\n", + " label: \"279XX\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 427\n", + " high_rank: 427\n", + " label: \"186XX\"\n", + " sample_count: 33.0\n", + " }\n", + " buckets {\n", + " low_rank: 428\n", + " high_rank: 428\n", + " label: \"784XX\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 429\n", + " high_rank: 429\n", + " label: \"489XX\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 430\n", + " high_rank: 430\n", + " label: \"265XX\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 431\n", + " high_rank: 431\n", + " label: \"124XX\"\n", + " sample_count: 32.0\n", + " }\n", + " buckets {\n", + " low_rank: 432\n", + " high_rank: 432\n", + " label: \"977XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 433\n", + " high_rank: 433\n", + " label: \"610XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 434\n", + " high_rank: 434\n", + " label: \"559XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 435\n", + " high_rank: 435\n", + " label: \"485XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 436\n", + " high_rank: 436\n", + " label: \"456XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 437\n", + " high_rank: 437\n", + " label: \"383XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 438\n", + " high_rank: 438\n", + " label: \"312XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 439\n", + " high_rank: 439\n", + " label: \"011XX\"\n", + " sample_count: 31.0\n", + " }\n", + " buckets {\n", + " low_rank: 440\n", + " high_rank: 440\n", + " label: \"794XX\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 441\n", + " high_rank: 441\n", + " label: \"500XX\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 442\n", + " high_rank: 442\n", + " label: \"479XX\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 443\n", + " high_rank: 443\n", + " label: \"195XX\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 444\n", + " high_rank: 444\n", + " label: \"122XX\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 445\n", + " high_rank: 445\n", + " label: \"016XX\"\n", + " sample_count: 30.0\n", + " }\n", + " buckets {\n", + " low_rank: 446\n", + " high_rank: 446\n", + " label: \"990XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 447\n", + " high_rank: 447\n", + " label: \"943XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 448\n", + " high_rank: 448\n", + " label: \"882XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 449\n", + " high_rank: 449\n", + " label: \"870XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 450\n", + " high_rank: 450\n", + " label: \"571XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 451\n", + " high_rank: 451\n", + " label: \"391XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 452\n", + " high_rank: 452\n", + " label: \"219XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 453\n", + " high_rank: 453\n", + " label: \"116XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 454\n", + " high_rank: 454\n", + " label: \"106XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 455\n", + " high_rank: 455\n", + " label: \"101XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 456\n", + " high_rank: 456\n", + " label: \"062XX\"\n", + " sample_count: 29.0\n", + " }\n", + " buckets {\n", + " low_rank: 457\n", + " high_rank: 457\n", + " label: \"803XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 458\n", + " high_rank: 458\n", + " label: \"680XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 459\n", + " high_rank: 459\n", + " label: \"666XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 460\n", + " high_rank: 460\n", + " label: \"541XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 461\n", + " high_rank: 461\n", + " label: \"474XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 462\n", + " high_rank: 462\n", + " label: \"354XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 463\n", + " high_rank: 463\n", + " label: \"316XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 464\n", + " high_rank: 464\n", + " label: \"179XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 465\n", + " high_rank: 465\n", + " label: \"042XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 466\n", + " high_rank: 466\n", + " label: \"031XX\"\n", + " sample_count: 28.0\n", + " }\n", + " buckets {\n", + " low_rank: 467\n", + " high_rank: 467\n", + " label: \"602XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 468\n", + " high_rank: 468\n", + " label: \"563XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 469\n", + " high_rank: 469\n", + " label: \"469XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 470\n", + " high_rank: 470\n", + " label: \"362XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 471\n", + " high_rank: 471\n", + " label: \"358XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 472\n", + " high_rank: 472\n", + " label: \"298XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 473\n", + " high_rank: 473\n", + " label: \"155XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 474\n", + " high_rank: 474\n", + " label: \"123XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 475\n", + " high_rank: 475\n", + " label: \"041XX\"\n", + " sample_count: 27.0\n", + " }\n", + " buckets {\n", + " low_rank: 476\n", + " high_rank: 476\n", + " label: \"989XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 477\n", + " high_rank: 477\n", + " label: \"833XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 478\n", + " high_rank: 478\n", + " label: \"703XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 479\n", + " high_rank: 479\n", + " label: \"656XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 480\n", + " high_rank: 480\n", + " label: \"648XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 481\n", + " high_rank: 481\n", + " label: \"546XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 482\n", + " high_rank: 482\n", + " label: \"515XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 483\n", + " high_rank: 483\n", + " label: \"421XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 484\n", + " high_rank: 484\n", + " label: \"244XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 485\n", + " high_rank: 485\n", + " label: \"196XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 486\n", + " high_rank: 486\n", + " label: \"176XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 487\n", + " high_rank: 487\n", + " label: \"032XX\"\n", + " sample_count: 26.0\n", + " }\n", + " buckets {\n", + " low_rank: 488\n", + " high_rank: 488\n", + " label: \"797XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 489\n", + " high_rank: 489\n", + " label: \"657XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 490\n", + " high_rank: 490\n", + " label: \"608XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 491\n", + " high_rank: 491\n", + " label: \"496XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 492\n", + " high_rank: 492\n", + " label: \"458XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 493\n", + " high_rank: 493\n", + " label: \"457XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 494\n", + " high_rank: 494\n", + " label: \"404XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 495\n", + " high_rank: 495\n", + " label: \"390XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 496\n", + " high_rank: 496\n", + " label: \"188XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 497\n", + " high_rank: 497\n", + " label: \"185XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 498\n", + " high_rank: 498\n", + " label: \"182XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 499\n", + " high_rank: 499\n", + " label: \"168XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 500\n", + " high_rank: 500\n", + " label: \"133XX\"\n", + " sample_count: 25.0\n", + " }\n", + " buckets {\n", + " low_rank: 501\n", + " high_rank: 501\n", + " label: \"810XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 502\n", + " high_rank: 502\n", + " label: \"767XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 503\n", + " high_rank: 503\n", + " label: \"618XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 504\n", + " high_rank: 504\n", + " label: \"502XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 505\n", + " high_rank: 505\n", + " label: \"493XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 506\n", + " high_rank: 506\n", + " label: \"363XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 507\n", + " high_rank: 507\n", + " label: \"359XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 508\n", + " high_rank: 508\n", + " label: \"242XX\"\n", + " sample_count: 24.0\n", + " }\n", + " buckets {\n", + " low_rank: 509\n", + " high_rank: 509\n", + " label: \"955XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 510\n", + " high_rank: 510\n", + " label: \"860XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 511\n", + " high_rank: 511\n", + " label: \"778XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 512\n", + " high_rank: 512\n", + " label: \"758XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 513\n", + " high_rank: 513\n", + " label: \"723XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 514\n", + " high_rank: 514\n", + " label: \"658XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 515\n", + " high_rank: 515\n", + " label: \"652XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 516\n", + " high_rank: 516\n", + " label: \"616XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 517\n", + " high_rank: 517\n", + " label: \"565XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 518\n", + " high_rank: 518\n", + " label: \"477XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 519\n", + " high_rank: 519\n", + " label: \"448XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 520\n", + " high_rank: 520\n", + " label: \"304XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 521\n", + " high_rank: 521\n", + " label: \"166XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 522\n", + " high_rank: 522\n", + " label: \"160XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 523\n", + " high_rank: 523\n", + " label: \"132XX\"\n", + " sample_count: 23.0\n", + " }\n", + " buckets {\n", + " low_rank: 524\n", + " high_rank: 524\n", + " label: \"847XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 525\n", + " high_rank: 525\n", + " label: \"808XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 526\n", + " high_rank: 526\n", + " label: \"791XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 527\n", + " high_rank: 527\n", + " label: \"558XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 528\n", + " high_rank: 528\n", + " label: \"447XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 529\n", + " high_rank: 529\n", + " label: \"184XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 530\n", + " high_rank: 530\n", + " label: \"046XX\"\n", + " sample_count: 22.0\n", + " }\n", + " buckets {\n", + " low_rank: 531\n", + " high_rank: 531\n", + " label: \"905XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 532\n", + " high_rank: 532\n", + " label: \"844XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 533\n", + " high_rank: 533\n", + " label: \"627XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 534\n", + " high_rank: 534\n", + " label: \"497XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 535\n", + " high_rank: 535\n", + " label: \"467XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 536\n", + " high_rank: 536\n", + " label: \"466XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 537\n", + " high_rank: 537\n", + " label: \"464XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 538\n", + " high_rank: 538\n", + " label: \"388XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 539\n", + " high_rank: 539\n", + " label: \"257XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 540\n", + " high_rank: 540\n", + " label: \"181XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 541\n", + " high_rank: 541\n", + " label: \"128XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 542\n", + " high_rank: 542\n", + " label: \"033XX\"\n", + " sample_count: 21.0\n", + " }\n", + " buckets {\n", + " low_rank: 543\n", + " high_rank: 543\n", + " label: \"759XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 544\n", + " high_rank: 544\n", + " label: \"603XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 545\n", + " high_rank: 545\n", + " label: \"585XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 546\n", + " high_rank: 546\n", + " label: \"577XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 547\n", + " high_rank: 547\n", + " label: \"544XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 548\n", + " high_rank: 548\n", + " label: \"384XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 549\n", + " high_rank: 549\n", + " label: \"241XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 550\n", + " high_rank: 550\n", + " label: \"153XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 551\n", + " high_rank: 551\n", + " label: \"148XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 552\n", + " high_rank: 552\n", + " label: \"129XX\"\n", + " sample_count: 20.0\n", + " }\n", + " buckets {\n", + " low_rank: 553\n", + " high_rank: 553\n", + " label: \"816XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 554\n", + " high_rank: 554\n", + " label: \"713XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 555\n", + " high_rank: 555\n", + " label: \"607XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 556\n", + " high_rank: 556\n", + " label: \"597XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 557\n", + " high_rank: 557\n", + " label: \"547XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 558\n", + " high_rank: 558\n", + " label: \"523XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 559\n", + " high_rank: 559\n", + " label: \"237XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 560\n", + " high_rank: 560\n", + " label: \"218XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 561\n", + " high_rank: 561\n", + " label: \"137XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 562\n", + " high_rank: 562\n", + " label: \"075XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 563\n", + " high_rank: 563\n", + " label: \"034XX\"\n", + " sample_count: 19.0\n", + " }\n", + " buckets {\n", + " low_rank: 564\n", + " high_rank: 564\n", + " label: \"820XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 565\n", + " high_rank: 565\n", + " label: \"766XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 566\n", + " high_rank: 566\n", + " label: \"706XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 567\n", + " high_rank: 567\n", + " label: \"661XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 568\n", + " high_rank: 568\n", + " label: \"611XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 569\n", + " high_rank: 569\n", + " label: \"449XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 570\n", + " high_rank: 570\n", + " label: \"253XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 571\n", + " high_rank: 571\n", + " label: \"161XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 572\n", + " high_rank: 572\n", + " label: \"138XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 573\n", + " high_rank: 573\n", + " label: \"006XX\"\n", + " sample_count: 18.0\n", + " }\n", + " buckets {\n", + " low_rank: 574\n", + " high_rank: 574\n", + " label: \"996XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 575\n", + " high_rank: 575\n", + " label: \"599XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 576\n", + " high_rank: 576\n", + " label: \"539XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 577\n", + " high_rank: 577\n", + " label: \"527XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 578\n", + " high_rank: 578\n", + " label: \"423XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 579\n", + " high_rank: 579\n", + " label: \"401XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 580\n", + " high_rank: 580\n", + " label: \"393XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 581\n", + " high_rank: 581\n", + " label: \"178XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 582\n", + " high_rank: 582\n", + " label: \"025XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 583\n", + " high_rank: 583\n", + " label: \"013XX\"\n", + " sample_count: 17.0\n", + " }\n", + " buckets {\n", + " low_rank: 584\n", + " high_rank: 584\n", + " label: \"991XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 585\n", + " high_rank: 585\n", + " label: \"815XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 586\n", + " high_rank: 586\n", + " label: \"777XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 587\n", + " high_rank: 587\n", + " label: \"719XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 588\n", + " high_rank: 588\n", + " label: \"626XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 589\n", + " high_rank: 589\n", + " label: \"615XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 590\n", + " high_rank: 590\n", + " label: \"612XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 591\n", + " high_rank: 591\n", + " label: \"591XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 592\n", + " high_rank: 592\n", + " label: \"540XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 593\n", + " high_rank: 593\n", + " label: \"439XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 594\n", + " high_rank: 594\n", + " label: \"398XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 595\n", + " high_rank: 595\n", + " label: \"187XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 596\n", + " high_rank: 596\n", + " label: \"008XX\"\n", + " sample_count: 16.0\n", + " }\n", + " buckets {\n", + " low_rank: 597\n", + " high_rank: 597\n", + " label: \"729XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 598\n", + " high_rank: 598\n", + " label: \"625XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 599\n", + " high_rank: 599\n", + " label: \"614XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 600\n", + " high_rank: 600\n", + " label: \"525XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 601\n", + " high_rank: 601\n", + " label: \"498XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 602\n", + " high_rank: 602\n", + " label: \"434XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 603\n", + " high_rank: 603\n", + " label: \"147XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 604\n", + " high_rank: 604\n", + " label: \"108XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 605\n", + " high_rank: 605\n", + " label: \"049XX\"\n", + " sample_count: 15.0\n", + " }\n", + " buckets {\n", + " low_rank: 606\n", + " high_rank: 606\n", + " label: \"843XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 607\n", + " high_rank: 607\n", + " label: \"834XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 608\n", + " high_rank: 608\n", + " label: \"783XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 609\n", + " high_rank: 609\n", + " label: \"748XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 610\n", + " high_rank: 610\n", + " label: \"744XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 611\n", + " high_rank: 611\n", + " label: \"570XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 612\n", + " high_rank: 612\n", + " label: \"560XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 613\n", + " high_rank: 613\n", + " label: \"534XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 614\n", + " high_rank: 614\n", + " label: \"506XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 615\n", + " high_rank: 615\n", + " label: \"491XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 616\n", + " high_rank: 616\n", + " label: \"473XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 617\n", + " high_rank: 617\n", + " label: \"437XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 618\n", + " high_rank: 618\n", + " label: \"228XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 619\n", + " high_rank: 619\n", + " label: \"214XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 620\n", + " high_rank: 620\n", + " label: \"164XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 621\n", + " high_rank: 621\n", + " label: \"118XX\"\n", + " sample_count: 14.0\n", + " }\n", + " buckets {\n", + " low_rank: 622\n", + " high_rank: 622\n", + " label: \"978XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 623\n", + " high_rank: 623\n", + " label: \"969XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 624\n", + " high_rank: 624\n", + " label: \"796XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 625\n", + " high_rank: 625\n", + " label: \"710XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 626\n", + " high_rank: 626\n", + " label: \"664XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 627\n", + " high_rank: 627\n", + " label: \"427XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 628\n", + " high_rank: 628\n", + " label: \"422XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 629\n", + " high_rank: 629\n", + " label: \"227XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 630\n", + " high_rank: 630\n", + " label: \"177XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 631\n", + " high_rank: 631\n", + " label: \"089XX\"\n", + " sample_count: 13.0\n", + " }\n", + " buckets {\n", + " low_rank: 632\n", + " high_rank: 632\n", + " label: \"988XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 633\n", + " high_rank: 633\n", + " label: \"976XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 634\n", + " high_rank: 634\n", + " label: \"859XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 635\n", + " high_rank: 635\n", + " label: \"779XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 636\n", + " high_rank: 636\n", + " label: \"769XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 637\n", + " high_rank: 637\n", + " label: \"755XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 638\n", + " high_rank: 638\n", + " label: \"716XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 639\n", + " high_rank: 639\n", + " label: \"675XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 640\n", + " high_rank: 640\n", + " label: \"647XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 641\n", + " high_rank: 641\n", + " label: \"628XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 642\n", + " high_rank: 642\n", + " label: \"587XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 643\n", + " high_rank: 643\n", + " label: \"581XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 644\n", + " high_rank: 644\n", + " label: \"575XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 645\n", + " high_rank: 645\n", + " label: \"528XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 646\n", + " high_rank: 646\n", + " label: \"487XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 647\n", + " high_rank: 647\n", + " label: \"411XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 648\n", + " high_rank: 648\n", + " label: \"239XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 649\n", + " high_rank: 649\n", + " label: \"165XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 650\n", + " high_rank: 650\n", + " label: \"136XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 651\n", + " high_rank: 651\n", + " label: \"127XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 652\n", + " high_rank: 652\n", + " label: \"091XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 653\n", + " high_rank: 653\n", + " label: \"090XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 654\n", + " high_rank: 654\n", + " label: \"035XX\"\n", + " sample_count: 12.0\n", + " }\n", + " buckets {\n", + " low_rank: 655\n", + " high_rank: 655\n", + " label: \"768XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 656\n", + " high_rank: 656\n", + " label: \"764XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 657\n", + " high_rank: 657\n", + " label: \"637XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 658\n", + " high_rank: 658\n", + " label: \"629XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 659\n", + " high_rank: 659\n", + " label: \"548XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 660\n", + " high_rank: 660\n", + " label: \"538XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 661\n", + " high_rank: 661\n", + " label: \"524XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 662\n", + " high_rank: 662\n", + " label: \"478XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 663\n", + " high_rank: 663\n", + " label: \"475XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 664\n", + " high_rank: 664\n", + " label: \"472XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 665\n", + " high_rank: 665\n", + " label: \"364XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 666\n", + " high_rank: 666\n", + " label: \"355XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 667\n", + " high_rank: 667\n", + " label: \"243XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 668\n", + " high_rank: 668\n", + " label: \"215XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 669\n", + " high_rank: 669\n", + " label: \"154XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 670\n", + " high_rank: 670\n", + " label: \"057XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 671\n", + " high_rank: 671\n", + " label: \"056XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 672\n", + " high_rank: 672\n", + " label: \"050XX\"\n", + " sample_count: 11.0\n", + " }\n", + " buckets {\n", + " low_rank: 673\n", + " high_rank: 673\n", + " label: \"963XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 674\n", + " high_rank: 674\n", + " label: \"962XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 675\n", + " high_rank: 675\n", + " label: \"790XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 676\n", + " high_rank: 676\n", + " label: \"714XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 677\n", + " high_rank: 677\n", + " label: \"667XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 678\n", + " high_rank: 678\n", + " label: \"636XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 679\n", + " high_rank: 679\n", + " label: \"609XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 680\n", + " high_rank: 680\n", + " label: \"522XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 681\n", + " high_rank: 681\n", + " label: \"501XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 682\n", + " high_rank: 682\n", + " label: \"470XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 683\n", + " high_rank: 683\n", + " label: \"455XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 684\n", + " high_rank: 684\n", + " label: \"424XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 685\n", + " high_rank: 685\n", + " label: \"311XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 686\n", + " high_rank: 686\n", + " label: \"158XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 687\n", + " high_rank: 687\n", + " label: \"126XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 688\n", + " high_rank: 688\n", + " label: \"053XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 689\n", + " high_rank: 689\n", + " label: \"039XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 690\n", + " high_rank: 690\n", + " label: \"012XX\"\n", + " sample_count: 10.0\n", + " }\n", + " buckets {\n", + " low_rank: 691\n", + " high_rank: 691\n", + " label: \"855XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 692\n", + " high_rank: 692\n", + " label: \"832XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 693\n", + " high_rank: 693\n", + " label: \"813XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 694\n", + " high_rank: 694\n", + " label: \"807XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 695\n", + " high_rank: 695\n", + " label: \"743XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 696\n", + " high_rank: 696\n", + " label: \"726XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 697\n", + " high_rank: 697\n", + " label: \"724XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 698\n", + " high_rank: 698\n", + " label: \"545XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 699\n", + " high_rank: 699\n", + " label: \"433XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 700\n", + " high_rank: 700\n", + " label: \"420XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 701\n", + " high_rank: 701\n", + " label: \"396XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 702\n", + " high_rank: 702\n", + " label: \"389XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 703\n", + " high_rank: 703\n", + " label: \"382XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 704\n", + " high_rank: 704\n", + " label: \"318XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 705\n", + " high_rank: 705\n", + " label: \"255XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 706\n", + " high_rank: 706\n", + " label: \"159XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 707\n", + " high_rank: 707\n", + " label: \"037XX\"\n", + " sample_count: 9.0\n", + " }\n", + " buckets {\n", + " low_rank: 708\n", + " high_rank: 708\n", + " label: \"897XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 709\n", + " high_rank: 709\n", + " label: \"826XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 710\n", + " high_rank: 710\n", + " label: \"811XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 711\n", + " high_rank: 711\n", + " label: \"789XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 712\n", + " high_rank: 712\n", + " label: \"749XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 713\n", + " high_rank: 713\n", + " label: \"688XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 714\n", + " high_rank: 714\n", + " label: \"651XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 715\n", + " high_rank: 715\n", + " label: \"650XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 716\n", + " high_rank: 716\n", + " label: \"645XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 717\n", + " high_rank: 717\n", + " label: \"624XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 718\n", + " high_rank: 718\n", + " label: \"596XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 719\n", + " high_rank: 719\n", + " label: \"564XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 720\n", + " high_rank: 720\n", + " label: \"520XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 721\n", + " high_rank: 721\n", + " label: \"409XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 722\n", + " high_rank: 722\n", + " label: \"407XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 723\n", + " high_rank: 723\n", + " label: \"332XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 724\n", + " high_rank: 724\n", + " label: \"260XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 725\n", + " high_rank: 725\n", + " label: \"247XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 726\n", + " high_rank: 726\n", + " label: \"135XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 727\n", + " high_rank: 727\n", + " label: \"131XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 728\n", + " high_rank: 728\n", + " label: \"048XX\"\n", + " sample_count: 8.0\n", + " }\n", + " buckets {\n", + " low_rank: 729\n", + " high_rank: 729\n", + " label: \"883XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 730\n", + " high_rank: 730\n", + " label: \"874XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 731\n", + " high_rank: 731\n", + " label: \"835XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 732\n", + " high_rank: 732\n", + " label: \"830XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 733\n", + " high_rank: 733\n", + " label: \"824XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 734\n", + " high_rank: 734\n", + " label: \"814XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 735\n", + " high_rank: 735\n", + " label: \"746XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 736\n", + " high_rank: 736\n", + " label: \"736XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 737\n", + " high_rank: 737\n", + " label: \"671XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 738\n", + " high_rank: 738\n", + " label: \"670XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 739\n", + " high_rank: 739\n", + " label: \"665XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 740\n", + " high_rank: 740\n", + " label: \"655XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 741\n", + " high_rank: 741\n", + " label: \"653XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 742\n", + " high_rank: 742\n", + " label: \"594XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 743\n", + " high_rank: 743\n", + " label: \"397XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 744\n", + " high_rank: 744\n", + " label: \"385XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 745\n", + " high_rank: 745\n", + " label: \"367XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 746\n", + " high_rank: 746\n", + " label: \"259XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 747\n", + " high_rank: 747\n", + " label: \"163XX\"\n", + " sample_count: 7.0\n", + " }\n", + " buckets {\n", + " low_rank: 748\n", + " high_rank: 748\n", + " label: \"918XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 749\n", + " high_rank: 749\n", + " label: \"898XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 750\n", + " high_rank: 750\n", + " label: \"812XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 751\n", + " high_rank: 751\n", + " label: \"788XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 752\n", + " high_rank: 752\n", + " label: \"745XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 753\n", + " high_rank: 753\n", + " label: \"691XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 754\n", + " high_rank: 754\n", + " label: \"644XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 755\n", + " high_rank: 755\n", + " label: \"638XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 756\n", + " high_rank: 756\n", + " label: \"623XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 757\n", + " high_rank: 757\n", + " label: \"573XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 758\n", + " high_rank: 758\n", + " label: \"511XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 759\n", + " high_rank: 759\n", + " label: \"476XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 760\n", + " high_rank: 760\n", + " label: \"438XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 761\n", + " high_rank: 761\n", + " label: \"387XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 762\n", + " high_rank: 762\n", + " label: \"250XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 763\n", + " high_rank: 763\n", + " label: \"246XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 764\n", + " high_rank: 764\n", + " label: \"167XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 765\n", + " high_rank: 765\n", + " label: \"157XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 766\n", + " high_rank: 766\n", + " label: \"149XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 767\n", + " high_rank: 767\n", + " label: \"051XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 768\n", + " high_rank: 768\n", + " label: \"047XX\"\n", + " sample_count: 6.0\n", + " }\n", + " buckets {\n", + " low_rank: 769\n", + " high_rank: 769\n", + " label: \"877XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 770\n", + " high_rank: 770\n", + " label: \"829XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 771\n", + " high_rank: 771\n", + " label: \"828XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 772\n", + " high_rank: 772\n", + " label: \"827XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 773\n", + " high_rank: 773\n", + " label: \"798XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 774\n", + " high_rank: 774\n", + " label: \"793XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 775\n", + " high_rank: 775\n", + " label: \"753XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 776\n", + " high_rank: 776\n", + " label: \"728XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 777\n", + " high_rank: 777\n", + " label: \"717XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 778\n", + " high_rank: 778\n", + " label: \"693XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 779\n", + " high_rank: 779\n", + " label: \"683XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 780\n", + " high_rank: 780\n", + " label: \"654XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 781\n", + " high_rank: 781\n", + " label: \"562XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 782\n", + " high_rank: 782\n", + " label: \"557XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 783\n", + " high_rank: 783\n", + " label: \"542XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 784\n", + " high_rank: 784\n", + " label: \"415XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 785\n", + " high_rank: 785\n", + " label: \"408XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 786\n", + " high_rank: 786\n", + " label: \"263XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 787\n", + " high_rank: 787\n", + " label: \"262XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 788\n", + " high_rank: 788\n", + " label: \"261XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 789\n", + " high_rank: 789\n", + " label: \"143XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 790\n", + " high_rank: 790\n", + " label: \"058XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 791\n", + " high_rank: 791\n", + " label: \"045XX\"\n", + " sample_count: 5.0\n", + " }\n", + " buckets {\n", + " low_rank: 792\n", + " high_rank: 792\n", + " label: \"998XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 793\n", + " high_rank: 793\n", + " label: \"997XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 794\n", + " high_rank: 794\n", + " label: \"865XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 795\n", + " high_rank: 795\n", + " label: \"831XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 796\n", + " high_rank: 796\n", + " label: \"734XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 797\n", + " high_rank: 797\n", + " label: \"690XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 798\n", + " high_rank: 798\n", + " label: \"689XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 799\n", + " high_rank: 799\n", + " label: \"678XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 800\n", + " high_rank: 800\n", + " label: \"676XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 801\n", + " high_rank: 801\n", + " label: \"673XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 802\n", + " high_rank: 802\n", + " label: \"668XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 803\n", + " high_rank: 803\n", + " label: \"646XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 804\n", + " high_rank: 804\n", + " label: \"639XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 805\n", + " high_rank: 805\n", + " label: \"619XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 806\n", + " high_rank: 806\n", + " label: \"593XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 807\n", + " high_rank: 807\n", + " label: \"588XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 808\n", + " high_rank: 808\n", + " label: \"582XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 809\n", + " high_rank: 809\n", + " label: \"580XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 810\n", + " high_rank: 810\n", + " label: \"574XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 811\n", + " high_rank: 811\n", + " label: \"566XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 812\n", + " high_rank: 812\n", + " label: \"526XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 813\n", + " high_rank: 813\n", + " label: \"514XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 814\n", + " high_rank: 814\n", + " label: \"505XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 815\n", + " high_rank: 815\n", + " label: \"425XX\"\n", + " sample_count: 4.0\n", + " }\n", + " buckets {\n", + " low_rank: 816\n", + " high_rank: 816\n", " label: \"406XX\"\n", " sample_count: 4.0\n", " }\n", @@ -951,7 +20561,7 @@ " }\n", " tot_num_values: 66799\n", " }\n", - " mean: 0.23316217308642345\n", + " mean: 0.2331621730864234\n", " std_dev: 0.42284462173242804\n", " num_zeros: 51224\n", " max: 1.0\n", @@ -1052,79 +20662,75 @@ "}" ] }, - "metadata": { - "tags": [] - }, - "execution_count": 2 + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" } + ], + "source": [ + "stats" ] }, { "cell_type": "code", + "execution_count": 4, "metadata": { - "id": "35XhEkl4dEtH", - "colab_type": "code", "colab": {}, + "colab_type": "code", + "id": "35XhEkl4dEtH", "outputId": "df27ff4c-1de0-4a59-9d25-e71979ada5fb" }, - "source": [ - "tfdv.visualize_statistics(stats)" - ], - "execution_count": null, "outputs": [ { - "output_type": "display_data", "data": { - "text/plain": [ - "" - ], "text/html": [ "\n", " " + ], + "text/plain": [ + "" ] }, - "metadata": { - "tags": [] - } + "metadata": {}, + "output_type": "display_data" } + ], + "source": [ + "tfdv.visualize_statistics(stats)" ] }, { "cell_type": "code", + "execution_count": 5, "metadata": { - "id": "r9-xc9x_dEtJ", + "colab": {}, "colab_type": "code", - "colab": {} + "id": "r9-xc9x_dEtJ" }, + "outputs": [], "source": [ "schema = tfdv.infer_schema(stats)" - ], - "execution_count": null, - "outputs": [] + ] }, { "cell_type": "code", + "execution_count": 6, "metadata": { - "id": "_LLj2MG-dEtL", - "colab_type": "code", "colab": {}, + "colab_type": "code", + "id": "_LLj2MG-dEtL", "outputId": "ea3515dc-5896-42d2-f65b-5d6b9dbc881e" }, - "source": [ - "schema" - ], - "execution_count": null, "outputs": [ { - "output_type": "execute_result", "data": { "text/plain": [ "feature {\n", @@ -1571,44 +21177,27 @@ "}" ] }, - "metadata": { - "tags": [] - }, - "execution_count": 5 + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" } + ], + "source": [ + "schema" ] }, { "cell_type": "code", + "execution_count": 7, "metadata": { - "id": "gD4ms5kAdEtN", - "colab_type": "code", "colab": {}, + "colab_type": "code", + "id": "gD4ms5kAdEtN", "outputId": "fe66d332-f57d-403d-e8d7-45d3f5a771cd" }, - "source": [ - "tfdv.display_schema(schema)" - ], - "execution_count": null, "outputs": [ { - "output_type": "display_data", "data": { - "text/plain": [ - " Type Presence Valency Domain\n", - "Feature name \n", - "'product' STRING required 'product'\n", - "'sub_product' STRING optional single 'sub_product'\n", - "'issue' STRING required 'issue'\n", - "'sub_issue' STRING optional single 'sub_issue'\n", - "'consumer_complaint_narrative' BYTES required -\n", - "'company' BYTES required -\n", - "'state' STRING optional single 'state'\n", - "'zip_code' BYTES optional single -\n", - "'company_response' STRING required 'company_response'\n", - "'timely_response' STRING required 'timely_response'\n", - "'consumer_disputed' INT required -" - ], "text/html": [ "
\n", "\n", - "\n", - "
Channel of type 'Examples' (1 artifact) at 0x14e959190
.type_nameExamples
._artifacts
[0]\n", - "\n", - "
Artifact of type 'ExampleStatistics' (uri: ../tfx/StatisticsGen/statistics/65) at 0x14f43f0d0
.type<class 'tfx.types.standard_artifacts.ExampleStatistics'>
.uri../tfx/StatisticsGen/statistics/65
.span0
.split_names[\"train\", \"eval\"]
.component.outputs
['schema']\n", - "\n", - "
Channel of type 'Schema' (1 artifact) at 0x14f3e7950
.type_nameSchema
._artifacts
[0]\n", - "\n", - "
Artifact of type 'Schema' (uri: ../tfx/SchemaGen/schema/66) at 0x14f3e7e90
.type<class 'tfx.types.standard_artifacts.Schema'>
.uri../tfx/SchemaGen/schema/66
" + "
Artifact of type 'Schema' (uri: ../tfx/SchemaGen/schema/3) at 0x186c7fcd0
.type<class 'tfx.types.standard_artifacts.Schema'>
.uri../tfx/SchemaGen/schema/3
" + ], + "text/plain": [ + "ExecutionResult(\n", + " component_id: SchemaGen\n", + " execution_id: 3\n", + " outputs:\n", + " schema: Channel(\n", + " type_name: Schema\n", + " artifacts: [Artifact(artifact: id: 3\n", + " type_id: 18\n", + " uri: \"../tfx/SchemaGen/schema/3\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"schema\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"SchemaGen\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 18\n", + " name: \"Schema\"\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " ))" ] }, - "metadata": { - "tags": [] - }, - "execution_count": 39 + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" } + ], + "source": [ + "schema_gen = tfx.components.SchemaGen(\n", + " statistics=statistics_gen.outputs['statistics'],\n", + " infer_feature_shape=True)\n", + "context.run(schema_gen)" ] }, { "cell_type": "code", + "execution_count": 11, "metadata": { - "id": "zaZ8sb8vdQ7B", - "colab_type": "code", "colab": {}, + "colab_type": "code", + "id": "zaZ8sb8vdQ7B", "outputId": "82b20272-de97-47bf-907f-5975e61072b8" }, - "source": [ - "context.show(schema_gen.outputs['schema'])" - ], - "execution_count": null, "outputs": [ { - "output_type": "display_data", "data": { + "text/html": [ + "Artifact at ../tfx/SchemaGen/schema/3

" + ], "text/plain": [ "" - ], - "text/html": [ - "Artifact at ../tfx/SchemaGen/schema/66

" ] }, - "metadata": { - "tags": [] - } + "metadata": {}, + "output_type": "display_data" }, { - "output_type": "display_data", "data": { - "text/plain": [ - " Type Presence Valency Domain\n", - "Feature name \n", - "'company' BYTES required - \n", - "'company_response' STRING required 'company_response'\n", - "'consumer_complaint_narrative' BYTES required - \n", - "'issue' STRING required 'issue' \n", - "'product' STRING required 'product' \n", - "'state' STRING optional single 'state' \n", - "'sub_issue' STRING optional single 'sub_issue' \n", - "'sub_product' STRING optional single 'sub_product' \n", - "'timely_response' STRING required 'timely_response' \n", - "'zip_code' BYTES optional single - \n", - "'consumer_disputed' INT required - " - ], "text/html": [ "
\n", "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Anomaly short descriptionAnomaly long description
Feature name
'issue'Unexpected string valuesExamples contain values missing from the schema: Lender damaged or destroyed vehicle (<1%).
\n", - "
" + "

No anomalies found.

" + ], + "text/plain": [ + "" ] }, - "metadata": { - "tags": [] - } + "metadata": {}, + "output_type": "display_data" } + ], + "source": [ + "example_validator = tfx.components.ExampleValidator(\n", + " statistics=statistics_gen.outputs['statistics'],\n", + " schema=schema_gen.outputs['schema'])\n", + "context.run(example_validator)\n", + "\n", + "context.show(example_validator.outputs['anomalies'])" ] }, { "cell_type": "code", + "execution_count": 13, "metadata": { - "id": "rEpmhz4rdQ7F", + "colab": {}, "colab_type": "code", - "colab": {} + "id": "rEpmhz4rdQ7F" }, + "outputs": [], "source": [ - "transform_file = os.path.join(base_dir, '../components/module.py')" - ], - "execution_count": null, - "outputs": [] + "transform_file = os.path.join(os.getcwd(), '../components/module.py')" + ] }, { "cell_type": "code", + "execution_count": 23, "metadata": { + "colab": {}, + "colab_type": "code", + "id": "uQPUwTD7dQ7H", + "outputId": "32162f73-8540-434f-c670-4c04c55021f1", "scrolled": true, "tags": [ "outputPrepend" - ], - "id": "uQPUwTD7dQ7H", - "colab_type": "code", - "colab": {}, - "outputId": "32162f73-8540-434f-c670-4c04c55021f1" + ] }, - "source": [ - "from tfx.components import Transform\n", - "\n", - "transform = Transform(\n", - " examples=example_gen.outputs['examples'],\n", - " schema=schema_gen.outputs['schema'],\n", - " module_file=transform_file)\n", - "context.run(transform)" - ], - "execution_count": null, "outputs": [ { + "name": "stdout", "output_type": "stream", "text": [ - "feature {\n", - " name: \"state\"\n", - " value_count {\n", - " min: 1\n", - " max: 1\n", - " }\n", - " type: BYTES\n", - " domain: \"state\"\n", - " presence {\n", - " min_count: 1\n", - " }\n", - "}\n", - "feature {\n", - " name: \"sub_issue\"\n", - " value_count {\n", - " min: 1\n", - " max: 1\n", - " }\n", - " type: BYTES\n", - " domain: \"sub_issue\"\n", - " presence {\n", - " min_count: 1\n", - " }\n", - "}\n", - "feature {\n", - " name: \"sub_product\"\n", - " value_count {\n", - " min: 1\n", - " max: 1\n", - " }\n", - " type: BYTES\n", - " domain: \"sub_product\"\n", - " presence {\n", - " min_count: 1\n", - " }\n", - "}\n", - "feature {\n", - " name: \"timely_response\"\n", - " type: BYTES\n", - " domain: \"timely_response\"\n", - " presence {\n", - " min_fraction: 1.0\n", - " min_count: 1\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"zip_code\"\n", - " value_count {\n", - " min: 1\n", - " max: 1\n", - " }\n", - " type: BYTES\n", - " presence {\n", - " min_count: 1\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_disputed\"\n", - " type: INT\n", - " bool_domain {\n", - " }\n", - " presence {\n", - " min_fraction: 1.0\n", - " min_count: 1\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "string_domain {\n", - " name: \"company_response\"\n", - " value: \"Closed\"\n", - " value: \"Closed with explanation\"\n", - " value: \"Closed with monetary relief\"\n", - " value: \"Closed with non-monetary relief\"\n", - " value: \"Untimely response\"\n", - "}\n", - "string_domain {\n", - " name: \"issue\"\n", - " value: \"APR or interest rate\"\n", - " value: \"Account opening, closing, or management\"\n", - " value: \"Account terms and changes\"\n", - " value: \"Adding money\"\n", - " value: \"Advertising and marketing\"\n", - " value: \"Advertising, marketing or disclosures\"\n", - " value: \"Application processing delay\"\n", - " value: \"Application, originator, mortgage broker\"\n", - " value: \"Applied for loan/did not receive money\"\n", - " value: \"Arbitration\"\n", - " value: \"Balance transfer\"\n", - " value: \"Balance transfer fee\"\n", - " value: \"Bankruptcy\"\n", - " value: \"Billing disputes\"\n", - " value: \"Billing statement\"\n", - " value: \"Can\\'t contact lender\"\n", - " value: \"Can\\'t repay my loan\"\n", - " value: \"Can\\'t stop charges to bank account\"\n", - " value: \"Cash advance\"\n", - " value: \"Cash advance fee\"\n", - " value: \"Charged bank acct wrong day or amt\"\n", - " value: \"Charged fees or interest I didn\\'t expect\"\n", - " value: \"Closing/Cancelling account\"\n", - " value: \"Communication tactics\"\n", - " value: \"Cont\\'d attempts collect debt not owed\"\n", - " value: \"Convenience checks\"\n", - " value: \"Credit card protection / Debt protection\"\n", - " value: \"Credit decision / Underwriting\"\n", - " value: \"Credit determination\"\n", - " value: \"Credit line increase/decrease\"\n", - " value: \"Credit monitoring or identity protection\"\n", - " value: \"Credit reporting company\\'s investigation\"\n", - " value: \"Customer service / Customer relations\"\n", - " value: \"Customer service/Customer relations\"\n", - " value: \"Dealing with my lender or servicer\"\n", - " value: \"Delinquent account\"\n", - " value: \"Deposits and withdrawals\"\n", - " value: \"Disclosure verification of debt\"\n", - " value: \"Disclosures\"\n", - " value: \"Excessive fees\"\n", - " value: \"False statements or representation\"\n", - " value: \"Fees\"\n", - " value: \"Forbearance / Workout plans\"\n", - " value: \"Fraud or scam\"\n", - " value: \"Getting a loan\"\n", - " value: \"Identity theft / Fraud / Embezzlement\"\n", - " value: \"Improper contact or sharing of info\"\n", - " value: \"Improper use of my credit report\"\n", - " value: \"Incorrect exchange rate\"\n", - " value: \"Incorrect information on credit report\"\n", - " value: \"Incorrect/missing disclosures or info\"\n", - " value: \"Late fee\"\n", - " value: \"Lender repossessed or sold the vehicle\"\n", - " value: \"Lender sold the property\"\n", - " value: \"Loan modification,collection,foreclosure\"\n", - " value: \"Loan servicing, payments, escrow account\"\n", - " value: \"Lost or stolen check\"\n", - " value: \"Lost or stolen money order\"\n", - " value: \"Making/receiving payments, sending money\"\n", - " value: \"Managing the line of credit\"\n", - " value: \"Managing the loan or lease\"\n", - " value: \"Managing, opening, or closing account\"\n", - " value: \"Money was not available when promised\"\n", - " value: \"Other\"\n", - " value: \"Other fee\"\n", - " value: \"Other service issues\"\n", - " value: \"Other transaction issues\"\n", - " value: \"Overdraft, savings or rewards features\"\n", - " value: \"Overlimit fee\"\n", - " value: \"Payment to acct not credited\"\n", - " value: \"Payoff process\"\n", - " value: \"Privacy\"\n", - " value: \"Problems caused by my funds being low\"\n", - " value: \"Problems when you are unable to pay\"\n", - " value: \"Received a loan I didn\\'t apply for\"\n", - " value: \"Rewards\"\n", - " value: \"Sale of account\"\n", - " value: \"Settlement process and costs\"\n", - " value: \"Shopping for a line of credit\"\n", - " value: \"Shopping for a loan or lease\"\n", - " value: \"Taking out the loan or lease\"\n", - " value: \"Taking/threatening an illegal action\"\n", - " value: \"Transaction issue\"\n", - " value: \"Unable to get credit report/credit score\"\n", - " value: \"Unauthorized transactions/trans. issues\"\n", - " value: \"Unexpected/Other fees\"\n", - " value: \"Unsolicited issuance of credit card\"\n", - " value: \"Using a debit or ATM card\"\n", - " value: \"Wrong amount charged or received\"\n", - "}\n", - "string_domain {\n", - " name: \"product\"\n", - " value: \"Bank account or service\"\n", - " value: \"Consumer Loan\"\n", - " value: \"Credit card\"\n", - " value: \"Credit reporting\"\n", - " value: \"Debt collection\"\n", - " value: \"Money transfers\"\n", - " value: \"Mortgage\"\n", - " value: \"Other financial service\"\n", - " value: \"Payday loan\"\n", - " value: \"Prepaid card\"\n", - " value: \"Student loan\"\n", - "}\n", - "string_domain {\n", - " name: \"state\"\n", - " value: \"AA\"\n", - " value: \"AE\"\n", - " value: \"AK\"\n", - " value: \"AL\"\n", - " value: \"AP\"\n", - " value: \"AR\"\n", - " value: \"AS\"\n", - " value: \"AZ\"\n", - " value: \"CA\"\n", - " value: \"CO\"\n", - " value: \"CT\"\n", - " value: \"DC\"\n", - " value: \"DE\"\n", - " value: \"FL\"\n", - " value: \"FM\"\n", - " value: \"GA\"\n", - " value: \"GU\"\n", - " value: \"HI\"\n", - " value: \"IA\"\n", - " value: \"ID\"\n", - " value: \"IL\"\n", - " value: \"IN\"\n", - " value: \"KS\"\n", - " value: \"KY\"\n", - " value: \"LA\"\n", - " value: \"MA\"\n", - " value: \"MD\"\n", - " value: \"ME\"\n", - " value: \"MI\"\n", - " value: \"MN\"\n", - " value: \"MO\"\n", - " value: \"MP\"\n", - " value: \"MS\"\n", - " value: \"MT\"\n", - " value: \"NC\"\n", - " value: \"ND\"\n", - " value: \"NE\"\n", - " value: \"NH\"\n", - " value: \"NJ\"\n", - " value: \"NM\"\n", - " value: \"NV\"\n", - " value: \"NY\"\n", - " value: \"OH\"\n", - " value: \"OK\"\n", - " value: \"OR\"\n", - " value: \"PA\"\n", - " value: \"PR\"\n", - " value: \"RI\"\n", - " value: \"SC\"\n", - " value: \"SD\"\n", - " value: \"TN\"\n", - " value: \"TX\"\n", - " value: \"UT\"\n", - " value: \"VA\"\n", - " value: \"VI\"\n", - " value: \"VT\"\n", - " value: \"WA\"\n", - " value: \"WI\"\n", - " value: \"WV\"\n", - " value: \"WY\"\n", - "}\n", - "string_domain {\n", - " name: \"sub_issue\"\n", - " value: \"Account status\"\n", - " value: \"Account terms\"\n", - " value: \"Account terms and changes\"\n", - " value: \"Applied for loan/did not receive money\"\n", - " value: \"Attempted to collect wrong amount\"\n", - " value: \"Attempted to/Collected exempt funds\"\n", - " value: \"Billing dispute\"\n", - " value: \"Called after sent written cease of comm\"\n", - " value: \"Called outside of 8am-9pm\"\n", - " value: \"Can\\'t contact lender\"\n", - " value: \"Can\\'t decrease my monthly payments\"\n", - " value: \"Can\\'t get flexible payment options\"\n", - " value: \"Can\\'t qualify for a loan\"\n", - " value: \"Can\\'t stop charges to bank account\"\n", - " value: \"Can\\'t temporarily postpone payments\"\n", - " value: \"Charged bank acct wrong day or amt\"\n", - " value: \"Charged fees or interest I didn\\'t expect\"\n", - " value: \"Contacted employer after asked not to\"\n", - " value: \"Contacted me after I asked not to\"\n", - " value: \"Contacted me instead of my attorney\"\n", - " value: \"Debt is not mine\"\n", - " value: \"Debt resulted from identity theft\"\n", - " value: \"Debt was discharged in bankruptcy\"\n", - " value: \"Debt was paid\"\n", - " value: \"Don\\'t agree with fees charged\"\n", - " value: \"Frequent or repeated calls\"\n", - " value: \"Having problems with customer service\"\n", - " value: \"Impersonated an attorney or official\"\n", - " value: \"Inadequate help over the phone\"\n", - " value: \"Indicated committed crime not paying\"\n", - " value: \"Indicated shouldn\\'t respond to lawsuit\"\n", - " value: \"Information is not mine\"\n", - " value: \"Investigation took too long\"\n", - " value: \"Keep getting calls about my loan\"\n", - " value: \"Need information about my balance/terms\"\n", - " value: \"No notice of investigation status/result\"\n", - " value: \"Not disclosed as an attempt to collect\"\n", - " value: \"Not given enough info to verify debt\"\n", - " value: \"Payment to acct not credited\"\n", - " value: \"Personal information\"\n", - " value: \"Problem cancelling or closing account\"\n", - " value: \"Problem getting my free annual report\"\n", - " value: \"Problem getting report or credit score\"\n", - " value: \"Problem with fraud alerts\"\n", - " value: \"Problem with statement of dispute\"\n", - " value: \"Public record\"\n", - " value: \"Qualify for a better loan than offered\"\n", - " value: \"Received a loan I didn\\'t apply for\"\n", - " value: \"Received bad information about my loan\"\n", - " value: \"Received marketing offer after opted out\"\n", - " value: \"Receiving unwanted marketing/advertising\"\n", - " value: \"Reinserted previously deleted info\"\n", - " value: \"Report improperly shared by CRC\"\n", - " value: \"Report shared with employer w/o consent\"\n", - " value: \"Right to dispute notice not received\"\n", - " value: \"Seized/Attempted to seize property\"\n", - " value: \"Sued w/o proper notification of suit\"\n", - " value: \"Sued where didn\\'t live/sign for debt\"\n", - " value: \"Talked to a third party about my debt\"\n", - " value: \"Threatened arrest/jail if do not pay\"\n", - " value: \"Threatened to sue on too old debt\"\n", - " value: \"Threatened to take legal action\"\n", - " value: \"Trouble with how payments are handled\"\n", - " value: \"Used obscene/profane/abusive language\"\n", - "}\n", - "string_domain {\n", - " name: \"sub_product\"\n", - " value: \"(CD) Certificate of deposit\"\n", - " value: \"Auto\"\n", - " value: \"Cashing a check without an account\"\n", - " value: \"Check cashing\"\n", - " value: \"Checking account\"\n", - " value: \"Conventional adjustable mortgage (ARM)\"\n", - " value: \"Conventional fixed mortgage\"\n", - " value: \"Credit card\"\n", - " value: \"Credit repair\"\n", - " value: \"Debt settlement\"\n", - " value: \"Domestic (US) money transfer\"\n", - " value: \"Electronic Benefit Transfer / EBT card\"\n", - " value: \"FHA mortgage\"\n", - " value: \"Federal student loan\"\n", - " value: \"Foreign currency exchange\"\n", - " value: \"General purpose card\"\n", - " value: \"Gift or merchant card\"\n", - " value: \"Government benefit payment card\"\n", - " value: \"Home equity loan or line of credit\"\n", - " value: \"I do not know\"\n", - " value: \"ID prepaid card\"\n", - " value: \"Installment loan\"\n", - " value: \"International money transfer\"\n", - " value: \"Medical\"\n", - " value: \"Mobile wallet\"\n", - " value: \"Money order\"\n", - " value: \"Mortgage\"\n", - " value: \"Non-federal student loan\"\n", - " value: \"Other (i.e. phone, health club, etc.)\"\n", - " value: \"Other bank product/service\"\n", - " value: \"Other mortgage\"\n", - " value: \"Other special purpose card\"\n", - " value: \"Pawn loan\"\n", - " value: \"Payday loan\"\n", - " value: \"Payroll card\"\n", - " value: \"Personal line of credit\"\n", - " value: \"Refund anticipation check\"\n", - " value: \"Reverse mortgage\"\n", - " value: \"Savings account\"\n", - " value: \"Title loan\"\n", - " value: \"Transit card\"\n", - " value: \"Traveler\\303\\242\\302\\200\\302\\231s/Cashier\\303\\242\\302\\200\\302\\231s checks\"\n", - " value: \"VA mortgage\"\n", - " value: \"Vehicle lease\"\n", - " value: \"Vehicle loan\"\n", - "}\n", - "string_domain {\n", - " name: \"timely_response\"\n", - " value: \"No\"\n", - " value: \"Yes\"\n", - "}\n", - "} belongs to. Thus noop.\n", - "WARNING:tensorflow:Tensorflow version (2.2.0) found. Note that Tensorflow Transform support for TF 2.0 is currently in beta, and features such as tf.function may not work as intended. \n", - "WARNING:apache_beam.utils.interactive_utils:Failed to alter the label of a transform with the ipython prompt metadata. Cannot figure out the pipeline that the given pvalueish ((, {'_schema': feature {\n", - " name: \"company_response\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_complaint_narrative\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_disputed\"\n", - " type: INT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"issue\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"product\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"state\"\n", - " type: BYTES\n", - "}\n", - "feature {\n", - " name: \"sub_product\"\n", - " type: BYTES\n", - "}\n", - "feature {\n", - " name: \"zip_code\"\n", - " type: BYTES\n", - "}\n", - "}), (, BeamDatasetMetadata(dataset_metadata={'_schema': feature {\n", - " name: \"company_response_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 6\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_complaint_narrative_xf\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_disputed_xf\"\n", - " type: INT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " }\n", - "}\n", - "feature {\n", - " name: \"issue_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 91\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"product_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 12\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"state_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 61\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"sub_product_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 46\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"zip_code_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 11\n", - " }\n", - " }\n", - "}\n", - "}, deferred_metadata=))) belongs to. Thus noop.\n", - "WARNING:apache_beam.typehints.typehints:Ignoring send_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring return_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring send_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring return_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring send_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring return_type hint: \n", - "WARNING:tensorflow:Tensorflow version (2.2.0) found. Note that Tensorflow Transform support for TF 2.0 is currently in beta, and features such as tf.function may not work as intended. \n", - "WARNING:apache_beam.utils.interactive_utils:Failed to alter the label of a transform with the ipython prompt metadata. Cannot figure out the pipeline that the given pvalueish ((, {'_schema': feature {\n", - " name: \"company_response\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_complaint_narrative\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_disputed\"\n", - " type: INT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"issue\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"product\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 1\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"state\"\n", - " type: BYTES\n", - "}\n", - "feature {\n", - " name: \"sub_product\"\n", - " type: BYTES\n", - "}\n", - "feature {\n", - " name: \"zip_code\"\n", - " type: BYTES\n", - "}\n", - "}), (, BeamDatasetMetadata(dataset_metadata={'_schema': feature {\n", - " name: \"company_response_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 6\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_complaint_narrative_xf\"\n", - " type: BYTES\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " }\n", - "}\n", - "feature {\n", - " name: \"consumer_disputed_xf\"\n", - " type: INT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " }\n", - "}\n", - "feature {\n", - " name: \"issue_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 91\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"product_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 12\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"state_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 61\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"sub_product_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 46\n", - " }\n", - " }\n", - "}\n", - "feature {\n", - " name: \"zip_code_xf\"\n", - " type: FLOAT\n", - " presence {\n", - " min_fraction: 1.0\n", - " }\n", - " shape {\n", - " dim {\n", - " size: 11\n", - " }\n", - " }\n", - "}\n", - "}, deferred_metadata=))) belongs to. Thus noop.\n", - "WARNING:apache_beam.typehints.typehints:Ignoring send_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring return_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring send_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring return_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring send_type hint: \n", - "WARNING:apache_beam.typehints.typehints:Ignoring return_type hint: \n", - "INFO:tensorflow:Saver not created because there are no variables in the graph to restore\n", - "INFO:tensorflow:Saver not created because there are no variables in the graph to restore\n", - "INFO:tensorflow:Assets added to graph.\n", - "INFO:tensorflow:Assets written to: ../tfx/Transform/transform_graph/68/.temp_path/tftransform_tmp/efd430d973504dd7a118994f263cc2a2/assets\n", - "INFO:tensorflow:SavedModel written to: ../tfx/Transform/transform_graph/68/.temp_path/tftransform_tmp/efd430d973504dd7a118994f263cc2a2/saved_model.pb\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_1:0\\022-vocab_compute_and_apply_vocabulary_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_3:0\\022/vocab_compute_and_apply_vocabulary_1_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_5:0\\022/vocab_compute_and_apply_vocabulary_2_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_7:0\\022/vocab_compute_and_apply_vocabulary_3_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_9:0\\022/vocab_compute_and_apply_vocabulary_4_vocabulary\"\n", - "\n", - "INFO:tensorflow:Saver not created because there are no variables in the graph to restore\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_1:0\\022-vocab_compute_and_apply_vocabulary_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_3:0\\022/vocab_compute_and_apply_vocabulary_1_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_5:0\\022/vocab_compute_and_apply_vocabulary_2_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_7:0\\022/vocab_compute_and_apply_vocabulary_3_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_9:0\\022/vocab_compute_and_apply_vocabulary_4_vocabulary\"\n", - "\n", - "INFO:tensorflow:Saver not created because there are no variables in the graph to restore\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_1:0\\022-vocab_compute_and_apply_vocabulary_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_3:0\\022/vocab_compute_and_apply_vocabulary_1_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_5:0\\022/vocab_compute_and_apply_vocabulary_2_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_7:0\\022/vocab_compute_and_apply_vocabulary_3_vocabulary\"\n", - "\n", - "WARNING:tensorflow:Expected binary or unicode string, got type_url: \"type.googleapis.com/tensorflow.AssetFileDef\"\n", - "value: \"\\n\\013\\n\\tConst_9:0\\022/vocab_compute_and_apply_vocabulary_4_vocabulary\"\n", - "\n", - "INFO:tensorflow:Saver not created because there are no variables in the graph to restore\n" - ], - "name": "stdout" + "running bdist_wheel\n", + "running build\n", + "running build_py\n", + "creating build\n", + "creating build/lib\n", + "copying keras_trainer.py -> build/lib\n", + "copying module_test.py -> build/lib\n", + "copying transform.py -> build/lib\n", + "copying module.py -> build/lib\n", + "installing to /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc\n", + "running install\n", + "running install_lib\n", + "copying build/lib/keras_trainer.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc\n", + "copying build/lib/module_test.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc\n", + "copying build/lib/transform.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc\n", + "copying build/lib/module.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc\n", + "running install_egg_info\n", + "running egg_info\n", + "creating tfx_user_code_Transform.egg-info\n", + "writing tfx_user_code_Transform.egg-info/PKG-INFO\n", + "writing dependency_links to tfx_user_code_Transform.egg-info/dependency_links.txt\n", + "writing top-level names to tfx_user_code_Transform.egg-info/top_level.txt\n", + "writing manifest file 'tfx_user_code_Transform.egg-info/SOURCES.txt'\n", + "reading manifest file 'tfx_user_code_Transform.egg-info/SOURCES.txt'\n", + "writing manifest file 'tfx_user_code_Transform.egg-info/SOURCES.txt'\n", + "Copying tfx_user_code_Transform.egg-info to /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3.8.egg-info\n", + "running install_scripts\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "listing git files failed - pretending there aren't any\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "creating /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/WHEEL\n", + "creating '/var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpoemwicca/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl' and adding '/var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc' to it\n", + "adding 'keras_trainer.py'\n", + "adding 'module.py'\n", + "adding 'module_test.py'\n", + "adding 'transform.py'\n", + "adding 'tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/METADATA'\n", + "adding 'tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/WHEEL'\n", + "adding 'tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/top_level.txt'\n", + "adding 'tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/RECORD'\n", + "removing /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpjggvlesc\n", + "Processing /Users/hannes/opensource/building-machine-learning-pipelines/tfx/_wheels/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl\n", + "Installing collected packages: tfx-user-code-Transform\n", + "Successfully installed tfx-user-code-Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d\n", + "Processing /Users/hannes/opensource/building-machine-learning-pipelines/tfx/_wheels/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl\n", + "Installing collected packages: tfx-user-code-Transform\n", + "Successfully installed tfx-user-code-Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d\n", + "Processing /Users/hannes/opensource/building-machine-learning-pipelines/tfx/_wheels/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:root:This output type hint will be ignored and not used for type-checking purposes. Typically, output type hints for a PTransform are single (or nested) types wrapped by a PCollection, PDone, or None. Got: Tuple[Dict[str, Union[NoneType, _Dataset]], Union[Dict[str, Dict[str, PCollection]], NoneType], int] instead.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Installing collected packages: tfx-user-code-Transform\n", + "Successfully installed tfx-user-code-Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_1/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_2/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_3/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_4/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_1/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_2/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_3/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:absl:Tables initialized inside a tf.function will be re-initialized on every invocation of the function. This re-initialization can have significant impact on performance. Consider lifting them out of the graph context using `tf.init_scope`.: compute_and_apply_vocabulary_4/apply_vocab/text_file_init/InitializeTableFromTextFileV2\n", + "WARNING:root:This output type hint will be ignored and not used for type-checking purposes. Typically, output type hints for a PTransform are single (or nested) types wrapped by a PCollection, PDone, or None. Got: Tuple[Dict[str, Union[NoneType, _Dataset]], Union[Dict[str, Dict[str, PCollection]], NoneType], int] instead.\n", + "WARNING:root:Make sure that locally built Python SDK docker image has Python 3.8 interpreter.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Assets written to: ../tfx/Transform/transform_graph/14/.temp_path/tftransform_tmp/ea057a09a08549748cb7c896a4790996/assets\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Assets written to: ../tfx/Transform/transform_graph/14/.temp_path/tftransform_tmp/ea057a09a08549748cb7c896a4790996/assets\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Assets written to: ../tfx/Transform/transform_graph/14/.temp_path/tftransform_tmp/852688fb043c4000bd43c9cfc48982e6/assets\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Assets written to: ../tfx/Transform/transform_graph/14/.temp_path/tftransform_tmp/852688fb043c4000bd43c9cfc48982e6/assets\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] }, { - "output_type": "execute_result", "data": { - "text/plain": [ - "ExecutionResult(\n", - " component_id: Transform\n", - " execution_id: 68\n", - " outputs:\n", - " transform_graph: Channel(\n", - " type_name: TransformGraph\n", - " artifacts: [Artifact(type_name: TransformGraph, uri: ../tfx/Transform/transform_graph/68, id: 82)]\n", - " )\n", - " transformed_examples: Channel(\n", - " type_name: Examples\n", - " artifacts: [Artifact(type_name: Examples, uri: ../tfx/Transform/transformed_examples/68, id: 83)]\n", - " ))" - ], "text/html": [ "\n", + "\n", + "
Channel of type 'ExampleStatistics' (1 artifact) at 0x186ab9130
.type_nameExampleStatistics
._artifacts
[0]\n", + "\n", + "
Artifact of type 'ExampleStatistics' (uri: ../tfx/Transform/post_transform_stats/14) at 0x186ab9f10
.type<class 'tfx.types.standard_artifacts.ExampleStatistics'>
.uri../tfx/Transform/post_transform_stats/14
.span0
.split_names
['post_transform_anomalies']\n", + "\n", + "
Channel of type 'ExampleAnomalies' (1 artifact) at 0x186ab95e0
.type_nameExampleAnomalies
._artifacts
[0]\n", + "\n", + "
Artifact of type 'ExampleAnomalies' (uri: ../tfx/Transform/post_transform_anomalies/14) at 0x186ab9610
.type<class 'tfx.types.standard_artifacts.ExampleAnomalies'>
.uri../tfx/Transform/post_transform_anomalies/14
.span0
.split_names
.exec_properties
['module_file']None
['preprocessing_fn']None
['stats_options_updater_fn']None
['force_tf_compat_v1']0
['custom_config']null
['splits_config']None
['disable_statistics']0
['module_path']module@../tfx/_wheels/tfx_user_code_Transform-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl
.component.inputs
['examples']\n", + "\n", + "
Channel of type 'Examples' (1 artifact) at 0x182d8b2b0
.type_nameExamples
._artifacts
[0]\n", + "\n", + "
Artifact of type 'Examples' (uri: ../tfx/CsvExampleGen/examples/1) at 0x112bb3df0
.type<class 'tfx.types.standard_artifacts.Examples'>
.uri../tfx/CsvExampleGen/examples/1
.span0
.split_names["train", "eval"]
.version0
['schema']\n", + "\n", + "
Channel of type 'Schema' (1 artifact) at 0x186f1a250
.type_nameSchema
._artifacts
[0]\n", + "\n", + "
Artifact of type 'Schema' (uri: ../tfx/SchemaGen/schema/3) at 0x186c7fcd0
.type<class 'tfx.types.standard_artifacts.Schema'>
.uri../tfx/SchemaGen/schema/3
.component.outputs
['transform_graph']\n", + "\n", + "
Channel of type 'TransformGraph' (1 artifact) at 0x186ab9670
.type_nameTransformGraph
._artifacts
[0]\n", + "\n", + "
Artifact of type 'TransformGraph' (uri: ../tfx/Transform/transform_graph/14) at 0x186d00820
.type<class 'tfx.types.standard_artifacts.TransformGraph'>
.uri../tfx/Transform/transform_graph/14
['transformed_examples']\n", + "\n", + "
Channel of type 'Examples' (1 artifact) at 0x186ab96d0
.type_nameExamples
._artifacts
[0]\n", + "\n", + "
Artifact of type 'Examples' (uri: ../tfx/Transform/transformed_examples/14) at 0x186d00c70
.type<class 'tfx.types.standard_artifacts.Examples'>
.uri../tfx/Transform/transformed_examples/14
.span0
.split_names["train", "eval"]
.version0
['updated_analyzer_cache']\n", + "\n", + "
Channel of type 'TransformCache' (1 artifact) at 0x186ab91c0
.type_nameTransformCache
._artifacts
[0]\n", + "\n", + "
Artifact of type 'TransformCache' (uri: ../tfx/Transform/updated_analyzer_cache/14) at 0x187094f10
.type<class 'tfx.types.standard_artifacts.TransformCache'>
.uri../tfx/Transform/updated_analyzer_cache/14
['pre_transform_schema']\n", + "\n", + "
Channel of type 'Schema' (1 artifact) at 0x186ab9430
.type_nameSchema
._artifacts
[0]\n", + "\n", + "
Artifact of type 'Schema' (uri: ../tfx/Transform/pre_transform_schema/14) at 0x187932130
.type<class 'tfx.types.standard_artifacts.Schema'>
.uri../tfx/Transform/pre_transform_schema/14
['pre_transform_stats']\n", + "\n", + "
Channel of type 'ExampleStatistics' (1 artifact) at 0x186ab94f0
.type_nameExampleStatistics
._artifacts
[0]\n", + "\n", + "
Artifact of type 'ExampleStatistics' (uri: ../tfx/Transform/pre_transform_stats/14) at 0x187932eb0
.type<class 'tfx.types.standard_artifacts.ExampleStatistics'>
.uri../tfx/Transform/pre_transform_stats/14
.span0
.split_names
['post_transform_schema']\n", + "\n", + "
Channel of type 'Schema' (1 artifact) at 0x186ab9e20
.type_nameSchema
._artifacts
[0]\n", + "\n", + "
Artifact of type 'Schema' (uri: ../tfx/Transform/post_transform_schema/14) at 0x186ab9d00
.type<class 'tfx.types.standard_artifacts.Schema'>
.uri../tfx/Transform/post_transform_schema/14
['post_transform_stats']\n", + "\n", + "
Channel of type 'ExampleStatistics' (1 artifact) at 0x186ab9130
.type_nameExampleStatistics
._artifacts
[0]\n", + "\n", + "
Artifact of type 'ExampleStatistics' (uri: ../tfx/Transform/post_transform_stats/14) at 0x186ab9f10
.type<class 'tfx.types.standard_artifacts.ExampleStatistics'>
.uri../tfx/Transform/post_transform_stats/14
.span0
.split_names
['post_transform_anomalies']\n", + "\n", + "
Channel of type 'ExampleAnomalies' (1 artifact) at 0x186ab95e0
.type_nameExampleAnomalies
._artifacts
[0]\n", + "\n", + "
Artifact of type 'ExampleAnomalies' (uri: ../tfx/Transform/post_transform_anomalies/14) at 0x186ab9610
.type<class 'tfx.types.standard_artifacts.ExampleAnomalies'>
.uri../tfx/Transform/post_transform_anomalies/14
.span0
.split_names
" + ], + "text/plain": [ + "ExecutionResult(\n", + " component_id: Transform\n", + " execution_id: 14\n", + " outputs:\n", + " transform_graph: Channel(\n", + " type_name: TransformGraph\n", + " artifacts: [Artifact(artifact: id: 77\n", + " type_id: 22\n", + " uri: \"../tfx/Transform/transform_graph/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"transform_graph\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 22\n", + " name: \"TransformGraph\"\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " transformed_examples: Channel(\n", + " type_name: Examples\n", + " artifacts: [Artifact(artifact: id: 78\n", + " type_id: 14\n", + " uri: \"../tfx/Transform/transformed_examples/14\"\n", + " properties {\n", + " key: \"split_names\"\n", + " value {\n", + " string_value: \"[\\\"train\\\", \\\"eval\\\"]\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"transformed_examples\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 14\n", + " name: \"Examples\"\n", + " properties {\n", + " key: \"span\"\n", + " value: INT\n", + " }\n", + " properties {\n", + " key: \"split_names\"\n", + " value: STRING\n", + " }\n", + " properties {\n", + " key: \"version\"\n", + " value: INT\n", + " }\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " updated_analyzer_cache: Channel(\n", + " type_name: TransformCache\n", + " artifacts: [Artifact(artifact: id: 79\n", + " type_id: 23\n", + " uri: \"../tfx/Transform/updated_analyzer_cache/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"updated_analyzer_cache\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 23\n", + " name: \"TransformCache\"\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " pre_transform_schema: Channel(\n", + " type_name: Schema\n", + " artifacts: [Artifact(artifact: id: 80\n", + " type_id: 18\n", + " uri: \"../tfx/Transform/pre_transform_schema/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"pre_transform_schema\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 18\n", + " name: \"Schema\"\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " pre_transform_stats: Channel(\n", + " type_name: ExampleStatistics\n", + " artifacts: [Artifact(artifact: id: 81\n", + " type_id: 16\n", + " uri: \"../tfx/Transform/pre_transform_stats/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"pre_transform_stats\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 16\n", + " name: \"ExampleStatistics\"\n", + " properties {\n", + " key: \"span\"\n", + " value: INT\n", + " }\n", + " properties {\n", + " key: \"split_names\"\n", + " value: STRING\n", + " }\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " post_transform_schema: Channel(\n", + " type_name: Schema\n", + " artifacts: [Artifact(artifact: id: 82\n", + " type_id: 18\n", + " uri: \"../tfx/Transform/post_transform_schema/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"post_transform_schema\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 18\n", + " name: \"Schema\"\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " post_transform_stats: Channel(\n", + " type_name: ExampleStatistics\n", + " artifacts: [Artifact(artifact: id: 83\n", + " type_id: 16\n", + " uri: \"../tfx/Transform/post_transform_stats/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"post_transform_stats\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 16\n", + " name: \"ExampleStatistics\"\n", + " properties {\n", + " key: \"span\"\n", + " value: INT\n", + " }\n", + " properties {\n", + " key: \"split_names\"\n", + " value: STRING\n", + " }\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " )\n", + " post_transform_anomalies: Channel(\n", + " type_name: ExampleAnomalies\n", + " artifacts: [Artifact(artifact: id: 84\n", + " type_id: 20\n", + " uri: \"../tfx/Transform/post_transform_anomalies/14\"\n", + " custom_properties {\n", + " key: \"name\"\n", + " value {\n", + " string_value: \"post_transform_anomalies\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"producer_component\"\n", + " value {\n", + " string_value: \"Transform\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"state\"\n", + " value {\n", + " string_value: \"published\"\n", + " }\n", + " }\n", + " custom_properties {\n", + " key: \"tfx_version\"\n", + " value {\n", + " string_value: \"1.4.0.dev20211102\"\n", + " }\n", + " }\n", + " state: LIVE\n", + " , artifact_type: id: 20\n", + " name: \"ExampleAnomalies\"\n", + " properties {\n", + " key: \"span\"\n", + " value: INT\n", + " }\n", + " properties {\n", + " key: \"split_names\"\n", + " value: STRING\n", + " }\n", + " )]\n", + " additional_properties: {}\n", + " additional_custom_properties: {}\n", + " ))" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from tfx.components import Transform\n", "\n", - "trainer = Trainer(\n", - " module_file=trainer_file,\n", - " custom_executor_spec=executor_spec.ExecutorClassSpec(GenericExecutor),\n", - " examples=transform.outputs['transformed_examples'],\n", + "transform = Transform(\n", + " examples=example_gen.outputs['examples'],\n", " schema=schema_gen.outputs['schema'],\n", - " transform_graph=transform.outputs['transform_graph'],\n", - " train_args=trainer_pb2.TrainArgs(num_steps=TRAINING_STEPS),\n", - " eval_args=trainer_pb2.EvalArgs(num_steps=EVALUATION_STEPS))\n", - "context.run(trainer)" - ], - "execution_count": null, + " module_file=transform_file)\n", + "context.run(transform)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "colab": {}, + "colab_type": "code", + "id": "HcTmORm3dQ7I" + }, + "outputs": [], + "source": [ + "trainer_file = os.path.join(os.getcwd(), '../components/module.py')" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "colab": {}, + "colab_type": "code", + "id": "fW5DqNOLdQ7K", + "outputId": "fb8c3d01-6871-4cbc-ff19-1a7b01caa152", + "scrolled": true, + "tags": [] + }, "outputs": [ { + "name": "stdout", + "output_type": "stream", + "text": [ + "running bdist_wheel\n", + "running build\n", + "running build_py\n", + "creating build\n", + "creating build/lib\n", + "copying keras_trainer.py -> build/lib\n", + "copying module_test.py -> build/lib\n", + "copying transform.py -> build/lib\n", + "copying module.py -> build/lib\n", + "installing to /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj\n", + "running install\n", + "running install_lib\n", + "copying build/lib/keras_trainer.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj\n", + "copying build/lib/module_test.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj\n", + "copying build/lib/transform.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj\n", + "copying build/lib/module.py -> /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj\n", + "running install_egg_info\n", + "running egg_info\n", + "creating tfx_user_code_Trainer.egg-info\n", + "writing tfx_user_code_Trainer.egg-info/PKG-INFO\n", + "writing dependency_links to tfx_user_code_Trainer.egg-info/dependency_links.txt\n", + "writing top-level names to tfx_user_code_Trainer.egg-info/top_level.txt\n", + "writing manifest file 'tfx_user_code_Trainer.egg-info/SOURCES.txt'\n", + "reading manifest file 'tfx_user_code_Trainer.egg-info/SOURCES.txt'\n", + "writing manifest file 'tfx_user_code_Trainer.egg-info/SOURCES.txt'\n", + "Copying tfx_user_code_Trainer.egg-info to /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj/tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3.8.egg-info\n", + "running install_scripts\n", + "creating /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj/tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/WHEEL\n", + "creating '/var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmpn319kibj/tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl' and adding '/var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj' to it\n", + "adding 'keras_trainer.py'\n", + "adding 'module.py'\n", + "adding 'module_test.py'\n", + "adding 'transform.py'\n", + "adding 'tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/METADATA'\n", + "adding 'tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/WHEEL'\n", + "adding 'tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/top_level.txt'\n", + "adding 'tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d.dist-info/RECORD'\n", + "removing /var/folders/7h/_rbt3v8d3vd1h3c8f1zdrsmm0000gn/T/tmphkssc_tj\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "listing git files failed - pretending there aren't any\n", + "I1123 10:02:18.241540 506195456 rdbms_metadata_access_object.cc:686] No property is defined for the Type\n", + "I1123 10:02:18.243752 506195456 rdbms_metadata_access_object.cc:686] No property is defined for the Type\n", + "WARNING:absl:Examples artifact does not have payload_format custom property. Falling back to FORMAT_TF_EXAMPLE\n", + "WARNING:absl:Examples artifact does not have payload_format custom property. Falling back to FORMAT_TF_EXAMPLE\n", + "WARNING:absl:Examples artifact does not have payload_format custom property. Falling back to FORMAT_TF_EXAMPLE\n" + ] + }, + { + "name": "stdout", "output_type": "stream", "text": [ + "Processing /Users/hannes/opensource/building-machine-learning-pipelines/tfx/_wheels/tfx_user_code_Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d-py3-none-any.whl\n", + "Installing collected packages: tfx-user-code-Trainer\n", + "Successfully installed tfx-user-code-Trainer-0.0+158a6db728d014f2e8de973ee40665e59d06e25453dd74f1eaf238463826e91d\n", "Model: \"model\"\n", "__________________________________________________________________________________________________\n", "Layer (type) Output Shape Param # Connected to \n", "==================================================================================================\n", "consumer_complaint_narrative_xf [(None, 1)] 0 \n", "__________________________________________________________________________________________________\n", - "tf_op_layer_Reshape (TensorFlow [(None,)] 0 consumer_complaint_narrative_xf[0\n", + "tf.reshape (TFOpLambda) (None,) 0 consumer_complaint_narrative_xf[0\n", "__________________________________________________________________________________________________\n", - "keras_layer (KerasLayer) (None, 512) 256797824 tf_op_layer_Reshape[0][0] \n", + "keras_layer (KerasLayer) (None, 512) 256797824 tf.reshape[0][0] \n", "__________________________________________________________________________________________________\n", "reshape (Reshape) (None, 512) 0 keras_layer[0][0] \n", "__________________________________________________________________________________________________\n", @@ -4390,30 +5452,93 @@ "Total params: 256,950,321\n", "Trainable params: 152,497\n", "Non-trainable params: 256,797,824\n", - "__________________________________________________________________________________________________\n", - "1000/1000 [==============================] - 70s 70ms/step - loss: 0.5198 - binary_accuracy: 0.7675 - true_positives: 130.0000 - val_loss: 0.5123 - val_binary_accuracy: 0.7681 - val_true_positives: 11.0000\n", - "WARNING:tensorflow:Tensorflow version (2.2.0) found. TransformFeaturesLayer may not work as intended if the SavedModel contains an initialization op.\n", - "INFO:tensorflow:Saver not created because there are no variables in the graph to restore\n", - "WARNING:tensorflow:From /usr/local/lib/python3.7/site-packages/tensorflow/python/ops/resource_variable_ops.py:1817: calling BaseResourceVariable.__init__ (from tensorflow.python.ops.resource_variable_ops) with constraint is deprecated and will be removed in a future version.\n", - "Instructions for updating:\n", - "If using Keras pass *_constraint arguments to layers.\n", - "INFO:tensorflow:Assets written to: ../tfx/Trainer/model/70/serving_model_dir/assets\n" - ], - "name": "stdout" + "__________________________________________________________________________________________________\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2021-11-23 10:03:09.358554: I tensorflow/core/profiler/lib/profiler_session.cc:131] Profiler session initializing.\n", + "2021-11-23 10:03:09.358631: I tensorflow/core/profiler/lib/profiler_session.cc:146] Profiler session started.\n", + "2021-11-23 10:03:09.360027: I tensorflow/core/profiler/lib/profiler_session.cc:164] Profiler session tear down.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 3/1000 [..............................] - ETA: 12:01 - loss: 0.7645 - binary_accuracy: 0.1771 - true_positives: 29.0000" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2021-11-23 10:03:14.956980: I tensorflow/core/profiler/lib/profiler_session.cc:131] Profiler session initializing.\n", + "2021-11-23 10:03:14.956997: I tensorflow/core/profiler/lib/profiler_session.cc:146] Profiler session started.\n", + "2021-11-23 10:03:15.004472: I tensorflow/core/profiler/lib/profiler_session.cc:66] Profiler session collecting data.\n", + "2021-11-23 10:03:15.026300: I tensorflow/core/profiler/lib/profiler_session.cc:164] Profiler session tear down.\n", + "2021-11-23 10:03:15.059728: I tensorflow/core/profiler/rpc/client/save_profile.cc:136] Creating directory: ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15\n", + "\n", + "2021-11-23 10:03:15.064495: I tensorflow/core/profiler/rpc/client/save_profile.cc:142] Dumped gzipped tool data for trace.json.gz to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.trace.json.gz\n", + "2021-11-23 10:03:15.092567: I tensorflow/core/profiler/rpc/client/save_profile.cc:136] Creating directory: ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15\n", + "\n", + "2021-11-23 10:03:15.092790: I tensorflow/core/profiler/rpc/client/save_profile.cc:142] Dumped gzipped tool data for memory_profile.json.gz to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.memory_profile.json.gz\n", + "2021-11-23 10:03:15.094806: I tensorflow/core/profiler/rpc/client/capture_profile.cc:251] Creating directory: ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15\n", + "Dumped tool data for xplane.pb to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.xplane.pb\n", + "Dumped tool data for overview_page.pb to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.overview_page.pb\n", + "Dumped tool data for input_pipeline.pb to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.input_pipeline.pb\n", + "Dumped tool data for tensorflow_stats.pb to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.tensorflow_stats.pb\n", + "Dumped tool data for kernel_stats.pb to ../tfx/Trainer/model/15/logs/train/plugins/profile/2021_11_23_10_03_15/Hanness-MacBook-Pro.local.kernel_stats.pb\n", + "\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1000/1000 [==============================] - 63s 59ms/step - loss: 0.5192 - binary_accuracy: 0.7666 - true_positives: 207.0000 - val_loss: 0.5225 - val_binary_accuracy: 0.7620 - val_true_positives: 33.0000\n", + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:tensorflow_decision_forests is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:struct2tensor is not available.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Assets written to: ../tfx/Trainer/model/15/Format-Serving/assets\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Assets written to: ../tfx/Trainer/model/15/Format-Serving/assets\n" + ] }, { - "output_type": "execute_result", "data": { - "text/plain": [ - "ExecutionResult(\n", - " component_id: Trainer\n", - " execution_id: 70\n", - " outputs:\n", - " model: Channel(\n", - " type_name: Model\n", - " artifacts: [Artifact(type_name: Model, uri: ../tfx/Trainer/model/70, id: 85)]\n", - " ))" - ], "text/html": [ "\n", + "\n", + "
Trainer at 0x187107190
.inputs
['examples']\n", + "\n", + "
Channel of type 'Examples' (1 artifact) at 0x186ab96d0
.type_nameExamples
._artifacts
[0]\n", + "\n", + "
Artifact of type 'Examples' (uri: ../tfx/Transform/transformed_examples/14) at 0x186d00c70
.type<class 'tfx.types.standard_artifacts.Examples'>
.uri../tfx/Transform/transformed_examples/14
.span0
.split_names["train", "eval"]
.version0
['transform_graph']\n", + "\n", + "
Channel of type 'ModelRun' (1 artifact) at 0x186bb88b0
.type_nameModelRun
._artifacts
[0]